Andrew Geissler | 0205e8d | 2016-08-10 07:46:19 -0500 | [diff] [blame] | 1 | #!/bin/bash -xe |
Alanny Lopez | 74d2aba | 2017-07-27 10:23:47 -0500 | [diff] [blame] | 2 | ############################################################################### |
Andrew Geissler | 0205e8d | 2016-08-10 07:46:19 -0500 | [diff] [blame] | 3 | # |
Alanny Lopez | 74d2aba | 2017-07-27 10:23:47 -0500 | [diff] [blame] | 4 | # This script is for starting QEMU against the input build and running the |
| 5 | # robot CI test suite against it.(ROBOT CI TEST CURRENTLY WIP) |
| 6 | # |
| 7 | ############################################################################### |
| 8 | # |
| 9 | # Parameters used by the script: |
| 10 | # UPSTREAM_WORKSPACE = The directory from which the QEMU components are being |
| 11 | # imported from. Generally, this is the build directory |
| 12 | # that is generated by the OpenBMC build-setup.sh script |
| 13 | # when run with "target=qemu". |
| 14 | # Example: /home/builder/workspace/openbmc-build/build. |
| 15 | # |
| 16 | # Optional Variables: |
| 17 | # |
| 18 | # WORKSPACE = Path of the workspace directory where some intermediate |
| 19 | # files will be saved to. |
| 20 | # QEMU_RUN_TIMER = Defaults to 300, a timer for the QEMU container. |
Andrew Geissler | 27876c5 | 2018-02-21 08:18:35 -0800 | [diff] [blame] | 21 | # QEMU_LOGIN_TIMER = Defaults to 180, a timer for the QEMU container to reach |
| 22 | # login. |
Alanny Lopez | 74d2aba | 2017-07-27 10:23:47 -0500 | [diff] [blame] | 23 | # DOCKER_IMG_NAME = Defaults to openbmc/ubuntu-robot-qemu, the name the |
| 24 | # Docker image will be tagged with when built. |
| 25 | # OBMC_BUILD_DIR = Defaults to /tmp/openbmc/build, the path to the |
| 26 | # directory where the UPSTREAM_WORKSPACE build files will |
| 27 | # be mounted to. Since the build containers have been |
| 28 | # changed to use /tmp as the parent directory for their |
| 29 | # builds, move the mounting location to be the same to |
| 30 | # resolve issues with file links or referrals to exact |
| 31 | # paths in the original build directory. If the build |
| 32 | # directory was changed in the build-setup.sh run, this |
| 33 | # variable should also be changed. Otherwise, the default |
| 34 | # should be used. |
Alanny Lopez | 07b4d5b | 2017-08-01 16:24:07 -0500 | [diff] [blame] | 35 | # LAUNCH = Used to determine how to launch the qemu robot test |
| 36 | # containers. The options are "local", and "k8s". It will |
| 37 | # default to local which will launch a single container |
| 38 | # to do the runs. If specified k8s will launch a group of |
| 39 | # containers into a kubernetes cluster using the helper |
| 40 | # script. |
Andrew Geissler | 7a88f29 | 2018-01-04 15:16:02 -0600 | [diff] [blame] | 41 | # QEMU_BIN = Location of qemu-system-arm binary to use when starting |
| 42 | # QEMU relative to upstream workspace. Default is |
| 43 | # ./tmp/sysroots/${QEMU_ARCH}/usr/bin/qemu-system-arm |
| 44 | # which is the default location when doing a bitbake |
| 45 | # of obmc-phosphor-image |
Alanny Lopez | 74d2aba | 2017-07-27 10:23:47 -0500 | [diff] [blame] | 46 | # |
Andrew Geissler | f9dbc8d | 2018-01-05 14:49:39 -0600 | [diff] [blame] | 47 | # MACHINE = Machine to run test against. The options are "witherspoon", |
| 48 | # "palmetto", "romulus", or undefined (default). Default |
| 49 | # will use the versatilepb model. |
Alanny Lopez | 74d2aba | 2017-07-27 10:23:47 -0500 | [diff] [blame] | 50 | ############################################################################### |
Andrew Geissler | 0205e8d | 2016-08-10 07:46:19 -0500 | [diff] [blame] | 51 | |
| 52 | set -uo pipefail |
| 53 | |
Alanny Lopez | 74d2aba | 2017-07-27 10:23:47 -0500 | [diff] [blame] | 54 | QEMU_RUN_TIMER=${QEMU_RUN_TIMER:-300} |
Andrew Geissler | 27876c5 | 2018-02-21 08:18:35 -0800 | [diff] [blame] | 55 | QEMU_LOGIN_TIMER=${QEMU_LOGIN_TIMER:-180} |
Andrew Geissler | 1df680a | 2016-08-22 14:37:39 -0500 | [diff] [blame] | 56 | WORKSPACE=${WORKSPACE:-${HOME}/${RANDOM}${RANDOM}} |
Alanny Lopez | 74d2aba | 2017-07-27 10:23:47 -0500 | [diff] [blame] | 57 | DOCKER_IMG_NAME=${DOCKER_IMG_NAME:-openbmc/ubuntu-robot-qemu} |
| 58 | OBMC_BUILD_DIR=${OBMC_BUILD_DIR:-/tmp/openbmc/build} |
| 59 | UPSTREAM_WORKSPACE=${UPSTREAM_WORKSPACE:-${1}} |
Alanny Lopez | 07b4d5b | 2017-08-01 16:24:07 -0500 | [diff] [blame] | 60 | LAUNCH=${LAUNCH:-local} |
Andrew Geissler | 0c63ce1 | 2018-03-01 12:40:19 -0800 | [diff] [blame] | 61 | DEFAULT_MACHINE=versatilepb |
| 62 | MACHINE=${MACHINE:-${DEFAULT_MACHINE}} |
| 63 | |
| 64 | # The automated test suite needs a real machine type so |
| 65 | # if we're using versatilepb for our qemu start parameter |
| 66 | # then we need to just let our run-robot use the default |
| 67 | if [[ $MACHINE == $DEFAULT_MACHINE ]]; then |
| 68 | MACHINE_QEMU= |
| 69 | else |
| 70 | MACHINE_QEMU=${MACHINE} |
| 71 | fi |
Andrew Geissler | 0205e8d | 2016-08-10 07:46:19 -0500 | [diff] [blame] | 72 | |
Alanny Lopez | 74d2aba | 2017-07-27 10:23:47 -0500 | [diff] [blame] | 73 | # Determine the architecture |
| 74 | ARCH=$(uname -m) |
Andrew Geissler | 0205e8d | 2016-08-10 07:46:19 -0500 | [diff] [blame] | 75 | |
Alanny Lopez | 74d2aba | 2017-07-27 10:23:47 -0500 | [diff] [blame] | 76 | # Determine the prefix of the Dockerfile's base image and the QEMU_ARCH variable |
| 77 | case ${ARCH} in |
| 78 | "ppc64le") |
Andrew Geissler | 0205e8d | 2016-08-10 07:46:19 -0500 | [diff] [blame] | 79 | DOCKER_BASE="ppc64le/" |
| 80 | QEMU_ARCH="ppc64le-linux" |
Alanny Lopez | 74d2aba | 2017-07-27 10:23:47 -0500 | [diff] [blame] | 81 | ;; |
| 82 | "x86_64") |
Andrew Geissler | 0205e8d | 2016-08-10 07:46:19 -0500 | [diff] [blame] | 83 | DOCKER_BASE="" |
| 84 | QEMU_ARCH="x86_64-linux" |
Alanny Lopez | 74d2aba | 2017-07-27 10:23:47 -0500 | [diff] [blame] | 85 | ;; |
| 86 | *) |
| 87 | echo "Unsupported system architecture(${ARCH}) found for docker image" |
| 88 | exit 1 |
| 89 | esac |
Andrew Geissler | 0205e8d | 2016-08-10 07:46:19 -0500 | [diff] [blame] | 90 | |
Andrew Geissler | 7a88f29 | 2018-01-04 15:16:02 -0600 | [diff] [blame] | 91 | # Set the location of the qemu binary relative to UPSTREAM_WORKSPACE |
| 92 | QEMU_BIN=${QEMU_BIN:-./tmp/sysroots/${QEMU_ARCH}/usr/bin/qemu-system-arm} |
| 93 | |
Alanny Lopez | 74d2aba | 2017-07-27 10:23:47 -0500 | [diff] [blame] | 94 | # Get the base directory of the openbmc-build-scripts repo so we can return |
| 95 | DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" |
| 96 | |
| 97 | # Create the base Docker image for QEMU and Robot |
Andrew Geissler | 0205e8d | 2016-08-10 07:46:19 -0500 | [diff] [blame] | 98 | . "$DIR/scripts/build-qemu-robot-docker.sh" "$DOCKER_IMG_NAME" |
| 99 | |
| 100 | # Copy the scripts to start and verify QEMU in the workspace |
| 101 | cp $DIR/scripts/boot-qemu* ${UPSTREAM_WORKSPACE} |
| 102 | |
Alanny Lopez | 07b4d5b | 2017-08-01 16:24:07 -0500 | [diff] [blame] | 103 | ################################################################################ |
Alanny Lopez | 74d2aba | 2017-07-27 10:23:47 -0500 | [diff] [blame] | 104 | |
Alanny Lopez | 07b4d5b | 2017-08-01 16:24:07 -0500 | [diff] [blame] | 105 | if [[ ${LAUNCH} == "local" ]]; then |
Alanny Lopez | 74d2aba | 2017-07-27 10:23:47 -0500 | [diff] [blame] | 106 | |
Alanny Lopez | 07b4d5b | 2017-08-01 16:24:07 -0500 | [diff] [blame] | 107 | # Start QEMU docker instance |
| 108 | # root in docker required to open up the https/ssh ports |
| 109 | obmc_qemu_docker=$(docker run --detach \ |
| 110 | --user root \ |
| 111 | --env HOME=${OBMC_BUILD_DIR} \ |
| 112 | --env QEMU_RUN_TIMER=${QEMU_RUN_TIMER} \ |
| 113 | --env QEMU_ARCH=${QEMU_ARCH} \ |
Andrew Geissler | 7a88f29 | 2018-01-04 15:16:02 -0600 | [diff] [blame] | 114 | --env QEMU_BIN=${QEMU_BIN} \ |
Andrew Geissler | f9dbc8d | 2018-01-05 14:49:39 -0600 | [diff] [blame] | 115 | --env MACHINE=${MACHINE} \ |
Alanny Lopez | 07b4d5b | 2017-08-01 16:24:07 -0500 | [diff] [blame] | 116 | --workdir "${OBMC_BUILD_DIR}" \ |
| 117 | --volume "${UPSTREAM_WORKSPACE}":"${OBMC_BUILD_DIR}" \ |
| 118 | --tty \ |
| 119 | ${DOCKER_IMG_NAME} ${OBMC_BUILD_DIR}/boot-qemu-test.exp) |
Andrew Geissler | 0205e8d | 2016-08-10 07:46:19 -0500 | [diff] [blame] | 120 | |
Alanny Lopez | 07b4d5b | 2017-08-01 16:24:07 -0500 | [diff] [blame] | 121 | # We can use default ports because we're going to have the 2 |
| 122 | # docker instances talk over their private network |
| 123 | DOCKER_SSH_PORT=22 |
| 124 | DOCKER_HTTPS_PORT=443 |
Andrew Geissler | 9d913fe | 2018-02-21 08:29:39 -0800 | [diff] [blame] | 125 | |
| 126 | # This docker command intermittently asserts a SIGPIPE which |
| 127 | # causes the whole script to fail. The IP address comes through |
| 128 | # fine on these errors so just ignore the SIGPIPE |
| 129 | trap '' PIPE |
| 130 | |
Alanny Lopez | 07b4d5b | 2017-08-01 16:24:07 -0500 | [diff] [blame] | 131 | DOCKER_QEMU_IP_ADDR="$(docker inspect $obmc_qemu_docker | \ |
Andrew Geissler | 5b4a0d2 | 2018-04-03 11:11:02 -0700 | [diff] [blame] | 132 | grep "IPAddress\":" | tail -n1 | cut -d '"' -f 4)" |
Andrew Geissler | 0205e8d | 2016-08-10 07:46:19 -0500 | [diff] [blame] | 133 | |
Alanny Lopez | 07b4d5b | 2017-08-01 16:24:07 -0500 | [diff] [blame] | 134 | #Now wait for the OpenBMC QEMU Docker instance to get to standby |
Andrew Geissler | 27876c5 | 2018-02-21 08:18:35 -0800 | [diff] [blame] | 135 | delay=5 |
| 136 | attempt=$(( $QEMU_LOGIN_TIMER / $delay )) |
Alanny Lopez | 07b4d5b | 2017-08-01 16:24:07 -0500 | [diff] [blame] | 137 | while [ $attempt -gt 0 ]; do |
Andrew Geissler | 0205e8d | 2016-08-10 07:46:19 -0500 | [diff] [blame] | 138 | attempt=$(( $attempt - 1 )) |
| 139 | echo "Waiting for qemu to get to standby (attempt: $attempt)..." |
| 140 | result=$(docker logs $obmc_qemu_docker) |
| 141 | if grep -q 'OPENBMC-READY' <<< $result ; then |
Alanny Lopez | 07b4d5b | 2017-08-01 16:24:07 -0500 | [diff] [blame] | 142 | echo "QEMU is ready!" |
| 143 | # Give QEMU a few secs to stablize |
Andrew Geissler | 27876c5 | 2018-02-21 08:18:35 -0800 | [diff] [blame] | 144 | sleep $delay |
Alanny Lopez | 07b4d5b | 2017-08-01 16:24:07 -0500 | [diff] [blame] | 145 | break |
Andrew Geissler | 0205e8d | 2016-08-10 07:46:19 -0500 | [diff] [blame] | 146 | fi |
Andrew Geissler | 27876c5 | 2018-02-21 08:18:35 -0800 | [diff] [blame] | 147 | sleep $delay |
Alanny Lopez | 07b4d5b | 2017-08-01 16:24:07 -0500 | [diff] [blame] | 148 | done |
Andrew Geissler | 0205e8d | 2016-08-10 07:46:19 -0500 | [diff] [blame] | 149 | |
Alanny Lopez | 07b4d5b | 2017-08-01 16:24:07 -0500 | [diff] [blame] | 150 | if [ "$attempt" -eq 0 ]; then |
Andrew Geissler | 0205e8d | 2016-08-10 07:46:19 -0500 | [diff] [blame] | 151 | echo "Timed out waiting for QEMU, exiting" |
| 152 | exit 1 |
Alanny Lopez | 07b4d5b | 2017-08-01 16:24:07 -0500 | [diff] [blame] | 153 | fi |
| 154 | |
| 155 | # Now run the Robot test (Tests commented out until they are working again) |
| 156 | |
| 157 | # Timestamp for job |
Andrew Geissler | 0c63ce1 | 2018-03-01 12:40:19 -0800 | [diff] [blame] | 158 | echo "Robot Test started, $(date)" |
Alanny Lopez | 07b4d5b | 2017-08-01 16:24:07 -0500 | [diff] [blame] | 159 | |
Andrew Geissler | 0c63ce1 | 2018-03-01 12:40:19 -0800 | [diff] [blame] | 160 | mkdir -p ${WORKSPACE} |
| 161 | cd ${WORKSPACE} |
Alanny Lopez | 07b4d5b | 2017-08-01 16:24:07 -0500 | [diff] [blame] | 162 | |
| 163 | # Copy in the script which will execute the Robot tests |
Andrew Geissler | 0c63ce1 | 2018-03-01 12:40:19 -0800 | [diff] [blame] | 164 | cp $DIR/scripts/run-robot.sh ${WORKSPACE} |
Alanny Lopez | 07b4d5b | 2017-08-01 16:24:07 -0500 | [diff] [blame] | 165 | |
| 166 | # Run the Docker container to execute the Robot test cases |
| 167 | # The test results will be put in ${WORKSPACE} |
Andrew Geissler | 0c63ce1 | 2018-03-01 12:40:19 -0800 | [diff] [blame] | 168 | docker run --rm \ |
| 169 | --user root \ |
| 170 | --env HOME=${HOME} \ |
| 171 | --env IP_ADDR=${DOCKER_QEMU_IP_ADDR} \ |
| 172 | --env SSH_PORT=${DOCKER_SSH_PORT} \ |
| 173 | --env HTTPS_PORT=${DOCKER_HTTPS_PORT} \ |
| 174 | --env MACHINE=${MACHINE_QEMU} \ |
| 175 | --workdir ${HOME} \ |
| 176 | --volume ${WORKSPACE}:${HOME} \ |
| 177 | --tty \ |
| 178 | ${DOCKER_IMG_NAME} ${HOME}/run-robot.sh |
Alanny Lopez | 07b4d5b | 2017-08-01 16:24:07 -0500 | [diff] [blame] | 179 | |
| 180 | # Now stop the QEMU Docker image |
| 181 | docker stop $obmc_qemu_docker |
| 182 | |
| 183 | elif [[ ${LAUNCH} == "k8s" ]]; then |
| 184 | # Package the Upstream into an image based off the one created by the build-qemu-robot.sh |
| 185 | # Dockerfile = $( cat << EOF |
| 186 | imgname=$DOCKER_IMG_NAME |
| 187 | cd $DIR |
| 188 | source ./kubernetes/kubernetes-launch.sh QEMU-launch false false deployment |
| 189 | |
| 190 | # Xcat Launch (NYI) |
| 191 | |
| 192 | # source ./kubernetes/kubernetes-launch.sh XCAT-launch true true |
| 193 | |
| 194 | else |
| 195 | echo "LAUNCH variable invalid, Exiting" |
| 196 | exit 1 |
Andrew Geissler | 0205e8d | 2016-08-10 07:46:19 -0500 | [diff] [blame] | 197 | fi |