Statistics
| Branch: | Tag: | Revision:

root / kamaki / clients / astakos / test.py @ b79ae40b

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
astakos_pkg = 'kamaki.clients.astakos.AstakosClient'
67

    
68

    
69
class AstakosClient(TestCase):
70

    
71
    cached = False
72

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

    
78
    def tearDown(self):
79
        FR.json = example
80

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

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

    
94
    def test_info(self):
95
        if not self.cached:
96
            self._authenticate()
97
            return self.test_info()
98
        self.assertTrue(set(
99
            example.keys()).issubset(self.client.info().keys()))
100

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

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

    
118
if __name__ == '__main__':
119
    from sys import argv
120
    from kamaki.clients.test import runTestCase
121
    runTestCase(AstakosClient, 'AstakosClient', argv[1:])