-
Notifications
You must be signed in to change notification settings - Fork 112
Expand file tree
/
Copy pathrelease.py
More file actions
122 lines (112 loc) · 5.31 KB
/
release.py
File metadata and controls
122 lines (112 loc) · 5.31 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
"""
Unit tests for the Deis api app.
Run the tests with "./manage.py test api"
"""
from __future__ import unicode_literals
import json
from django.test import TestCase
import uuid
class ReleaseTest(TestCase):
"""Tests push 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',
'instance_size': 'm1.medium',
})
}
response = self.client.post(
url, json.dumps(body), content_type='application/json')
self.assertEqual(response.status_code, 201)
def test_release(self):
"""
Test that a release is created when a formation is created, and
that updating config, build, image, args or triggers a new release
"""
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
# check to see that an initial release was created
url = '/api/formations/{formation_id}/releases'.format(**locals())
response = self.client.get(url)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.data['count'], 1)
url = '/api/formations/{formation_id}/releases/1'.format(**locals())
response = self.client.get(url)
self.assertEqual(response.status_code, 200)
release1 = response.data
self.assertIn('image', response.data)
self.assertIn('config', response.data)
self.assertIn('build', response.data)
self.assertEquals(release1['version'], 1)
# check that updating config rolls a new release
url = '/api/formations/{formation_id}/config'.format(**locals())
body = {'values': json.dumps({'NEW_URL1': 'http://localhost:8080/'})}
response = self.client.post(
url, json.dumps(body), content_type='application/json')
self.assertEqual(response.status_code, 201)
self.assertIn('NEW_URL1', json.loads(response.data['values']))
# check to see that a new release was created
url = '/api/formations/{formation_id}/releases/2'.format(**locals())
response = self.client.get(url)
self.assertEqual(response.status_code, 200)
release2 = response.data
self.assertNotEqual(release1['uuid'], release2['uuid'])
self.assertNotEqual(release1['config'], release2['config'])
self.assertEqual(release1['image'], release2['image'])
self.assertEqual(release1['build'], release2['build'])
self.assertEquals(release2['version'], 2)
# check that updating the build rolls a new release
url = '/api/formations/{formation_id}/builds'.format(**locals())
build_config = json.dumps({'PATH': 'bin:/usr/local/bin:/usr/bin:/bin'})
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, 'config': build_config,
}
response = self.client.post(
url, json.dumps(body), content_type='application/json')
self.assertEqual(response.status_code, 201)
self.assertEqual(response.data['url'], body['url'])
# check to see that a new release was created
url = '/api/formations/{formation_id}/releases/3'.format(**locals())
response = self.client.get(url)
self.assertEqual(response.status_code, 200)
release3 = response.data
self.assertNotEqual(release2['uuid'], release3['uuid'])
self.assertNotEqual(release2['build'], release3['build'])
self.assertEqual(release2['image'], release3['image'])
self.assertEquals(release3['version'], 3)
# check that build config was respected
self.assertNotEqual(release2['config'], release3['config'])
url = '/api/formations/{formation_id}/config'.format(**locals())
response = self.client.get(url)
config3 = response.data
config3_values = json.loads(config3['values'])
self.assertIn('NEW_URL1', config3_values)
self.assertIn('PATH', config3_values)
self.assertEqual(
config3_values['PATH'], 'bin:/usr/local/bin:/usr/bin:/bin')
# disallow post/put/patch/delete
url = '/api/formations/{formation_id}/releases'.format(**locals())
self.assertEqual(self.client.post(url).status_code, 405)
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)