From c61a6f1e178b97dca06a56b4fad3fd00404c16ae Mon Sep 17 00:00:00 2001 From: Zheng Qibin Date: Fri, 20 Jul 2018 02:18:16 +0800 Subject: conductor module in server part of testing-scheduler. JIRA: BOTTLENECK-232 encapusulate the invoking methods to conductor server in a module. Change-Id: I718c6eed5e75ac01f267688b5694ec35db175b48 Signed-off-by: Zheng Qibin --- .../server/conductorclient/mock_workflow.json | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 testing-scheduler/server/conductorclient/mock_workflow.json (limited to 'testing-scheduler/server/conductorclient/mock_workflow.json') diff --git a/testing-scheduler/server/conductorclient/mock_workflow.json b/testing-scheduler/server/conductorclient/mock_workflow.json new file mode 100644 index 00000000..8f6251c0 --- /dev/null +++ b/testing-scheduler/server/conductorclient/mock_workflow.json @@ -0,0 +1,24 @@ +{ + "name": "workflow_demo_05", + "description": "run a workflow of yardstick test service", + "version": 1, + "tasks": [ + { + "name": "http_yardstick_test", + "taskReferenceName": "ping_test", + "inputParameters": { + "http_request": { + "uri": "http://192.168.199.105:8080/greet", + "method": "GET" + } + }, + "type": "HTTP" + } + ], + "outputParameters": { + "header": "${ping_test.output.response.headers}", + "response": "${ping_test.output.response.body}", + "status": "${ping_test.output.response.statusCode}" + }, + "schemaVersion": 2 +} \ No newline at end of file -- cgit 1.2.3-korg