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