-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtest_config.py
More file actions
123 lines (110 loc) · 5.46 KB
/
test_config.py
File metadata and controls
123 lines (110 loc) · 5.46 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
"""
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'))
body = {'id': 'autotest', 'domain': 'autotest.local', 'type': 'mock',
'hosts': 'host1,host2', 'auth': 'base64string', 'options': {}}
response = self.client.post('/api/clusters', json.dumps(body),
content_type='application/json')
self.assertEqual(response.status_code, 201)
def test_config(self):
"""
Test that config is auto-created for a new app and that
config can be updated using a PATCH
"""
url = '/api/apps'
body = {'cluster': '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)
self.assertIn('x-deis-release', response._headers)
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_set_same_key(self):
"""
Test that config sets on the same key function properly
"""
url = '/api/apps'
body = {'cluster': 'autotest'}
response = self.client.post(url, json.dumps(body), content_type='application/json')
self.assertEqual(response.status_code, 201)
app_id = response.data['id']
url = "/api/apps/{app_id}/config".format(**locals())
# set an initial config value
body = {'values': json.dumps({'PORT': '5000'})}
response = self.client.post(url, json.dumps(body), content_type='application/json')
self.assertEqual(response.status_code, 201)
self.assertIn('PORT', json.loads(response.data['values']))
# reset same config value
body = {'values': json.dumps({'PORT': '5001'})}
response = self.client.post(url, json.dumps(body), content_type='application/json')
self.assertEqual(response.status_code, 201)
self.assertIn('PORT', json.loads(response.data['values']))
self.assertEqual(json.loads(response.data['values'])['PORT'], '5001')
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), "{}-{}".format(config5['app'], config5['uuid'][:7]))