Merge "Fix yamllint for integration/distribution"
[releng/builder.git] / jjb / integration / include-raw-integration-deploy-controller-verify.sh
1 CONTROLLERMEM="3072m"
2 ACTUALFEATURES="odl-integration-all"
3
4 echo "Kill any controller running"
5 ps axf | grep karaf | grep -v grep | awk '{print "kill -9 " $1}' | sh
6
7 echo "Clean workspace"
8 rm -rf *
9
10 echo "Downloading the distribution..."
11 wget --progress=dot:mega  ${ACTUALBUNDLEURL}
12
13 echo "Extracting the new controller..."
14 unzip -q ${BUNDLE}
15
16 echo "Configuring the startup features..."
17 FEATURESCONF=${WORKSPACE}/${BUNDLEFOLDER}/etc/org.apache.karaf.features.cfg
18 sed -ie "s/featuresBoot=.*/featuresBoot=config,standard,region,package,kar,ssh,management,${ACTUALFEATURES}/g" ${FEATURESCONF}
19 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}
20 cat ${FEATURESCONF}
21
22 echo "Configuring the log..."
23 LOGCONF=${WORKSPACE}/${BUNDLEFOLDER}/etc/org.ops4j.pax.logging.cfg
24 sed -ie 's/log4j.appender.out.maxFileSize=1MB/log4j.appender.out.maxFileSize=20MB/g' ${LOGCONF}
25 cat ${LOGCONF}
26
27 echo "Configure max memory..."
28 MEMCONF=${WORKSPACE}/${BUNDLEFOLDER}/bin/setenv
29 sed -ie "s/2048m/${CONTROLLERMEM}/g" ${MEMCONF}
30 cat ${MEMCONF}
31
32 echo "Listing all open ports on controller system"
33 netstat -pnatu
34
35 echo "redirected karaf console output to karaf_console.log"
36 export KARAF_REDIRECT=${WORKSPACE}/${BUNDLEFOLDER}/data/log/karaf_console.log
37
38 if [ ${JDKVERSION} == 'openjdk8' ]; then
39     echo "Setting the JRE Version to 8"
40     # dynamic_verify does not allow sudo, JAVA_HOME should be enough for karaf start.
41     # 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
42     export JAVA_HOME=/usr/lib/jvm/java-1.8.0
43 elif [ ${JDKVERSION} == 'openjdk7' ]; then
44     echo "Setting the JRE Version to 7"
45     # dynamic_verify does not allow sudo, JAVA_HOME should be enough for karaf start.
46     # 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
47     export JAVA_HOME=/usr/lib/jvm/java-1.7.0
48 fi
49 readlink -e "${JAVA_HOME}/bin/java"
50 echo "Default JDK Version, JAVA_HOME should override"
51 java -version
52
53 echo "Redirecting karaf console output to karaf_console.log"
54 export KARAF_REDIRECT="${WORKSPACE}/${BUNDLEFOLDER}/data/log/karaf_console.log"
55
56 echo "Starting controller..."
57 ${WORKSPACE}/${BUNDLEFOLDER}/bin/start
58
59 echo "Waiting for controller to come up..."
60 COUNT=0
61 while true; do
62     RESP="$( curl --user admin:admin -sL -w "%{http_code} %{url_effective}\\n" http://localhost:8181/restconf/modules -o /dev/null || true )"
63     echo ${RESP}
64     if [[ ${RESP} == *"200"* ]]; then
65         echo Controller is UP
66         break
67     elif (( ${COUNT} > 600 )); then
68         echo Timeout Controller DOWN
69         echo "Dumping Karaf log..."
70         cat ${WORKSPACE}/${BUNDLEFOLDER}/data/log/karaf.log
71         echo "Listing all open ports on controller system"
72         netstat -pnatu
73         exit 1
74     else
75         COUNT=$(( ${COUNT} + 5 ))
76         sleep 5
77         echo waiting ${COUNT} secs...
78     fi
79 done
80
81 echo "loading many features at once.  Need to allow time for problems to show up in logs.  cool down for 5 min ..."
82 sleep 300
83
84 echo "Checking OSGi bundles..."
85 # sshpass seems to fail with new karaf version
86 # sshpass -p karaf ${WORKSPACE}/${BUNDLEFOLDER}/bin/client -u karaf 'bundle:list'
87
88 echo "Listing all open ports on controller system"
89 netstat -pnatu
90
91 function exit_on_log_file_message {
92     echo "looking for \"$1\" in karaf.log file"
93     if grep --quiet "$1" ${WORKSPACE}/${BUNDLEFOLDER}/data/log/karaf.log; then
94         echo ABORTING: found "$1"
95         echo "Dumping first 500K bytes of karaf log..."
96         head --bytes=500K  ${WORKSPACE}/${BUNDLEFOLDER}/data/log/karaf.log
97         echo "Dumping last 500K bytes of karaf log..."
98         tail --bytes=500K  ${WORKSPACE}/${BUNDLEFOLDER}/data/log/karaf.log
99         cp ${WORKSPACE}/${BUNDLEFOLDER}/data/log/karaf.log .
100         cp ${WORKSPACE}/${BUNDLEFOLDER}/data/log/karaf_console.log .
101         exit 1
102     fi
103
104     echo "looking for \"$1\" in karaf_console.log file"
105     if grep --quiet "$1" ${WORKSPACE}/${BUNDLEFOLDER}/data/log/karaf_console.log; then
106         echo ABORTING: found "$1"
107         echo "Dumping first 500K bytes of karaf log..."
108         head --bytes=500K  ${WORKSPACE}/${BUNDLEFOLDER}/data/log/karaf_console.log
109         echo "Dumping last 500K bytes of karaf log..."
110         tail --bytes=500K  ${WORKSPACE}/${BUNDLEFOLDER}/data/log/karaf_console.log
111         cp ${WORKSPACE}/${BUNDLEFOLDER}/data/log/karaf.log .
112         cp ${WORKSPACE}/${BUNDLEFOLDER}/data/log/karaf_console.log .
113         exit 1
114     fi
115 }
116
117 exit_on_log_file_message 'BindException: Address already in use'
118 exit_on_log_file_message 'server is unhealthy'
119
120 echo "Fetching Karaf logs"
121 # TODO: Move instead of copy? Gzip?
122 cp ${WORKSPACE}/${BUNDLEFOLDER}/data/log/karaf.log .
123 cp ${WORKSPACE}/${BUNDLEFOLDER}/data/log/karaf_console.log .
124
125 echo "Kill controller"
126 ps axf | grep karaf | grep -v grep | awk '{print "kill -9 " $1}' | sh
127
128 echo "Detecting misplaced config files"
129 pushd "${WORKSPACE}/${BUNDLEFOLDER}"
130 XMLS_FOUND=`echo *.xml`
131 popd
132 if [ "$XMLS_FOUND" != "*.xml" ]; then
133     echo "Bug 4628 confirmed."
134     ## TODO: Uncomment the following when ODL is fixed, to guard against regression.
135     # exit 1
136 else
137     echo "Bug 4628 not detected."
138 fi
139
140 # vim: ts=4 sw=4 sts=4 et ft=sh :