2013-08-06 13:36:45 -03:00
|
|
|
# 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-07-11 09:01:07 +10:00
|
|
|
import json
|
2012-12-24 22:01:28 -06:00
|
|
|
import os
|
2012-05-21 16:32:35 -04:00
|
|
|
|
2012-12-24 22:01:28 -06:00
|
|
|
import fixtures
|
2012-12-13 12:01:07 -06:00
|
|
|
import requests
|
2014-07-11 09:01:07 +10:00
|
|
|
from requests_mock.contrib import fixture as requests_mock_fixture
|
|
|
|
import six
|
2012-12-24 22:01:28 -06:00
|
|
|
import testtools
|
2012-12-13 12:01:07 -06:00
|
|
|
|
2012-05-21 16:32:35 -04:00
|
|
|
|
2015-12-13 23:25:04 -08:00
|
|
|
REQUEST_ID = ['req-test-request-id']
|
|
|
|
|
|
|
|
|
2012-12-24 21:49:34 -06:00
|
|
|
class TestCase(testtools.TestCase):
|
2012-12-13 12:01:07 -06:00
|
|
|
TEST_REQUEST_BASE = {
|
|
|
|
'verify': True,
|
|
|
|
}
|
|
|
|
|
2012-12-24 22:01:28 -06:00
|
|
|
def setUp(self):
|
|
|
|
super(TestCase, self).setUp()
|
|
|
|
if (os.environ.get('OS_STDOUT_CAPTURE') == 'True' or
|
|
|
|
os.environ.get('OS_STDOUT_CAPTURE') == '1'):
|
|
|
|
stdout = self.useFixture(fixtures.StringStream('stdout')).stream
|
|
|
|
self.useFixture(fixtures.MonkeyPatch('sys.stdout', stdout))
|
|
|
|
if (os.environ.get('OS_STDERR_CAPTURE') == 'True' or
|
|
|
|
os.environ.get('OS_STDERR_CAPTURE') == '1'):
|
|
|
|
stderr = self.useFixture(fixtures.StringStream('stderr')).stream
|
|
|
|
self.useFixture(fixtures.MonkeyPatch('sys.stderr', stderr))
|
|
|
|
|
2016-06-29 11:24:41 +08:00
|
|
|
def _assert_request_id(self, obj, count=1):
|
2015-12-13 23:25:04 -08:00
|
|
|
self.assertTrue(hasattr(obj, 'request_ids'))
|
2016-06-29 11:24:41 +08:00
|
|
|
self.assertEqual(REQUEST_ID * count, obj.request_ids)
|
2015-12-13 23:25:04 -08:00
|
|
|
|
2016-05-20 22:20:26 +03:00
|
|
|
def assert_called_anytime(self, method, url, body=None,
|
|
|
|
partial_body=None):
|
|
|
|
return self.shell.cs.assert_called_anytime(method, url, body,
|
|
|
|
partial_body)
|
|
|
|
|
2012-12-13 12:01:07 -06:00
|
|
|
|
2014-07-11 09:01:07 +10:00
|
|
|
class FixturedTestCase(TestCase):
|
|
|
|
|
|
|
|
client_fixture_class = None
|
|
|
|
data_fixture_class = None
|
|
|
|
|
|
|
|
def setUp(self):
|
|
|
|
super(FixturedTestCase, self).setUp()
|
|
|
|
|
|
|
|
self.requests = self.useFixture(requests_mock_fixture.Fixture())
|
|
|
|
self.data_fixture = None
|
|
|
|
self.client_fixture = None
|
|
|
|
self.cs = None
|
|
|
|
|
|
|
|
if self.client_fixture_class:
|
|
|
|
fix = self.client_fixture_class(self.requests)
|
|
|
|
self.client_fixture = self.useFixture(fix)
|
|
|
|
self.cs = self.client_fixture.new_client()
|
|
|
|
|
|
|
|
if self.data_fixture_class:
|
|
|
|
fix = self.data_fixture_class(self.requests)
|
|
|
|
self.data_fixture = self.useFixture(fix)
|
|
|
|
|
|
|
|
def assert_called(self, method, path, body=None):
|
2016-01-06 12:21:52 +09:00
|
|
|
self.assertEqual(method, self.requests.last_request.method)
|
|
|
|
self.assertEqual(path, self.requests.last_request.path_url)
|
2014-07-11 09:01:07 +10:00
|
|
|
|
|
|
|
if body:
|
|
|
|
req_data = self.requests.last_request.body
|
|
|
|
if isinstance(req_data, six.binary_type):
|
|
|
|
req_data = req_data.decode('utf-8')
|
|
|
|
if not isinstance(body, six.string_types):
|
|
|
|
# json load if the input body to match against is not a string
|
|
|
|
req_data = json.loads(req_data)
|
2016-01-06 12:21:52 +09:00
|
|
|
self.assertEqual(body, req_data)
|
2014-07-11 09:01:07 +10:00
|
|
|
|
|
|
|
|
2012-12-13 12:01:07 -06:00
|
|
|
class TestResponse(requests.Response):
|
2016-03-09 07:57:04 -05:00
|
|
|
"""Class used to wrap requests.Response.
|
|
|
|
|
|
|
|
Provides some convenience to initialize with a dict.
|
2013-06-09 11:18:02 +02:00
|
|
|
"""
|
2012-12-13 12:01:07 -06:00
|
|
|
|
|
|
|
def __init__(self, data):
|
2016-03-09 07:57:04 -05:00
|
|
|
super(TestResponse, self).__init__()
|
|
|
|
self._content = None
|
2012-12-13 12:01:07 -06:00
|
|
|
self._text = None
|
2016-03-09 07:57:04 -05:00
|
|
|
|
2012-12-13 12:01:07 -06:00
|
|
|
if isinstance(data, dict):
|
|
|
|
self.status_code = data.get('status_code', None)
|
2013-07-15 16:25:40 +00:00
|
|
|
self.headers = data.get('headers', None)
|
2013-11-07 11:28:05 +11:00
|
|
|
self.reason = data.get('reason', '')
|
2016-03-09 07:57:04 -05:00
|
|
|
# Fake text and content attributes to streamline Response creation
|
|
|
|
text = data.get('text', None)
|
|
|
|
self._content = text
|
|
|
|
self._text = text
|
2012-12-13 12:01:07 -06:00
|
|
|
else:
|
|
|
|
self.status_code = data
|
|
|
|
|
|
|
|
def __eq__(self, other):
|
|
|
|
return self.__dict__ == other.__dict__
|
|
|
|
|
2016-03-09 07:57:04 -05:00
|
|
|
@property
|
|
|
|
def content(self):
|
|
|
|
return self._content
|
|
|
|
|
2012-12-13 12:01:07 -06:00
|
|
|
@property
|
|
|
|
def text(self):
|
|
|
|
return self._text
|