-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathtest_domain.py
More file actions
109 lines (94 loc) · 5.51 KB
/
test_domain.py
File metadata and controls
109 lines (94 loc) · 5.51 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
"""
Unit tests for the Deis api app.
Run the tests with "./manage.py test api"
"""
from __future__ import unicode_literals
import json
from django.contrib.auth.models import User
from django.test import TestCase
from rest_framework.authtoken.models import Token
class DomainTest(TestCase):
"""Tests creation of domains"""
fixtures = ['tests.json']
def setUp(self):
self.user = User.objects.get(username='autotest')
self.token = Token.objects.get(user=self.user).key
url = '/v1/apps'
response = self.client.post(url, HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 201)
self.app_id = response.data['id'] # noqa
def test_manage_domain(self):
url = '/v1/apps/{app_id}/domains'.format(app_id=self.app_id)
body = {'domain': 'test-domain.example.com'}
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}/domains'.format(app_id=self.app_id)
response = self.client.get(url, content_type='application/json',
HTTP_AUTHORIZATION='token {}'.format(self.token))
result = response.data['results'][0]
self.assertEqual('test-domain.example.com', result['domain'])
url = '/v1/apps/{app_id}/domains/{hostname}'.format(hostname='test-domain.example.com',
app_id=self.app_id)
response = self.client.delete(url, content_type='application/json',
HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 204)
url = '/v1/apps/{app_id}/domains'.format(app_id=self.app_id)
response = self.client.get(url, content_type='application/json',
HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(0, response.data['count'])
def test_manage_domain_invalid_app(self):
url = '/v1/apps/{app_id}/domains'.format(app_id="this-app-does-not-exist")
body = {'domain': 'test-domain.example.com'}
response = self.client.post(url, json.dumps(body), content_type='application/json',
HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 404)
url = '/v1/apps/{app_id}/domains'.format(app_id='this-app-does-not-exist')
response = self.client.get(url, content_type='application/json',
HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 404)
def test_manage_domain_perms_on_app(self):
user = User.objects.get(username='autotest2')
token = Token.objects.get(user=user).key
url = '/v1/apps/{app_id}/domains'.format(app_id=self.app_id)
body = {'domain': 'test-domain2.example.com'}
response = self.client.post(url, json.dumps(body), content_type='application/json',
HTTP_AUTHORIZATION='token {}'.format(token))
self.assertEqual(response.status_code, 201)
def test_manage_domain_invalid_domain(self):
url = '/v1/apps/{app_id}/domains'.format(app_id=self.app_id)
body = {'domain': 'this_is_an.invalid.domain'}
response = self.client.post(url, json.dumps(body), content_type='application/json',
HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 400)
url = '/v1/apps/{app_id}/domains'.format(app_id=self.app_id)
body = {'domain': 'this-is-an.invalid.a'}
response = self.client.post(url, json.dumps(body), content_type='application/json',
HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 400)
url = '/v1/apps/{app_id}/domains'.format(app_id=self.app_id)
body = {'domain': 'domain'}
response = self.client.post(url, json.dumps(body), content_type='application/json',
HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 400)
def test_manage_domain_wildcard(self):
"""Wildcards are not allowed for now."""
url = '/v1/apps/{app_id}/domains'.format(app_id=self.app_id)
body = {'domain': '*.deis.example.com'}
response = self.client.post(url, json.dumps(body), content_type='application/json',
HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 400)
def test_admin_can_add_domains_to_other_apps(self):
"""If a non-admin user creates an app, an administrator should be able to add
domains to 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)
url = '/v1/apps/{}/domains'.format(self.app_id)
body = {'domain': 'example.deis.example.com'}
response = self.client.post(url, json.dumps(body), content_type='application/json',
HTTP_AUTHORIZATION='token {}'.format(self.token))
self.assertEqual(response.status_code, 201)