-
-
Notifications
You must be signed in to change notification settings - Fork 785
Expand file tree
/
Copy pathtest_wiring.py
More file actions
159 lines (116 loc) · 5.47 KB
/
Copy pathtest_wiring.py
File metadata and controls
159 lines (116 loc) · 5.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
# -*- coding: utf-8 -*-
# Licensed to the StackStorm, Inc ('StackStorm') under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You 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.
from __future__ import absolute_import
from integration.orquesta import base
from st2common.constants import action as ac_const
class WiringTest(base.TestWorkflowExecution):
def test_sequential(self):
wf_name = 'examples.orquesta-sequential'
wf_input = {'name': 'Thanos'}
expected_output = {'greeting': 'Thanos, All your base are belong to us!'}
expected_result = {'output': expected_output}
ex = self._execute_workflow(wf_name, wf_input)
ex = self._wait_for_completion(ex)
self.assertEqual(ex.status, ac_const.LIVEACTION_STATUS_SUCCEEDED)
self.assertDictEqual(ex.result, expected_result)
def test_join(self):
wf_name = 'examples.orquesta-join'
expected_output = {
'messages': [
'Fee fi fo fum',
'I smell the blood of an English man',
'Be alive, or be he dead',
'I\'ll grind his bones to make my bread'
]
}
expected_result = {'output': expected_output}
ex = self._execute_workflow(wf_name)
ex = self._wait_for_completion(ex)
self.assertEqual(ex.status, ac_const.LIVEACTION_STATUS_SUCCEEDED)
self.assertDictEqual(ex.result, expected_result)
def test_cycle(self):
wf_name = 'examples.orquesta-rollback-retry'
expected_output = None
expected_result = {'output': expected_output}
ex = self._execute_workflow(wf_name)
ex = self._wait_for_completion(ex)
self.assertEqual(ex.status, ac_const.LIVEACTION_STATUS_SUCCEEDED)
self.assertDictEqual(ex.result, expected_result)
def test_action_less(self):
wf_name = 'examples.orquesta-test-action-less-tasks'
wf_input = {'name': 'Thanos'}
message = 'Thanos, All your base are belong to us!'
expected_output = {'greeting': message.upper()}
expected_result = {'output': expected_output}
ex = self._execute_workflow(wf_name, wf_input)
ex = self._wait_for_completion(ex)
self.assertEqual(ex.status, ac_const.LIVEACTION_STATUS_SUCCEEDED)
self.assertDictEqual(ex.result, expected_result)
def test_st2_runtime_context(self):
wf_name = 'examples.orquesta-st2-ctx'
ex = self._execute_workflow(wf_name)
ex = self._wait_for_completion(ex)
expected_output = {'callback': 'http://127.0.0.1:9101/v1/executions/%s' % str(ex.id)}
expected_result = {'output': expected_output}
self.assertEqual(ex.status, ac_const.LIVEACTION_STATUS_SUCCEEDED)
self.assertDictEqual(ex.result, expected_result)
def test_subworkflow(self):
wf_name = 'examples.orquesta-subworkflow'
ex = self._execute_workflow(wf_name)
ex = self._wait_for_completion(ex)
self.assertEqual(ex.status, ac_const.LIVEACTION_STATUS_SUCCEEDED)
self._wait_for_task(ex, 'start', ac_const.LIVEACTION_STATUS_SUCCEEDED)
t2_ex = self._wait_for_task(ex, 'subworkflow', ac_const.LIVEACTION_STATUS_SUCCEEDED)[0]
self._wait_for_task(t2_ex, 'task1', ac_const.LIVEACTION_STATUS_SUCCEEDED)
self._wait_for_task(t2_ex, 'task2', ac_const.LIVEACTION_STATUS_SUCCEEDED)
self._wait_for_task(t2_ex, 'task3', ac_const.LIVEACTION_STATUS_SUCCEEDED)
self._wait_for_task(ex, 'finish', ac_const.LIVEACTION_STATUS_SUCCEEDED)
def test_output_on_error(self):
wf_name = 'examples.orquesta-output-on-error'
ex = self._execute_workflow(wf_name)
ex = self._wait_for_completion(ex)
expected_output = {
'progress': 25
}
expected_errors = [
{
'type': 'error',
'task_id': 'task2',
'message': 'Execution failed. See result for details.',
'result': {
'failed': True,
'return_code': 1,
'stderr': '',
'stdout': '',
'succeeded': False
}
}
]
expected_result = {
'errors': expected_errors,
'output': expected_output
}
self.assertEqual(ex.status, ac_const.LIVEACTION_STATUS_FAILED)
self.assertDictEqual(ex.result, expected_result)
def test_config_context_renders(self):
config_value = "Testing"
wf_name = 'examples.render_config_context'
expected_output = {'context_value': config_value}
expected_result = {'output': expected_output}
ex = self._execute_workflow(wf_name)
ex = self._wait_for_completion(ex)
self.assertEqual(ex.status, ac_const.LIVEACTION_STATUS_SUCCEEDED)
self.assertDictEqual(ex.result, expected_result)