diff options
author | Yujun Zhang <zhang.yujunz@zte.com.cn> | 2016-10-11 05:51:36 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2016-10-11 05:51:36 +0000 |
commit | a955d2660a0f83487d62c7ac16ee49c7928b5879 (patch) | |
tree | 83884a116f1f1774682dfc0fdc5d3ac05261c261 /tests | |
parent | 90396b14415acc08c77cfdac2fca41664836329c (diff) | |
parent | 97c34c1840de3b3812b306b2b3d6fc354862196a (diff) |
Merge "Add testdb url and node_name in post parameters of restful server"
Diffstat (limited to 'tests')
-rw-r--r-- | tests/qtip_server_test.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/tests/qtip_server_test.py b/tests/qtip_server_test.py index 2f9eebf1..9def21f8 100644 --- a/tests/qtip_server_test.py +++ b/tests/qtip_server_test.py @@ -35,6 +35,8 @@ class TestClass: 'suite_name': 'compute', 'max_minutes': 60, 'type': 'BM', + 'testdb_url': None, + 'node_name': None, 'state': 'finished', 'state_detail': [{'state': 'finished', 'benchmark': 'dhrystone_bm.yaml'}, {'state': 'finished', 'benchmark': 'whetstone_bm.yaml'}, @@ -48,7 +50,9 @@ class TestClass: 'max_minutes': 20, 'suite_name': 'compute', 'type': 'VM', - 'benchmark_name': 'dhrystone_vm.yaml'}, + 'benchmark_name': 'dhrystone_vm.yaml', + 'testdb_url': 'http://testresults.opnfv.org/test/api/v1', + 'node_name': 'zte-pod2'}, {'job_id': '', 'installer_type': 'fuel', 'installer_ip': '10.20.0.2', @@ -56,6 +60,8 @@ class TestClass: 'suite_name': 'compute', 'max_minutes': 20, 'type': 'VM', + 'testdb_url': 'http://testresults.opnfv.org/test/api/v1', + 'node_name': 'zte-pod2', 'state': 'finished', 'state_detail': [{u'state': u'finished', u'benchmark': u'dhrystone_vm.yaml'}], 'result': 0}) |