Files
python-tripleoclient/tripleoclient/tests/v1/test_overcloud_parameters.py
Luca Miccini fe39c4c9f3 Do not use ironic/nova for generate_fencing
This commit cleans up and simplifies the way fencing parameters
are generated.
We don't try to map baremetal nodes to instances anymore and we simply
generate fencing agents definitions for each node.

Change-Id: I362870cd1f0a78049268e5910ffef4dc9424f668
2021-03-10 10:11:13 +01:00

95 lines
3.0 KiB
Python

# 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 osc_lib.tests import utils
from tripleoclient.v1 import overcloud_parameters
class TestGenerateFencingParameters(utils.TestCommand):
def setUp(self):
super(TestGenerateFencingParameters, self).setUp()
self.cmd = overcloud_parameters.GenerateFencingParameters(self.app,
None)
self.app.client_manager = mock.Mock()
@mock.patch(
'tripleoclient.workflows.parameters.generate_fencing_parameters',
autospec=True)
def test_generate_parameters(self, mock_gen_fence):
mock_open_context = mock.mock_open(read_data="""
{
"nodes": [
{
"name": "control-0",
"pm_password": "control-0-password",
"pm_type": "ipmi",
"pm_user": "control-0-admin",
"pm_addr": "0.1.2.3",
"pm_port": "0123",
"mac": [
"00:11:22:33:44:55"
]
},
{
"name": "control-1",
"pm_password": "control-1-password",
"pm_type": "ipmi",
"pm_user": "control-1-admin",
"pm_addr": "1.2.3.4",
"mac": [
"11:22:33:44:55:66"
]
}
]
}
""")
arglist = ['node_file.json']
verifylist = []
mock_gen_fence.return_value = '{"result":[]}'
with mock.patch('six.moves.builtins.open', mock_open_context):
parsed_args = self.check_parser(self.cmd, arglist, verifylist)
self.cmd.take_action(parsed_args)
mock_gen_fence.assert_called_once_with(
**{
'nodes_json': [
{
u'mac': [u'00:11:22:33:44:55'],
u'name': u'control-0',
u'pm_port': u'0123',
u'pm_addr': u'0.1.2.3',
u'pm_type': u'ipmi',
u'pm_password': u'control-0-password',
u'pm_user': u'control-0-admin'
},
{
u'name': u'control-1',
u'pm_addr': u'1.2.3.4',
u'pm_type': u'ipmi',
u'pm_user': u'control-1-admin',
u'pm_password': u'control-1-password',
u'mac': [u'11:22:33:44:55:66']
}],
'delay': None,
'ipmi_cipher': None,
'ipmi_lanplus': True,
'ipmi_level': None
})