a4b48e4c05
This original method to retrieve user settings has been replaced by https://review.openstack.org/#/c/170351/. Remove old way to prevent confusion. Change-Id: I4fec94a78168d48fee5b21d24064200b2aefce91 Closes-Bug: #1455246
39 lines
1.5 KiB
Python
39 lines
1.5 KiB
Python
# Copyright 2015 IBM Corp.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
from openstack_dashboard.api.rest import config
|
|
from openstack_dashboard.test import helpers as test
|
|
|
|
|
|
class ConfigRestTestCase(test.TestCase):
|
|
def assertContains(self, response, expected_content):
|
|
if response.find(expected_content) > 0:
|
|
return
|
|
self.fail('%s does not contain %s' %
|
|
(response, expected_content))
|
|
|
|
def assertNotContains(self, response, expected_content):
|
|
if response.find(expected_content) < 0:
|
|
return
|
|
self.fail('%s contains %s when it should not' %
|
|
(response, expected_content))
|
|
|
|
def test_settings_config_get(self):
|
|
request = self.mock_rest_request()
|
|
response = config.Settings().get(request)
|
|
self.assertStatusCode(response, 200)
|
|
self.assertContains(response.content, "REST_API_SETTING_1")
|
|
self.assertContains(response.content, "REST_API_SETTING_2")
|
|
self.assertNotContains(response.content, "REST_API_SECURITY")
|