-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathtest_limits.py
More file actions
209 lines (179 loc) · 8.06 KB
/
test_limits.py
File metadata and controls
209 lines (179 loc) · 8.06 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
import json
import requests_mock
from django.core.cache import cache
from django.contrib.auth.models import User
from rest_framework.authtoken.models import Token
from api.serializers import MEMLIMIT_MATCH
from api.tests import adapter, DeisTransactionTestCase
@requests_mock.Mocker(real_http=True, adapter=adapter)
class TestLimits(DeisTransactionTestCase):
"""Tests setting and updating config values"""
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_memlimit_regex(self, mock_requests):
"""Tests the regex for unit format used by "deis limits:set --memory=<limit>"."""
self.assertTrue(MEMLIMIT_MATCH.match("20MB"))
self.assertFalse(MEMLIMIT_MATCH.match("20MK"))
self.assertTrue(MEMLIMIT_MATCH.match("20gb"))
self.assertFalse(MEMLIMIT_MATCH.match("20gK"))
def test_limit_memory(self, mock_requests):
"""
Test that limit is auto-created for a new app and that
limits can be updated using a PATCH
"""
app_id = self.create_app()
url = '/v2/apps/{app_id}/config'.format(**locals())
# check default limit
response = self.client.get(url)
self.assertEqual(response.status_code, 200, response.data)
self.assertIn('memory', response.data)
self.assertEqual(response.data['memory'], {})
# regression test for https://github.com/deis/deis/issues/1563
self.assertNotIn('"', response.data['memory'])
# set an initial limit
mem = {'web': '1G'}
body = {'memory': json.dumps(mem)}
response = self.client.post(url, body)
self.assertEqual(response.status_code, 201, response.data)
limit1 = response.data
# check memory limits
response = self.client.get(url)
self.assertEqual(response.status_code, 200, response.data)
self.assertIn('memory', response.data)
memory = response.data['memory']
self.assertIn('web', memory)
self.assertEqual(memory['web'], '1G')
# set an additional value
body = {'memory': json.dumps({'worker': '512M'})}
response = self.client.post(url, body)
self.assertEqual(response.status_code, 201, response.data)
limit2 = response.data
self.assertNotEqual(limit1['uuid'], limit2['uuid'])
memory = response.data['memory']
self.assertIn('worker', memory)
self.assertEqual(memory['worker'], '512M')
self.assertIn('web', memory)
self.assertEqual(memory['web'], '1G')
# read the limit again
response = self.client.get(url)
self.assertEqual(response.status_code, 200, response.data)
limit3 = response.data
self.assertEqual(limit2, limit3)
memory = response.data['memory']
self.assertIn('worker', memory)
self.assertEqual(memory['worker'], '512M')
self.assertIn('web', memory)
self.assertEqual(memory['web'], '1G')
# regression test for https://github.com/deis/deis/issues/1613
# ensure that config:set doesn't wipe out previous limits
body = {'values': json.dumps({'NEW_URL2': 'http://localhost:8080/'})}
response = self.client.post(url, body)
self.assertEqual(response.status_code, 201, response.data)
self.assertIn('NEW_URL2', response.data['values'])
# read the limit again
response = self.client.get(url)
self.assertEqual(response.status_code, 200, response.data)
memory = response.data['memory']
self.assertIn('worker', memory)
self.assertEqual(memory['worker'], '512M')
self.assertIn('web', memory)
self.assertEqual(memory['web'], '1G')
# unset a value
body = {'memory': json.dumps({'worker': None})}
response = self.client.post(url, body)
self.assertEqual(response.status_code, 201, response.data)
limit4 = response.data
self.assertNotEqual(limit3['uuid'], limit4['uuid'])
self.assertNotIn('worker', json.dumps(response.data['memory']))
# bad memory values
mem = {'web': '1Z'}
body = {'memory': json.dumps(mem)}
response = self.client.post(url, body)
self.assertEqual(response.status_code, 400, response.data)
mem = {'w3&b': '1G'}
body = {'memory': json.dumps(mem)}
response = self.client.post(url, body)
self.assertEqual(response.status_code, 400, response.data)
# disallow put/patch/delete
response = self.client.put(url)
self.assertEqual(response.status_code, 405, response.data)
response = self.client.patch(url)
self.assertEqual(response.status_code, 405, response.data)
response = self.client.delete(url)
self.assertEqual(response.status_code, 405, response.data)
return limit4
def test_limit_cpu(self, mock_requests):
"""
Test that CPU limits can be set
"""
app_id = self.create_app()
url = '/v2/apps/{app_id}/config'.format(**locals())
# check default limit
response = self.client.get(url)
self.assertEqual(response.status_code, 200, response.data)
self.assertIn('cpu', response.data)
self.assertEqual(response.data['cpu'], {})
# regression test for https://github.com/deis/deis/issues/1563
self.assertNotIn('"', response.data['cpu'])
# set an initial limit
body = {'cpu': json.dumps({'web': '1024'})}
response = self.client.post(url, body)
self.assertEqual(response.status_code, 201, response.data)
limit1 = response.data
# check memory limits
response = self.client.get(url)
self.assertEqual(response.status_code, 200, response.data)
self.assertIn('cpu', response.data)
cpu = response.data['cpu']
self.assertIn('web', cpu)
self.assertEqual(cpu['web'], '1024')
# set an additional value
body = {'cpu': json.dumps({'worker': '512m'})}
response = self.client.post(url, body)
self.assertEqual(response.status_code, 201, response.data)
limit2 = response.data
self.assertNotEqual(limit1['uuid'], limit2['uuid'])
cpu = response.data['cpu']
self.assertIn('worker', cpu)
self.assertEqual(cpu['worker'], '512m')
self.assertIn('web', cpu)
self.assertEqual(cpu['web'], '1024')
# read the limit again
response = self.client.get(url)
self.assertEqual(response.status_code, 200, response.data)
limit3 = response.data
self.assertEqual(limit2, limit3)
cpu = response.data['cpu']
self.assertIn('worker', cpu)
self.assertEqual(cpu['worker'], '512m')
self.assertIn('web', cpu)
self.assertEqual(cpu['web'], '1024')
# unset a value
body = {'cpu': json.dumps({'worker': None})}
response = self.client.post(url, body)
self.assertEqual(response.status_code, 201, response.data)
limit4 = response.data
self.assertNotEqual(limit3['uuid'], limit4['uuid'])
self.assertNotIn('worker', json.dumps(response.data['cpu']))
# bad cpu values
mem = {'web': '1G'}
body = {'cpu': json.dumps(mem)}
response = self.client.post(url, body)
self.assertEqual(response.status_code, 400, response.data)
mem = {'w3&b': '1G'}
body = {'cpu': json.dumps(mem)}
response = self.client.post(url, body)
self.assertEqual(response.status_code, 400, response.data)
# disallow put/patch/delete
response = self.client.put(url)
self.assertEqual(response.status_code, 405, response.data)
response = self.client.patch(url)
self.assertEqual(response.status_code, 405, response.data)
response = self.client.delete(url)
self.assertEqual(response.status_code, 405, response.data)