blob: 7f3970eb7e4244d67d8b70c690768c6318670944 [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
Trevor Radcliffe391a25d2023-03-22 20:22:27 +000094 symlink_directory external/compiler-rt
Dan Willemsen4591b642021-05-24 14:24:12 -070095 symlink_directory external/go-cmp
Lukacs T. Berki3b730c42021-04-08 13:21:13 +020096 symlink_directory external/golang-protobuf
Ibrahim Kanouche7c1de512023-03-31 16:31:34 +000097 symlink_directory external/licenseclassifier
Cole Faustd9932ad2022-03-24 17:27:41 -070098 symlink_directory external/starlark-go
Cole Faust5c503d12023-01-24 11:48:08 -080099 symlink_directory external/python
100 symlink_directory external/sqlite
Ibrahim Kanouche7c1de512023-03-31 16:31:34 +0000101 symlink_directory external/spdx-tools
Jihoon Kangf5306962023-05-23 06:57:38 +0000102 symlink_directory libcore
Lukacs T. Berki3b730c42021-04-08 13:21:13 +0200103
104 touch "$MOCK_TOP/Android.bp"
Lukacs T. Berki686965b2021-04-14 16:40:03 +0200105}
Lukacs T. Berki3b730c42021-04-08 13:21:13 +0200106
Usta Shrestha2c9a5e32022-06-09 12:22:36 -0400107function setup {
Lukacs T. Berki686965b2021-04-14 16:40:03 +0200108 cleanup_mock_top
109 mkdir -p "$MOCK_TOP"
Lukacs T. Berki3b730c42021-04-08 13:21:13 +0200110
Lukacs T. Berki686965b2021-04-14 16:40:03 +0200111 echo
112 echo ----------------------------------------------------------------------------
Lukacs T. Berki7a519072021-04-15 18:18:45 +0200113 info "Running test case \e[96;1m${FUNCNAME[1]}\e[0m"
Lukacs T. Berki686965b2021-04-14 16:40:03 +0200114 cd "$MOCK_TOP"
115
Cole Faustb85d1a12022-11-08 18:14:01 -0800116 tar xzf "$WARMED_UP_MOCK_TOP" --warning=no-timestamp
Lukacs T. Berki3b730c42021-04-08 13:21:13 +0200117}
118
Usta Shrestha2c9a5e32022-06-09 12:22:36 -0400119# shellcheck disable=SC2120
120function run_soong {
Sam Delmerico970b96d2022-08-04 14:00:08 -0400121 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 -0400122}
123
Usta Shrestha2c9a5e32022-06-09 12:22:36 -0400124function create_mock_bazel {
Rupert Shuttleworth2a4fc3e2021-04-21 07:10:09 -0400125 copy_directory build/bazel
Yifan Hong82799f22022-06-28 16:25:56 -0700126 copy_directory build/bazel_common_rules
Rupert Shuttleworth2a4fc3e2021-04-21 07:10:09 -0400127
Sam Delmericoeddd3c02022-12-02 17:31:58 -0500128 symlink_directory packages/modules/common/build
Rupert Shuttleworth2a4fc3e2021-04-21 07:10:09 -0400129 symlink_directory prebuilts/bazel
Lukacs T. Berkie3487c82022-05-02 10:13:19 +0200130 symlink_directory prebuilts/clang
Rupert Shuttleworth2a4fc3e2021-04-21 07:10:09 -0400131 symlink_directory prebuilts/jdk
Jingwen Chen91632252021-08-10 13:00:33 +0000132 symlink_directory external/bazel-skylib
Lukacs T. Berkie3487c82022-05-02 10:13:19 +0200133 symlink_directory external/bazelbuild-rules_android
Sasha Smundak8bea2672022-08-04 13:31:14 -0700134 symlink_directory external/bazelbuild-rules_license
Romain Jobredeaux0dfe8d32022-09-06 16:20:09 -0400135 symlink_directory external/bazelbuild-kotlin-rules
Rupert Shuttleworth2a4fc3e2021-04-21 07:10:09 -0400136
137 symlink_file WORKSPACE
Liz Kammer09f947d2021-05-12 14:51:49 -0400138 symlink_file BUILD
Rupert Shuttleworth2a4fc3e2021-04-21 07:10:09 -0400139}
140
Usta Shrestha2c9a5e32022-06-09 12:22:36 -0400141function run_bazel {
Jingwen Chend4b1dc82022-05-12 11:08:03 +0000142 # Remove the ninja_build output marker file to communicate to buildbot that this is not a regular Ninja build, and its
143 # output should not be parsed as such.
144 rm -rf out/ninja_build
145
Joe Onoratoba29f382022-10-24 06:38:11 -0700146 build/bazel/bin/bazel "$@"
Rupert Shuttleworth2a4fc3e2021-04-21 07:10:09 -0400147}
148
Usta Shrestha2c9a5e32022-06-09 12:22:36 -0400149function run_ninja {
Colin Cross34d60c92021-10-28 16:19:40 -0700150 build/soong/soong_ui.bash --make-mode --skip-config --soong-only --skip-soong-tests "$@"
Spandan Das05063612021-06-25 01:39:04 +0000151}
152
Usta Shrestha2c9a5e32022-06-09 12:22:36 -0400153info "Starting Soong integration test suite $(basename "$0")"
Lukacs T. Berki686965b2021-04-14 16:40:03 +0200154info "Mock top: $MOCK_TOP"
155
156
157export ALLOW_MISSING_DEPENDENCIES=true
Lukacs T. Berkie3487c82022-05-02 10:13:19 +0200158export ALLOW_BP_UNDER_SYMLINKS=true
Lukacs T. Berki686965b2021-04-14 16:40:03 +0200159warmup_mock_top
Usta Shrestha572ecec2022-12-08 01:29:21 -0500160
161function scan_and_run_tests {
162 # find all test_ functions
163 # NB "declare -F" output is sorted, hence test order is deterministic
164 readarray -t test_fns < <(declare -F | sed -n -e 's/^declare -f \(test_.*\)$/\1/p')
165 info "Found ${#test_fns[*]} tests"
166 if [[ ${#test_fns[*]} -eq 0 ]]; then
167 fail "No tests found"
168 fi
169 for f in ${test_fns[*]}; do
170 $f
usta94e89a42023-03-14 19:56:12 -0400171 info "Completed test case \e[96;1m$f\e[0m"
Usta Shrestha572ecec2022-12-08 01:29:21 -0500172 done
Joe Onoratofa5fc262022-12-05 15:02:29 -0800173}