-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtest_container.py
More file actions
636 lines (608 loc) · 33.7 KB
/
test_container.py
File metadata and controls
636 lines (608 loc) · 33.7 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
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
"""
Unit tests for the Deis api app.
Run the tests with "./manage.py test api"
"""
from __future__ import unicode_literals
import json
import mock
import requests
from django.contrib.auth.models import User
from django.test import TransactionTestCase
from scheduler.states import TransitionNotAllowed
from rest_framework.authtoken.models import Token
from api.models import App, Build, Container, Release
def mock_import_repository_task(*args, **kwargs):
resp = requests.Response()
resp.status_code = 200
resp._content_consumed = True
return resp
class ContainerTest(TransactionTestCase):
"""Tests creation of containers on nodes"""
fixtures = ['tests.json']
def setUp(self):
self.user = User.objects.get(username='autotest')
self.token = Token.objects.get(user=self.user).key
def test_container_state_good(self):
"""Test that the finite state machine transitions with a good scheduler"""
url = '/v1/apps'
response = self.client.post(url, HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 201)
app_id = response.data['id']
app = App.objects.get(id=app_id)
user = User.objects.get(username='autotest')
build = Build.objects.create(owner=user, app=app, image="qwerty")
# create an initial release
release = Release.objects.create(version=2,
owner=user,
app=app,
config=app.config_set.latest(),
build=build)
# create a container
c = Container.objects.create(owner=user,
app=app,
release=release,
type='web',
num=1)
self.assertEqual(c.state, 'initialized')
# test an illegal transition
self.assertRaises(TransitionNotAllowed, lambda: c.start())
c.create()
self.assertEqual(c.state, 'created')
c.start()
self.assertEqual(c.state, 'up')
c.destroy()
self.assertEqual(c.state, 'destroyed')
def test_container_state_protected(self):
"""Test that you cannot directly modify the state"""
url = '/v1/apps'
response = self.client.post(url, HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 201)
app_id = response.data['id']
app = App.objects.get(id=app_id)
user = User.objects.get(username='autotest')
build = Build.objects.create(owner=user, app=app, image="qwerty")
# create an initial release
release = Release.objects.create(version=2,
owner=user,
app=app,
config=app.config_set.latest(),
build=build)
# create a container
c = Container.objects.create(owner=user,
app=app,
release=release,
type='web',
num=1)
self.assertRaises(AttributeError, lambda: setattr(c, 'state', 'up'))
def test_container_api_heroku(self):
url = '/v1/apps'
response = self.client.post(url, HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 201)
app_id = response.data['id']
# should start with zero
url = "/v1/apps/{app_id}/containers".format(**locals())
response = self.client.get(url, HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 200)
self.assertEqual(len(response.data['results']), 0)
# post a new build
url = "/v1/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, json.dumps(body), content_type='application/json',
HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 201)
# scale up
url = "/v1/apps/{app_id}/scale".format(**locals())
# test setting one proc type at a time
body = {'web': 4}
response = self.client.post(url, json.dumps(body), content_type='application/json',
HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 204)
body = {'worker': 2}
response = self.client.post(url, json.dumps(body), content_type='application/json',
HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 204)
url = "/v1/apps/{app_id}/containers".format(**locals())
response = self.client.get(url, HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 200)
self.assertEqual(len(response.data['results']), 6)
url = "/v1/apps/{app_id}".format(**locals())
response = self.client.get(url, HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 200)
# ensure the structure field is up-to-date
self.assertEqual(response.data['structure']['web'], 4)
self.assertEqual(response.data['structure']['worker'], 2)
# test listing/retrieving container info
url = "/v1/apps/{app_id}/containers/web".format(**locals())
response = self.client.get(url, HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 200)
self.assertEqual(len(response.data['results']), 4)
num = response.data['results'][0]['num']
url = "/v1/apps/{app_id}/containers/web/{num}".format(**locals())
response = self.client.get(url, HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 200)
self.assertEqual(response.data['num'], num)
# scale down
url = "/v1/apps/{app_id}/scale".format(**locals())
# test setting two proc types at a time
body = {'web': 2, 'worker': 1}
response = self.client.post(url, json.dumps(body), content_type='application/json',
HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 204)
url = "/v1/apps/{app_id}/containers".format(**locals())
response = self.client.get(url, HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 200)
self.assertEqual(len(response.data['results']), 3)
self.assertEqual(max(c['num'] for c in response.data['results']), 2)
url = "/v1/apps/{app_id}".format(**locals())
response = self.client.get(url, HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 200)
# ensure the structure field is up-to-date
self.assertEqual(response.data['structure']['web'], 2)
self.assertEqual(response.data['structure']['worker'], 1)
# scale down to 0
url = "/v1/apps/{app_id}/scale".format(**locals())
body = {'web': 0, 'worker': 0}
response = self.client.post(url, json.dumps(body), content_type='application/json',
HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 204)
url = "/v1/apps/{app_id}/containers".format(**locals())
response = self.client.get(url, HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 200)
self.assertEqual(len(response.data['results']), 0)
url = "/v1/apps/{app_id}".format(**locals())
response = self.client.get(url, HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 200)
@mock.patch('requests.post', mock_import_repository_task)
def test_container_api_docker(self):
url = '/v1/apps'
response = self.client.post(url, HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 201)
app_id = response.data['id']
# should start with zero
url = "/v1/apps/{app_id}/containers".format(**locals())
response = self.client.get(url, HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 200)
self.assertEqual(len(response.data['results']), 0)
# post a new build
url = "/v1/apps/{app_id}/builds".format(**locals())
body = {'image': 'autotest/example', 'dockerfile': "FROM busybox\nCMD /bin/true"}
response = self.client.post(url, json.dumps(body), content_type='application/json',
HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 201)
# scale up
url = "/v1/apps/{app_id}/scale".format(**locals())
body = {'cmd': 6}
response = self.client.post(url, json.dumps(body), content_type='application/json',
HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 204)
url = "/v1/apps/{app_id}/containers".format(**locals())
response = self.client.get(url, HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 200)
self.assertEqual(len(response.data['results']), 6)
url = "/v1/apps/{app_id}".format(**locals())
response = self.client.get(url, HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 200)
# test listing/retrieving container info
url = "/v1/apps/{app_id}/containers/cmd".format(**locals())
response = self.client.get(url, HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 200)
self.assertEqual(len(response.data['results']), 6)
# scale down
url = "/v1/apps/{app_id}/scale".format(**locals())
body = {'cmd': 3}
response = self.client.post(url, json.dumps(body), content_type='application/json',
HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 204)
url = "/v1/apps/{app_id}/containers".format(**locals())
response = self.client.get(url, HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 200)
self.assertEqual(len(response.data['results']), 3)
self.assertEqual(max(c['num'] for c in response.data['results']), 3)
url = "/v1/apps/{app_id}".format(**locals())
response = self.client.get(url, HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 200)
# scale down to 0
url = "/v1/apps/{app_id}/scale".format(**locals())
body = {'cmd': 0}
response = self.client.post(url, json.dumps(body), content_type='application/json',
HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 204)
url = "/v1/apps/{app_id}/containers".format(**locals())
response = self.client.get(url, HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 200)
self.assertEqual(len(response.data['results']), 0)
url = "/v1/apps/{app_id}".format(**locals())
response = self.client.get(url, HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 200)
@mock.patch('requests.post', mock_import_repository_task)
def test_container_release(self):
url = '/v1/apps'
response = self.client.post(url, HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 201)
app_id = response.data['id']
# should start with zero
url = "/v1/apps/{app_id}/containers".format(**locals())
response = self.client.get(url, HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 200)
self.assertEqual(len(response.data['results']), 0)
# post a new build
url = "/v1/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, json.dumps(body), content_type='application/json',
HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 201)
# scale up
url = "/v1/apps/{app_id}/scale".format(**locals())
body = {'web': 1}
response = self.client.post(url, json.dumps(body), content_type='application/json',
HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 204)
url = "/v1/apps/{app_id}/containers".format(**locals())
response = self.client.get(url, HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 200)
self.assertEqual(len(response.data['results']), 1)
self.assertEqual(response.data['results'][0]['release'], 'v2')
# post a new build
url = "/v1/apps/{app_id}/builds".format(**locals())
# a web proctype must exist on the second build or else the container will be removed
body = {'image': 'autotest/example', 'procfile': {'web': 'echo hi'}}
response = self.client.post(url, json.dumps(body), content_type='application/json',
HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 201)
self.assertEqual(response.data['image'], body['image'])
url = "/v1/apps/{app_id}/containers".format(**locals())
response = self.client.get(url, HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 200)
self.assertEqual(len(response.data['results']), 1)
self.assertEqual(response.data['results'][0]['release'], 'v3')
# post new config
url = "/v1/apps/{app_id}/config".format(**locals())
body = {'values': json.dumps({'KEY': 'value'})}
response = self.client.post(url, json.dumps(body), content_type='application/json',
HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 201)
url = "/v1/apps/{app_id}/containers".format(**locals())
response = self.client.get(url, HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 200)
self.assertEqual(len(response.data['results']), 1)
self.assertEqual(response.data['results'][0]['release'], 'v4')
def test_container_errors(self):
url = '/v1/apps'
response = self.client.post(url, HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 201)
app_id = response.data['id']
# create a release so we can scale
app = App.objects.get(id=app_id)
user = User.objects.get(username='autotest')
build = Build.objects.create(owner=user, app=app, image="qwerty")
# create an initial release
Release.objects.create(version=2,
owner=user,
app=app,
config=app.config_set.latest(),
build=build)
url = "/v1/apps/{app_id}/scale".format(**locals())
body = {'web': 'not_an_int'}
response = self.client.post(url, json.dumps(body), content_type='application/json',
HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 400)
self.assertEqual(response.data, {'detail': 'Invalid scaling format'})
body = {'invalid': 1}
response = self.client.post(url, json.dumps(body), content_type='application/json',
HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertContains(response, 'Container type invalid', status_code=400)
def test_container_str(self):
"""Test the text representation of a container."""
url = '/v1/apps'
response = self.client.post(url, HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 201)
app_id = response.data['id']
# post a new build
url = "/v1/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, json.dumps(body), content_type='application/json',
HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 201)
# scale up
url = "/v1/apps/{app_id}/scale".format(**locals())
body = {'web': 4, 'worker': 2}
response = self.client.post(url, json.dumps(body), content_type='application/json',
HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 204)
# should start with zero
url = "/v1/apps/{app_id}/containers".format(**locals())
response = self.client.get(url, HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 200)
self.assertEqual(len(response.data['results']), 6)
uuid = response.data['results'][0]['uuid']
container = Container.objects.get(uuid=uuid)
self.assertEqual(container.short_name(),
"{}.{}.{}".format(container.app, container.type, container.num))
self.assertEqual(str(container),
"{}.{}.{}".format(container.app, container.type, container.num))
def test_container_command_format(self):
# regression test for https://github.com/deis/deis/pull/1285
url = '/v1/apps'
response = self.client.post(url, HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 201)
app_id = response.data['id']
# post a new build
url = "/v1/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, json.dumps(body), content_type='application/json',
HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 201)
# scale up
url = "/v1/apps/{app_id}/scale".format(**locals())
body = {'web': 1}
response = self.client.post(url, json.dumps(body), content_type='application/json',
HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 204)
url = "/v1/apps/{app_id}/containers".format(**locals())
response = self.client.get(url, HTTP_AUTHORIZATION='token {}'.format(self.token))
# verify that the container._command property got formatted
self.assertEqual(response.status_code, 200)
self.assertEqual(len(response.data['results']), 1)
uuid = response.data['results'][0]['uuid']
container = Container.objects.get(uuid=uuid)
self.assertNotIn('{c_type}', container._command)
def test_container_scale_errors(self):
url = '/v1/apps'
response = self.client.post(url, HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 201)
app_id = response.data['id']
# should start with zero
url = "/v1/apps/{app_id}/containers".format(**locals())
response = self.client.get(url, HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 200)
self.assertEqual(len(response.data['results']), 0)
# post a new build
url = "/v1/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, json.dumps(body), content_type='application/json',
HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 201)
# scale to a negative number
url = "/v1/apps/{app_id}/scale".format(**locals())
body = {'web': -1}
response = self.client.post(url, json.dumps(body), content_type='application/json',
HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 400)
# scale to something other than a number
url = "/v1/apps/{app_id}/scale".format(**locals())
body = {'web': 'one'}
response = self.client.post(url, json.dumps(body), content_type='application/json',
HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 400)
# scale to something other than a number
url = "/v1/apps/{app_id}/scale".format(**locals())
body = {'web': [1]}
response = self.client.post(url, json.dumps(body), content_type='application/json',
HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 400)
# scale up to an integer as a sanity check
url = "/v1/apps/{app_id}/scale".format(**locals())
body = {'web': 1}
response = self.client.post(url, json.dumps(body), content_type='application/json',
HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 204)
def test_admin_can_manage_other_containers(self):
"""If a non-admin user creates a container, an administrator should be able to
manage it.
"""
user = User.objects.get(username='autotest2')
token = Token.objects.get(user=user).key
url = '/v1/apps'
response = self.client.post(url, HTTP_AUTHORIZATION='token {}'.format(token))
self.assertEqual(response.status_code, 201)
app_id = response.data['id']
# post a new build
url = "/v1/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, json.dumps(body), content_type='application/json',
HTTP_AUTHORIZATION='token {}'.format(token))
self.assertEqual(response.status_code, 201)
# login as admin, scale up
url = "/v1/apps/{app_id}/scale".format(**locals())
body = {'web': 4, 'worker': 2}
response = self.client.post(url, json.dumps(body), content_type='application/json',
HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 204)
def test_scale_without_build_should_error(self):
"""A user should not be able to scale processes unless a build is present."""
app_id = 'autotest'
url = '/v1/apps'
body = {'cluster': 'autotest', 'id': app_id}
response = self.client.post(url, json.dumps(body), content_type='application/json',
HTTP_AUTHORIZATION='token {}'.format(self.token))
url = '/v1/apps/{app_id}/scale'.format(**locals())
body = {'web': '1'}
response = self.client.post(url, json.dumps(body), content_type='application/json',
HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 400)
self.assertEqual(response.data, {'detail': 'No build associated with this release'})
def test_command_good(self):
"""Test the default command for each container workflow"""
url = '/v1/apps'
response = self.client.post(url, HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 201)
app_id = response.data['id']
app = App.objects.get(id=app_id)
user = User.objects.get(username='autotest')
# Heroku Buildpack app
build = Build.objects.create(owner=user,
app=app,
image="qwerty",
procfile={'web': 'node server.js',
'worker': 'node worker.js'},
sha='african-swallow',
dockerfile='')
# create an initial release
release = Release.objects.create(version=2,
owner=user,
app=app,
config=app.config_set.latest(),
build=build)
# create a container
c = Container.objects.create(owner=user,
app=app,
release=release,
type='web',
num=1)
# use `start web` for backwards compatibility with slugrunner
self.assertEqual(c._command, 'start web')
c.type = 'worker'
self.assertEqual(c._command, 'start worker')
# switch to docker image app
build.sha = None
c.type = 'web'
self.assertEqual(c._command, "bash -c 'node server.js'")
# switch to dockerfile app
build.sha = 'european-swallow'
build.dockerfile = 'dockerdockerdocker'
self.assertEqual(c._command, "bash -c 'node server.js'")
c.type = 'cmd'
self.assertEqual(c._command, '')
# ensure we can override the cmd process type in a Procfile
build.procfile['cmd'] = 'node server.js'
self.assertEqual(c._command, "bash -c 'node server.js'")
c.type = 'worker'
self.assertEqual(c._command, "bash -c 'node worker.js'")
c.release.build.procfile = None
# for backwards compatibility if no Procfile is supplied
self.assertEqual(c._command, 'start worker')
def test_run_command_good(self):
"""Test the run command for each container workflow"""
url = '/v1/apps'
response = self.client.post(url, HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 201)
app_id = response.data['id']
app = App.objects.get(id=app_id)
user = User.objects.get(username='autotest')
# dockerfile + procfile worflow
build = Build.objects.create(owner=user,
app=app,
image="qwerty",
procfile={'web': 'node server.js',
'worker': 'node worker.js'},
dockerfile='foo',
sha='somereallylongsha')
# create an initial release
release = Release.objects.create(version=2,
owner=user,
app=app,
config=app.config_set.latest(),
build=build)
# create a container
c = Container.objects.create(owner=user,
app=app,
release=release,
type='web',
num=1)
rc, output = c.run('echo hi')
self.assertEqual(rc, 0)
self.assertEqual(json.loads(output)['entrypoint'], '/bin/bash')
# docker image workflow
build.dockerfile = None
build.sha = None
rc, output = c.run('echo hi')
self.assertEqual(json.loads(output)['entrypoint'], '/bin/bash')
# procfile workflow
build.sha = 'somereallylongsha'
rc, output = c.run('echo hi')
self.assertEqual(json.loads(output)['entrypoint'], '/runner/init')
def test_scaling_does_not_add_run_proctypes_to_structure(self):
"""Test that app info doesn't show transient "run" proctypes."""
url = '/v1/apps'
response = self.client.post(url, HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 201)
app_id = response.data['id']
app = App.objects.get(id=app_id)
user = User.objects.get(username='autotest')
# dockerfile + procfile worflow
build = Build.objects.create(owner=user,
app=app,
image="qwerty",
procfile={'web': 'node server.js',
'worker': 'node worker.js'},
dockerfile='foo',
sha='somereallylongsha')
# create an initial release
release = Release.objects.create(version=2,
owner=user,
app=app,
config=app.config_set.latest(),
build=build)
# create a run container manually to simulate how they persist
# when actually created by "deis apps:run".
c = Container.objects.create(owner=user,
app=app,
release=release,
type='run',
num=1)
# scale up
url = "/v1/apps/{app_id}/scale".format(**locals())
body = {'web': 3}
response = self.client.post(url, json.dumps(body), content_type='application/json',
HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 204)
# test that "run" proctype isn't in the app info returned
url = "/v1/apps/{app_id}".format(**locals())
response = self.client.get(url, HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 200)
self.assertNotIn('run', response.data['structure'])
def test_scale_with_unauthorized_user_returns_403(self):
"""An unauthorized user should not be able to access an app's resources.
If an unauthorized user is trying to scale an app he or she does not have access to, it
should return a 403.
"""
url = '/v1/apps'
response = self.client.post(url, HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 201)
app_id = response.data['id']
# post a new build
url = "/v1/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, json.dumps(body), content_type='application/json',
HTTP_AUTHORIZATION='token {}'.format(self.token))
unauthorized_user = User.objects.get(username='autotest2')
unauthorized_token = Token.objects.get(user=unauthorized_user).key
# scale up with unauthorized user
url = "/v1/apps/{app_id}/scale".format(**locals())
body = {'web': 4}
response = self.client.post(url, json.dumps(body), content_type='application/json',
HTTP_AUTHORIZATION='token {}'.format(unauthorized_token))
self.assertEqual(response.status_code, 403)
def test_modified_procfile_from_build_removes_containers(self):
"""
When a new procfile is posted which removes a certain process type, deis should stop the
existing containers.
"""
url = '/v1/apps'
response = self.client.post(url, HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 201)
app_id = response.data['id']
# post a new build
build_url = "/v1/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(build_url, json.dumps(body), content_type='application/json',
HTTP_AUTHORIZATION='token {}'.format(self.token))
url = "/v1/apps/{app_id}/scale".format(**locals())
body = {'web': 4}
response = self.client.post(url, json.dumps(body), content_type='application/json',
HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 204)
body = {'image': 'autotest/example', 'sha': 'a'*40,
'procfile': json.dumps({'worker': 'node worker.js'})}
response = self.client.post(build_url, json.dumps(body), content_type='application/json',
HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 201)
self.assertEqual(Container.objects.filter(type='web').count(), 0)