proliantutils/proliantutils/tests/redfish/test_connector.py

73 lines
2.9 KiB
Python

# Copyright 2017 Hewlett Packard Enterprise Development LP
# 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.
import mock
from sushy import connector
from sushy import exceptions
import testtools
from proliantutils.redfish import connector as hpe_connector
class HPEConnectorTestCase(testtools.TestCase):
def setUp(self):
super(HPEConnectorTestCase, self).setUp()
@mock.patch.object(connector.Connector, '_op', autospec=True)
def test__op_no_exception(self, conn_mock):
conn_mock.side_effect = ["Hello", exceptions.ConnectionError,
"Hello", "World"]
hpe_conn = hpe_connector.HPEConnector(
'http://foo.bar:1234', username='user',
password='pass', verify=True)
headers = {'X-Fake': 'header'}
hpe_conn._op('GET', path='fake/path', data=None, headers=headers)
conn_mock.assert_called_once_with(hpe_conn, 'GET', path='fake/path',
data=None, headers=headers)
self.assertEqual(1, conn_mock.call_count)
@mock.patch.object(connector.Connector, '_op', autospec=True)
def test__op_with_exception(self, conn_mock):
conn_mock.side_effect = [exceptions.ConnectionError,
exceptions.ConnectionError, "Hello", "World"]
hpe_conn = hpe_connector.HPEConnector(
'http://foo.bar:1234', username='user',
password='pass', verify=True)
headers = {'X-Fake': 'header'}
lval = hpe_conn._op('GET', path='fake/path', data=None,
headers=headers)
self.assertEqual(3, conn_mock.call_count)
self.assertEqual(lval, "Hello")
@mock.patch.object(connector.Connector, '_op', autospec=True)
def test__op_all_exception(self, conn_mock):
conn_mock.side_effect = [
exceptions.ConnectionError] * (
hpe_connector.HPEConnector.MAX_RETRY_ATTEMPTS) + (
["Hello", "World"])
hpe_conn = hpe_connector.HPEConnector(
'http://foo.bar:1234', username='user',
password='pass', verify=True)
headers = {'X-Fake': 'header'}
self.assertRaises(
exceptions.ConnectionError, hpe_conn._op,
'GET', path='fake/path', data=None, headers=headers)
self.assertEqual(hpe_connector.HPEConnector.MAX_RETRY_ATTEMPTS,
conn_mock.call_count)