aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/csit/plans/so/sanity-check/setup.sh37
-rw-r--r--test/csit/plans/so/sanity-check/teardown.sh24
-rw-r--r--test/csit/plans/so/sanity-check/testplan.txt3
-rw-r--r--test/csit/tests/so/sanity-check/sanity_test_so.robot25
4 files changed, 89 insertions, 0 deletions
diff --git a/test/csit/plans/so/sanity-check/setup.sh b/test/csit/plans/so/sanity-check/setup.sh
new file mode 100644
index 000000000..a9c42fb4a
--- /dev/null
+++ b/test/csit/plans/so/sanity-check/setup.sh
@@ -0,0 +1,37 @@
+#!/bin/bash
+#
+# Copyright 2016-2017 Huawei Technologies Co., Ltd.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+# Place the scripts in run order:
+# Start all process required for executing test case
+
+source ${SCRIPTS}/common_functions.sh
+
+#Start gso
+run-instance.sh openoint/gso-service-manager gso " -i -t -e MSB_ADDR=${MSB_IP}:80 -e MYSQL_ADDR=${INV_ADDR}:3306"
+sleep_msg="Waiting_for_so"
+curl_path='http://'${MSB_IP}':80/api/so/v1/services'
+wait_curl_driver CURL_COMMAND=$curl_path WAIT_MESSAGE='"$sleep_msg"' REPEAT_NUMBER=25 GREP_STRING="\["
+
+#run simulator
+docker run -d -i -t --name gso_csit_simulator -e SIMULATOR_JSON=Stubs/testcase/so/main.json -p 18009:18009 -p 18008:18008 openoint/simulate-test-docker
+SIMULATOR_IP=`get-instance-ip.sh gso_csit_simulator`
+sleep_msg="Waiting_for_simulator"
+curl_path='http://'${SIMULATOR_IP}':18009/api/extsys/v1/vims'
+wait_curl_driver CURL_COMMAND=$curl_path WAIT_MESSAGE='"$sleep_msg"' REPEAT_NUMBER=16 GREP_STRING="\["
+
+
+ROBOT_VARIABLES="-v MSB_IP:${MSB_IP} -v SCRIPTS:${SCRIPTS} -v SIMULATOR_IP:${SIMULATOR_IP}"
+robot ${ROBOT_VARIABLES} ${SCRIPTS}/../tests/so/sanity-check/register_simulator_to_msb.robot
diff --git a/test/csit/plans/so/sanity-check/teardown.sh b/test/csit/plans/so/sanity-check/teardown.sh
new file mode 100644
index 000000000..5cd82b7e2
--- /dev/null
+++ b/test/csit/plans/so/sanity-check/teardown.sh
@@ -0,0 +1,24 @@
+#!/bin/bash
+#
+# Copyright 2016-2017 Huawei Technologies Co., Ltd.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+#copy the logs files
+docker cp so:/service/logs/lifecyclemgr.log ${SCRIPTS}/../../../archives
+# kill micro service
+kill-instance.sh i-msb
+kill-instance.sh so
+
+
diff --git a/test/csit/plans/so/sanity-check/testplan.txt b/test/csit/plans/so/sanity-check/testplan.txt
new file mode 100644
index 000000000..761c75c03
--- /dev/null
+++ b/test/csit/plans/so/sanity-check/testplan.txt
@@ -0,0 +1,3 @@
+# Test suites are relative paths under [integration.git]/test/csit/tests/.
+# Place the suites in run order.
+so/sanity-check/sanity_test_so.robot \ No newline at end of file
diff --git a/test/csit/tests/so/sanity-check/sanity_test_so.robot b/test/csit/tests/so/sanity-check/sanity_test_so.robot
new file mode 100644
index 000000000..e53b46c4c
--- /dev/null
+++ b/test/csit/tests/so/sanity-check/sanity_test_so.robot
@@ -0,0 +1,25 @@
+*** settings ***
+Resource ../../common.robot
+Library Collections
+Library RequestsLibrary
+Library OperatingSystem
+Library json
+Library HttpLibrary.HTTP
+
+*** Variables ***
+@{return_ok_list}= 200 201 202
+${queryservice_url} /api/so/v1/services/5212b49f-fe70-414f-9519-88bec35b3190
+${service_id}
+${operation_id}
+*** Test Cases ***
+soQueryServiceFuncTest
+ [Documentation] query single service rest test
+ ${headers} Create Dictionary Content-Type=application/json Accept=application/json
+ Create Session web_session http://${MSB_IP} headers=${headers}
+ ${resp}= Get Request web_session ${queryservice_url}
+ ${responese_code}= Convert To String ${resp.status_code}
+ List Should Contain Value ${return_ok_list} ${responese_code}
+ ${response_json} json.loads ${resp.content}
+ ${serviceName}= Convert To String ${response_json['serviceName']}
+ Should Be Equal ${serviceName} test_so
+