parser script and step class in backend code of testing-scheduler 07/60007/5
authorLeoQi <QibinZheng2014@tongji.edu.cn>
Thu, 19 Jul 2018 18:43:38 +0000 (02:43 +0800)
committerLeoQi <QibinZheng2014@tongji.edu.cn>
Fri, 31 Aug 2018 08:26:55 +0000 (16:26 +0800)
commit1c1cbbf6df7f30ecb807a0a09924072a59bd2071
treefb3dd66d27e0dd76c6850f3d4232fe3741cfa5ec
parentad12a6561be8c67f6da09c38c4e1c0e88eb9a6de
parser script and step class in backend code of testing-scheduler

JIRA: BOTTLENECK-234

add the main parse function and base classes of step.

Change-Id: Id7554ed065ada84f23b3ca498ffb89c1127850b5
Signed-off-by: Zheng Qibin <QibinZheng2014@tongji.edu.cn>
30 files changed:
testing-scheduler/server/__init__.py [new file with mode: 0644]
testing-scheduler/server/python_modules.txt [new file with mode: 0644]
testing-scheduler/server/setup.py [new file with mode: 0644]
testing-scheduler/server/src/__init__.py [new file with mode: 0644]
testing-scheduler/server/src/env/context/context.yaml [new file with mode: 0644]
testing-scheduler/server/src/env/service/ansible.yaml [new file with mode: 0644]
testing-scheduler/server/src/env/service/greet.yaml [new file with mode: 0644]
testing-scheduler/server/src/step/__init__.py [new file with mode: 0644]
testing-scheduler/server/src/step/general_test_step.py [new file with mode: 0644]
testing-scheduler/server/src/step/monitor.py [new file with mode: 0644]
testing-scheduler/server/src/step/step_manager.py [new file with mode: 0644]
testing-scheduler/server/src/step/test_step.py [new file with mode: 0644]
testing-scheduler/server/src/step/workload.py [new file with mode: 0644]
testing-scheduler/server/src/test_parser.py [new file with mode: 0644]
testing-scheduler/server/test/__init__.py [new file with mode: 0644]
testing-scheduler/server/test/test_case/logic/tc_logic_00.yaml [new file with mode: 0644]
testing-scheduler/server/test/test_case/logic/tc_logic_01.yaml [new file with mode: 0644]
testing-scheduler/server/test/test_case/logic/tc_logic_02.yaml [new file with mode: 0644]
testing-scheduler/server/test/test_case/logic/tc_logic_03.yaml [new file with mode: 0644]
testing-scheduler/server/test/test_case/logic/tc_logic_04.yaml [new file with mode: 0644]
testing-scheduler/server/test/test_case/logic/tc_logic_05.yaml [new file with mode: 0644]
testing-scheduler/server/test/test_case/logic/tc_logic_06.yaml [new file with mode: 0644]
testing-scheduler/server/test/test_case/logic/tc_logic_07.yaml [new file with mode: 0644]
testing-scheduler/server/test/test_case/logic/tc_logic_08.yaml [new file with mode: 0644]
testing-scheduler/server/test/test_case/logic_in_out/tc_cxt_01.yaml [new file with mode: 0644]
testing-scheduler/server/test/test_case/logic_in_out/tc_io_01.yaml [new file with mode: 0644]
testing-scheduler/server/test/test_case/logic_in_out/tc_io_02.yaml [new file with mode: 0644]
testing-scheduler/server/test/test_case/suite_test/tc_suitetest_00.yaml [new file with mode: 0644]
testing-scheduler/server/test/test_case/suite_test/tc_suitetest_01.yaml [new file with mode: 0644]
testing-scheduler/server/test/test_case/suite_test/tc_suitetest_02.yaml [new file with mode: 0644]