blob: 3c2134f8d023ab139274ed7223d098b58afdd69f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
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 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" )
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
|