Find PDR using binary search
[csit.git] / bootstrap-verify-perf.sh
1 #!/bin/bash
2 # Copyright (c) 2016 Cisco and/or its affiliates.
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at:
6 #
7 #     http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 set -x
16
17 # Space separated list of available testbeds, described by topology files
18 TOPOLOGIES="topologies/available/lf_testbed1-X710-X520.yaml \
19             topologies/available/lf_testbed2-X710-X520.yaml \
20             topologies/available/lf_testbed3-X710-X520.yaml"
21
22 VPP_STABLE_VER="1.0.0-437~g8f15e92_amd64"
23 VPP_REPO_URL="https://nexus.fd.io/service/local/repositories/fd.io.dev/content/io/fd/vpp"
24
25 # Reservation dir
26 RESERVATION_DIR="/tmp/reservation_dir"
27 INSTALLATION_DIR="/tmp/install_dir"
28
29 PYBOT_ARGS="--noncritical MULTI_THREAD"
30
31 ARCHIVE_ARTIFACTS=(log.html output.xml report.html output_perf_data.json)
32
33 # If we run this script from CSIT jobs we want to use stable vpp version
34 if [[ ${JOB_NAME} == csit-* ]] ;
35 then
36     mkdir vpp_download
37     cd vpp_download
38     #download vpp build from nexus and set VPP_DEBS variable
39     wget -q "${VPP_REPO_URL}/vpp/${VPP_STABLE_VER}/vpp-${VPP_STABLE_VER}.deb" || exit
40     wget -q "${VPP_REPO_URL}/vpp-dbg/${VPP_STABLE_VER}/vpp-dbg-${VPP_STABLE_VER}.deb" || exit
41     wget -q "${VPP_REPO_URL}/vpp-dev/${VPP_STABLE_VER}/vpp-dev-${VPP_STABLE_VER}.deb" || exit
42     wget -q "${VPP_REPO_URL}/vpp-dpdk-dev/${VPP_STABLE_VER}/vpp-dpdk-dev-${VPP_STABLE_VER}.deb" || exit
43     wget -q "${VPP_REPO_URL}/vpp-dpdk-dkms/${VPP_STABLE_VER}/vpp-dpdk-dkms-${VPP_STABLE_VER}.deb" || exit
44     wget -q "${VPP_REPO_URL}/vpp-lib/${VPP_STABLE_VER}/vpp-lib-${VPP_STABLE_VER}.deb" || exit
45     VPP_DEBS="$( readlink -f *.deb | tr '\n' ' ' )"
46     PYBOT_ARGS="${PYBOT_ARGS} --exitonfailure"
47     cd ..
48
49 # If we run this script from vpp project we want to use local build
50 elif [[ ${JOB_NAME} == vpp-* ]] ;
51 then
52     #use local packages provided as argument list
53     # Jenkins VPP deb paths (convert to full path)
54     VPP_DEBS="$( readlink -f $@ | tr '\n' ' ' )"
55 else
56     echo "Unable to identify job type based on JOB_NAME variable: ${JOB_NAME}"
57     exit 1
58 fi
59
60 CUR_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
61 WORKING_TOPOLOGY=""
62 export PYTHONPATH=${CUR_DIR}
63
64 sudo apt-get -y update
65 sudo apt-get -y install libpython2.7-dev python-virtualenv
66
67 virtualenv env
68 . env/bin/activate
69
70 echo pip install
71 pip install -r requirements.txt
72
73 # We iterate over available topologies and wait until we reserve topology
74 while :; do
75     for TOPOLOGY in ${TOPOLOGIES};
76     do
77         python ${CUR_DIR}/resources/tools/topo_reservation.py -t ${TOPOLOGY}
78         if [ $? -eq 0 ]; then
79             WORKING_TOPOLOGY=${TOPOLOGY}
80             echo "Reserved: ${WORKING_TOPOLOGY}"
81             break
82         fi
83     done
84
85     if [ ! -z "${WORKING_TOPOLOGY}" ]; then
86         # Exit the infinite while loop if we made a reservation
87         break
88     fi
89
90     # Wait ~3minutes before next try
91     SLEEP_TIME=$[ ( $RANDOM % 20 ) + 180 ]s
92     echo "Sleeping ${SLEEP_TIME}"
93     sleep ${SLEEP_TIME}
94 done
95
96 function cancel_all {
97     python ${CUR_DIR}/resources/tools/topo_installation.py -c -d ${INSTALLATION_DIR} -t $1
98     python ${CUR_DIR}/resources/tools/topo_reservation.py -c -t $1
99 }
100
101 # On script exit we cancel the reservation and installation and delete all vpp
102 # packages
103 trap "cancel_all ${WORKING_TOPOLOGY}" EXIT
104
105 python ${CUR_DIR}/resources/tools/topo_installation.py -t ${WORKING_TOPOLOGY} \
106                                                        -d ${INSTALLATION_DIR} \
107                                                        -p ${VPP_DEBS}
108 if [ $? -eq 0 ]; then
109     echo "VPP Installed on hosts from: ${WORKING_TOPOLOGY}"
110 else
111     echo "Failed to copy vpp deb files to DUTs"
112     exit 1
113 fi
114
115 case "$TEST_TAG" in
116     # run specific performance tests based on jenkins job type variable
117     PERFTEST_LONG )
118         pybot ${PYBOT_ARGS} \
119               -L TRACE \
120               -v TOPOLOGY_PATH:${WORKING_TOPOLOGY} \
121               -i perftest_long \
122               tests/
123         ;;
124     PERFTEST_SHORT )
125         pybot ${PYBOT_ARGS} \
126               -L TRACE \
127               -v TOPOLOGY_PATH:${WORKING_TOPOLOGY} \
128               -i perftest_short \
129               tests/
130         ;;
131     PERFTEST_LONG_BRIDGE )
132         pybot ${PYBOT_ARGS} \
133               -L TRACE \
134               -v TOPOLOGY_PATH:${WORKING_TOPOLOGY} \
135               -s "performance.Long_Bridge_Domain*" \
136               tests/
137         ;;
138     PERFTEST_LONG_IPV4 )
139         pybot ${PYBOT_ARGS} \
140               -L TRACE \
141               -v TOPOLOGY_PATH:${WORKING_TOPOLOGY} \
142               -s "performance.Long_IPv4*" \
143               tests/
144         ;;
145     PERFTEST_LONG_IPV6 )
146         pybot ${PYBOT_ARGS} \
147               -L TRACE \
148               -v TOPOLOGY_PATH:${WORKING_TOPOLOGY} \
149               -s "performance.Long_IPv6*" \
150               tests/
151         ;;
152     PERFTEST_LONG_XCONNECT )
153         pybot ${PYBOT_ARGS} \
154               -L TRACE \
155               -v TOPOLOGY_PATH:${WORKING_TOPOLOGY} \
156               -s "performance.Long_Xconnect*" \
157               tests/
158         ;;
159     PERFTEST_LONG_XCONNECT_DOT1Q )
160         pybot ${PYBOT_ARGS} \
161               -L TRACE \
162               -v TOPOLOGY_PATH:${WORKING_TOPOLOGY} \
163               -s "performance.Long_Xconnect_Dot1q*" \
164         ;;
165     PERFTEST_NDR )
166         pybot ${PYBOT_ARGS} \
167               -L TRACE \
168               -v TOPOLOGY_PATH:${WORKING_TOPOLOGY} \
169               -s performance -i NDR \
170               tests/
171         ;;
172     PERFTEST_PDR )
173         pybot ${PYBOT_ARGS} \
174               -L TRACE \
175               -v TOPOLOGY_PATH:${WORKING_TOPOLOGY} \
176               -s performance -i PDR \
177               tests/
178         ;;
179     * )
180         # run full performance test suite and exit on fail
181         pybot ${PYBOT_ARGS} \
182               -L TRACE \
183               -v TOPOLOGY_PATH:${WORKING_TOPOLOGY} \
184               -s performance \
185               tests/
186 esac
187
188 # Pybot output post-processing
189 python ${CUR_DIR}/resources/tools/robot_output_parser.py \
190        -i ${CUR_DIR}/output.xml \
191        -o ${CUR_DIR}/output_perf_data.json \
192        -v ${VPP_STABLE_VER}
193 if [ ! $? -eq 0 ]; then
194     echo "Parsing ${CUR_DIR}/output.xml failed"
195 fi
196
197 # Archive artifacts
198 mkdir archive
199 for i in ${ARCHIVE_ARTIFACTS[@]}; do
200     cp $( readlink -f ${i} | tr '\n' ' ' ) archive/
201 done
202