1#!/bin/bash -xe
2
3# This build script is for running the Jenkins unit test builds using docker.
4#
5# It uses a few variables which are part of Jenkins build job matrix:
6#   distro = fedora|ubuntu|ubuntu:14.04|ubuntu:16.04
7#   dbus_sys_config_file = <path of the dbus config file>
8#   WORKSPACE = <location of unit test execution script>
9
10# Trace bash processing. Set -e so when a step fails, we fail the build
11set -uo pipefail
12
13# Default variables
14DOCKER_IMG_NAME="openbmc/ubuntu-unit-test"
15DISTRO=${distro:-ubuntu:latest}
16WORKSPACE=${WORKSPACE:-${TMP}/unit-test${RANDOM}}
17OBMC_BUILD_SCRIPTS="openbmc-build-scripts"
18UNIT_TEST_PY_DIR="scripts"
19UNIT_TEST_PY="unit-test.py"
20FORMAT_CODE_SH="format-code.sh"
21DBUS_UNIT_TEST_PY="dbus-unit-test.py"
22DBUS_SYS_CONFIG_FILE=${dbus_sys_config_file:-"/usr/share/dbus-1/system.conf"}
23
24# Timestamp for job
25echo "Unit test build started, $(date)"
26
27# Currently only support ubuntu:latest due to systemd requirements
28if [[ "${DISTRO}" == "ubuntu"* ]]; then
29    DISTRO="ubuntu:latest"
30elif [[ "${DISTRO}" == "fedora" ]]; then
31    echo "Distro (${DISTRO}) not supported, running as ubuntu"
32    DISTRO="ubuntu:latest"
33fi
34
35# Check workspace, build scripts, and package to be unit tested exists
36if [ ! -d "${WORKSPACE}" ]; then
37    echo "Workspace(${WORKSPACE}) doesn't exist, exiting..."
38    exit 1
39fi
40if [ ! -d "${WORKSPACE}/${OBMC_BUILD_SCRIPTS}" ]; then
41    echo "Package(${OBMC_BUILD_SCRIPTS}) not found in ${WORKSPACE}, exiting..."
42    exit 1
43fi
44if [ ! -d "${WORKSPACE}/${UNIT_TEST_PKG}" ]; then
45    echo "Package(${UNIT_TEST_PKG}) not found in ${WORKSPACE}, exiting..."
46    exit 1
47fi
48
49# Copy unit test script into workspace
50cp ${WORKSPACE}/${OBMC_BUILD_SCRIPTS}/${UNIT_TEST_PY_DIR}/${UNIT_TEST_PY} \
51${WORKSPACE}/${UNIT_TEST_PY}
52chmod a+x ${WORKSPACE}/${UNIT_TEST_PY}
53
54# Copy dbus unit test script into workspace
55cp ${WORKSPACE}/${OBMC_BUILD_SCRIPTS}/${UNIT_TEST_PY_DIR}/${DBUS_UNIT_TEST_PY} \
56${WORKSPACE}/${DBUS_UNIT_TEST_PY}
57chmod a+x ${WORKSPACE}/${DBUS_UNIT_TEST_PY}
58
59# Copy format code script into workspace
60cp ${WORKSPACE}/${OBMC_BUILD_SCRIPTS}/${UNIT_TEST_PY_DIR}/${FORMAT_CODE_SH} \
61${WORKSPACE}/${FORMAT_CODE_SH}
62chmod a+x ${WORKSPACE}/${FORMAT_CODE_SH}
63
64# Configure docker build
65cd ${WORKSPACE}/${OBMC_BUILD_SCRIPTS}
66echo "Building docker image with build-unit-test-docker.sh"
67./build-unit-test-docker.sh ${DOCKER_IMG_NAME} ${DISTRO}
68
69# Unit test and parameters
70UNIT_TEST="${WORKSPACE}/${UNIT_TEST_PY},-w,${WORKSPACE},-p,${UNIT_TEST_PKG},-v"
71
72# Run the docker unit test container with the unit test execution script
73echo "Executing docker image"
74docker run --cap-add=sys_admin --rm=true \
75    --privileged=true \
76    -w "${WORKSPACE}" -v "${WORKSPACE}":"${WORKSPACE}" \
77    -t ${DOCKER_IMG_NAME} \
78    ${WORKSPACE}/${DBUS_UNIT_TEST_PY} -u ${UNIT_TEST} \
79    -f ${DBUS_SYS_CONFIG_FILE}
80
81# Timestamp for build
82echo "Unit test build completed, $(date)"
83