-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathtest_node.py
More file actions
281 lines (264 loc) · 14.3 KB
/
test_node.py
File metadata and controls
281 lines (264 loc) · 14.3 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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
"""
Unit tests for the Deis api app.
Run these tests with "./manage.py test api.tests.test_node"
"""
from __future__ import unicode_literals
import json
from django.test import TestCase
from django.test.utils import override_settings
from api.models import Node
@override_settings(CELERY_ALWAYS_EAGER=True)
class NodeTest(TestCase):
"""Tests creation of nodes"""
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': 'A' * 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', 'instance_size': 'm1.medium'})}
response = self.client.post(url, json.dumps(body), content_type='application/json')
self.assertEqual(response.status_code, 201)
def test_node(self):
"""
Test that a user can create, read, update and delete a node
"""
url = '/api/formations'
body = {'id': 'autotest', 'domain': 'localhost.localdomain'}
response = self.client.post(url, json.dumps(body), content_type='application/json')
self.assertEqual(response.status_code, 201)
formation_id = response.data['id']
url = '/api/formations/{formation_id}/layers'.format(**locals())
body = {'id': 'runtime', 'flavor': 'autotest', 'run_list': 'recipe[deis::runtime]'}
response = self.client.post(url, json.dumps(body), content_type='application/json')
self.assertEqual(response.status_code, 201)
# should start with zero
url = '/api/formations/{formation_id}/nodes'.format(**locals())
response = self.client.get(url)
self.assertEqual(response.status_code, 200)
self.assertEqual(len(response.data['results']), 0)
# scale up
url = '/api/formations/{formation_id}/scale'.format(**locals())
body = {'runtime': 1}
response = self.client.post(url, json.dumps(body), content_type='application/json')
self.assertEqual(response.status_code, 200)
url = '/api/formations/{formation_id}/nodes'.format(**locals())
response = self.client.get(url)
self.assertEqual(response.status_code, 200)
self.assertEqual(len(response.data['results']), 1)
node = response.data['results'][0]['id']
url = '/api/formations/{formation_id}/nodes/{node}'.format(**locals())
response = self.client.get(url)
self.assertEqual(response.status_code, 200)
# query alternate nodes endpoints
url = '/api/nodes'.format(**locals())
response = self.client.get(url)
self.assertEqual(response.status_code, 200)
self.assertEqual(len(response.data['results']), 1)
node = response.data['results'][0]['id']
url = '/api/nodes/{node}'.format(**locals())
response = self.client.get(url)
self.assertEqual(response.status_code, 200)
self.assertIn('fqdn', response.data)
response = self.client.delete(url)
self.assertEqual(response.status_code, 204)
def test_node_scale(self):
url = '/api/formations'
body = {'id': 'autotest', 'domain': 'localhost.localdomain'}
response = self.client.post(url, json.dumps(body), content_type='application/json')
self.assertEqual(response.status_code, 201)
formation_id = response.data['id'] # noqa
url = '/api/formations/{formation_id}/layers'.format(**locals())
body = {'id': 'proxy', 'flavor': 'autotest', 'run_list': 'recipe[deis::proxy]',
'runtime': False, 'proxy': True}
response = self.client.post(url, json.dumps(body), content_type='application/json')
self.assertEqual(response.status_code, 201)
url = '/api/formations/{formation_id}/layers'.format(**locals())
body = {'id': 'runtime', 'flavor': 'autotest', 'run_list': 'recipe[deis::runtime]',
'runtime': True, 'proxy': False}
response = self.client.post(url, json.dumps(body), content_type='application/json')
self.assertEqual(response.status_code, 201)
url = '/api/formations/{formation_id}/layers'.format(**locals())
response = self.client.get(url)
self.assertEqual(response.status_code, 200)
self.assertEqual(len(response.data['results']), 2)
# should start with zero
url = '/api/formations/{formation_id}/nodes'.format(**locals())
response = self.client.get(url)
self.assertEqual(response.status_code, 200)
self.assertEqual(len(response.data['results']), 0)
# scale up
url = '/api/formations/{formation_id}/scale'.format(**locals())
body = {'proxy': 2, 'runtime': 4}
response = self.client.post(url, json.dumps(body), content_type='application/json')
self.assertEqual(response.status_code, 200)
url = '/api/formations/{formation_id}'.format(**locals())
response = self.client.get(url)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.data['nodes'], json.dumps(body))
url = '/api/formations/{formation_id}/nodes'.format(**locals())
response = self.client.get(url)
self.assertEqual(response.status_code, 200)
self.assertEqual(len(response.data['results']), 6)
# scale down
url = '/api/formations/{formation_id}/scale'.format(**locals())
body = {'proxy': 1, 'runtime': 2}
response = self.client.post(url, json.dumps(body), content_type='application/json')
self.assertEqual(response.status_code, 200)
url = '/api/formations/{formation_id}/nodes'.format(**locals())
response = self.client.get(url)
self.assertEqual(response.status_code, 200)
self.assertEqual(len(response.data['results']), 3)
url = '/api/formations/{formation_id}'.format(**locals())
response = self.client.get(url)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.data['nodes'], json.dumps(body))
# scale down to 0
url = '/api/formations/{formation_id}/scale'.format(**locals())
body = {'proxy': 0, 'runtime': 0}
response = self.client.post(url, json.dumps(body), content_type='application/json')
self.assertEqual(response.status_code, 200)
url = '/api/formations/{formation_id}/nodes'.format(**locals())
response = self.client.get(url)
self.assertEqual(response.status_code, 200)
self.assertEqual(len(response.data['results']), 0)
url = '/api/formations/{formation_id}'.format(**locals())
response = self.client.get(url)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.data['nodes'], json.dumps(body))
def test_node_scale_errors(self):
url = '/api/formations'
body = {'id': 'autotest'}
response = self.client.post(url, json.dumps(body), content_type='application/json')
self.assertEqual(response.status_code, 201)
formation_id = response.data['id'] # noqa
url = '/api/formations/{formation_id}/scale'.format(**locals())
body = {'runtime': 'not_an_int'}
response = self.client.post(url, json.dumps(body), content_type='application/json')
self.assertContains(response, 'Invalid scaling format', status_code=400)
body = {'runtime': '1'}
response = self.client.post(url, json.dumps(body), content_type='application/json')
self.assertContains(response, 'Layer matching query does not exist', status_code=400)
url = '/api/providers/autotest'
body = {'creds': json.dumps({})}
response = self.client.patch(url, json.dumps(body), content_type='application/json')
self.assertEqual(response.status_code, 200)
url = '/api/formations/{formation_id}/layers'.format(**locals())
body = {'id': 'runtime', 'flavor': 'autotest', 'run_list': 'recipe[deis::runtime]'}
response = self.client.post(url, json.dumps(body), content_type='application/json')
self.assertEqual(response.status_code, 201)
url = '/api/formations/{formation_id}/scale'.format(**locals())
body = {'runtime': 1}
response = self.client.post(url, json.dumps(body), content_type='application/json')
self.assertContains(response, 'No provider credentials available', status_code=400)
def test_node_actions(self):
url = '/api/formations'
body = {'id': 'autotest'}
response = self.client.post(url, json.dumps(body), content_type='application/json')
self.assertEqual(response.status_code, 201)
formation_id = response.data['id']
url = '/api/formations/{formation_id}/layers'.format(**locals())
body = {'id': 'runtime', 'flavor': 'autotest', 'runtime': True}
response = self.client.post(url, json.dumps(body), content_type='application/json')
self.assertEqual(response.status_code, 201)
url = '/api/formations/{formation_id}/scale'.format(**locals())
body = {'runtime': 1}
response = self.client.post(url, json.dumps(body), content_type='application/json')
self.assertEqual(response.status_code, 200)
# get our node
url = '/api/formations/{formation_id}/nodes'.format(**locals())
response = self.client.get(url)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.data['count'], 1)
node_id = response.data['results'][0]['id']
url = '/api/formations/{formation_id}/nodes/{node_id}'.format(**locals())
response = self.client.get(url)
self.assertEqual(response.status_code, 200)
self.assertEqual(node_id, response.data['id'])
node = response.data
url = '/api/nodes/{id}/converge'.format(**node)
response = self.client.post(url)
self.assertEqual(response.status_code, 200)
def test_node_create(self):
url = '/api/formations'
body = {'id': 'autotest'}
response = self.client.post(url, json.dumps(body), content_type='application/json')
self.assertEqual(response.status_code, 201)
formation_id = response.data['id']
url = '/api/formations/{formation_id}/layers'.format(**locals())
body = {'id': 'runtime', 'flavor': 'autotest', 'runtime': True}
response = self.client.post(url, json.dumps(body), content_type='application/json')
self.assertEqual(response.status_code, 201)
# create a node for an existing instance
url = '/api/formations/{formation_id}/nodes'.format(**locals())
body = {'fqdn': 'example.com', 'layer': 'runtime'}
response = self.client.post(url, json.dumps(body), content_type='application/json')
self.assertEqual(response.status_code, 201)
# create it again, expecting an error
url = '/api/formations/{formation_id}/nodes'.format(**locals())
body = {'fqdn': 'example.com', 'layer': 'runtime'}
response = self.client.post(url, json.dumps(body), content_type='application/json')
self.assertEqual(response.status_code, 409)
# get our node
url = '/api/formations/{formation_id}/nodes'.format(**locals())
response = self.client.get(url)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.data['count'], 1)
node_id = response.data['results'][0]['id']
url = '/api/formations/{formation_id}/nodes/{node_id}'.format(**locals())
response = self.client.get(url)
self.assertEqual(response.status_code, 200)
self.assertEqual(node_id, response.data['id'])
node = response.data
# delete our node
response = self.client.delete(url)
self.assertEqual(response.status_code, 204)
# check the node is gone
url = '/api/formations/{formation_id}/nodes'.format(**locals())
response = self.client.get(url)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.data['count'], 0)
def test_node_create_errors(self):
url = '/api/formations'
body = {'id': 'autotest'}
response = self.client.post(url, json.dumps(body), content_type='application/json')
self.assertEqual(response.status_code, 201)
formation_id = response.data['id']
url = '/api/formations/{formation_id}/layers'.format(**locals())
body = {'id': 'runtime', 'flavor': 'autotest', 'runtime': True}
response = self.client.post(url, json.dumps(body), content_type='application/json')
self.assertEqual(response.status_code, 201)
# create a node for an existing instance
url = '/api/formations/{formation_id}/nodes'.format(**locals())
body = {'fqdn': 'error', 'layer': 'runtime'}
response = self.client.post(url, json.dumps(body), content_type='application/json')
self.assertEqual(response.status_code, 401)
def test_node_str(self):
"""Test the text representation of a node."""
url = '/api/formations'
body = {'id': 'autotest'}
response = self.client.post(url, json.dumps(body), content_type='application/json')
self.assertEqual(response.status_code, 201)
formation_id = response.data['id']
url = '/api/formations/{formation_id}/layers'.format(**locals())
body = {'id': 'runtime', 'flavor': 'autotest', 'runtime': True}
response = self.client.post(url, json.dumps(body), content_type='application/json')
self.assertEqual(response.status_code, 201)
# create a node for an existing instance
url = '/api/formations/{formation_id}/nodes'.format(**locals())
body = {'fqdn': 'example.com', 'layer': 'runtime'}
response = self.client.post(url, json.dumps(body), content_type='application/json')
self.assertEqual(response.status_code, 201)
# get our node
url = '/api/formations/{formation_id}/nodes'.format(**locals())
response = self.client.get(url)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.data['count'], 1)
node_id = response.data['results'][0]['id']
node = Node.objects.get(id=node_id)
self.assertEqual(str(node), 'autotest-runtime-1')