-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathtest_build.py
More file actions
348 lines (305 loc) · 13.3 KB
/
test_build.py
File metadata and controls
348 lines (305 loc) · 13.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
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
"""
Unit tests for the Deis api app.
Run the tests with "./manage.py test api"
"""
import json
from django.contrib.auth.models import User
from django.core.cache import cache
from django.conf import settings
from rest_framework.test import APITransactionTestCase
from unittest import mock
from rest_framework.authtoken.models import Token
from api.models import Build
from . import adapter
import requests_mock
@requests_mock.Mocker(real_http=True, adapter=adapter)
@mock.patch('api.models.release.publish_release', lambda *args: None)
class BuildTest(APITransactionTestCase):
"""Tests build notification from build system"""
fixtures = ['tests.json']
def setUp(self):
self.user = User.objects.get(username='autotest')
self.token = Token.objects.get(user=self.user).key
self.client.credentials(HTTP_AUTHORIZATION='Token ' + self.token)
def tearDown(self):
# make sure every test has a clean slate for k8s mocking
cache.clear()
def test_build(self, mock_requests):
"""
Test that a null build is created and that users can post new builds
"""
url = '/v2/apps'
response = self.client.post(url)
self.assertEqual(response.status_code, 201)
app_id = response.data['id']
# check to see that no initial build was created
url = "/v2/apps/{app_id}/builds".format(**locals())
response = self.client.get(url)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.data['count'], 0)
# post a new build
body = {'image': 'autotest/example'}
response = self.client.post(url, body)
self.assertEqual(response.status_code, 201)
build_id = str(response.data['uuid'])
build1 = response.data
self.assertEqual(response.data['image'], body['image'])
# read the build
url = "/v2/apps/{app_id}/builds/{build_id}".format(**locals())
response = self.client.get(url)
self.assertEqual(response.status_code, 200)
build2 = response.data
self.assertEqual(build1, build2)
# post a new build
url = "/v2/apps/{app_id}/builds".format(**locals())
body = {'image': 'autotest/example'}
response = self.client.post(url, body)
self.assertEqual(response.status_code, 201)
build3 = response.data
self.assertEqual(response.data['image'], body['image'])
self.assertNotEqual(build2['uuid'], build3['uuid'])
# disallow put/patch/delete
response = self.client.put(url)
self.assertEqual(response.status_code, 405)
response = self.client.patch(url)
self.assertEqual(response.status_code, 405)
response = self.client.delete(url)
self.assertEqual(response.status_code, 405)
def test_response_data(self, mock_requests):
"""Test that the serialized response contains only relevant data."""
body = {'id': 'test'}
url = '/v2/apps'
response = self.client.post(url, body)
# post an image as a build
url = "/v2/apps/test/builds".format(**locals())
body = {'image': 'autotest/example'}
response = self.client.post(url, body)
for key in response.data:
self.assertIn(key, ['uuid', 'owner', 'created', 'updated', 'app', 'dockerfile',
'image', 'procfile', 'sha'])
expected = {
'owner': self.user.username,
'app': 'test',
'dockerfile': '',
'image': 'autotest/example',
'procfile': {},
'sha': ''
}
self.assertDictContainsSubset(expected, response.data)
def test_build_default_containers(self, mock_requests):
url = '/v2/apps'
response = self.client.post(url)
self.assertEqual(response.status_code, 201)
app_id = response.data['id']
# post an image as a build
url = "/v2/apps/{app_id}/builds".format(**locals())
body = {'image': 'autotest/example'}
response = self.client.post(url, body)
self.assertEqual(response.status_code, 201)
url = "/v2/apps/{app_id}/pods/cmd".format(**locals())
response = self.client.get(url)
self.assertEqual(response.status_code, 200)
self.assertEqual(len(response.data['results']), 1)
container = response.data['results'][0]
self.assertEqual(container['type'], 'cmd')
self.assertEqual(container['release'], 'v2')
# pod name is auto generated so use regex
self.assertRegex(container['name'], app_id + '-v2-cmd-[a-z0-9]{5}')
# start with a new app
url = '/v2/apps'
response = self.client.post(url)
self.assertEqual(response.status_code, 201)
app_id = response.data['id']
# post a new build with procfile
url = "/v2/apps/{app_id}/builds".format(**locals())
body = {
'image': 'autotest/example',
'sha': 'a'*40,
'dockerfile': "FROM scratch"
}
response = self.client.post(url, body)
self.assertEqual(response.status_code, 201)
url = "/v2/apps/{app_id}/pods/cmd".format(**locals())
response = self.client.get(url)
self.assertEqual(response.status_code, 200)
self.assertEqual(len(response.data['results']), 1)
container = response.data['results'][0]
self.assertEqual(container['type'], 'cmd')
self.assertEqual(container['release'], 'v2')
# pod name is auto generated so use regex
self.assertRegex(container['name'], app_id + '-v2-cmd-[a-z0-9]{5}')
# start with a new app
url = '/v2/apps'
response = self.client.post(url)
self.assertEqual(response.status_code, 201)
app_id = response.data['id']
# post a new build with procfile
url = "/v2/apps/{app_id}/builds".format(**locals())
body = {
'image': 'autotest/example',
'sha': 'a'*40,
'dockerfile': "FROM scratch",
'procfile': {
'worker': 'node worker.js'
}
}
response = self.client.post(url, body)
self.assertEqual(response.status_code, 201)
url = "/v2/apps/{app_id}/pods/cmd".format(**locals())
response = self.client.get(url)
self.assertEqual(response.status_code, 200)
self.assertEqual(len(response.data['results']), 1)
container = response.data['results'][0]
self.assertEqual(container['type'], 'cmd')
self.assertEqual(container['release'], 'v2')
# pod name is auto generated so use regex
self.assertRegex(container['name'], app_id + '-v2-cmd-[a-z0-9]{5}')
# start with a new app
url = '/v2/apps'
response = self.client.post(url)
self.assertEqual(response.status_code, 201)
app_id = response.data['id']
# post a new build with procfile
url = "/v2/apps/{app_id}/builds".format(**locals())
body = {
'image': 'autotest/example',
'sha': 'a'*40,
'procfile': json.dumps({
'web': 'node server.js',
'worker': 'node worker.js'
})
}
response = self.client.post(url, body)
self.assertEqual(response.status_code, 201)
url = "/v2/apps/{app_id}/pods/web".format(**locals())
response = self.client.get(url)
self.assertEqual(response.status_code, 200)
self.assertEqual(len(response.data['results']), 1)
container = response.data['results'][0]
self.assertEqual(container['type'], 'web')
self.assertEqual(container['release'], 'v2')
# pod name is auto generated so use regex
self.assertRegex(container['name'], app_id + '-v2-web-[a-z0-9]{5}')
def test_build_str(self, mock_requests):
"""Test the text representation of a build."""
url = '/v2/apps'
response = self.client.post(url)
self.assertEqual(response.status_code, 201)
app_id = response.data['id']
# post a new build
url = "/v2/apps/{app_id}/builds".format(**locals())
body = {'image': 'autotest/example'}
response = self.client.post(url, body)
self.assertEqual(response.status_code, 201)
build = Build.objects.get(uuid=response.data['uuid'])
self.assertEqual(str(build), "{}-{}".format(
response.data['app'], str(response.data['uuid'])[:7]))
def test_admin_can_create_builds_on_other_apps(self, mock_requests):
"""If a user creates an application, an administrator should be able
to push builds.
"""
# create app as non-admin
user = User.objects.get(username='autotest2')
token = Token.objects.get(user=user).key
self.client.credentials(HTTP_AUTHORIZATION='Token ' + token)
url = '/v2/apps'
response = self.client.post(url)
self.assertEqual(response.status_code, 201)
app_id = response.data['id']
# post a new build as admin
self.client.credentials(HTTP_AUTHORIZATION='Token ' + self.token)
url = "/v2/apps/{app_id}/builds".format(**locals())
body = {'image': 'autotest/example'}
response = self.client.post(url, body)
self.assertEqual(response.status_code, 201)
build = Build.objects.get(uuid=response.data['uuid'])
self.assertEqual(str(build), "{}-{}".format(
response.data['app'], str(response.data['uuid'])[:7]))
def test_unauthorized_user_cannot_modify_build(self, mock_requests):
"""
An unauthorized user should not be able to modify other builds.
Since an unauthorized user can't access the application, these
requests should return a 403.
"""
app_id = 'autotest'
url = '/v2/apps'
body = {'id': app_id}
response = self.client.post(url, body)
unauthorized_user = User.objects.get(username='autotest2')
unauthorized_token = Token.objects.get(user=unauthorized_user).key
self.client.credentials(HTTP_AUTHORIZATION='Token ' + unauthorized_token)
url = '{}/{}/builds'.format(url, app_id)
body = {'image': 'foo'}
response = self.client.post(url, body)
self.assertEqual(response.status_code, 403)
def test_new_build_does_not_scale_up_automatically(self, mock_requests):
"""
After the first initial deploy, if the containers are scaled down to zero,
they should stay that way on a new release.
"""
url = '/v2/apps'
response = self.client.post(url)
self.assertEqual(response.status_code, 201)
app_id = response.data['id']
# post a new build
url = "/v2/apps/{app_id}/builds".format(**locals())
body = {
'image': 'autotest/example',
'sha': 'a'*40,
'procfile': json.dumps({
'web': 'node server.js',
'worker': 'node worker.js'
})
}
response = self.client.post(url, body)
self.assertEqual(response.status_code, 201)
url = "/v2/apps/{app_id}/pods/web".format(**locals())
response = self.client.get(url)
self.assertEqual(response.status_code, 200)
self.assertEqual(len(response.data['results']), 1)
# scale to zero
url = "/v2/apps/{app_id}/scale".format(**locals())
body = {'web': 0}
response = self.client.post(url, body)
self.assertEqual(response.status_code, 204)
# post another build
url = "/v2/apps/{app_id}/builds".format(**locals())
body = {
'image': 'autotest/example',
'sha': 'a'*40,
'procfile': json.dumps({
'web': 'node server.js',
'worker': 'node worker.js'
})
}
response = self.client.post(url, body)
self.assertEqual(response.status_code, 201)
url = "/v2/apps/{app_id}/pods/web".format(**locals())
response = self.client.get(url)
self.assertEqual(response.status_code, 200)
self.assertEqual(len(response.data['results']), 0)
def test_build_image_in_registry(self, mock_requests):
"""When the image is already in the deis registry no pull/tag/push happens"""
body = {'id': 'test'}
url = '/v2/apps'
response = self.client.post(url, body)
# post an image as a build using registry hostname
url = "/v2/apps/test/builds".format(**locals())
image = '{}/autotest/example'.format(settings.REGISTRY_HOST)
body = {'image': image}
response = self.client.post(url, body)
self.assertEqual(response.status_code, 201)
build = Build.objects.get(uuid=response.data['uuid'])
release = build.app.release_set.latest()
# Registry host is internally stripped off
self.assertEqual(release.image, 'autotest/example')
# post an image as a build using registry hostname + port
url = "/v2/apps/test/builds".format(**locals())
image = '{}/autotest/example'.format(settings.REGISTRY_URL)
body = {'image': image}
response = self.client.post(url, body)
self.assertEqual(response.status_code, 201)
build = Build.objects.get(uuid=response.data['uuid'])
release = build.app.release_set.latest()
# Registry host + port is internally stripped off
self.assertEqual(release.image, 'autotest/example')