run_tests.sh 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270
  1. #!/bin/bash -ex
  2. # Copyright 2015 Red Hat, Inc.
  3. #
  4. # Licensed under the Apache License, Version 2.0 (the "License"); you may
  5. # not use this file except in compliance with the License. You may obtain
  6. # a copy of the License at
  7. #
  8. # http://www.apache.org/licenses/LICENSE-2.0
  9. #
  10. # Unless required by applicable law or agreed to in writing, software
  11. # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
  12. # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
  13. # License for the specific language governing permissions and limitations
  14. # under the License.
  15. export PATH=$PATH:/usr/local/sbin:/usr/sbin
  16. SCENARIO=${SCENARIO:-scenario001}
  17. # We could want to override the default repositories or install behavior
  18. INSTALL_FROM_SOURCE=${INSTALL_FROM_SOURCE:-true}
  19. MANAGE_REPOS=${MANAGE_REPOS:-true}
  20. DELOREAN=${DELOREAN:-http://trunk.rdoproject.org/centos7-master/current-passed-ci/delorean.repo}
  21. DELOREAN_DEPS=${DELOREAN_DEPS:-http://trunk.rdoproject.org/centos7-master/delorean-deps.repo}
  22. GIT_BASE_URL=${GIT_BASE_URL:-git://git.openstack.org}
  23. ADDITIONAL_ARGS=${ADDITIONAL_ARGS:-}
  24. # If logs should be retrieved automatically
  25. COPY_LOGS=${COPY_LOGS:-true}
  26. # Install external Puppet modules with r10k
  27. # Uses the following variables:
  28. #
  29. # - ``GEM_BIN_DIR`` must be set to Gem bin directory
  30. # - ``PUPPETFILE_DIR`` must be set to Puppet modules directory
  31. install_external() {
  32. $SUDO ${GEM_BIN_DIR}r10k puppetfile install -v --moduledir ${PUPPETFILE_DIR} --puppetfile Puppetfile1
  33. }
  34. # Install Puppet OpenStack modules with zuul-cloner
  35. # Uses the following variables:
  36. #
  37. # - ``PUPPETFILE_DIR`` must be set to Puppet modules directory
  38. # - ``ZUUL_REF`` must be set to Zuul ref. Fallback to 'None'.
  39. # - ``ZUUL_BRANCH`` must be set to Zuul branch. Fallback to 'master'.
  40. # - ``ZUUL_URL`` must be set to Zuul URL
  41. install_openstack() {
  42. cat > clonemap.yaml <<EOF
  43. clonemap:
  44. - name: '(.*?)/puppet-(.*)'
  45. dest: '$PUPPETFILE_DIR/\2'
  46. EOF
  47. # Periodic jobs run without ref on master
  48. ZUUL_REF=${ZUUL_REF:-None}
  49. ZUUL_BRANCH=${ZUUL_BRANCH:-master}
  50. local project_names=$(awk '{ if ($1 == ":git") print $3 }' \
  51. Puppetfile0 | tr -d "'," | cut -d '/' -f 4- | xargs
  52. )
  53. $SUDO /usr/zuul-env/bin/zuul-cloner -m clonemap.yaml \
  54. --cache-dir /opt/git \
  55. --zuul-ref $ZUUL_REF \
  56. --zuul-branch $ZUUL_BRANCH \
  57. --zuul-url $ZUUL_URL \
  58. $GIT_BASE_URL $project_names
  59. }
  60. # Install all Puppet modules with r10k
  61. # Uses the following variables:
  62. #
  63. # - ``GEM_BIN_DIR`` must be set to Gem bin directory
  64. install_all() {
  65. $SUDO ${GEM_BIN_DIR}r10k puppetfile install -v --puppetfile Puppetfile
  66. }
  67. # Install Puppet OpenStack modules and dependencies by using
  68. # zuul-cloner or r10k.
  69. # Uses the following variables:
  70. #
  71. # - ``PUPPETFILE_DIR`` must be set to Puppet modules directory
  72. # - ``ZUUL_REF`` must be set to Zuul ref
  73. # - ``ZUUL_BRANCH`` must be set to Zuul branch
  74. # - ``ZUUL_URL`` must be set to Zuul URL
  75. install_modules() {
  76. # If zuul-cloner is there, have it install modules using zuul refs
  77. if [ -e /usr/zuul-env/bin/zuul-cloner ] ; then
  78. csplit Puppetfile /'Non-OpenStack modules'/ \
  79. --prefix Puppetfile \
  80. --suffix '%d'
  81. install_external
  82. install_openstack
  83. else
  84. install_all
  85. fi
  86. # Copy the Packstack Puppet module
  87. $SUDO cp -r packstack/puppet/modules/packstack ${PUPPETFILE_DIR}
  88. }
  89. if [ $(id -u) != 0 ]; then
  90. SUDO='sudo -E'
  91. # Packstack will connect as root to localhost, set-up the keypair and sshd
  92. ssh-keygen -t rsa -C "packstack-integration-test" -N "" -f ~/.ssh/id_rsa
  93. $SUDO mkdir -p /root/.ssh
  94. cat ~/.ssh/id_rsa.pub | $SUDO tee -a /root/.ssh/authorized_keys
  95. $SUDO chmod 0600 /root/.ssh/authorized_keys
  96. $SUDO sed -i 's/^PermitRootLogin no/PermitRootLogin without-password/g' /etc/ssh/sshd_config
  97. $SUDO service sshd restart
  98. fi
  99. # Sometimes keystone admin port is used as ephemeral port for other connections and gate jobs fail with httpd error 'Address already in use'.
  100. # We reserve port 35357 at the beginning of the job execution to mitigate this issue as much as possible.
  101. # Similar hack is done in devstack https://github.com/openstack-dev/devstack/blob/master/tools/fixup_stuff.sh#L53-L68
  102. # Get any currently reserved ports, strip off leading whitespace
  103. keystone_port=35357
  104. reserved_ports=$(sysctl net.ipv4.ip_local_reserved_ports | awk -F'=' '{print $2;}' | sed 's/^ //')
  105. if [[ -z "${reserved_ports}" ]]; then
  106. $SUDO sysctl -w net.ipv4.ip_local_reserved_ports=${keystone_port}
  107. else
  108. $SUDO sysctl -w net.ipv4.ip_local_reserved_ports=${keystone_port},${reserved_ports}
  109. fi
  110. # Make swap configuration consistent
  111. # TODO: REMOVE ME
  112. # https://review.openstack.org/#/c/300122/
  113. source ./tools/fix_disk_layout.sh
  114. # Bump ulimit to avoid too many open file errors
  115. echo "${USER} soft nofile 65536" | $SUDO tee -a /etc/security/limits.conf
  116. echo "${USER} hard nofile 65536" | $SUDO tee -a /etc/security/limits.conf
  117. echo "root soft nofile 65536" | $SUDO tee -a /etc/security/limits.conf
  118. echo "root hard nofile 65536" | $SUDO tee -a /etc/security/limits.conf
  119. # Setup repositories
  120. if [ "${MANAGE_REPOS}" = true ]; then
  121. $SUDO curl -L ${DELOREAN} -o /etc/yum.repos.d/delorean.repo
  122. $SUDO curl -L ${DELOREAN_DEPS} -o /etc/yum.repos.d/delorean-deps.repo
  123. $SUDO yum update -y
  124. fi
  125. # Install dependencies
  126. $SUDO yum -y install puppet \
  127. yum-plugin-priorities \
  128. iproute \
  129. dstat \
  130. python-setuptools \
  131. openssl-devel \
  132. python-devel \
  133. libffi-devel \
  134. libxml2-devel \
  135. libxslt-devel \
  136. libyaml-devel \
  137. ruby-devel \
  138. openstack-selinux \
  139. policycoreutils \
  140. rubygems \
  141. wget \
  142. "@Development Tools"
  143. # Don't assume pip is installed
  144. which pip || $SUDO easy_install pip
  145. # Try to use pre-cached cirros images, if available, otherwise download them
  146. rm -rf /tmp/cirros
  147. mkdir /tmp/cirros
  148. if [ -f ~/cache/files/cirros-0.3.4-x86_64-uec.tar.gz ]; then
  149. tar -xzvf ~/cache/files/cirros-0.3.4-x86_64-uec.tar.gz -C /tmp/cirros/
  150. else
  151. echo "No pre-cached uec archive found, downloading..."
  152. wget --tries=10 http://download.cirros-cloud.net/0.3.4/cirros-0.3.4-x86_64-uec.tar.gz -P /tmp/cirros/
  153. tar -xzvf /tmp/cirros/cirros-0.3.4-x86_64-uec.tar.gz -C /tmp/cirros/
  154. fi
  155. if [ -f ~/cache/files/cirros-0.3.4-x86_64-disk.img ]; then
  156. cp -p ~/cache/files/cirros-0.3.4-x86_64-disk.img /tmp/cirros/
  157. else
  158. echo "No pre-cached disk image found, downloading..."
  159. wget --tries=10 http://download.cirros-cloud.net/0.3.4/cirros-0.3.4-x86_64-disk.img -P /tmp/cirros/
  160. fi
  161. echo "Using pre-cached images:"
  162. find /tmp/cirros -type f -printf "%m %n %u %g %s %t" -exec md5sum \{\} \;
  163. # TO-DO: Packstack should handle Hiera and Puppet configuration, so that it works
  164. # no matter the environment
  165. $SUDO su -c 'cat > /etc/puppet/puppet.conf <<EOF
  166. [main]
  167. logdir = /var/log/puppet
  168. rundir = /var/run/puppet
  169. ssldir = $vardir/ssl
  170. hiera_config = /etc/puppet/hiera.yaml
  171. [agent]
  172. classfile = $vardir/classes.txt
  173. localconfig = $vardir/localconfig
  174. EOF'
  175. $SUDO su -c 'cat > /etc/puppet/hiera.yaml <<EOF
  176. ---
  177. :backends:
  178. - yaml
  179. :yaml:
  180. :datadir: /placeholder
  181. :hierarchy:
  182. - common
  183. - defaults
  184. - "%{clientcert}"
  185. - "%{environment}"
  186. - global
  187. EOF'
  188. # To make sure wrong config files are not used
  189. if [ -d /home/jenkins/.puppet ]; then
  190. $SUDO rm -f /home/jenkins/.puppet
  191. fi
  192. $SUDO puppet config set hiera_config /etc/puppet/hiera.yaml
  193. # Setup dstat for resource usage tracing
  194. if type "dstat" 2>/dev/null; then
  195. $SUDO dstat -tcmndrylpg \
  196. --top-cpu-adv \
  197. --top-io-adv \
  198. --nocolor | $SUDO tee -a /var/log/dstat.log > /dev/null &
  199. fi
  200. # Setup packstack
  201. if [ "${INSTALL_FROM_SOURCE}" = true ]; then
  202. $SUDO pip install .
  203. export GEM_BIN_DIR=/tmp/packstackgems/bin/
  204. export PUPPETFILE_DIR=/usr/share/openstack-puppet/modules
  205. export GEM_HOME=/tmp/packstackgems
  206. $SUDO gem install r10k --no-ri --no-rdoc
  207. # make sure there is no puppet module pre-installed
  208. $SUDO rm -rf "${PUPPETFILE_DIR:?}/"*
  209. install_modules
  210. else
  211. $SUDO yum -y install openstack-packstack
  212. fi
  213. # Make sure there are no other puppet modules in the system (happens in gate)
  214. $SUDO rm -rf /etc/puppet/modules/*
  215. # Make sure the fqdn is associated to the IP in /etc/hosts
  216. # Needed for Horizon SSL tests in Tempest
  217. echo -e "\n127.0.0.1 $(facter fqdn)" | $SUDO tee -a /etc/hosts
  218. # Generate configuration from selected scenario and run it
  219. source ./tests/${SCENARIO}.sh
  220. result=$?
  221. # Print output and generate subunit if results exist
  222. if [ -d /var/lib/tempest ]; then
  223. pushd /var/lib/tempest
  224. $SUDO /usr/bin/testr last || true
  225. $SUDO bash -c "/usr/bin/testr last --subunit > /var/tmp/packstack/latest/testrepository.subunit" || true
  226. popd
  227. fi
  228. if [ "${COPY_LOGS}" = true ]; then
  229. source ./tools/copy-logs.sh
  230. recover_default_logs
  231. fi
  232. if [ "${FAILURE}" = true ]; then
  233. exit 1
  234. fi
  235. exit $result