Add check_vim_capacity tests for multicloud 05/40305/1
authorEthan Lynn <ethanlynnl@vmware.com>
Fri, 30 Mar 2018 01:32:52 +0000 (09:32 +0800)
committerEthan Lynn <ethanlynnl@vmware.com>
Fri, 30 Mar 2018 01:34:14 +0000 (09:34 +0800)
Add check_vim_capacity tests

Change-Id: Iacc1db4a191bde311fd064c6e84124b4aa3868da
Issue-ID: MULTICLOUD-166
Signed-off-by: Ethan Lynn <ethanlynnl@vmware.com>
test/csit/plans/multicloud/functionality1/setup.sh
test/csit/plans/multicloud/functionality1/teardown.sh
test/csit/tests/multicloud/provision/data/capacity.json [new file with mode: 0644]
test/csit/tests/multicloud/provision/sanity_test_multivim.robot

index 993a39f..479c21d 100755 (executable)
@@ -20,7 +20,9 @@
 source ${SCRIPTS}/common_functions.sh
 
 # start multivim-broker
-docker run -d --name multivim-broker nexus3.onap.org:10001/onap/multicloud/framework
+docker run -d --name multivim-vio nexus3.onap.org:10001/onap/multicloud/vio
+docker run -d --name multivim-broker --link multivim-vio -e MSB_ADDR:multivim-vio -e MSB_ADDR:9004 nexus3.onap.org:10001/onap/multicloud/framework
+
 BROKER_IP=`get-instance-ip.sh multivim-broker`
 for i in {1..50}; do
     curl -sS ${BROKER_IP}:9001 && break
index 1732649..a2ef0e3 100755 (executable)
@@ -16,4 +16,5 @@
 #
 
 # This script is sourced by run-csit.sh after Robot test completion.
+kill-instance.sh multivim-vio
 kill-instance.sh multivim-broker
diff --git a/test/csit/tests/multicloud/provision/data/capacity.json b/test/csit/tests/multicloud/provision/data/capacity.json
new file mode 100644 (file)
index 0000000..9b1130d
--- /dev/null
@@ -0,0 +1,6 @@
+{
+    "vCPU": 1,
+    "Memory": 1,
+    "Storage": 1,
+    "VIMs": ["vmware_fake"]
+}
\ No newline at end of file
index 2c1ec3f..4848b74 100644 (file)
@@ -1,4 +1,5 @@
 *** settings ***
+Resource    ../../common.robot
 Library     Collections
 Library     RequestsLibrary
 Library     OperatingSystem
@@ -7,6 +8,7 @@ Library     json
 *** Variables ***
 @{return_ok_list}=   200  201  202
 ${queryswagger_broker_url}    /api/multicloud/v0/swagger.json
+${check_capacity_broker_url}    /api/multicloud/v0/check_vim_capacity
 
 
 *** Test Cases ***
@@ -20,3 +22,12 @@ BrokerSwaggerTest
     ${response_json}    json.loads    ${resp.content}
     ${swagger_version}=    Convert To String      ${response_json['swagger']}
     Should Be Equal    ${swagger_version}    2.0
+
+BrokerCapacityTest
+    [Documentation]    Check VIMs capacity
+    ${data}=         Get Binary File     ${CURDIR}${/}data${/}capacity.json
+    ${headers}    Create Dictionary    Content-Type=application/json    Accept=application/json
+    Create Session    web_session    http://${BROKER_IP}:9001    headers=${headers}
+    ${resp}=  Post Request    web_session    ${check_capacity_broker_url}  ${data}
+    ${responese_code}=     Convert To String      ${resp.status_code}
+    List Should Contain Value    ${return_ok_list}   ${responese_code}