1
0
mirror of https://github.com/ansible/tower-cli.git synced 2026-02-05 15:48:09 +01:00
Files
tower-cli/tests/test_resources_setting.py
2017-07-18 14:02:11 -04:00

295 lines
12 KiB
Python

# -*- coding: utf-8 -*-
# Copyright 2017, Ansible by Red Hat
#
# 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.
import json
import six
import tower_cli
from tower_cli.api import client
from tower_cli import exceptions as exc
from tower_cli.utils.data_structures import OrderedDict
from tower_cli.cli.resource import ResSubcommand
from tower_cli.constants import CUR_API_VERSION
from tests.compat import unittest
LICENSE_DATA = json.dumps({
"eula_accepted": True,
"contact_email": "bobby@example.org",
"features": {},
"license_type": "enterprise",
"company_name": "Fancy Pants, Inc.",
"contact_name": "Bobby Softwares",
"license_date": 10000000000,
"license_key": "60a888de5a23994c6d1e6406b7fd75c8",
"instance_count": 250
})
class SettingTests(unittest.TestCase):
"""A set of tests to establish that the setting resource functions in the
way that we expect.
"""
def setUp(self):
self.res = tower_cli.get_resource('setting')
def test_create_method_is_disabled(self):
"""The delete method is properly disabled."""
self.assertEqual(ResSubcommand(self.res).get_command(None, 'create'),
None)
def test_delete_method_is_disabled(self):
"""The create method is properly disabled."""
self.assertEqual(ResSubcommand(self.res).get_command(None, 'delete'),
None)
def test_list_all(self):
"""All settings can be listed"""
all_settings = OrderedDict({
'FIRST': 123,
'SECOND': 'foo'
})
with client.test_mode as t:
t.register_json('/settings/all/', all_settings)
r = self.res.list()
self.assertEqual(
sorted(r['results'], key=lambda k: k['id']),
[
{'id': 'FIRST', 'value': 123},
{'id': 'SECOND', 'value': 'foo'}
]
)
def test_list_all_by_category(self):
"""Settings can be listed by category"""
system_settings = OrderedDict({'FEATURE_ENABLED': True})
auth_settings = OrderedDict({'SOME_API_KEY': 'ABC123'})
with client.test_mode as t:
t.register_json('/settings/system/', system_settings)
t.register_json('/settings/authentication/', auth_settings)
r = self.res.list(category='system')
self.assertEqual(
r['results'],
[{'id': 'FEATURE_ENABLED', 'value': True}]
)
r = self.res.list(category='authentication')
self.assertEqual(
r['results'],
[{'id': 'SOME_API_KEY', 'value': 'ABC123'}]
)
def test_list_invalid_category(self):
"""Settings can only be listed by valid categories"""
categories = {
'results': [{
'url': '/api/%s/settings/all/' % CUR_API_VERSION,
'name': 'All',
'slug': 'all'
}, {
'url': '/api/%s/settings/logging/' % CUR_API_VERSION,
'name': 'Logging',
'slug': 'logging'
}]
}
with client.test_mode as t:
t.register_json('/settings/', categories)
t.register_json('/settings/authentication/', '', status_code=404)
with self.assertRaises(exc.NotFound) as e:
self.res.list(category='authentication')
self.assertEqual(
e.exception.message,
('authentication is not a valid category. Choose from '
'[all, logging]')
)
def test_get(self):
"""Individual settings can be retrieved"""
all_settings = OrderedDict({'FIRST': 123})
with client.test_mode as t:
t.register_json('/settings/all/', all_settings)
r = self.res.get('FIRST')
self.assertEqual(r, {'id': 'FIRST', 'value': 123})
def test_get_invalid(self):
"""Invalid setting names throw an error"""
all_settings = OrderedDict({'FIRST': 123})
with client.test_mode as t:
t.register_json('/settings/all/', all_settings)
self.assertRaises(exc.NotFound, self.res.get, 'MISSING')
def test_update(self):
"""A setting's value can be updated"""
options = {'actions': {'PUT': {'FIRST': {'type': 'integer'}}}}
all_settings = OrderedDict({'FIRST': 123})
patched = OrderedDict({'FIRST': 456})
with client.test_mode as t:
t.register_json('/settings/all/', all_settings)
t.register_json('/settings/all/', options, method='OPTIONS')
t.register_json('/settings/all/', patched, method='PATCH')
r = self.res.modify('FIRST', '456')
self.assertTrue(r['changed'])
request = t.requests[0]
self.assertEqual(request.method, 'GET')
request = t.requests[1]
self.assertEqual(request.method, 'OPTIONS')
request = t.requests[2]
self.assertEqual(request.method, 'PATCH')
self.assertEqual(request.body, json.dumps({'FIRST': 456}))
def test_license_update(self):
"""The software license can be updated"""
all_settings = OrderedDict({'LICENSE': {}})
with client.test_mode as t:
t.register_json('/settings/all/', all_settings)
t.register_json('/config/', all_settings, method='POST')
self.res.modify('LICENSE', LICENSE_DATA)
request = t.requests[0]
self.assertEqual(request.method, 'GET')
request = t.requests[1]
self.assertEqual(request.method, 'POST')
self.assertEqual(json.loads(request.body),
json.loads(LICENSE_DATA))
def test_update_with_unicode(self):
"""A setting's value can be updated with unicode"""
new_val = six.u('Iñtërnâtiônàlizætiøn')
options = {'actions': {'PUT': {'FIRST': {'type': 'string'}}}}
all_settings = OrderedDict({'FIRST': 'FOO'})
patched = OrderedDict({'FIRST': new_val})
with client.test_mode as t:
t.register_json('/settings/all/', all_settings)
t.register_json('/settings/all/', options, method='OPTIONS')
t.register_json('/settings/all/', patched, method='PATCH')
r = self.res.modify('FIRST', new_val)
self.assertTrue(r['changed'])
request = t.requests[0]
self.assertEqual(request.method, 'GET')
request = t.requests[1]
self.assertEqual(request.method, 'OPTIONS')
request = t.requests[2]
self.assertEqual(request.method, 'PATCH')
self.assertEqual(request.body, json.dumps({'FIRST': new_val}))
def test_update_with_boolean(self):
"""A setting's value can be updated with a boolean"""
options = {'actions': {'PUT': {'FIRST': {'type': 'boolean'}}}}
all_settings = OrderedDict({'FIRST': False})
patched = OrderedDict({'FIRST': True})
with client.test_mode as t:
t.register_json('/settings/all/', all_settings)
t.register_json('/settings/all/', options, method='OPTIONS')
t.register_json('/settings/all/', patched, method='PATCH')
r = self.res.modify('FIRST', 'True')
self.assertTrue(r['changed'])
request = t.requests[0]
self.assertEqual(request.method, 'GET')
request = t.requests[1]
self.assertEqual(request.method, 'OPTIONS')
request = t.requests[2]
self.assertEqual(request.method, 'PATCH')
self.assertEqual(request.body, json.dumps({'FIRST': True}))
def test_update_with_list(self):
"""A setting's value can be updated with a list"""
options = {'actions': {'PUT': {'FIRST': {'type': 'list'}}}}
all_settings = OrderedDict({'FIRST': []})
patched = OrderedDict({'FIRST': ['abc']})
with client.test_mode as t:
t.register_json('/settings/all/', all_settings)
t.register_json('/settings/all/', options, method='OPTIONS')
t.register_json('/settings/all/', patched, method='PATCH')
r = self.res.modify('FIRST', "['abc']")
self.assertTrue(r['changed'])
request = t.requests[0]
self.assertEqual(request.method, 'GET')
request = t.requests[1]
self.assertEqual(request.method, 'OPTIONS')
request = t.requests[2]
self.assertEqual(request.method, 'PATCH')
self.assertEqual(request.body, json.dumps({'FIRST': ['abc']}))
def test_update_with_dict(self):
"""A setting's value can be updated with a dict"""
options = {'actions': {'PUT': {'FIRST': {'type': 'nested object'}}}}
all_settings = OrderedDict({'FIRST': []})
patched = OrderedDict({'FIRST': {'abc': 'xyz'}})
with client.test_mode as t:
t.register_json('/settings/all/', all_settings)
t.register_json('/settings/all/', options, method='OPTIONS')
t.register_json('/settings/all/', patched, method='PATCH')
r = self.res.modify('FIRST', "{'abc': 'xyz'}")
self.assertTrue(r['changed'])
request = t.requests[0]
self.assertEqual(request.method, 'GET')
request = t.requests[1]
self.assertEqual(request.method, 'OPTIONS')
request = t.requests[2]
self.assertEqual(request.method, 'PATCH')
self.assertEqual(
request.body,
json.dumps({'FIRST': {'abc': 'xyz'}})
)
def test_idempotent_updates_ignored(self):
"""Don't PATCH a setting if the provided value didn't change"""
all_settings = OrderedDict({'FIRST': 123})
with client.test_mode as t:
t.register_json('/settings/all/', all_settings)
r = self.res.modify('FIRST', '123')
self.assertFalse(r['changed'])
self.assertEqual(len(t.requests), 1)
request = t.requests[0]
self.assertEqual(request.method, 'GET')
def test_encrypted_updates_always_patch(self):
"""Always PATCH a setting if it's an encrypted one"""
options = {'actions': {'PUT': {'SECRET': {'type': 'string'}}}}
all_settings = OrderedDict({'SECRET': '$encrypted$'})
patched = OrderedDict({'SECRET': '$encrypted$'})
with client.test_mode as t:
t.register_json('/settings/all/', all_settings)
t.register_json('/settings/all/', options, method='OPTIONS')
t.register_json('/settings/all/', patched, method='PATCH')
r = self.res.modify('SECRET', 'SENSITIVE')
self.assertTrue(r['changed'])
self.assertEqual(len(t.requests), 3)
request = t.requests[0]
self.assertEqual(request.method, 'GET')
request = t.requests[1]
self.assertEqual(request.method, 'OPTIONS')
request = t.requests[2]
self.assertEqual(request.method, 'PATCH')
self.assertEqual(request.body, json.dumps({'SECRET': 'SENSITIVE'}))
def test_update_invalid_setting_name(self):
"""A setting must exist to be updated"""
all_settings = OrderedDict({'FIRST': 123})
with client.test_mode as t:
t.register_json('/settings/all/', all_settings)
t.register_json('/settings/all/', all_settings, method='PATCH')
self.assertRaises(exc.NotFound, self.res.modify, 'MISSING', 456)