summaryrefslogtreecommitdiffstats
path: root/ipatests/test_smartproxy/resttest.py
blob: dc355471fc356da10fdcc2df2b6624dd0ddfb6a8 (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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
# Authors:
#   Rob Crittenden <rcritten@redhat.com>
#
# Copyright (C) 2014  Red Hat
# see file 'COPYING' for use and warranty information
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

"""
Base class for all REST tests
"""

import requests
import json
import nose
from ipatests.util import assert_deepequal, Fuzzy
from ipatests.test_xmlrpc.xmlrpc_test import fuzzy_uuid, fuzzy_password

FQDN = 'localhost'
PORT = 8090

EXPECTED = """Expected %r to raise %s.
  options = %r
  output = %r"""

UNEXPECTED = """Expected %r to raise %s, but caught different.
  options = %r
  %s: %s"""

try:
    response = requests.get(
        'http://%s:%d/ipa/smartproxy/host/host.example.com' % (FQDN, PORT),
        data={})
    server_available = True
except requests.ConnectionError:
    server_available = False


class REST_test(object):
    """
    Base class for all REST tests

    A Declarative test suite is controlled by the ``tests`` and
    ``cleanup`` class variables.

    The ``tests`` is a list of dictionaries with the following keys:

    ``desc``
        A name/description of the test
    ``command``
        A (command, args, kwargs) triple specifying the command to run
    ``expected``
        Can be either an ``errors.PublicError`` instance, in which case
        the command must fail with the given error; or the
        expected result.
        The result is checked with ``tests.util.assert_deepequal``.
    ``extra_check`` (optional)
        A checking function that is called with the response. It must
        return true for the test to pass.

    The ``cleanup`` is a list of (command, args, kwargs)
    triples. These are commands get run both before and after tests,
    and must not fail.
    """

    cleanup = tuple()
    tests = tuple()

    @classmethod
    def setUpClass(cls):
        if not server_available:
            raise nose.SkipTest('%r: Server not available' %
                                cls.__module__)

    def cleanup_generate(self, stage):
        for (i, request) in enumerate(self.cleanup):
            func = lambda: self.run_cleanup(request)
            func.description = '%s %s-cleanup[%d]: %r' % (
                self.__class__.__name__, stage, i, request
            )
            yield (func,)

    def make_request(self, method, uri, data=None):
        request = method('http://%s:%d%s' % (FQDN, PORT, uri), data=data)
        return request

    def run_cleanup(self, request):
        (uri, data) = request
        try:
            result = self.make_request(requests.delete, uri, data)
            assert request.status_code in [401, 201, 200]
        except Exception:
            pass

    def test_generator(self):
        """
        Iterate through tests.

        nose reports each one as a separate test.
        """

        # Iterate through pre-cleanup:
        for tup in self.cleanup_generate('pre'):
            yield tup

        # Iterate through the tests:
        name = self.__class__.__name__
        for (i, test) in enumerate(self.tests):
            nice = '%s[%d]: %s: %s' % (
                name, i, test['request'][0], test.get('desc', '')
            )
            func = lambda: self.check(nice, **test)
            func.description = nice
            yield (func,)

        # Iterate through post-cleanup:
        for tup in self.cleanup_generate('post'):
            yield tup

    def check(self, nice, desc, request, method, expected_status, expected):
        (uri, data) = request
        if isinstance(expected, Exception):
            self.check_exception(nice, method, uri, data, expected)
        else:
            self.check_result(nice,
                              method,
                              uri,
                              data,
                              expected_status,
                              expected)

    def check_exception(self, nice, method, uri, data, expected):
        klass = expected.__class__
        name = klass.__name__
        try:
            output = self.make_request(method, uri, data)
        except StandardError, e:
            pass
        else:
            raise AssertionError(
                EXPECTED % (uri, name, method, data, output)
            )
        if not isinstance(e, klass):
            raise AssertionError(
                UNEXPECTED % (uri, name, method, data, e.__class__.__name__, e)
            )

    def check_result(self, nice, method, uri, data, expected_status, expected):
        request = self.make_request(method, uri, data)
        assert expected_status == request.status_code

        if request.status_code in [200, 201]:
            try:
                data = json.loads(request.text)
            except ValueError, e:
                raise AssertionError(
                    'Could not parse JSON: %s' % e
                )
            assert_deepequal(expected, data, nice)