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:latest}
15WORKSPACE=${WORKSPACE:-${TMP}/unit-test${RANDOM}}
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"}
22
23# Timestamp for job
24echo "Unit test build started, $(date)"
25
26# Currently only support ubuntu:latest due to systemd requirements
27if [[ "${DISTRO}" == "ubuntu"* ]]; then
28    DISTRO="ubuntu:latest"
29elif [[ "${DISTRO}" == "fedora" ]]; then
30    echo "Distro (${DISTRO}) not supported, running as ubuntu"
31    DISTRO="ubuntu:latest"
32fi
33
34# Check workspace, build scripts, and package to be unit tested exists
35if [ ! -d "${WORKSPACE}" ]; then
36    echo "Workspace(${WORKSPACE}) doesn't exist, exiting..."
37    exit 1
38fi
39if [ ! -d "${WORKSPACE}/${OBMC_BUILD_SCRIPTS}" ]; then
40    echo "Package(${OBMC_BUILD_SCRIPTS}) not found in ${WORKSPACE}, exiting..."
41    exit 1
42fi
43if [ ! -d "${WORKSPACE}/${UNIT_TEST_PKG}" ]; then
44    echo "Package(${UNIT_TEST_PKG}) not found in ${WORKSPACE}, exiting..."
45    exit 1
46fi
47
48# Copy unit test script into workspace
49cp ${WORKSPACE}/${OBMC_BUILD_SCRIPTS}/${UNIT_TEST_PY_DIR}/${UNIT_TEST_PY} \
50${WORKSPACE}/${UNIT_TEST_PY}
51chmod a+x ${WORKSPACE}/${UNIT_TEST_PY}
52
53# Copy dbus unit test script into workspace
54cp ${WORKSPACE}/${OBMC_BUILD_SCRIPTS}/${UNIT_TEST_PY_DIR}/${DBUS_UNIT_TEST_PY} \
55${WORKSPACE}/${DBUS_UNIT_TEST_PY}
56chmod a+x ${WORKSPACE}/${DBUS_UNIT_TEST_PY}
57
58# Copy format code script into workspace
59cp ${WORKSPACE}/${OBMC_BUILD_SCRIPTS}/${UNIT_TEST_PY_DIR}/${FORMAT_CODE_SH} \
60${WORKSPACE}/${FORMAT_CODE_SH}
61chmod a+x ${WORKSPACE}/${FORMAT_CODE_SH}
62
63# Configure docker build
64cd ${WORKSPACE}/${OBMC_BUILD_SCRIPTS}
65echo "Building docker image with build-unit-test-docker.sh"
66./build-unit-test-docker.sh ${DOCKER_IMG_NAME} ${DISTRO}
67
68# Unit test and parameters
69UNIT_TEST="${WORKSPACE}/${UNIT_TEST_PY},-w,${WORKSPACE},-p,${UNIT_TEST_PKG},-v"
70
71# Run the docker unit test container with the unit test execution script
72echo "Executing docker image"
73docker run --cap-add=sys_admin --rm=true \
74    --privileged=true \
75    -w "${WORKSPACE}" -v "${WORKSPACE}":"${WORKSPACE}" \
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