Fix requests scenario for rally bench suite (re import from rally) 84/584/1
authormorganrOL <morgan.richomme@orange.com>
Mon, 18 May 2015 13:45:55 +0000 (15:45 +0200)
committermorganrOL <morgan.richomme@orange.com>
Mon, 18 May 2015 13:45:55 +0000 (15:45 +0200)
JIRA: FUNCTEST-1

Change-Id: I5d40408afcc0765e2f7fc5cef917d80395c22590
Signed-off-by: morganrOL <morgan.richomme@orange.com>
testcases/VIM/OpenStack/CI/suites/opnfv-requests.json

index 9936e2f..ead457d 100644 (file)
@@ -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 @@
         }
     ]
 }
-