proliantutils/proliantutils/tests/redfish/resources/account_service/test_account.py

73 lines
2.6 KiB
Python

# Copyright 2017 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.
__author__ = 'HPE'
import json
from unittest import mock
import testtools
from proliantutils.redfish.resources.account_service import account
class HPEAccountCollectionTestCase(testtools.TestCase):
def setUp(self):
super(HPEAccountCollectionTestCase, self).setUp()
self.conn = mock.MagicMock()
with open('proliantutils/tests/redfish/'
'json_samples/account_collection.json', 'r') as f:
self.conn.get.return_value.json.return_value = (
json.loads(f.read()))
self.account_coll_obj = account.HPEAccountCollection(
self.conn, '/redfish/v1/AccountService/Accounts',
redfish_version='1.0.2')
def test_get_member_details(self):
with open('proliantutils/tests/redfish/'
'json_samples/account.json', 'r') as f:
self.conn.get.return_value.json.return_value = (
json.loads(f.read()))
obj = self.account_coll_obj.get_member_details('foo')
self.assertIsInstance(obj, account.HPEAccount)
self.assertIsNone(self.account_coll_obj.get_member_details('bar'))
class HPEAccountTestCase(testtools.TestCase):
def setUp(self):
super(HPEAccountTestCase, self).setUp()
self.conn = mock.MagicMock()
with open('proliantutils/tests/redfish/'
'json_samples/account.json', 'r') as f:
account_json = json.loads(f.read())
self.conn.get.return_value.json.return_value = account_json
self.acc_inst = account.HPEAccount(
self.conn, '/redfish/v1/AccountService/Accounts/1',
redfish_version='1.0.2')
def test_attributes(self):
self.assertEqual('foo', self.acc_inst.username)
def test_update_credentials(self):
target_uri = '/redfish/v1/AccountService/Accounts/1'
self.acc_inst.update_credentials('fake-password')
self.acc_inst._conn.patch.assert_called_once_with(
target_uri, data={'Password': 'fake-password'})