Files
python-mistralclient/mistralclient/tests/unit/v2/test_cli_workflows.py
Winson Chan 649dfbc28e Add workbook and workflow validate commands
Add workbook-validate and workflow-validate commands to validate
workbook and workflow definition respectively. The commands print
the error if validation fails else returns command prompt.

Change-Id: I25b220a2a9abd720f24ee6b23ce37ee977845793
Implements: blueprint api-validate-dsl
2015-04-06 23:53:45 +00:00

116 lines
3.9 KiB
Python

# Copyright 2014 - Mirantis, Inc.
# Copyright 2015 - StackStorm, Inc.
#
# 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 mistralclient.api.v2 import workflows
from mistralclient.commands.v2 import workflows as workflow_cmd
from mistralclient import exceptions as exc
from mistralclient.tests.unit import base
WORKFLOW_DICT = {
'name': 'a',
'tags': ['a', 'b'],
'input': 'param',
'created_at': '1',
'updated_at': '1'
}
WF_DEF = """
version: '2.0'
flow:
tasks:
task1:
action: nova.servers_get server="1"
"""
WF_WITH_DEF_DICT = WORKFLOW_DICT.copy()
WF_WITH_DEF_DICT.update({'definition': WF_DEF})
WORKFLOW = workflows.Workflow(mock, WORKFLOW_DICT)
WORKFLOW_WITH_DEF = workflows.Workflow(mock, WF_WITH_DEF_DICT)
class TestCLIWorkflowsV2(base.BaseCommandTest):
@mock.patch('argparse.open', create=True)
@mock.patch('mistralclient.api.v2.workflows.WorkflowManager.create')
def test_create(self, mock, mock_open):
mock.return_value = (WORKFLOW,)
result = self.call(workflow_cmd.Create, app_args=['1.txt'])
self.assertEqual([('a', 'a, b', 'param', '1', '1')], result[1])
@mock.patch('argparse.open', create=True)
@mock.patch('mistralclient.api.v2.workflows.WorkflowManager.update')
def test_update(self, mock, mock_open):
mock.return_value = (WORKFLOW,)
result = self.call(workflow_cmd.Update, app_args=['1.txt'])
self.assertEqual([('a', 'a, b', 'param', '1', '1')], result[1])
@mock.patch('mistralclient.api.v2.workflows.WorkflowManager.list')
def test_list(self, mock):
mock.return_value = (WORKFLOW,)
result = self.call(workflow_cmd.List)
self.assertEqual([('a', 'a, b', 'param', '1', '1')], result[1])
@mock.patch('mistralclient.api.v2.workflows.WorkflowManager.get')
def test_get(self, mock):
mock.return_value = WORKFLOW
result = self.call(workflow_cmd.Get, app_args=['name'])
self.assertEqual(('a', 'a, b', 'param', '1', '1'), result[1])
@mock.patch('mistralclient.api.v2.workflows.WorkflowManager.delete')
def test_delete(self, mock):
self.assertIsNone(self.call(workflow_cmd.Delete, app_args=['name']))
@mock.patch('mistralclient.api.v2.workflows.'
'WorkflowManager.get')
def test_get_definition(self, mock):
mock.return_value = WORKFLOW_WITH_DEF
self.call(workflow_cmd.GetDefinition, app_args=['name'])
self.app.stdout.write.assert_called_with(WF_DEF)
@mock.patch('argparse.open', create=True)
@mock.patch('mistralclient.api.v2.workflows.WorkflowManager.validate')
def test_validate(self, mock, mock_open):
mock.return_value = {'valid': True}
mock_open.return_value = mock.MagicMock(spec=file)
result = self.call(workflow_cmd.Validate, app_args=['wf.yaml'])
self.assertEqual(result[0], tuple())
self.assertEqual(result[1], tuple())
@mock.patch('argparse.open', create=True)
@mock.patch('mistralclient.api.v2.workflows.WorkflowManager.validate')
def test_validate_failed(self, mock, mock_open):
mock.return_value = {'valid': False, 'error': 'Invalid DSL...'}
mock_open.return_value = mock.MagicMock(spec=file)
self.assertRaises(exc.MistralClientException,
self.call,
workflow_cmd.Validate,
app_args=['wf.yaml'])