blob: b7492adcde584aa4d7d54df00407064260530e3f (
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
|
#!/bin/bash
###############################################################################
# Copyright (c) 2015 Huawei Technologies Co.,Ltd and others.
#
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################
usage="Script to run the tests in rubbos.
usage:
bash $(basename "$0") [-h|--help] [-s <test suite>]
where:
-h|--help show the help text
-t|--test run specifif test case scenario
<test case> examples:
rubbos_1-1-1, rubbos_1-2-1
examples:
$(basename "$0")
$(basename "$0") -t rubbos_1-1-1"
while [[ $# > 0 ]]
do
key="$1"
case $key in
-h|--help)
echo "$usage"
exit 0
shift
;;
-t|--test)
CASE="$2"
shift
;;
*)
echo "unkown option $1 $2"
exit 1
;;
esac
shift
done
BASEDIR=`dirname $0`
#has been checked in upper layer run_tests.sh
#run tests
if [ "${CASE}" != "" ]; then
case_exec=(${CASE//,/})
for case_exe in "${case_exec[@]}"; do
client_num=4
tomcat_num=$(echo "$case_exe"| awk -F '-' '{print $2}')
mysql_num=$(echo "$case_exe"| awk -F '-' '{print $3')
hosts=(rubbos_control rubbos_benchmark rubbos_httpd)
for((i=1; i <= client_num; i++)); do
hosts=(${hosts[*]} client$i)
done
for((i=1; i <= tomcat_num; i++)); do
hosts=(${hosts[*]} tomcat$i)
done
for((i=1; i <= mysql_num; i++)); do
hosts=(${hosts[*]} mysql$i)
done
bash $BOTTLENECKS_TOP_DIR/utils/infra_setup/heat_template/rubbos_heat_template/HOT_create_instance.sh
done
fi
|