This patch changes all references to HP in the client to now be HPE. The client itself is also renamed to hpelefthandclient. The new version for this client is 2.0.0. Change-Id: I7bfb20e5619b93bd1d7e0b7728932eb36bb0dad9
64 lines
2.2 KiB
Python
64 lines
2.2 KiB
Python
# (c) Copyright 2015 Hewlett Packard Enterprise Development LP
|
|
#
|
|
# 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.
|
|
|
|
"""Test class of LeftHand Client handling exceptions """
|
|
|
|
import test_HPELeftHandClient_base
|
|
|
|
from hpelefthandclient import exceptions
|
|
|
|
|
|
class HPELeftHandClientExceptionTestCase(test_HPELeftHandClient_base.
|
|
HPELeftHandClientBaseTestCase):
|
|
|
|
def setUp(self):
|
|
super(HPELeftHandClientExceptionTestCase, self).setUp()
|
|
|
|
def tearDown(self):
|
|
super(HPELeftHandClientExceptionTestCase, self).tearDown()
|
|
|
|
def test_from_response_string_format(self):
|
|
self.printHeader('from_response')
|
|
|
|
# Fake response representing an internal server error.
|
|
class FakeResponse(object):
|
|
status = 500
|
|
fake_response = FakeResponse()
|
|
|
|
output = exceptions.from_response(fake_response, {}).__str__()
|
|
self.assertEquals('Error (HTTP 500)', output)
|
|
|
|
self.printFooter('from_response')
|
|
|
|
def test_client_exception_string_format(self):
|
|
self.printHeader('client_exception')
|
|
|
|
fake_error = {'messageID': 999,
|
|
'message': 'Fake Description',
|
|
'debug1': 'Fake Debug 1',
|
|
'debug2': 'Fake Debug 2', }
|
|
|
|
# Create a fake exception and check that the output is
|
|
# converted properly.
|
|
client_ex = exceptions.ClientException(error=fake_error)
|
|
client_ex.message = "Fake Error"
|
|
client_ex.http_status = 500
|
|
output = client_ex.__str__()
|
|
|
|
self.assertEquals("Fake Error (HTTP 500) 999 - Fake Description "
|
|
"(1: 'Fake Debug 1') (2: 'Fake Debug 2')",
|
|
output)
|
|
|
|
self.printFooter('client_exception')
|