506800208a
The Oslo libraries have moved all of their code out of the 'oslo' namespace package into per-library packages. The namespace package was retained during kilo for backwards compatibility, but will be removed by the liberty-2 milestone. This change removes the use of the namespace package, replacing it with the new package names. The patches in the libraries will be put on hold until application patches have landed, or L2, whichever comes first. At that point, new versions of the libraries without namespace packages will be released as a major version update. Please merge this patch, or an equivalent, before L2 to avoid problems with those library releases. Blueprint: remove-namespace-packages https://blueprints.launchpad.net/oslo-incubator/+spec/remove-namespace-packages Change-Id: I73addc2c144c76c60f046e83c97e3b6ffe09d879
208 lines
6.4 KiB
Python
208 lines
6.4 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 oslo_config import cfg
|
|
from oslo_log import log as logging
|
|
|
|
from mistral.actions import std_actions
|
|
from mistral import context as auth_context
|
|
from mistral.db.v2 import api as db_api
|
|
from mistral import exceptions as exc
|
|
from mistral.services import workbooks as wb_service
|
|
from mistral.tests.unit.engine import base
|
|
|
|
LOG = logging.getLogger(__name__)
|
|
|
|
# Use the set_default method to set value otherwise in certain test cases
|
|
# the change in value is not permanent.
|
|
cfg.CONF.set_default('auth_enable', False, group='pecan')
|
|
|
|
|
|
WORKBOOK = """
|
|
---
|
|
version: '2.0'
|
|
|
|
name: my_wb
|
|
|
|
workflows:
|
|
wf1:
|
|
type: reverse
|
|
input:
|
|
- param1
|
|
- param2
|
|
output:
|
|
final_result: <% $.final_result %>
|
|
|
|
tasks:
|
|
task1:
|
|
action: std.echo output=<% $.param1 %>
|
|
publish:
|
|
result1: <% $.task1 %>
|
|
|
|
task2:
|
|
action: std.echo output="'<% $.param1 %> & <% $.param2 %>'"
|
|
publish:
|
|
final_result: <% $.task2 %>
|
|
requires: [task1]
|
|
|
|
wf2:
|
|
type: direct
|
|
output:
|
|
slogan: <% $.slogan %>
|
|
|
|
tasks:
|
|
task1:
|
|
workflow: wf1 param1='Bonnie' param2='Clyde' task_name='task2'
|
|
publish:
|
|
slogan: "<% $.task1.final_result %> is a cool movie!"
|
|
"""
|
|
|
|
|
|
class SubworkflowsTest(base.EngineTestCase):
|
|
def setUp(self):
|
|
super(SubworkflowsTest, self).setUp()
|
|
|
|
wb_service.create_workbook_v2(WORKBOOK)
|
|
|
|
def test_subworkflow_success(self):
|
|
wf2_ex = self.engine.start_workflow('my_wb.wf2', None)
|
|
|
|
project_id = auth_context.ctx().project_id
|
|
|
|
# Execution of 'wf2'.
|
|
self.assertEqual(project_id, wf2_ex.project_id)
|
|
self.assertIsNotNone(wf2_ex)
|
|
self.assertDictEqual({}, wf2_ex.input)
|
|
self.assertDictEqual({}, wf2_ex.params)
|
|
|
|
self._await(lambda: len(db_api.get_workflow_executions()) == 2, 0.5, 5)
|
|
|
|
wf_execs = db_api.get_workflow_executions()
|
|
|
|
self.assertEqual(2, len(wf_execs))
|
|
|
|
# Execution of 'wf2'.
|
|
wf1_ex = self._assert_single_item(wf_execs, name='my_wb.wf1')
|
|
wf2_ex = self._assert_single_item(wf_execs, name='my_wb.wf2')
|
|
|
|
self.assertEqual(project_id, wf1_ex.project_id)
|
|
self.assertIsNotNone(wf1_ex.task_execution_id)
|
|
self.assertDictContainsSubset(
|
|
{
|
|
'task_name': 'task2',
|
|
'task_execution_id': wf1_ex.task_execution_id
|
|
},
|
|
wf1_ex.params
|
|
)
|
|
self.assertDictEqual(
|
|
{
|
|
'param1': 'Bonnie',
|
|
'param2': 'Clyde'
|
|
},
|
|
wf1_ex.input
|
|
)
|
|
|
|
# Wait till workflow 'wf1' is completed.
|
|
self._await(lambda: self.is_execution_success(wf1_ex.id))
|
|
|
|
wf1_ex = db_api.get_workflow_execution(wf1_ex.id)
|
|
|
|
self.assertDictEqual(
|
|
{'final_result': "'Bonnie & Clyde'"},
|
|
wf1_ex.output
|
|
)
|
|
|
|
# Wait till workflow 'wf2' is completed.
|
|
self._await(lambda: self.is_execution_success(wf2_ex.id))
|
|
|
|
wf2_ex = db_api.get_workflow_execution(wf2_ex.id)
|
|
|
|
self.assertDictEqual(
|
|
{'slogan': "'Bonnie & Clyde' is a cool movie!"},
|
|
wf2_ex.output
|
|
)
|
|
|
|
# Check project_id in tasks.
|
|
wf1_task_execs = db_api.get_task_executions(
|
|
workflow_execution_id=wf1_ex.id
|
|
)
|
|
wf2_task_execs = db_api.get_task_executions(
|
|
workflow_execution_id=wf2_ex.id
|
|
)
|
|
|
|
wf2_task1_ex = self._assert_single_item(wf1_task_execs, name='task1')
|
|
wf1_task1_ex = self._assert_single_item(wf2_task_execs, name='task1')
|
|
wf1_task2_ex = self._assert_single_item(wf1_task_execs, name='task2')
|
|
|
|
self.assertEqual(project_id, wf2_task1_ex.project_id)
|
|
self.assertEqual(project_id, wf1_task1_ex.project_id)
|
|
self.assertEqual(project_id, wf1_task2_ex.project_id)
|
|
|
|
@mock.patch.object(std_actions.EchoAction, 'run',
|
|
mock.MagicMock(side_effect=exc.ActionException))
|
|
def test_subworkflow_error(self):
|
|
wf2_ex = self.engine.start_workflow('my_wb.wf2', None)
|
|
|
|
self._await(lambda: len(db_api.get_workflow_executions()) == 2, 0.5, 5)
|
|
|
|
wf_execs = db_api.get_workflow_executions()
|
|
|
|
self.assertEqual(2, len(wf_execs))
|
|
|
|
wf1_ex = self._assert_single_item(wf_execs, name='my_wb.wf1')
|
|
wf2_ex = self._assert_single_item(wf_execs, name='my_wb.wf2')
|
|
|
|
# Wait till workflow 'wf1' is completed.
|
|
self._await(lambda: self.is_execution_error(wf1_ex.id))
|
|
|
|
# Wait till workflow 'wf2' is completed, its state must be ERROR.
|
|
self._await(lambda: self.is_execution_error(wf2_ex.id))
|
|
|
|
def test_subworkflow_environment_inheritance(self):
|
|
env = {'key1': 'abc'}
|
|
|
|
wf2_ex = self.engine.start_workflow('my_wb.wf2', None, env=env)
|
|
|
|
# Execution of 'wf2'.
|
|
self.assertIsNotNone(wf2_ex)
|
|
self.assertDictEqual({}, wf2_ex.input)
|
|
self.assertDictEqual({'env': env}, wf2_ex.params)
|
|
|
|
self._await(lambda: len(db_api.get_workflow_executions()) == 2, 0.5, 5)
|
|
|
|
wf_execs = db_api.get_workflow_executions()
|
|
|
|
self.assertEqual(2, len(wf_execs))
|
|
|
|
# Execution of 'wf1'.
|
|
wf1_ex = self._assert_single_item(wf_execs, name='my_wb.wf1')
|
|
wf2_ex = self._assert_single_item(wf_execs, name='my_wb.wf2')
|
|
|
|
expected_start_params = {
|
|
'task_name': 'task2',
|
|
'task_execution_id': wf1_ex.task_execution_id,
|
|
'env': env
|
|
}
|
|
|
|
self.assertIsNotNone(wf1_ex.task_execution_id)
|
|
self.assertDictContainsSubset(expected_start_params, wf1_ex.params)
|
|
|
|
# Wait till workflow 'wf1' is completed.
|
|
self._await(lambda: self.is_execution_success(wf1_ex.id))
|
|
|
|
# Wait till workflow 'wf2' is completed.
|
|
self._await(lambda: self.is_execution_success(wf2_ex.id))
|