-
Notifications
You must be signed in to change notification settings - Fork 112
Expand file tree
/
Copy pathkey.py
More file actions
44 lines (32 loc) · 1.29 KB
/
key.py
File metadata and controls
44 lines (32 loc) · 1.29 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
"""
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
class KeyTest(TestCase):
"""Tests cloud provider credentials"""
fixtures = ['tests.json']
def setUp(self):
self.assertTrue(
self.client.login(username='autotest', password='password'))
def test_key(self):
"""
Test that a user can add, remove and manage their SSH public keys
"""
url = '/api/keys'
body = {'id': 'mykey@box.local', 'public': 'ssh-rsa XXX'}
response = self.client.post(url, json.dumps(body), content_type='application/json')
self.assertEqual(response.status_code, 201)
key_id = response.data['id']
response = self.client.get(url)
self.assertEqual(response.status_code, 200)
self.assertEqual(len(response.data['results']), 1)
url = '/api/keys/{key_id}'.format(**locals())
response = self.client.get(url)
self.assertEqual(response.status_code, 200)
self.assertEqual(body['id'], response.data['id'])
self.assertEqual(body['public'], response.data['public'])
response = self.client.delete(url)
self.assertEqual(response.status_code, 204)