-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathtest_pods.py
More file actions
803 lines (684 loc) · 28.1 KB
/
test_pods.py
File metadata and controls
803 lines (684 loc) · 28.1 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
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
"""
Unit tests for the Drycc api app.
Run the tests with "./manage.py test api"
"""
import os
import json
from django.contrib.auth import get_user_model
from django.core.cache import cache
from unittest import mock
from api.models.app import App
from api.models.build import Build
from api.models.release import Release
from scheduler import KubeException
from api.tests import adapter, DryccTransactionTestCase
import requests_mock
User = get_user_model()
@requests_mock.Mocker(real_http=True, adapter=adapter)
class PodTest(DryccTransactionTestCase):
"""Tests creation of pods on nodes"""
fixtures = ['tests.json']
def setUp(self):
self.user = User.objects.get(username='autotest')
self.token = self.get_or_create_token(self.user)
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_container_api_heroku(self, mock_requests):
app_id = self.create_app()
# should start with zero
url = f"/v2/apps/{app_id}/pods"
response = self.client.get(url)
self.assertEqual(response.status_code, 200, response.data)
self.assertEqual(len(response.data['results']), 0)
# post a new build
url = f"/v2/apps/{app_id}/builds"
body = {
'image': 'autotest/example',
'stack': 'heroku-18',
'sha': 'a'*40,
'procfile': {
'web': 'node server.js',
'worker': 'node worker.js'
}
}
response = self.client.post(url, body)
self.assertEqual(response.status_code, 201, response.data)
# scale up
url = f"/v2/apps/{app_id}/scale"
# test setting one proc type at a time
body = {'web': 4}
response = self.client.post(url, body)
self.assertEqual(response.status_code, 204, response.data)
body = {'worker': 2}
response = self.client.post(url, body)
self.assertEqual(response.status_code, 204, response.data)
url = f"/v2/apps/{app_id}/pods"
response = self.client.get(url)
self.assertEqual(response.status_code, 200, response.data)
self.assertEqual(len(response.data['results']), 6)
url = f"/v2/apps/{app_id}"
response = self.client.get(url)
self.assertEqual(response.status_code, 200, response.data)
# ensure the structure field is up-to-date
self.assertEqual(response.data['structure']['web'], 4)
self.assertEqual(response.data['structure']['worker'], 2)
# scale down
url = f"/v2/apps/{app_id}/scale"
# test setting two proc types at a time
body = {'web': 2, 'worker': 1}
response = self.client.post(url, body)
self.assertEqual(response.status_code, 204, response.data)
url = f"/v2/apps/{app_id}/pods"
response = self.client.get(url)
self.assertEqual(response.status_code, 200, response.data)
self.assertEqual(len(response.data['results']), 3)
url = f"/v2/apps/{app_id}"
response = self.client.get(url)
self.assertEqual(response.status_code, 200, response.data)
# 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 = f"/v2/apps/{app_id}/scale"
body = {'web': 0, 'worker': 0}
response = self.client.post(url, body)
self.assertEqual(response.status_code, 204, response.data)
url = f"/v2/apps/{app_id}/pods"
response = self.client.get(url)
self.assertEqual(response.status_code, 200, response.data)
self.assertEqual(len(response.data['results']), 0)
url = f"/v2/apps/{app_id}"
response = self.client.get(url)
self.assertEqual(response.status_code, 200, response.data)
def test_container_api(self, mock_requests):
app_id = self.create_app()
# should start with zero
url = f"/v2/apps/{app_id}/pods"
response = self.client.get(url)
self.assertEqual(response.status_code, 200, response.data)
self.assertEqual(len(response.data['results']), 0)
# post a new build
url = f"/v2/apps/{app_id}/builds"
body = {
'image': 'autotest/example',
'stack': 'container',
'dockerfile': "FROM busybox\nCMD /bin/true"
}
response = self.client.post(url, body)
self.assertEqual(response.status_code, 201, response.data)
# scale up
url = f"/v2/apps/{app_id}/scale"
body = {'web': 6}
response = self.client.post(url, body)
self.assertEqual(response.status_code, 204, response.data)
url = f"/v2/apps/{app_id}/pods"
response = self.client.get(url)
self.assertEqual(response.status_code, 200, response.data)
self.assertEqual(len(response.data['results']), 6)
url = f"/v2/apps/{app_id}"
response = self.client.get(url)
self.assertEqual(response.status_code, 200, response.data)
# scale down
url = f"/v2/apps/{app_id}/scale"
body = {'web': 3}
response = self.client.post(url, body)
self.assertEqual(response.status_code, 204, response.data)
url = f"/v2/apps/{app_id}/pods"
response = self.client.get(url)
self.assertEqual(response.status_code, 200, response.data)
self.assertEqual(len(response.data['results']), 3)
url = f"/v2/apps/{app_id}"
response = self.client.get(url)
self.assertEqual(response.status_code, 200, response.data)
# scale down to 0
url = f"/v2/apps/{app_id}/scale"
body = {'web': 0}
response = self.client.post(url, body)
self.assertEqual(response.status_code, 204, response.data)
url = f"/v2/apps/{app_id}/pods"
response = self.client.get(url)
self.assertEqual(response.status_code, 200, response.data)
self.assertEqual(len(response.data['results']), 0)
url = f"/v2/apps/{app_id}"
response = self.client.get(url)
self.assertEqual(response.status_code, 200, response.data)
def test_release(self, mock_requests):
app_id = self.create_app()
# should start with zero
url = f"/v2/apps/{app_id}/pods"
response = self.client.get(url)
self.assertEqual(response.status_code, 200, response.data)
self.assertEqual(len(response.data['results']), 0)
# post a new build
url = f"/v2/apps/{app_id}/builds"
body = {
'image': 'autotest/example',
'stack': 'heroku-18',
'sha': 'a'*40,
'procfile': {
'web': 'node server.js',
'worker': 'node worker.js'
}
}
response = self.client.post(url, body)
self.assertEqual(response.status_code, 201, response.data)
# scale up
url = f"/v2/apps/{app_id}/scale"
body = {'web': 1}
response = self.client.post(url, body)
self.assertEqual(response.status_code, 204, response.data)
url = f"/v2/apps/{app_id}/pods"
response = self.client.get(url)
self.assertEqual(response.status_code, 200, response.data)
self.assertPodContains(response.data['results'], app_id, "web", "v2")
# post a new build
url = f"/v2/apps/{app_id}/builds"
# a web proctype must exist on the second build or else the container will be removed
body = {
'image': 'autotest/example',
'stack': 'heroku-18',
'procfile': {
'web': 'echo hi'
}
}
response = self.client.post(url, body)
self.assertEqual(response.status_code, 201, response.data)
self.assertEqual(response.data['image'], body['image'])
url = f"/v2/apps/{app_id}/pods"
response = self.client.get(url)
self.assertEqual(response.status_code, 200, response.data)
self.assertPodContains(response.data['results'], app_id, 'web', 'v3')
# post new config
url = f"/v2/apps/{app_id}/config"
body = {'values': json.dumps({'KEY': 'value'})}
response = self.client.post(url, body)
self.assertEqual(response.status_code, 201, response.data)
url = f"/v2/apps/{app_id}/pods"
response = self.client.get(url)
self.assertEqual(response.status_code, 200, response.data)
self.assertPodContains(response.data['results'], app_id, "web", 'v4')
pod_name = response.data['results'][0]["name"]
response = self.client.get(f"/v2/apps/{app_id}/pods/{pod_name}/describe/")
self.assertEqual(response.status_code, 200, response.data)
pod_name = "no-exists-pod-name"
response = self.client.get(f"/v2/apps/{app_id}/pods/{pod_name}/describe/")
self.assertEqual(response.status_code, 404, response.data)
def test_container_errors(self, mock_requests):
app_id = self.create_app()
# 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 = Release.objects.create(
version=2,
owner=user,
app=app,
config=app.config_set.latest(),
build=build
)
# deploy
app.pipeline(release)
url = f"/v2/apps/{app_id}/scale"
body = {'web': 'not_an_int'}
response = self.client.post(url, body)
self.assertEqual(response.status_code, 204, response.data)
self.assertEqual(app.structure, {'web': 1})
body = {'invalid': 1}
response = self.client.post(url, body)
self.assertEqual(response.status_code, 204, response.data)
self.assertEqual(app.structure, {'web': 1})
def test_container_str(self, mock_requests):
"""Test the text representation of a container."""
app_id = self.create_app()
# post a new build
url = f"/v2/apps/{app_id}/builds"
body = {
'image': 'autotest/example',
'stack': 'heroku-18',
'sha': 'a'*40,
'procfile': {
'web': 'node server.js',
'worker': 'node worker.js'
}
}
response = self.client.post(url, body)
self.assertEqual(response.status_code, 201, response.data)
# scale up
url = f"/v2/apps/{app_id}/scale"
body = {'web': 4, 'worker': 2}
response = self.client.post(url, body)
self.assertEqual(response.status_code, 204, response.data)
# should start with zero
url = f"/v2/apps/{app_id}/pods"
response = self.client.get(url)
self.assertEqual(response.status_code, 200, response.data)
self.assertEqual(len(response.data['results']), 6)
pods = response.data['results']
for pod in pods:
if pod['state'] != 'up':
continue
self.assertIn(pod['type'], ['web', 'worker'])
self.assertEqual(pod['release'], 'v2')
# pod name is auto generated so use regex
self.assertRegex(pod['name'], app_id + '-(worker|web)-[0-9]{7,10}-[a-z0-9]{5}')
def test_pod_command_format(self, mock_requests):
# regression test for https://github.com/drycc/drycc/pull/1285
app_id = self.create_app()
# post a new build
url = f"/v2/apps/{app_id}/builds"
body = {
'image': 'autotest/example',
'stack': 'heroku-18',
'sha': 'a'*40,
'procfile': {
'web': 'node server.js',
'worker': 'node worker.js'
}
}
response = self.client.post(url, body)
self.assertEqual(response.status_code, 201, response.data)
# scale up
url = f"/v2/apps/{app_id}/scale"
body = {'web': 1}
response = self.client.post(url, body)
self.assertEqual(response.status_code, 204, response.data)
url = f"/v2/apps/{app_id}/pods"
response = self.client.get(url)
# verify that the release.get_deploy_args property got formatted
self.assertEqual(response.status_code, 200, response.data)
self.assertEqual(len(response.data['results']), 1)
pod = response.data['results'][0]
self.assertEqual(pod['type'], 'web')
self.assertEqual(pod['release'], 'v2')
# pod name is auto generated so use regex
self.assertRegex(pod['name'], app_id + '-web-[0-9]{8,10}-[a-z0-9]{5}')
# verify commands
release = App.objects.get(id=app_id).release_set.latest()
self.assertNotIn('{c_type}', release.get_deploy_args('web'))
def test_scale_errors(self, mock_requests):
app_id = self.create_app()
# should start with zero
url = f"/v2/apps/{app_id}/pods"
response = self.client.get(url)
self.assertEqual(response.status_code, 200, response.data)
self.assertEqual(len(response.data['results']), 0)
# post a new build
url = f"/v2/apps/{app_id}/builds"
body = {
'image': 'autotest/example',
'stack': 'heroku-18',
'sha': 'a'*40,
'procfile': {
'web': 'node server.js',
'worker': 'node worker.js'
}
}
response = self.client.post(url, body)
self.assertEqual(response.status_code, 201, response.data)
# scale to a negative number
url = f"/v2/apps/{app_id}/scale"
body = {'web': -1}
response = self.client.post(url, body)
self.assertEqual(response.status_code, 204, response.data)
app = App.objects.get(id=app_id)
self.assertEqual(app.structure["web"], 1)
# scale to something other than a number
url = f"/v2/apps/{app_id}/scale"
body = {'web': 'one'}
response = self.client.post(url, body)
app = App.objects.get(id=app_id)
self.assertEqual(response.status_code, 204, response.data)
self.assertEqual(app.structure["web"], 1)
# scale to something other than a number
url = f"/v2/apps/{app_id}/scale"
body = {'web': [1]}
response = self.client.post(url, body)
self.assertEqual(response.status_code, 204, response.data)
app = App.objects.get(id=app_id)
self.assertEqual(app.structure["web"], 1)
# scale with a non-existent proc type
url = f"/v2/apps/{app_id}/scale"
body = {'foo': 1}
response = self.client.post(url, body)
self.assertEqual(response.status_code, 204, response.data)
app = App.objects.get(id=app_id)
self.assertEqual("foo" in app.structure, False)
# scale up to an integer as a sanity check
url = f"/v2/apps/{app_id}/scale"
body = {'web': 1}
response = self.client.post(url, body)
self.assertEqual(response.status_code, 204, response.data)
app = App.objects.get(id=app_id)
self.assertEqual(app.structure["web"], 1)
with mock.patch('scheduler.KubeHTTPClient.scale') as mock_kube:
mock_kube.side_effect = KubeException('Boom!')
url = f"/v2/apps/{app_id}/scale"
response = self.client.post(url, {'web': 10})
self.assertEqual(response.status_code, 204, response.data)
app = App.objects.get(id=app_id)
self.assertEqual(app.structure["web"], 1)
def test_admin_can_manage_other_pods(self, mock_requests):
"""If a non-admin user creates a container, an administrator should be able to
manage it.
"""
user = User.objects.get(username='autotest2')
token = self.get_or_create_token(user)
self.client.credentials(HTTP_AUTHORIZATION='Token ' + token)
app_id = self.create_app()
# post a new build
url = f"/v2/apps/{app_id}/builds"
body = {
'image': 'autotest/example',
'stack': 'heroku-18',
'sha': 'a'*40,
'procfile': {
'web': 'node server.js',
'worker': 'node worker.js'
}
}
response = self.client.post(url, body)
self.assertEqual(response.status_code, 201, response.data)
# login as admin, scale up
url = f"/v2/apps/{app_id}/scale"
body = {'web': 4, 'worker': 2}
response = self.client.post(url, body)
self.assertEqual(response.status_code, 204, response.data)
def test_scale_without_build_should_error(self, mock_requests):
"""A user should not be able to scale processes unless a build is present."""
app_id = 'autotest'
url = '/v2/apps'
body = {'cluster': 'autotest', 'id': app_id}
response = self.client.post(url, body)
url = f'/v2/apps/{app_id}/scale'
body = {'web': '1'}
response = self.client.post(url, body)
self.assertEqual(response.status_code, 204, response.data)
app = App.objects.get(id=app_id)
self.assertEqual("web" in app.structure, False)
def test_command_good(self, mock_requests):
"""Test the default command for each container workflow"""
app_id = self.create_app()
app = App.objects.get(id=app_id)
user = User.objects.get(username='autotest')
# CNCF 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
)
# deploy
app.pipeline(release)
# use `start web` for backwards compatibility with buildpacks
self.assertEqual(release.get_deploy_args('web'), [])
self.assertEqual(release.get_deploy_args('worker'), [])
# switch to container image app
build.sha = ''
build.save()
self.assertEqual(release.get_deploy_args('web'), ['node', 'server.js'])
# switch to dockerfile app
build.sha = 'european-swallow'
build.dockerfile = 'dockerdockerdocker'
build.save()
self.assertEqual(release.get_deploy_args('web'), ['node', 'server.js'])
self.assertEqual(release.get_deploy_args('cmd'), [])
# ensure we can override the cmd process type in a Procfile
build.procfile['cmd'] = 'node server.js'
build.save()
self.assertEqual(release.get_deploy_command('cmd'), [])
self.assertEqual(release.get_deploy_args('cmd'), ['node', 'server.js'])
self.assertEqual(release.get_deploy_command('worker'), [])
self.assertEqual(release.get_deploy_args('worker'), ['node', 'worker.js'])
# for backwards compatibility if no Procfile is supplied
build.procfile = {}
build.save()
self.assertEqual(release.get_deploy_args('worker'), [])
def test_run_command_good(self, mock_requests):
"""Test the run command for each container workflow"""
app_id = self.create_app()
app = App.objects.get(id=app_id)
# dockerfile + procfile worflow
build = Build.objects.create(
owner=self.user,
app=app,
image="qwerty",
stack="heroku-18",
procfile={
'web': 'node server.js',
'worker': 'node worker.js'
},
dockerfile='foo',
sha='somereallylongsha'
)
# create an initial release
release = Release.objects.create(
version=2,
owner=self.user,
app=app,
config=app.config_set.latest(),
build=build
)
# deploy
app.pipeline(release)
# create a run pod
url = f"/v2/apps/{app_id}/run"
body = {'command': 'echo hi'}
response = self.client.post(url, body)
self.assertEqual(response.status_code, 204, response.data)
app = App.objects.get(id=app_id)
self.assertEqual(release.get_deploy_command('web'), [])
# docker image workflow
build.dockerfile = ''
build.sha = ''
build.save()
url = f"/v2/apps/{app_id}/run"
body = {'command': 'echo hi'}
response = self.client.post(url, body)
self.assertEqual(response.status_code, 204, response.data)
app = App.objects.get(id=app_id)
self.assertEqual(release.get_deploy_command('cmd'), [])
self.assertEqual(release.get_deploy_command('run'), [])
# procfile workflow
build.sha = 'somereallylongsha'
build.save()
url = f"/v2/apps/{app_id}/run"
body = {'command': 'echo hi'}
response = self.client.post(url, body)
self.assertEqual(response.status_code, 204, response.data)
def test_run_not_fail_on_debug(self, mock_requests):
"""
do a run with DRYCC_DEBUG on - https://github.com/drycc/controller/issues/583
"""
os.environ['DRYCC_DEBUG'] = 'true'
app_id = self.create_app()
app = App.objects.get(id=app_id)
# dockerfile + procfile worflow
build = Build.objects.create(
owner=self.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=self.user,
app=app,
config=app.config_set.latest(),
build=build
)
# deploy
app.pipeline(release)
# create a run pod
url = f"/v2/apps/{app_id}/run"
body = {'command': 'echo hi'}
response = self.client.post(url, body)
self.assertEqual(response.status_code, 204, response.data)
self.assertEqual(release.get_deploy_command('web'), [])
def test_scaling_does_not_add_run_proctypes_to_structure(self, mock_requests):
"""Test that app info doesn't show transient "run" proctypes."""
app_id = self.create_app()
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
)
# deploy
app.pipeline(release)
# create a run pod
url = f"/v2/apps/{app_id}/run"
body = {'command': 'echo hi'}
response = self.client.post(url, body)
self.assertEqual(response.status_code, 204, response.data)
# scale up
url = f"/v2/apps/{app_id}/scale"
body = {'web': 3}
response = self.client.post(url, body)
self.assertEqual(response.status_code, 204, response.data)
# test that "run" proctype isn't in the app info returned
url = f"/v2/apps/{app_id}"
response = self.client.get(url)
self.assertEqual(response.status_code, 200, response.data)
self.assertNotIn('run', response.data['structure'])
def test_scale_with_unauthorized_user_returns_403(self, mock_requests):
"""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.
"""
app_id = self.create_app()
# post a new build
url = f"/v2/apps/{app_id}/builds"
body = {
'image': 'autotest/example',
'sha': 'a'*40,
'procfile': {'web': 'node server.js', 'worker': 'node worker.js'}
}
response = self.client.post(url, body)
unauthorized_user = User.objects.get(username='autotest2')
unauthorized_token = self.get_or_create_token(unauthorized_user)
self.client.credentials(HTTP_AUTHORIZATION='Token ' + unauthorized_token)
# scale up with unauthorized user
url = f"/v2/apps/{app_id}/scale"
body = {'web': 4}
response = self.client.post(url, body)
self.assertEqual(response.status_code, 403)
def test_modified_procfile_from_build_removes_pods(self, mock_requests):
"""
When a new procfile is posted which removes a certain process type, drycc should stop the
existing pods.
"""
app_id = self.create_app()
# post a new build
build_url = f"/v2/apps/{app_id}/builds"
body = {
'image': 'autotest/example',
'stack': 'heroku-18',
'sha': 'a'*40,
'procfile': {
'web': 'node server.js',
'worker': 'node worker.js'
}
}
response = self.client.post(build_url, body)
url = f"/v2/apps/{app_id}/scale"
body = {'web': 4}
response = self.client.post(url, body)
self.assertEqual(response.status_code, 204, response.data)
body = {
'image': 'autotest/example',
'stack': 'heroku-18',
'sha': 'a'*40,
'procfile': {
'worker': 'node worker.js'
}
}
response = self.client.post(build_url, body)
self.assertEqual(response.status_code, 201, response.data)
# make sure no pods are web
application = App.objects.get(id=app_id)
pods = application.list_pods(type='web')
self.assertEqual(len(pods), 0)
def test_restart_pods(self, mock_requests):
app_id = self.create_app()
# post a new build
build_url = f"/v2/apps/{app_id}/builds"
body = {
'image': 'autotest/example',
'stack': 'heroku-18',
'sha': 'a'*40,
'procfile': {
'web': 'node server.js',
'worker': 'node worker.js'
}
}
response = self.client.post(build_url, body)
url = f"/v2/apps/{app_id}/scale"
body = {'web': 4, 'worker': 8}
response = self.client.post(url, body)
self.assertEqual(response.status_code, 204, response.data)
# setup app object
application = App.objects.get(id=app_id)
# restart all pods
response = self.client.post('/v2/apps/{}/pods/restart'.format(app_id))
self.assertEqual(response.status_code, 204, response.data)
# restart web and workers pods
body = {"types": "web,worker"}
response = self.client.post('/v2/apps/{}/pods/restart'.format(app_id), body)
self.assertEqual(response.status_code, 204, response.data)
# restart invalid ptypes
body = {"types": "web1"}
response = self.client.post('/v2/apps/{}/pods/restart'.format(app_id), body)
self.assertEqual(response.status_code, 400, response.data)
# restart only one of the web pods
pods = application.list_pods(type='web')
self.assertEqual(len(pods), 4)
def test_list_pods_failure(self, mock_requests):
"""
Listing all available pods exceptions
"""
app_id = self.create_app()
with mock.patch('scheduler.resources.pod.Pod.get') as kube_pod:
with mock.patch('scheduler.resources.pod.Pod.get') as kube_pods:
kube_pod.side_effect = KubeException('boom!')
kube_pods.side_effect = KubeException('boom!')
url = f"/v2/apps/{app_id}/pods"
response = self.client.get(url)
self.assertEqual(response.status_code, 503, response.data)