78bdec2fed423388c2bc16e9e6f3f43e51b043a7
[releng/builder.git] / jjb / integration / include-raw-integration-deploy-controller-run-test.sh
1 #@IgnoreInspection BashAddShebang
2 # Activate robotframework virtualenv
3 # ${ROBOT_VENV} comes from the include-raw-integration-install-robotframework.sh
4 # script.
5 source ${ROBOT_VENV}/bin/activate
6
7 CONTROLLERMEM="2048m"
8
9 if [ ${CONTROLLERSCOPE} == 'all' ]; then
10     ACTUALFEATURES="odl-integration-compatible-with-all,${CONTROLLERFEATURES}"
11     CONTROLLERMEM="3072m"
12     COOLDOWN_PERIOD="180"
13 else
14     ACTUALFEATURES="${CONTROLLERFEATURES}"
15     COOLDOWN_PERIOD="60"
16 fi
17 # Some versions of jenkins job builder result in feature list containing spaces
18 # and ending in newline. Remove all that.
19 ACTUALFEATURES=`echo "${ACTUALFEATURES}" | tr -d '\n \r'`
20
21 if [ -f ${WORKSPACE}/test/csit/scriptplans/${TESTPLAN} ]; then
22     echo "scriptplan exists!!!"
23     echo "Changing the scriptplan path..."
24     cat ${WORKSPACE}/test/csit/scriptplans/${TESTPLAN} | sed "s:integration:${WORKSPACE}:" > scriptplan.txt
25     cat scriptplan.txt
26     for line in $( egrep -v '(^[[:space:]]*#|^[[:space:]]*$)' scriptplan.txt ); do
27         echo "Executing ${line}..."
28         source ${line}
29     done
30 fi
31
32 cat > ${WORKSPACE}/controller-script.sh <<EOF
33
34 echo "Changing to /tmp"
35 cd /tmp
36
37 echo "Downloading the distribution..."
38 wget --no-verbose '${ACTUALBUNDLEURL}'
39
40 echo "Extracting the new controller..."
41 unzip -q ${BUNDLE}
42
43 echo "Configuring the startup features..."
44 FEATURESCONF=/tmp/${BUNDLEFOLDER}/etc/org.apache.karaf.features.cfg
45 CUSTOMPROP=/tmp/${BUNDLEFOLDER}/etc/custom.properties
46 sed -ie "s/featuresBoot=.*/featuresBoot=config,standard,region,package,kar,ssh,management,${ACTUALFEATURES}/g" \${FEATURESCONF}
47 sed -ie "s%mvn:org.opendaylight.integration/features-integration-index/${BUNDLEVERSION}/xml/features%mvn:org.opendaylight.integration/features-integration-index/${BUNDLEVERSION}/xml/features,mvn:org.opendaylight.integration/features-integration-test/${BUNDLEVERSION}/xml/features%g" \${FEATURESCONF}
48 cat \${FEATURESCONF}
49
50 if [ "${ODL_ENABLE_L3_FWD}" == "yes" ]; then
51   echo "ovsdb.l3.fwd.enabled=yes" >> \${CUSTOMPROP}
52 fi
53 cat \${CUSTOMPROP}
54
55 echo "Configuring the log..."
56 LOGCONF=/tmp/${BUNDLEFOLDER}/etc/org.ops4j.pax.logging.cfg
57 sed -ie 's/log4j.appender.out.maxBackupIndex=10/log4j.appender.out.maxBackupIndex=1/g' \${LOGCONF}
58 # FIXME: Make log size limit configurable from build parameter.
59 sed -ie 's/log4j.appender.out.maxFileSize=1MB/log4j.appender.out.maxFileSize=100GB/g' \${LOGCONF}
60 cat \${LOGCONF}
61
62 echo "Configure java home and max memory..."
63 MEMCONF=/tmp/${BUNDLEFOLDER}/bin/setenv
64 sed -ie 's%^# export JAVA_HOME%export JAVA_HOME="\${JAVA_HOME:-${JAVA_HOME}}"%g' \${MEMCONF}
65 sed -ie 's/JAVA_MAX_MEM="2048m"/JAVA_MAX_MEM="${CONTROLLERMEM}"/g' \${MEMCONF}
66 cat \${MEMCONF}
67
68 echo "Listing all open ports on controller system..."
69 netstat -natu
70
71 echo "Set Java version"
72 sudo /usr/sbin/alternatives --install /usr/bin/java java ${JAVA_HOME}/bin/java 1
73 sudo /usr/sbin/alternatives --set java ${JAVA_HOME}/bin/java
74 echo "JDK default version ..."
75 java -version
76
77 echo "Set JAVA_HOME"
78 export JAVA_HOME="$JAVA_HOME"
79 # Did you know that in HERE documents, single quote is an ordinary character, but backticks are still executing?
80 JAVA_RESOLVED=\`readlink -e "\${JAVA_HOME}/bin/java"\`
81 echo "Java binary pointed at by JAVA_HOME: \${JAVA_RESOLVED}"
82
83 echo "Starting controller..."
84 /tmp/${BUNDLEFOLDER}/bin/start
85
86 echo "Waiting for controller to come up..."
87 COUNT="0"
88 while true; do
89     RESP="\$( curl --user admin:admin -sL -w "%{http_code} %{url_effective}\\n" http://localhost:8181/restconf/modules -o /dev/null )"
90     echo \$RESP
91     if [[ \$RESP == *"200"* ]]; then
92         echo Controller is UP
93         break
94     elif (( "\$COUNT" > "600" )); then
95         echo Timeout Controller DOWN
96         echo "Dumping first 500K bytes of karaf log..."
97         head --bytes=500K "/tmp/${BUNDLEFOLDER}/data/log/karaf.log"
98         echo "Dumping last 500K bytes of karaf log..."
99         tail --bytes=500K "/tmp/${BUNDLEFOLDER}/data/log/karaf.log"
100         echo "Listing all open ports on controller system"
101         netstat -natu
102         exit 1
103     else
104         COUNT=\$(( \${COUNT} + 5 ))
105         sleep 5
106         echo waiting \$COUNT secs...
107     fi
108 done
109
110 echo "Cool down for ${COOLDOWN_PERIOD} seconds :)..."
111 sleep ${COOLDOWN_PERIOD}
112
113 echo "Listing all open ports on controller system..."
114 netstat -natu
115
116 function exit_on_log_file_message {
117     echo "looking for \"\$1\" in log file"
118     if grep --quiet "\$1" /tmp/${BUNDLEFOLDER}/data/log/karaf.log; then
119         echo ABORTING: found "\$1"
120         echo "Dumping first 500K bytes of karaf log..."
121         head --bytes=500K "/tmp/${BUNDLEFOLDER}/data/log/karaf.log"
122         echo "Dumping last 500K bytes of karaf log..."
123         tail --bytes=500K "/tmp/${BUNDLEFOLDER}/data/log/karaf.log"
124         exit 1
125     fi
126 }
127
128 exit_on_log_file_message 'BindException: Address already in use'
129 exit_on_log_file_message 'server is unhealthy'
130
131 EOF
132
133 scp ${WORKSPACE}/controller-script.sh ${ODL_SYSTEM_IP}:/tmp
134 ssh ${ODL_SYSTEM_IP} 'bash /tmp/controller-script.sh'
135
136 if [ ${NUM_OPENSTACK_SYSTEM} -gt 0 ]; then
137    echo "Exiting without running tests to deploy openstack for testing"
138    exit
139 fi
140
141 echo "Locating test plan to use..."
142 testplan_filepath="${WORKSPACE}/test/csit/testplans/${STREAMTESTPLAN}"
143 if [ ! -f "${testplan_filepath}" ]; then
144     testplan_filepath="${WORKSPACE}/test/csit/testplans/${TESTPLAN}"
145 fi
146
147 echo "Changing the testplan path..."
148 cat "${testplan_filepath}" | sed "s:integration:${WORKSPACE}:" > testplan.txt
149 cat testplan.txt
150 SUITES=$( egrep -v '(^[[:space:]]*#|^[[:space:]]*$)' testplan.txt | tr '\012' ' ' )
151
152 echo "Starting Robot test suites ${SUITES} ..."
153 pybot -N ${TESTPLAN} -c critical -e exclude -v BUNDLEFOLDER:${BUNDLEFOLDER} -v WORKSPACE:/tmp \
154 -v JAVA_HOME:${JAVA_HOME} -v BUNDLE_URL:${ACTUALBUNDLEURL} -v NEXUSURL_PREFIX:${NEXUSURL_PREFIX} \
155 -v CONTROLLER:${ODL_SYSTEM_IP} -v ODL_SYSTEM_IP:${ODL_SYSTEM_IP} -v CONTROLLER_USER:${USER} -v ODL_SYSTEM_USER:${USER} \
156 -v TOOLS_SYSTEM_IP:${TOOLS_SYSTEM_IP} -v TOOLS_SYSTEM_2_IP:${TOOLS_SYSTEM_2_IP} -v TOOLS_SYSTEM_3_IP:${TOOLS_SYSTEM_3_IP} \
157 -v TOOLS_SYSTEM_4_IP:${TOOLS_SYSTEM_4_IP} -v TOOLS_SYSTEM_5_IP:${TOOLS_SYSTEM_5_IP} -v TOOLS_SYSTEM_6_IP:${TOOLS_SYSTEM_6_IP} \
158 -v TOOLS_SYSTEM_USER:${USER} -v JDKVERSION:${JDKVERSION} -v ODL_STREAM:${DISTROSTREAM} \
159 -v MININET:${TOOLS_SYSTEM_IP} -v MININET1:${TOOLS_SYSTEM_2_IP} -v MININET2:${TOOLS_SYSTEM_3_IP} \
160 -v MININET3:${TOOLS_SYSTEM_4_IP} -v MININET4:${TOOLS_SYSTEM_5_IP} -v MININET5:${TOOLS_SYSTEM_6_IP} \
161 -v MININET_USER:${USER} -v USER_HOME:${HOME} ${TESTOPTIONS} ${SUITES} || true
162 # FIXME: Sort (at least -v) options alphabetically.
163
164 echo "Killing ODL and fetching Karaf log..."
165 set +e  # We do not want to create red dot just because something went wrong while fetching logs.
166 ssh "${ODL_SYSTEM_IP}" tail --bytes=1M "/tmp/${BUNDLEFOLDER}/data/log/karaf.log" > "karaf.log"
167 ssh "${ODL_SYSTEM_IP}" bash -c 'ps axf | grep karaf | grep -v grep | awk '"'"'{print "kill -9 " $1}'"'"' | sh'
168 sleep 5
169 ssh "${ODL_SYSTEM_IP}" xz -9ekvv "/tmp/${BUNDLEFOLDER}/data/log/karaf.log"
170 scp "${ODL_SYSTEM_IP}:/tmp/${BUNDLEFOLDER}/data/log/karaf.log.xz" .
171 true  # perhaps Jenkins is testing last exit code
172
173 # vim: ts=4 sw=4 sts=4 et ft=sh :
174