diff options
author | 2018-03-13 12:26:08 -0700 | |
---|---|---|
committer | 2018-03-13 12:26:08 -0700 | |
commit | 4d7590ed7425a94c0f87a8461548c2461d79a710 (patch) | |
tree | 083ffc33a4cd6d8eff42deeea1da0b50c49efdfe /tools/run.sh | |
parent | ceb22354fcb078e8991a66dc9bc11dd5f21e77f4 (diff) |
Migrate vagrant-onap to devtool repo
This change covers the migration of the vagrant-onap tool's code
which was located under integration repo to devtool's repository.
The tool was renamed to avoid misunderstandings about its goals.
Change-Id: I79df8c35fccaa266a789217d441a6cf1183bd42a
Signed-off-by: Victor Morales <victor.morales@intel.com>
Issue-ID: INT-441
Diffstat (limited to 'tools/run.sh')
-rwxr-xr-x | tools/run.sh | 100 |
1 files changed, 100 insertions, 0 deletions
diff --git a/tools/run.sh b/tools/run.sh new file mode 100755 index 0000000..27e0aa3 --- /dev/null +++ b/tools/run.sh @@ -0,0 +1,100 @@ +#!/bin/bash + +function usage { + cat <<EOF +Usage: run.sh Command [-y] [-?] +Optional arguments: + -y + Skips warning prompt. + -g + Skips creation or retrieve image process. + -i + Skips installation service process. + -s <suite> + Test suite to use in testing mode. + -c <case> + Test case to use in testing mode. +Commands: + all_in_one Deploy in all-in-one mode. + dns|mr|sdc|aai|mso|robot|vid|sdnc|portal|dcae|policy|appc|vfc|vnfsdk|multicloud|ccsdk|vvp|openstack|msb|oom Deploy chosen service. + testing Deploy in testing mode. +EOF +} + +run=false +test_suite="*" +test_case="*" + +COMMAND=$1 + +while getopts "ygis:c:" OPTION "${@:2}"; do + case "$OPTION" in + y) + run=true + ;; + g) + export SKIP_GET_IMAGES="True" + ;; + i) + export SKIP_INSTALL="True" + ;; + s) + if [ "$COMMAND" != "testing" ] ; then + echo "Test suite should only be specified in testing mode." + echo "./tools/run.sh -? for usage." + exit 1 + fi + test_suite=$OPTARG + ;; + c) + if [ "$COMMAND" != "testing" ] ; then + echo "Test case should only be specified in testing mode." + echo "./tools/run.sh -? for usage." + exit 1 + fi + test_case=$OPTARG + ;; + \?) + usage + exit 1 + ;; + esac +done + +case $COMMAND in + "all_in_one" ) + export DEPLOY_MODE='all-in-one' + ;; + "dns" | "mr" | "sdc" | "aai" | "mso" | "robot" | "vid" | "sdnc" | "portal" | "dcae" | "policy" | "appc" | "vfc" | "vnfsdk"| "multicloud" | "ccsdk" | "vvp" | "openstack" | "msb" | "oom" ) + export DEPLOY_MODE='individual' + ;; + "testing" ) + export DEPLOY_MODE='testing' + if [ "$run" == false ] ; then + while true ; do + echo "Warning: This test script will delete the contents of ../opt/ and ~/.m2." + read -p "Would you like to continue? [y]es/[n]o: " yn + case $yn in + [Yy]*) + break + ;; + [Nn]*) + echo "Exiting." + exit 0 + ;; + esac + done + fi + + export TEST_SUITE=$test_suite + export TEST_CASE=$test_case + rm -rf ./opt/ + rm -rf ~/.m2/ + ;; + * ) + usage + exit 1 +esac + +vagrant destroy -f $COMMAND +vagrant up $COMMAND |