-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathtest_build.py
More file actions
124 lines (112 loc) · 5.08 KB
/
test_build.py
File metadata and controls
124 lines (112 loc) · 5.08 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
"""
Unit tests for the Deis api app.
Run the tests with "./manage.py test api"
"""
from __future__ import unicode_literals
import json
import uuid
from django.test import TestCase
from django.test.utils import override_settings
from api.models import Build
@override_settings(CELERY_ALWAYS_EAGER=True)
class BuildTest(TestCase):
"""Tests build notification from build system"""
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': 1 * 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'}),
}
response = self.client.post(url, json.dumps(body), content_type='application/json')
self.assertEqual(response.status_code, 201)
response = self.client.post('/api/formations', json.dumps(
{'id': 'autotest', 'domain': 'localhost.localdomain'}),
content_type='application/json')
self.assertEqual(response.status_code, 201)
def test_build(self):
"""
Test that a null build is created on a new formation, and that users
can post new builds to a formation
"""
url = '/api/apps'
body = {'formation': '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 no initial build was created
url = "/api/apps/{app_id}/builds".format(**locals())
response = self.client.get(url)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.data['count'], 1)
# post a new build
body = {
'sha': uuid.uuid4().hex,
'slug_size': 4096000,
'procfile': json.dumps({'web': 'node server.js'}),
'url': 'http://deis.local/slugs/1c52739bbf3a44d3bfb9a58f7bbdd5fb.tar.gz',
'checksum': uuid.uuid4().hex,
}
response = self.client.post(url, json.dumps(body), content_type='application/json')
self.assertEqual(response.status_code, 201)
build_id = response.data['uuid']
build1 = response.data
self.assertEqual(response.data['url'], body['url'])
# read the build
url = "/api/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 = "/api/apps/{app_id}/builds".format(**locals())
body = {
'sha': uuid.uuid4().hex,
'slug_size': 4096000,
'procfile': json.dumps({'web': 'node server.js'}),
'url': 'http://deis.local/slugs/1c52739bbf3a44d3bfb9a58f7bbdd5fb.tar.gz',
'checksum': uuid.uuid4().hex,
}
response = self.client.post(url, json.dumps(body), content_type='application/json')
self.assertEqual(response.status_code, 201)
build3 = response.data
self.assertEqual(response.data['url'], body['url'])
self.assertNotEqual(build2['uuid'], build3['uuid'])
# 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)
def test_build_push(self):
"""
Simlulate a git push creating a new Build object
"""
formation_id = 'autotest'
url = '/api/formations/{formation_id}/layers'.format(**locals())
body = {'id': 'runtime', 'flavor': 'autotest', 'runtime': True, '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}/scale'.format(**locals())
body = {'runtime': 2}
response = self.client.post(url, json.dumps(body), content_type='application/json')
self.assertEqual(response.status_code, 200)
url = '/api/apps'
body = {'formation': formation_id}
response = self.client.post(url, json.dumps(body), content_type='application/json')
self.assertEqual(response.status_code, 201)
app_id = response.data['id']
push = {'username': 'autotest', 'app': app_id}
databag = Build.push(push)
self.assertIn('release', databag)
self.assertIn('version', databag['release'])
self.assertIn('containers', databag)
self.assertIn('web', databag['containers'])
self.assertIn('1', databag['containers']['web'])
self.assertEqual(databag['containers']['web']['1'], 'up')