cad7916ce8
Serializing all the execution in a message can make the message too big. This change was done in tripleo-common. this supports that change This change still supports the old format and is backwards compatible. Partial-Bug: #1812172 Change-Id: I40ee028366222f38f5ba1db58d171f98be75d009
137 lines
4.7 KiB
Python
137 lines
4.7 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 json
|
|
import mock
|
|
import tempfile
|
|
|
|
from osc_lib.tests import utils as test_utils
|
|
|
|
from tripleoclient.tests.v1.baremetal import fakes
|
|
from tripleoclient.v1 import overcloud_raid
|
|
|
|
|
|
class TestCreateRAID(fakes.TestBaremetal):
|
|
|
|
def setUp(self):
|
|
super(TestCreateRAID, self).setUp()
|
|
|
|
self.cmd = overcloud_raid.CreateRAID(self.app, None)
|
|
|
|
self.workflow = self.app.client_manager.workflow_engine
|
|
self.conf = {
|
|
"logical_disks": [
|
|
{"foo": "bar"},
|
|
{"foo2": "bar2"}
|
|
]
|
|
}
|
|
tripleoclient = self.app.client_manager.tripleoclient
|
|
websocket = tripleoclient.messaging_websocket()
|
|
websocket.wait_for_messages.return_value = iter([
|
|
{'status': "SUCCESS",
|
|
'execution_id': 'IDID'}
|
|
])
|
|
self.websocket = websocket
|
|
|
|
execution = mock.MagicMock(
|
|
output=json.dumps({
|
|
"result": None
|
|
})
|
|
)
|
|
execution.id = "IDID"
|
|
self.workflow.executions.create.return_value = execution
|
|
|
|
def test_ok(self):
|
|
conf = json.dumps(self.conf)
|
|
arglist = ['--node', 'uuid1', '--node', 'uuid2', conf]
|
|
verifylist = [
|
|
('node', ['uuid1', 'uuid2']),
|
|
('configuration', conf)
|
|
]
|
|
parsed_args = self.check_parser(self.cmd, arglist, verifylist)
|
|
|
|
self.cmd.take_action(parsed_args)
|
|
|
|
self.workflow.executions.create.assert_called_once_with(
|
|
'tripleo.baremetal.v1.create_raid_configuration',
|
|
workflow_input={
|
|
'node_uuids': ['uuid1', 'uuid2'],
|
|
'configuration': self.conf,
|
|
}
|
|
)
|
|
|
|
def test_from_file(self):
|
|
with tempfile.NamedTemporaryFile('w+t') as fp:
|
|
json.dump(self.conf, fp)
|
|
fp.flush()
|
|
arglist = ['--node', 'uuid1', '--node', 'uuid2', fp.name]
|
|
verifylist = [
|
|
('node', ['uuid1', 'uuid2']),
|
|
('configuration', fp.name)
|
|
]
|
|
parsed_args = self.check_parser(self.cmd, arglist, verifylist)
|
|
|
|
self.cmd.take_action(parsed_args)
|
|
|
|
self.workflow.executions.create.assert_called_once_with(
|
|
'tripleo.baremetal.v1.create_raid_configuration',
|
|
workflow_input={
|
|
'node_uuids': ['uuid1', 'uuid2'],
|
|
'configuration': self.conf,
|
|
}
|
|
)
|
|
|
|
def test_no_nodes(self):
|
|
arglist = ['{}']
|
|
verifylist = [
|
|
('configuration', '{}')
|
|
]
|
|
self.assertRaises(test_utils.ParserException, self.check_parser,
|
|
self.cmd, arglist, verifylist)
|
|
self.assertFalse(self.workflow.executions.create.called)
|
|
|
|
def test_not_yaml(self):
|
|
arglist = ['--node', 'uuid1', '--node', 'uuid2', ':']
|
|
verifylist = [
|
|
('node', ['uuid1', 'uuid2']),
|
|
('configuration', ':')
|
|
]
|
|
parsed_args = self.check_parser(self.cmd, arglist, verifylist)
|
|
|
|
self.assertRaisesRegex(RuntimeError, 'cannot be parsed as YAML',
|
|
self.cmd.take_action, parsed_args)
|
|
self.assertFalse(self.workflow.executions.create.called)
|
|
|
|
def test_bad_type(self):
|
|
for conf in ('[]', '{logical_disks: 42}', '{logical_disks: [42]}'):
|
|
arglist = ['--node', 'uuid1', '--node', 'uuid2', conf]
|
|
verifylist = [
|
|
('node', ['uuid1', 'uuid2']),
|
|
('configuration', conf)
|
|
]
|
|
parsed_args = self.check_parser(self.cmd, arglist, verifylist)
|
|
|
|
self.assertRaises(TypeError, self.cmd.take_action, parsed_args)
|
|
self.assertFalse(self.workflow.executions.create.called)
|
|
|
|
def test_bad_value(self):
|
|
conf = '{another_key: [{}]}'
|
|
arglist = ['--node', 'uuid1', '--node', 'uuid2', conf]
|
|
verifylist = [
|
|
('node', ['uuid1', 'uuid2']),
|
|
('configuration', conf)
|
|
]
|
|
parsed_args = self.check_parser(self.cmd, arglist, verifylist)
|
|
|
|
self.assertRaises(ValueError, self.cmd.take_action, parsed_args)
|
|
self.assertFalse(self.workflow.executions.create.called)
|