diff options
author | morganrOL <morgan.richomme@orange.com> | 2015-05-18 15:45:55 +0200 |
---|---|---|
committer | morganrOL <morgan.richomme@orange.com> | 2015-05-18 15:45:55 +0200 |
commit | f8f326df6cb3f307f1789df7c3c6d275cba03c9a (patch) | |
tree | fec4f1fc7e95e2310e1697dc507d39953052e177 /testcases/VIM | |
parent | 3982be1673248b642f0b48445e5bbf311a436911 (diff) |
Fix requests scenario for rally bench suite (re import from rally)
JIRA: FUNCTEST-1
Change-Id: I5d40408afcc0765e2f7fc5cef917d80395c22590
Signed-off-by: morganrOL <morgan.richomme@orange.com>
Diffstat (limited to 'testcases/VIM')
-rw-r--r-- | testcases/VIM/OpenStack/CI/suites/opnfv-requests.json | 24 |
1 files changed, 20 insertions, 4 deletions
diff --git a/testcases/VIM/OpenStack/CI/suites/opnfv-requests.json b/testcases/VIM/OpenStack/CI/suites/opnfv-requests.json index 9936e2fd5..ead457dbf 100644 --- a/testcases/VIM/OpenStack/CI/suites/opnfv-requests.json +++ b/testcases/VIM/OpenStack/CI/suites/opnfv-requests.json @@ -1,9 +1,26 @@ { - "Requests.check_response": [ + "HttpRequests.check_random_request": [ { "args": { - "url": "http://www.google.com", - "response": 302 + "requests": [{"url": "http://www.example.com", "method": "GET", + "status_code": 200}, + {"url": "http://www.openstack.org", "method": "GET"}], + "status_code": 200 + }, + "runner": { + "type": "constant", + "times": 20, + "concurrency": 5 + } + } + ], + "HttpRequests.check_request": [ + { + "args": { + "url": "http://www.example.com", + "method": "GET", + "status_code": 200, + "allow_redirects": false }, "runner": { "type": "constant", @@ -13,4 +30,3 @@ } ] } - |