aboutsummaryrefslogtreecommitdiffstats
path: root/test/csit/plans/cli/sanity-check/setup.sh
diff options
context:
space:
mode:
authorsubhash kumar singh <subhash.kumar.singh@huawei.com>2017-09-06 19:58:29 +0530
committersubhash kumar singh <subhash.kumar.singh@huawei.com>2017-09-06 19:58:29 +0530
commit729baadbd9e163978c10a2d5a5c84258af8afd39 (patch)
treea749f098364905db66a8c458952f27e5610617ac /test/csit/plans/cli/sanity-check/setup.sh
parentdcb405e3662231e917d173cc06089d6f215e210a (diff)
Initial integration test for CLI
Intial setup script for the CLI integration test. Change-Id: I0ae77b013831675b1d5d4f3d28fe8f73de5b2264 Issue-Id: CLI-35 Signed-off-by: subhash kumar singh <subhash.kumar.singh@huawei.com>
Diffstat (limited to 'test/csit/plans/cli/sanity-check/setup.sh')
-rw-r--r--test/csit/plans/cli/sanity-check/setup.sh26
1 files changed, 26 insertions, 0 deletions
diff --git a/test/csit/plans/cli/sanity-check/setup.sh b/test/csit/plans/cli/sanity-check/setup.sh
new file mode 100644
index 000000000..47b368cad
--- /dev/null
+++ b/test/csit/plans/cli/sanity-check/setup.sh
@@ -0,0 +1,26 @@
+#!/bin/bash
+#
+# Copyright 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:
+source ${SCRIPTS}/common_functions.sh
+
+# Start auth
+docker run -d --name cli -e CLI_MODE=daemon -p nexus3.onap.org:10001/onap/cli:1.1-STAGING-latest
+
+CLI_IP=`get-instance-ip.sh cli`
+
+# Pass any variables required by Robot test suites in ROBOT_VARIABLES
+ROBOT_VARIABLES="-v CLI_IP:${CLI_IP}"