1eb50f14df939996e7b05cc8524220c30130c751
[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 sed -ie "s/featuresBoot=.*/featuresBoot=config,standard,region,package,kar,ssh,management,${ACTUALFEATURES}/g" \${FEATURESCONF}
46 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}
47 cat \${FEATURESCONF}
48
49 echo "Configuring the log..."
50 LOGCONF=/tmp/${BUNDLEFOLDER}/etc/org.ops4j.pax.logging.cfg
51 sed -ie 's/log4j.appender.out.maxBackupIndex=10/log4j.appender.out.maxBackupIndex=1/g' \${LOGCONF}
52 # FIXME: Make log size limit configurable from build parameter.
53 sed -ie 's/log4j.appender.out.maxFileSize=1MB/log4j.appender.out.maxFileSize=100GB/g' \${LOGCONF}
54 cat \${LOGCONF}
55
56 echo "Configure max memory..."
57 MEMCONF=/tmp/${BUNDLEFOLDER}/bin/setenv
58 sed -ie 's/JAVA_MAX_MEM="2048m"/JAVA_MAX_MEM="${CONTROLLERMEM}"/g' \${MEMCONF}
59 cat \${MEMCONF}
60
61 echo "Listing all open ports on controller system..."
62 netstat -natu
63
64 if [ ${JDKVERSION} == 'openjdk8' ]; then
65     echo "Setting the JRE Version to 8"
66     # dynamic_verify does not allow sudo, JAVA_HOME should be enough for karaf start.
67     # sudo /usr/sbin/alternatives --set java /usr/lib/jvm/java-1.8.0-openjdk-1.8.0.60-2.b27.el7_1.x86_64/jre/bin/java
68     export JAVA_HOME=/usr/lib/jvm/java-1.8.0
69 elif [ ${JDKVERSION} == 'openjdk7' ]; then
70     echo "Setting the JRE Version to 7"
71     # dynamic_verify does not allow sudo, JAVA_HOME should be enough for karaf start.
72     # sudo /usr/sbin/alternatives --set java /usr/lib/jvm/java-1.7.0-openjdk-1.7.0.85-2.6.1.2.el7_1.x86_64/jre/bin/java
73     export JAVA_HOME=/usr/lib/jvm/java-1.7.0
74 fi
75 echo "JAVA_HOME is \${JAVA_HOME}"
76 # Did you know that in HERE documents, single quote is an ordinary character, but backticks are still executing?
77 JAVA_RESOLVED=\`readlink -e "\${JAVA_HOME}/bin/java"\`
78 echo "Java binary pointed at by JAVA_HOME: \${JAVA_RESOLVED}"
79 echo "JDK default version ..."
80 java -version
81
82 echo "Starting controller..."
83 /tmp/${BUNDLEFOLDER}/bin/start
84
85 echo "Waiting for controller to come up..."
86 COUNT="0"
87 while true; do
88     RESP="\$( curl --user admin:admin -sL -w "%{http_code} %{url_effective}\\n" http://localhost:8181/restconf/modules -o /dev/null )"
89     echo \$RESP
90     if [[ \$RESP == *"200"* ]]; then
91         echo Controller is UP
92         break
93     elif (( "\$COUNT" > "600" )); then
94         echo Timeout Controller DOWN
95         echo "Dumping first 500K bytes of karaf log..."
96         head --bytes=500K "/tmp/${BUNDLEFOLDER}/data/log/karaf.log"
97         echo "Dumping last 500K bytes of karaf log..."
98         tail --bytes=500K "/tmp/${BUNDLEFOLDER}/data/log/karaf.log"
99         echo "Listing all open ports on controller system"
100         netstat -natu
101         exit 1
102     else
103         COUNT=\$(( \${COUNT} + 5 ))
104         sleep 5
105         echo waiting \$COUNT secs...
106     fi
107 done
108
109 echo "Cool down for ${COOLDOWN_PERIOD} seconds :)..."
110 sleep ${COOLDOWN_PERIOD}
111
112 echo "Listing all open ports on controller system..."
113 netstat -natu
114
115 function exit_on_log_file_message {
116     echo "looking for \"\$1\" in log file"
117     if grep --quiet "\$1" /tmp/${BUNDLEFOLDER}/data/log/karaf.log; then
118         echo ABORTING: found "\$1"
119         echo "Dumping first 500K bytes of karaf log..."
120         head --bytes=500K "/tmp/${BUNDLEFOLDER}/data/log/karaf.log"
121         echo "Dumping last 500K bytes of karaf log..."
122         tail --bytes=500K "/tmp/${BUNDLEFOLDER}/data/log/karaf.log"
123         exit 1
124     fi
125 }
126
127 exit_on_log_file_message 'BindException: Address already in use'
128 exit_on_log_file_message 'server is unhealthy'
129
130 EOF
131
132 scp ${WORKSPACE}/controller-script.sh ${ODL_SYSTEM_IP}:/tmp
133 ssh ${ODL_SYSTEM_IP} 'bash /tmp/controller-script.sh'
134
135 echo "Locating test plan to use..."
136 testplan_filepath="${WORKSPACE}/test/csit/testplans/${STREAMTESTPLAN}"
137 if [ ! -f "${testplan_filepath}" ]; then
138     testplan_filepath="${WORKSPACE}/test/csit/testplans/${TESTPLAN}"
139 fi
140
141 echo "Changing the testplan path..."
142 cat "${testplan_filepath}" | sed "s:integration:${WORKSPACE}:" > testplan.txt
143 cat testplan.txt
144
145 SUITES=$( egrep -v '(^[[:space:]]*#|^[[:space:]]*$)' testplan.txt | tr '\012' ' ' )
146
147 echo "Starting Robot test suites ${SUITES} ..."
148 pybot -N ${TESTPLAN} -c critical -e exclude -v BUNDLEFOLDER:${BUNDLEFOLDER} -v WORKSPACE:/tmp \
149 -v BUNDLE_URL:${ACTUALBUNDLEURL} -v NEXUSURL_PREFIX:${NEXUSURL_PREFIX} \
150 -v CONTROLLER:${ODL_SYSTEM_IP} -v ODL_SYSTEM_IP:${ODL_SYSTEM_IP} -v CONTROLLER_USER:${USER} -v ODL_SYSTEM_USER:${USER} \
151 -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} \
152 -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} \
153 -v TOOLS_SYSTEM_USER:${USER} -v JDKVERSION:${JDKVERSION} -v ODL_STREAM:${DISTROSTREAM} \
154 -v MININET:${TOOLS_SYSTEM_IP} -v MININET1:${TOOLS_SYSTEM_2_IP} -v MININET2:${TOOLS_SYSTEM_3_IP} \
155 -v MININET3:${TOOLS_SYSTEM_4_IP} -v MININET4:${TOOLS_SYSTEM_5_IP} -v MININET5:${TOOLS_SYSTEM_6_IP} \
156 -v MININET_USER:${USER} -v USER_HOME:${HOME} ${TESTOPTIONS} ${SUITES} || true
157 # FIXME: Sort (at least -v) options alphabetically.
158
159 echo "Killing ODL and fetching Karaf log..."
160 set +e  # We do not want to create red dot just because something went wrong while fetching logs.
161 ssh "${ODL_SYSTEM_IP}" tail --bytes=1M "/tmp/${BUNDLEFOLDER}/data/log/karaf.log" > "karaf.log"
162 ssh "${ODL_SYSTEM_IP}" bash -c 'ps axf | grep karaf | grep -v grep | awk '"'"'{print "kill -9 " $1}'"'"' | sh'
163 sleep 5
164 ssh "${ODL_SYSTEM_IP}" xz -9ekvv "/tmp/${BUNDLEFOLDER}/data/log/karaf.log"
165 scp "${ODL_SYSTEM_IP}:/tmp/${BUNDLEFOLDER}/data/log/karaf.log.xz" .
166 true  # perhaps Jenkins is testing last exit code
167
168 # vim: ts=4 sw=4 sts=4 et ft=sh :
169