-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtest_config.py
More file actions
109 lines (97 loc) · 4.79 KB
/
test_config.py
File metadata and controls
109 lines (97 loc) · 4.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
"""
Unit tests for the Deis api app.
Run the tests with "./manage.py test api"
"""
from __future__ import unicode_literals
import json
from django.test import TestCase
from django.test.utils import override_settings
from api.models import Config
@override_settings(CELERY_ALWAYS_EAGER=True)
class ConfigTest(TestCase):
"""Tests setting and updating config values"""
fixtures = ['tests.json']
def setUp(self):
self.assertTrue(
self.client.login(username='autotest', password='password'))
url = '/api/providers'
creds = {'secret_key': 'x' * 64, 'access_key': 1 * 20}
body = {'id': 'autotest', 'type': 'mock', 'creds': json.dumps(creds)}
response = self.client.post(url, json.dumps(body), content_type='application/json')
self.assertEqual(response.status_code, 201)
url = '/api/flavors'
body = {'id': 'autotest', 'provider': 'autotest',
'params': json.dumps({'region': 'us-west-2'})}
response = self.client.post(url, json.dumps(body), content_type='application/json')
self.assertEqual(response.status_code, 201)
response = self.client.post('/api/formations', json.dumps(
{'id': 'autotest', 'domain': 'localhost.localdomain'}),
content_type='application/json')
self.assertEqual(response.status_code, 201)
def test_config(self):
"""
Test that config is auto-created during a new formation and that
new versions can be created using a PATCH
"""
url = '/api/apps'
body = {'formation': 'autotest'}
response = self.client.post(url, json.dumps(body), content_type='application/json')
self.assertEqual(response.status_code, 201)
app_id = response.data['id']
# check to see that an initial/empty config was created
url = "/api/apps/{app_id}/config".format(**locals())
response = self.client.get(url)
self.assertEqual(response.status_code, 200)
self.assertIn('values', response.data)
self.assertEqual(response.data['values'], json.dumps({}))
config1 = response.data
# set an initial config value
body = {'values': json.dumps({'NEW_URL1': 'http://localhost:8080/'})}
response = self.client.post(url, json.dumps(body), content_type='application/json')
self.assertEqual(response.status_code, 201)
config2 = response.data
self.assertNotEqual(config1['uuid'], config2['uuid'])
self.assertIn('NEW_URL1', json.loads(response.data['values']))
# read the config
response = self.client.get(url)
self.assertEqual(response.status_code, 200)
config3 = response.data
self.assertEqual(config2, config3)
self.assertIn('NEW_URL1', json.loads(response.data['values']))
# set an additional config value
body = {'values': json.dumps({'NEW_URL2': 'http://localhost:8080/'})}
response = self.client.post(url, json.dumps(body), content_type='application/json')
self.assertEqual(response.status_code, 201)
config3 = response.data
self.assertNotEqual(config2['uuid'], config3['uuid'])
self.assertIn('NEW_URL1', json.loads(response.data['values']))
self.assertIn('NEW_URL2', json.loads(response.data['values']))
# read the config again
response = self.client.get(url)
self.assertEqual(response.status_code, 200)
config4 = response.data
self.assertEqual(config3, config4)
self.assertIn('NEW_URL1', json.loads(response.data['values']))
self.assertIn('NEW_URL2', json.loads(response.data['values']))
# unset a config value
body = {'values': json.dumps({'NEW_URL2': None})}
response = self.client.post(url, json.dumps(body), content_type='application/json')
self.assertEqual(response.status_code, 201)
config5 = response.data
self.assertNotEqual(config4['uuid'], config5['uuid'])
self.assertNotIn('NEW_URL2', json.dumps(response.data['values']))
# unset all config values
body = {'values': json.dumps({'NEW_URL1': None})}
response = self.client.post(url, json.dumps(body), content_type='application/json')
self.assertEqual(response.status_code, 201)
self.assertNotIn('NEW_URL1', json.dumps(response.data['values']))
# disallow put/patch/delete
self.assertEqual(self.client.put(url).status_code, 405)
self.assertEqual(self.client.patch(url).status_code, 405)
self.assertEqual(self.client.delete(url).status_code, 405)
return config5
def test_config_str(self):
"""Test the text representation of a node."""
config5 = self.test_config()
config = Config.objects.get(uuid=config5['uuid'])
self.assertEqual(str(config), "{}-v4".format(config5['app']))