2013-04-19 16:15:20 +03:00
|
|
|
# Copyright (C) 2013 OpenStack Foundation.
|
|
|
|
# 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.
|
|
|
|
|
2014-09-11 21:14:18 +02:00
|
|
|
import abc
|
|
|
|
|
2014-02-13 11:13:12 +01:00
|
|
|
from mox3 import mox
|
2014-08-11 17:38:55 +04:00
|
|
|
import requests_mock
|
2014-09-11 21:14:18 +02:00
|
|
|
import six
|
2013-04-19 16:15:20 +03:00
|
|
|
import testtools
|
|
|
|
|
2014-09-11 21:14:18 +02:00
|
|
|
from neutronclient import client
|
2013-04-19 16:15:20 +03:00
|
|
|
from neutronclient.common import exceptions
|
2014-09-11 21:14:18 +02:00
|
|
|
from neutronclient.tests.unit import test_auth
|
2013-06-30 22:57:21 -04:00
|
|
|
from neutronclient.tests.unit.test_cli20 import MyResp
|
2013-04-19 16:15:20 +03:00
|
|
|
|
|
|
|
|
|
|
|
AUTH_TOKEN = 'test_token'
|
|
|
|
END_URL = 'test_url'
|
|
|
|
METHOD = 'GET'
|
|
|
|
URL = 'http://test.test:1234/v2.0/test'
|
2014-09-11 21:14:18 +02:00
|
|
|
BODY = 'IAMFAKE'
|
|
|
|
|
2013-04-19 16:15:20 +03:00
|
|
|
|
2014-09-11 21:14:18 +02:00
|
|
|
@six.add_metaclass(abc.ABCMeta)
|
|
|
|
class TestHTTPClientMixin(object):
|
2013-04-19 16:15:20 +03:00
|
|
|
|
|
|
|
def setUp(self):
|
2014-09-11 21:14:18 +02:00
|
|
|
super(TestHTTPClientMixin, self).setUp()
|
2013-04-19 16:15:20 +03:00
|
|
|
|
2014-09-11 21:14:18 +02:00
|
|
|
self.clazz, self.http = self.initialize()
|
2013-04-19 16:15:20 +03:00
|
|
|
self.mox = mox.Mox()
|
|
|
|
self.addCleanup(self.mox.UnsetStubs)
|
2014-09-11 21:14:18 +02:00
|
|
|
self.mox.StubOutWithMock(self.clazz, '_request')
|
|
|
|
|
|
|
|
@abc.abstractmethod
|
|
|
|
def initialize(self):
|
|
|
|
"""Return client class, instance."""
|
|
|
|
|
|
|
|
def _test_headers(self, expected_headers, **kwargs):
|
|
|
|
"""Test headers."""
|
|
|
|
self.clazz._request(URL, METHOD,
|
|
|
|
body=kwargs.get('body'),
|
|
|
|
headers=expected_headers)
|
|
|
|
self.mox.ReplayAll()
|
|
|
|
self.http.request(URL, METHOD, **kwargs)
|
|
|
|
self.mox.VerifyAll()
|
|
|
|
|
|
|
|
def test_headers_without_body(self):
|
|
|
|
self._test_headers({'Accept': 'application/json'})
|
|
|
|
|
|
|
|
def test_headers_with_body(self):
|
|
|
|
headers = {'Accept': 'application/json',
|
|
|
|
'Content-Type': 'application/json'}
|
|
|
|
self._test_headers(headers, body=BODY)
|
|
|
|
|
|
|
|
def test_headers_without_body_with_content_type(self):
|
|
|
|
headers = {'Accept': 'application/xml'}
|
|
|
|
self._test_headers(headers, content_type='application/xml')
|
|
|
|
|
|
|
|
def test_headers_with_body_with_content_type(self):
|
|
|
|
headers = {'Accept': 'application/xml',
|
|
|
|
'Content-Type': 'application/xml'}
|
|
|
|
self._test_headers(headers, body=BODY, content_type='application/xml')
|
|
|
|
|
|
|
|
def test_headers_defined_in_headers(self):
|
|
|
|
headers = {'Accept': 'application/xml',
|
|
|
|
'Content-Type': 'application/xml'}
|
|
|
|
self._test_headers(headers, body=BODY, headers=headers)
|
|
|
|
|
|
|
|
|
|
|
|
class TestSessionClient(TestHTTPClientMixin, testtools.TestCase):
|
|
|
|
|
2014-08-11 17:38:55 +04:00
|
|
|
@requests_mock.Mocker()
|
|
|
|
def initialize(self, mrequests):
|
|
|
|
session, auth = test_auth.setup_keystone_v2(mrequests)
|
2014-09-11 21:14:18 +02:00
|
|
|
return [client.SessionClient,
|
|
|
|
client.SessionClient(session=session, auth=auth)]
|
|
|
|
|
|
|
|
|
|
|
|
class TestHTTPClient(TestHTTPClientMixin, testtools.TestCase):
|
2013-04-19 16:15:20 +03:00
|
|
|
|
2014-09-11 21:14:18 +02:00
|
|
|
def initialize(self):
|
|
|
|
return [client.HTTPClient,
|
|
|
|
client.HTTPClient(token=AUTH_TOKEN, endpoint_url=END_URL)]
|
2013-04-19 16:15:20 +03:00
|
|
|
|
|
|
|
def test_request_error(self):
|
2014-09-11 21:14:18 +02:00
|
|
|
self.clazz._request(
|
|
|
|
URL, METHOD, body=None, headers=mox.IgnoreArg()
|
2013-04-19 16:15:20 +03:00
|
|
|
).AndRaise(Exception('error msg'))
|
|
|
|
self.mox.ReplayAll()
|
|
|
|
|
|
|
|
self.assertRaises(
|
|
|
|
exceptions.ConnectionFailed,
|
|
|
|
self.http._cs_request,
|
|
|
|
URL, METHOD
|
|
|
|
)
|
|
|
|
self.mox.VerifyAll()
|
|
|
|
|
|
|
|
def test_request_success(self):
|
|
|
|
rv_should_be = MyResp(200), 'test content'
|
|
|
|
|
2014-09-11 21:14:18 +02:00
|
|
|
self.clazz._request(
|
|
|
|
URL, METHOD, body=None, headers=mox.IgnoreArg()
|
2013-04-19 16:15:20 +03:00
|
|
|
).AndReturn(rv_should_be)
|
|
|
|
self.mox.ReplayAll()
|
|
|
|
|
|
|
|
self.assertEqual(rv_should_be, self.http._cs_request(URL, METHOD))
|
|
|
|
self.mox.VerifyAll()
|
2014-03-03 00:52:49 +09:00
|
|
|
|
|
|
|
def test_request_unauthorized(self):
|
|
|
|
rv_should_be = MyResp(401), 'unauthorized message'
|
2014-09-11 21:14:18 +02:00
|
|
|
self.clazz._request(
|
|
|
|
URL, METHOD, body=None, headers=mox.IgnoreArg()
|
2014-03-03 00:52:49 +09:00
|
|
|
).AndReturn(rv_should_be)
|
|
|
|
self.mox.ReplayAll()
|
|
|
|
|
|
|
|
e = self.assertRaises(exceptions.Unauthorized,
|
|
|
|
self.http._cs_request, URL, METHOD)
|
|
|
|
self.assertEqual('unauthorized message', e.message)
|
|
|
|
self.mox.VerifyAll()
|
|
|
|
|
|
|
|
def test_request_forbidden_is_returned_to_caller(self):
|
|
|
|
rv_should_be = MyResp(403), 'forbidden message'
|
2014-09-11 21:14:18 +02:00
|
|
|
self.clazz._request(
|
|
|
|
URL, METHOD, body=None, headers=mox.IgnoreArg()
|
2014-03-03 00:52:49 +09:00
|
|
|
).AndReturn(rv_should_be)
|
|
|
|
self.mox.ReplayAll()
|
|
|
|
|
|
|
|
self.assertEqual(rv_should_be, self.http._cs_request(URL, METHOD))
|
|
|
|
self.mox.VerifyAll()
|