Statistics
| Branch: | Tag: | Revision:

root / kamaki / clients / astakos / test.py @ 3c50df2e

History | View | Annotate | Download (3.9 kB)

1
# Copyright 2013 GRNET S.A. All rights reserved.
2
#
3
# Redistribution and use in source and binary forms, with or
4
# without modification, are permitted provided that the following
5
# conditions are met:
6
#
7
#   1. Redistributions of source code must retain the above
8
#      copyright notice, this list of conditions and the following
9
#      disclaimer.
10
#
11
#   2. Redistributions in binary form must reproduce the above
12
#      copyright notice, this list of conditions and the following
13
#      disclaimer in the documentation and/or other materials
14
#      provided with the distribution.
15
#
16
# THIS SOFTWARE IS PROVIDED BY GRNET S.A. ``AS IS'' AND ANY EXPRESS
17
# OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GRNET S.A OR
20
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
23
# USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
24
# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
26
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27
# POSSIBILITY OF SUCH DAMAGE.
28
#
29
# The views and conclusions contained in the software and
30
# documentation are those of the authors and should not be
31
# interpreted as representing official policies, either expressed
32
# or implied, of GRNET S.A.
33

    
34
from mock import patch, call
35
from unittest import TestCase
36

    
37
from kamaki.clients import astakos
38

    
39

    
40
example = dict(
41
        name='Simple Name',
42
        username='User Full Name',
43
        auth_token_expires='1362583796000',
44
        auth_token_created='1359991796000',
45
        email=['user@example.gr'],
46
        id=42,
47
        uuid='aus3r-uu1d-f0r-73s71ng-as7ak0s')
48

    
49
example0 = dict(
50
        name='Simple Name 0',
51
        username='User Full Name 0',
52
        auth_token_expires='1362583796001',
53
        auth_token_created='1359991796001',
54
        email=['user0@example.gr'],
55
        id=32,
56
        uuid='an07h2r-us3r-uu1d-f0r-as7ak0s')
57

    
58

    
59
class FR(object):
60
    json = example
61
    headers = {}
62
    content = json
63
    status = None
64
    status_code = 200
65

    
66
    def release(self):
67
        pass
68

    
69
astakos_pkg = 'kamaki.clients.astakos.AstakosClient'
70

    
71

    
72
class AstakosClient(TestCase):
73

    
74
    cached = False
75

    
76
    def setUp(self):
77
        self.url = 'https://astakos.example.com'
78
        self.token = 'ast@k0sT0k3n=='
79
        self.client = astakos.AstakosClient(self.url, self.token)
80

    
81
    def tearDown(self):
82
        FR.json = example
83

    
84
    @patch('%s.get' % astakos_pkg, return_value=FR())
85
    def _authenticate(self, get):
86
        r = self.client.authenticate()
87
        self.assertEqual(get.mock_calls[-1], call('/im/authenticate'))
88
        self.cached = True
89
        return r
90

    
91
    def test_authenticate(self):
92
        r = self._authenticate()
93
        for term, val in example.items():
94
            self.assertTrue(term in r)
95
            self.assertEqual(val, r[term])
96

    
97
    def test_info(self):
98
        if not self.cached:
99
            self._authenticate()
100
            return self.test_info()
101
        self.assertTrue(set(
102
            example.keys()).issubset(self.client.info().keys()))
103

    
104
    def test_get(self):
105
        if not self.cached:
106
            self._authenticate()
107
            return self.test_get()
108
        for term, val in example.items():
109
            self.assertEqual(self.client.term(term, self.token), val)
110
        self.assertTrue(example['email'][0] in self.client.term('email'))
111

    
112
    def test_list(self):
113
        if not self.cached:
114
            self._authenticate
115
        FR.json = example0
116
        self._authenticate()
117
        r = self.client.list()
118
        self.assertTrue(len(r) == 1)
119
        self.assertEqual(r[0]['auth_token'], self.token)
120

    
121
if __name__ == '__main__':
122
    from sys import argv
123
    from kamaki.clients.test import runTestCase
124
    runTestCase(AstakosClient, 'AstakosClient', argv[1:])