summaryrefslogtreecommitdiff
path: root/django-nova/src/django_nova/tests/view_tests/keypair_tests.py
blob: 95085ce391c0a0a698d857892b20bfa89aded544 (plain)
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
# vim: tabstop=4 shiftwidth=4 softtabstop=4

# Copyright 2010 United States Government as represented by the
# Administrator of the National Aeronautics and Space Administration.
# All Rights Reserved.
#
#    Licensed under the Apache License, Version 2.0 (the "License"); you may
#    not use this file except in compliance with the License. You may obtain
#    a copy of the License at
#
#         http://www.apache.org/licenses/LICENSE-2.0
#
#    Unless required by applicable law or agreed to in writing, software
#    distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
#    WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
#    License for the specific language governing permissions and limitations
#    under the License.

"""
Unit tests for key pair views.
"""

import boto.ec2.keypair
import mox

from django.core.urlresolvers import reverse
from django_nova.tests.view_tests.base import (BaseProjectViewTests,
                                              TEST_PROJECT)


TEST_KEY = 'test_key'


class KeyPairViewTests(BaseProjectViewTests):
    def test_index(self):
        self.mox.StubOutWithMock(self.project, 'get_key_pairs')
        self.project.get_key_pairs().AndReturn([])

        self.mox.ReplayAll()

        response = self.client.get(reverse('nova_keypairs',
                                           args=[TEST_PROJECT]))
        self.assertEqual(response.status_code, 200)
        self.assertTemplateUsed(response, 'django_nova/keypairs/index.html')
        self.assertEqual(len(response.context['keypairs']), 0)

        self.mox.VerifyAll()

    def test_add_keypair(self):
        key = boto.ec2.keypair.KeyPair()
        key.name = TEST_KEY

        self.mox.StubOutWithMock(self.project, 'create_key_pair')
        self.project.create_key_pair(key.name).AndReturn(key)
        self.mox.StubOutWithMock(self.project, 'has_key_pair')
        self.project.has_key_pair(key.name).AndReturn(False)

        self.mox.ReplayAll()

        url = reverse('nova_keypairs_add', args=[TEST_PROJECT])
        data = {'js': '0', 'name': key.name}
        res = self.client.post(url, data)
        self.assertEqual(res.status_code, 200)
        self.assertEqual(res['Content-Type'], 'application/binary')

        self.mox.VerifyAll()

    def test_delete_keypair(self):
        self.mox.StubOutWithMock(self.project, 'delete_key_pair')
        self.project.delete_key_pair(TEST_KEY).AndReturn(None)

        self.mox.ReplayAll()

        data = {'key_name': TEST_KEY}
        url = reverse('nova_keypairs_delete', args=[TEST_PROJECT])
        res = self.client.post(url, data)
        self.assertRedirectsNoFollow(res, reverse('nova_keypairs',
                                                  args=[TEST_PROJECT]))

        self.mox.VerifyAll()

    def test_download_keypair(self):
        material = 'abcdefgh'
        session = self.client.session
        session['key.%s' % TEST_KEY] = material
        session.save()

        res = self.client.get(reverse('nova_keypairs_download',
                                      args=['test', TEST_KEY]))
        self.assertEqual(res.status_code, 200)
        self.assertEqual(res['Content-Type'], 'application/binary')
        self.assertContains(res, material)