blob: 26bdc9793e4094c2e479a1cfedac19581a39181f [file] [log] [blame]
Lukacs T. Berki3b730c42021-04-08 13:21:13 +02001#!/bin/bash -eu
2
Rupert Shuttleworth2a4fc3e2021-04-21 07:10:09 -04003set -o pipefail
4
Lukacs T. Berki3b730c42021-04-08 13:21:13 +02005HARDWIRED_MOCK_TOP=
6# Uncomment this to be able to view the source tree after a test is run
7# HARDWIRED_MOCK_TOP=/tmp/td
8
9REAL_TOP="$(readlink -f "$(dirname "$0")"/../../..)"
10
Usta Shrestha2c9a5e32022-06-09 12:22:36 -040011if [[ -n "$HARDWIRED_MOCK_TOP" ]]; then
Lukacs T. Berki686965b2021-04-14 16:40:03 +020012 MOCK_TOP="$HARDWIRED_MOCK_TOP"
13else
14 MOCK_TOP=$(mktemp -t -d st.XXXXX)
15 trap cleanup_mock_top EXIT
16fi
17
18WARMED_UP_MOCK_TOP=$(mktemp -t soong_integration_tests_warmup.XXXXXX.tar.gz)
19trap 'rm -f "$WARMED_UP_MOCK_TOP"' EXIT
20
21function warmup_mock_top {
22 info "Warming up mock top ..."
23 info "Mock top warmup archive: $WARMED_UP_MOCK_TOP"
24 cleanup_mock_top
25 mkdir -p "$MOCK_TOP"
26 cd "$MOCK_TOP"
27
28 create_mock_soong
29 run_soong
30 tar czf "$WARMED_UP_MOCK_TOP" *
31}
32
33function cleanup_mock_top {
34 cd /
35 rm -fr "$MOCK_TOP"
36}
37
38function info {
Usta Shrestha2c9a5e32022-06-09 12:22:36 -040039 echo -e "\e[92;1m[TEST HARNESS INFO]\e[0m" "$*"
Lukacs T. Berki686965b2021-04-14 16:40:03 +020040}
41
Lukacs T. Berki3b730c42021-04-08 13:21:13 +020042function fail {
Usta Shrestha2c9a5e32022-06-09 12:22:36 -040043 echo -e "\e[91;1mFAILED:\e[0m" "$*"
Lukacs T. Berki3b730c42021-04-08 13:21:13 +020044 exit 1
45}
46
Usta Shrestha2c9a5e32022-06-09 12:22:36 -040047function copy_directory {
Lukacs T. Berki3b730c42021-04-08 13:21:13 +020048 local dir="$1"
Usta Shrestha2c9a5e32022-06-09 12:22:36 -040049 local -r parent="$(dirname "$dir")"
Lukacs T. Berki3b730c42021-04-08 13:21:13 +020050
51 mkdir -p "$MOCK_TOP/$parent"
52 cp -R "$REAL_TOP/$dir" "$MOCK_TOP/$parent"
53}
54
Usta Shrestha2c9a5e32022-06-09 12:22:36 -040055function symlink_file {
Lukacs T. Berki3b730c42021-04-08 13:21:13 +020056 local file="$1"
57
58 mkdir -p "$MOCK_TOP/$(dirname "$file")"
59 ln -s "$REAL_TOP/$file" "$MOCK_TOP/$file"
60}
61
Usta Shrestha2c9a5e32022-06-09 12:22:36 -040062function symlink_directory {
Lukacs T. Berki3b730c42021-04-08 13:21:13 +020063 local dir="$1"
64
65 mkdir -p "$MOCK_TOP/$dir"
66 # We need to symlink the contents of the directory individually instead of
67 # using one symlink for the whole directory because finder.go doesn't follow
68 # symlinks when looking for Android.bp files
Usta Shrestha2c9a5e32022-06-09 12:22:36 -040069 for i in "$REAL_TOP/$dir"/*; do
70 i=$(basename "$i")
Lukacs T. Berki3b730c42021-04-08 13:21:13 +020071 local target="$MOCK_TOP/$dir/$i"
72 local source="$REAL_TOP/$dir/$i"
73
74 if [[ -e "$target" ]]; then
75 if [[ ! -d "$source" || ! -d "$target" ]]; then
76 fail "Trying to symlink $dir twice"
77 fi
78 else
79 ln -s "$REAL_TOP/$dir/$i" "$MOCK_TOP/$dir/$i";
80 fi
81 done
82}
83
Lukacs T. Berki686965b2021-04-14 16:40:03 +020084function create_mock_soong {
Chris Parsonsb6e96902022-10-31 20:08:45 -040085 create_mock_bazel
Lukacs T. Berki3b730c42021-04-08 13:21:13 +020086 copy_directory build/blueprint
87 copy_directory build/soong
Joe Onoratofa5fc262022-12-05 15:02:29 -080088 copy_directory build/make
Lukacs T. Berki3b730c42021-04-08 13:21:13 +020089
Lukacs T. Berkie3487c82022-05-02 10:13:19 +020090 symlink_directory prebuilts/sdk
Lukacs T. Berki3b730c42021-04-08 13:21:13 +020091 symlink_directory prebuilts/go
92 symlink_directory prebuilts/build-tools
Liz Kammer0940b892022-03-18 15:55:04 -040093 symlink_directory prebuilts/clang/host
Dan Willemsen4591b642021-05-24 14:24:12 -070094 symlink_directory external/go-cmp
Lukacs T. Berki3b730c42021-04-08 13:21:13 +020095 symlink_directory external/golang-protobuf
Cole Faustd9932ad2022-03-24 17:27:41 -070096 symlink_directory external/starlark-go
Lukacs T. Berki3b730c42021-04-08 13:21:13 +020097
98 touch "$MOCK_TOP/Android.bp"
Lukacs T. Berki686965b2021-04-14 16:40:03 +020099}
Lukacs T. Berki3b730c42021-04-08 13:21:13 +0200100
Usta Shrestha2c9a5e32022-06-09 12:22:36 -0400101function setup {
Lukacs T. Berki686965b2021-04-14 16:40:03 +0200102 cleanup_mock_top
103 mkdir -p "$MOCK_TOP"
Lukacs T. Berki3b730c42021-04-08 13:21:13 +0200104
Lukacs T. Berki686965b2021-04-14 16:40:03 +0200105 echo
106 echo ----------------------------------------------------------------------------
Lukacs T. Berki7a519072021-04-15 18:18:45 +0200107 info "Running test case \e[96;1m${FUNCNAME[1]}\e[0m"
Lukacs T. Berki686965b2021-04-14 16:40:03 +0200108 cd "$MOCK_TOP"
109
Cole Faustb85d1a12022-11-08 18:14:01 -0800110 tar xzf "$WARMED_UP_MOCK_TOP" --warning=no-timestamp
Lukacs T. Berki3b730c42021-04-08 13:21:13 +0200111}
112
Usta Shrestha2c9a5e32022-06-09 12:22:36 -0400113# shellcheck disable=SC2120
114function run_soong {
Sam Delmerico970b96d2022-08-04 14:00:08 -0400115 USE_RBE=false build/soong/soong_ui.bash --make-mode --skip-ninja --skip-config --soong-only --skip-soong-tests "$@"
Rupert Shuttleworth2a4fc3e2021-04-21 07:10:09 -0400116}
117
Usta Shrestha2c9a5e32022-06-09 12:22:36 -0400118function create_mock_bazel {
Rupert Shuttleworth2a4fc3e2021-04-21 07:10:09 -0400119 copy_directory build/bazel
Yifan Hong82799f22022-06-28 16:25:56 -0700120 copy_directory build/bazel_common_rules
Rupert Shuttleworth2a4fc3e2021-04-21 07:10:09 -0400121
Sam Delmericoeddd3c02022-12-02 17:31:58 -0500122 symlink_directory packages/modules/common/build
Rupert Shuttleworth2a4fc3e2021-04-21 07:10:09 -0400123 symlink_directory prebuilts/bazel
Lukacs T. Berkie3487c82022-05-02 10:13:19 +0200124 symlink_directory prebuilts/clang
Rupert Shuttleworth2a4fc3e2021-04-21 07:10:09 -0400125 symlink_directory prebuilts/jdk
Jingwen Chen91632252021-08-10 13:00:33 +0000126 symlink_directory external/bazel-skylib
Lukacs T. Berkie3487c82022-05-02 10:13:19 +0200127 symlink_directory external/bazelbuild-rules_android
Sasha Smundak8bea2672022-08-04 13:31:14 -0700128 symlink_directory external/bazelbuild-rules_license
Romain Jobredeaux0dfe8d32022-09-06 16:20:09 -0400129 symlink_directory external/bazelbuild-kotlin-rules
Rupert Shuttleworth2a4fc3e2021-04-21 07:10:09 -0400130
131 symlink_file WORKSPACE
Liz Kammer09f947d2021-05-12 14:51:49 -0400132 symlink_file BUILD
Rupert Shuttleworth2a4fc3e2021-04-21 07:10:09 -0400133}
134
Usta Shrestha2c9a5e32022-06-09 12:22:36 -0400135function run_bazel {
Jingwen Chend4b1dc82022-05-12 11:08:03 +0000136 # Remove the ninja_build output marker file to communicate to buildbot that this is not a regular Ninja build, and its
137 # output should not be parsed as such.
138 rm -rf out/ninja_build
139
Joe Onoratoba29f382022-10-24 06:38:11 -0700140 build/bazel/bin/bazel "$@"
Rupert Shuttleworth2a4fc3e2021-04-21 07:10:09 -0400141}
142
Usta Shrestha2c9a5e32022-06-09 12:22:36 -0400143function run_ninja {
Colin Cross34d60c92021-10-28 16:19:40 -0700144 build/soong/soong_ui.bash --make-mode --skip-config --soong-only --skip-soong-tests "$@"
Spandan Das05063612021-06-25 01:39:04 +0000145}
146
Usta Shrestha2c9a5e32022-06-09 12:22:36 -0400147info "Starting Soong integration test suite $(basename "$0")"
Lukacs T. Berki686965b2021-04-14 16:40:03 +0200148info "Mock top: $MOCK_TOP"
149
150
151export ALLOW_MISSING_DEPENDENCIES=true
Lukacs T. Berkie3487c82022-05-02 10:13:19 +0200152export ALLOW_BP_UNDER_SYMLINKS=true
Lukacs T. Berki686965b2021-04-14 16:40:03 +0200153warmup_mock_top
Usta Shrestha572ecec2022-12-08 01:29:21 -0500154
155function scan_and_run_tests {
156 # find all test_ functions
157 # NB "declare -F" output is sorted, hence test order is deterministic
158 readarray -t test_fns < <(declare -F | sed -n -e 's/^declare -f \(test_.*\)$/\1/p')
159 info "Found ${#test_fns[*]} tests"
160 if [[ ${#test_fns[*]} -eq 0 ]]; then
161 fail "No tests found"
162 fi
163 for f in ${test_fns[*]}; do
164 $f
165 done
Joe Onoratofa5fc262022-12-05 15:02:29 -0800166}