summaryrefslogtreecommitdiff
path: root/tests/test_http.py
blob: a015793beada6e2ba5d588bcd6e334dc3879f769 (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
import httplib2
import mock

from keystoneclient import client
from keystoneclient import exceptions
from tests import utils


fake_response = httplib2.Response({"status": 200})
fake_body = '{"hi": "there"}'
mock_request = mock.Mock(return_value=(fake_response, fake_body))


def get_client():
    cl = client.HTTPClient(username="username", password="password",
                           tenant_id="tenant", auth_url="auth_test")
    return cl


def get_authed_client():
    cl = get_client()
    cl.management_url = "http://127.0.0.1:5000"
    cl.auth_token = "token"
    return cl


class ClientTest(utils.TestCase):

    def test_get(self):
        cl = get_authed_client()

        @mock.patch.object(httplib2.Http, "request", mock_request)
        @mock.patch('time.time', mock.Mock(return_value=1234))
        def test_get_call():
            resp, body = cl.get("/hi")
            headers = {"X-Auth-Token": "token",
                       "User-Agent": cl.USER_AGENT}
            mock_request.assert_called_with("http://127.0.0.1:5000/hi",
                                            "GET", headers=headers)
            # Automatic JSON parsing
            self.assertEqual(body, {"hi": "there"})

        test_get_call()

    def test_get_error(self):
        cl = get_authed_client()

        fake_err_response = httplib2.Response({"status": 400})
        fake_err_body = 'Some evil plaintext string'
        err_mock_request = mock.Mock(return_value=(fake_err_response,
                                                   fake_err_body))

        @mock.patch.object(httplib2.Http, "request", err_mock_request)
        def test_get_call():
            self.assertRaises(exceptions.BadRequest, cl.get, '/hi')

        test_get_call()

    def test_post(self):
        cl = get_authed_client()

        @mock.patch.object(httplib2.Http, "request", mock_request)
        def test_post_call():
            cl.post("/hi", body=[1, 2, 3])
            headers = {
                "X-Auth-Token": "token",
                "Content-Type": "application/json",
                "User-Agent": cl.USER_AGENT
            }
            mock_request.assert_called_with("http://127.0.0.1:5000/hi", "POST",
                                            headers=headers, body='[1, 2, 3]')

        test_post_call()