blob: 0973beb7f1e8be360e13ebec5b1ffdf6d7208c89 [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
Cole Faust5c503d12023-01-24 11:48:08 -080097 symlink_directory external/python
98 symlink_directory external/sqlite
Lukacs T. Berki3b730c42021-04-08 13:21:13 +020099
100 touch "$MOCK_TOP/Android.bp"
Lukacs T. Berki686965b2021-04-14 16:40:03 +0200101}
Lukacs T. Berki3b730c42021-04-08 13:21:13 +0200102
Usta Shrestha2c9a5e32022-06-09 12:22:36 -0400103function setup {
Lukacs T. Berki686965b2021-04-14 16:40:03 +0200104 cleanup_mock_top
105 mkdir -p "$MOCK_TOP"
Lukacs T. Berki3b730c42021-04-08 13:21:13 +0200106
Lukacs T. Berki686965b2021-04-14 16:40:03 +0200107 echo
108 echo ----------------------------------------------------------------------------
Lukacs T. Berki7a519072021-04-15 18:18:45 +0200109 info "Running test case \e[96;1m${FUNCNAME[1]}\e[0m"
Lukacs T. Berki686965b2021-04-14 16:40:03 +0200110 cd "$MOCK_TOP"
111
Cole Faustb85d1a12022-11-08 18:14:01 -0800112 tar xzf "$WARMED_UP_MOCK_TOP" --warning=no-timestamp
Lukacs T. Berki3b730c42021-04-08 13:21:13 +0200113}
114
Usta Shrestha2c9a5e32022-06-09 12:22:36 -0400115# shellcheck disable=SC2120
116function run_soong {
Sam Delmerico970b96d2022-08-04 14:00:08 -0400117 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 -0400118}
119
Usta Shrestha2c9a5e32022-06-09 12:22:36 -0400120function create_mock_bazel {
Rupert Shuttleworth2a4fc3e2021-04-21 07:10:09 -0400121 copy_directory build/bazel
Yifan Hong82799f22022-06-28 16:25:56 -0700122 copy_directory build/bazel_common_rules
Rupert Shuttleworth2a4fc3e2021-04-21 07:10:09 -0400123
Sam Delmericoeddd3c02022-12-02 17:31:58 -0500124 symlink_directory packages/modules/common/build
Rupert Shuttleworth2a4fc3e2021-04-21 07:10:09 -0400125 symlink_directory prebuilts/bazel
Lukacs T. Berkie3487c82022-05-02 10:13:19 +0200126 symlink_directory prebuilts/clang
Rupert Shuttleworth2a4fc3e2021-04-21 07:10:09 -0400127 symlink_directory prebuilts/jdk
Jingwen Chen91632252021-08-10 13:00:33 +0000128 symlink_directory external/bazel-skylib
Lukacs T. Berkie3487c82022-05-02 10:13:19 +0200129 symlink_directory external/bazelbuild-rules_android
Sasha Smundak8bea2672022-08-04 13:31:14 -0700130 symlink_directory external/bazelbuild-rules_license
Romain Jobredeaux0dfe8d32022-09-06 16:20:09 -0400131 symlink_directory external/bazelbuild-kotlin-rules
Rupert Shuttleworth2a4fc3e2021-04-21 07:10:09 -0400132
133 symlink_file WORKSPACE
Liz Kammer09f947d2021-05-12 14:51:49 -0400134 symlink_file BUILD
Rupert Shuttleworth2a4fc3e2021-04-21 07:10:09 -0400135}
136
Usta Shrestha2c9a5e32022-06-09 12:22:36 -0400137function run_bazel {
Jingwen Chend4b1dc82022-05-12 11:08:03 +0000138 # Remove the ninja_build output marker file to communicate to buildbot that this is not a regular Ninja build, and its
139 # output should not be parsed as such.
140 rm -rf out/ninja_build
141
Joe Onoratoba29f382022-10-24 06:38:11 -0700142 build/bazel/bin/bazel "$@"
Rupert Shuttleworth2a4fc3e2021-04-21 07:10:09 -0400143}
144
Usta Shrestha2c9a5e32022-06-09 12:22:36 -0400145function run_ninja {
Colin Cross34d60c92021-10-28 16:19:40 -0700146 build/soong/soong_ui.bash --make-mode --skip-config --soong-only --skip-soong-tests "$@"
Spandan Das05063612021-06-25 01:39:04 +0000147}
148
Usta Shrestha2c9a5e32022-06-09 12:22:36 -0400149info "Starting Soong integration test suite $(basename "$0")"
Lukacs T. Berki686965b2021-04-14 16:40:03 +0200150info "Mock top: $MOCK_TOP"
151
152
153export ALLOW_MISSING_DEPENDENCIES=true
Lukacs T. Berkie3487c82022-05-02 10:13:19 +0200154export ALLOW_BP_UNDER_SYMLINKS=true
Lukacs T. Berki686965b2021-04-14 16:40:03 +0200155warmup_mock_top
Usta Shrestha572ecec2022-12-08 01:29:21 -0500156
157function scan_and_run_tests {
158 # find all test_ functions
159 # NB "declare -F" output is sorted, hence test order is deterministic
160 readarray -t test_fns < <(declare -F | sed -n -e 's/^declare -f \(test_.*\)$/\1/p')
161 info "Found ${#test_fns[*]} tests"
162 if [[ ${#test_fns[*]} -eq 0 ]]; then
163 fail "No tests found"
164 fi
165 for f in ${test_fns[*]}; do
166 $f
167 done
Joe Onoratofa5fc262022-12-05 15:02:29 -0800168}