From e283bd2822ddff64e05473d786b0e17479c13e1a Mon Sep 17 00:00:00 2001 From: c00149107 Date: Wed, 2 Aug 2017 17:34:11 +0800 Subject: Add so csit test Add so csit test Change-Id: I965032a0385721b539c1fbf0d045e32ff600e4b1 Issue-ID:SO-74 Signed-off-by: c00149107 --- test/csit/plans/so/sanity-check/setup.sh | 37 ++++++++++++++++++++++++++++ test/csit/plans/so/sanity-check/teardown.sh | 24 ++++++++++++++++++ test/csit/plans/so/sanity-check/testplan.txt | 3 +++ 3 files changed, 64 insertions(+) create mode 100644 test/csit/plans/so/sanity-check/setup.sh create mode 100644 test/csit/plans/so/sanity-check/teardown.sh create mode 100644 test/csit/plans/so/sanity-check/testplan.txt (limited to 'test/csit/plans') 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 -- cgit 1.2.3-korg