blob: bfcf42d869e35e5c53886086a67c7f1071ebc1d4 [file] [log] [blame]
Jingwen Chen26f0b212022-06-14 10:08:51 +00001#!/bin/bash
2
3# Copyright (C) 2022 The Android Open Source Project
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16
17set -euo pipefail
18
19# Soong/Bazel integration test for building unbundled apexes in the real source tree.
20#
21# These tests build artifacts from head and compares their contents.
22
23if [ ! -e "build/make/core/Makefile" ]; then
24 echo "$0 must be run from the top of the Android source tree."
25 exit 1
26fi
27
28############
29# Test Setup
30############
31
Wei Li94bf3152022-12-05 15:26:36 -080032OUTPUT_DIR="$(mktemp -d tmp.XXXXXX)"
Jingwen Chen26f0b212022-06-14 10:08:51 +000033SOONG_OUTPUT_DIR="$OUTPUT_DIR/soong"
34BAZEL_OUTPUT_DIR="$OUTPUT_DIR/bazel"
35
Wei Li94bf3152022-12-05 15:26:36 -080036export TARGET_PRODUCT="module_arm"
37[ "$#" -eq 1 ] && export TARGET_PRODUCT="$1"
38
Sam Delmericob6d1b032022-08-08 12:07:16 -040039function call_bazel() {
Joe Onoratoba29f382022-10-24 06:38:11 -070040 build/bazel/bin/bazel --output_base="$BAZEL_OUTPUT_DIR" $@
Sam Delmericob6d1b032022-08-08 12:07:16 -040041}
42
Jingwen Chen26f0b212022-06-14 10:08:51 +000043function cleanup {
44 # call bazel clean because some bazel outputs don't have w bits.
45 call_bazel clean
46 rm -rf "${OUTPUT_DIR}"
47}
48trap cleanup EXIT
49
50###########
51# Run Soong
52###########
53export UNBUNDLED_BUILD_SDKS_FROM_SOURCE=true # don't rely on prebuilts
54export TARGET_BUILD_APPS="com.android.adbd com.android.tzdata build.bazel.examples.apex.minimal"
55packages/modules/common/build/build_unbundled_mainline_module.sh \
Wei Li94bf3152022-12-05 15:26:36 -080056 --product "$TARGET_PRODUCT" \
Jingwen Chen26f0b212022-06-14 10:08:51 +000057 --dist_dir "$SOONG_OUTPUT_DIR"
58
59######################
60# Run bp2build / Bazel
61######################
62build/soong/soong_ui.bash --make-mode BP2BUILD_VERBOSE=1 --skip-soong-tests bp2build
63
Sam Delmerico73d6bcc2022-09-20 15:31:37 -040064BAZEL_OUT="$(call_bazel info --config=bp2build output_path)"
Jingwen Chen26f0b212022-06-14 10:08:51 +000065
Jingwen Chen60d88402022-09-07 11:03:33 +000066call_bazel build --config=bp2build --config=ci --config=android \
Jingwen Chen26f0b212022-06-14 10:08:51 +000067 //packages/modules/adb/apex:com.android.adbd \
68 //system/timezone/apex:com.android.tzdata \
69 //build/bazel/examples/apex/minimal:build.bazel.examples.apex.minimal.apex
70
71# Build debugfs separately, as it's not a dep of apexer, but needs to be an explicit arg.
Wei Li94bf3152022-12-05 15:26:36 -080072call_bazel build --config=bp2build --config=linux_x86_64 //external/e2fsprogs/debugfs //system/apex/tools:deapexer
Jingwen Chen26f0b212022-06-14 10:08:51 +000073DEBUGFS_PATH="$BAZEL_OUT/linux_x86_64-fastbuild/bin/external/e2fsprogs/debugfs/debugfs"
Wei Li94bf3152022-12-05 15:26:36 -080074DEAPEXER="$BAZEL_OUT/linux_x86_64-fastbuild/bin/system/apex/tools/deapexer --debugfs_path=$DEBUGFS_PATH"
Jingwen Chen26f0b212022-06-14 10:08:51 +000075
76#######
77# Tests
78#######
79
80function compare_deapexer_list() {
81 local APEX_DIR=$1; shift
82 local APEX=$1; shift
83
84 # Compare the outputs of `deapexer list`, which lists the contents of the apex filesystem image.
85 local SOONG_APEX="$SOONG_OUTPUT_DIR/$APEX"
Jingwen Chen60d88402022-09-07 11:03:33 +000086 local BAZEL_APEX="$BAZEL_OUT/android_target-fastbuild/bin/$APEX_DIR/$APEX"
Jingwen Chen26f0b212022-06-14 10:08:51 +000087
88 local SOONG_LIST="$OUTPUT_DIR/soong.list"
89 local BAZEL_LIST="$OUTPUT_DIR/bazel.list"
90
Wei Li94bf3152022-12-05 15:26:36 -080091 $DEAPEXER list "$SOONG_APEX" > "$SOONG_LIST"
92 $DEAPEXER list "$BAZEL_APEX" > "$BAZEL_LIST"
Jingwen Chen26f0b212022-06-14 10:08:51 +000093
94 if cmp -s "$SOONG_LIST" "$BAZEL_LIST"
95 then
96 echo "ok: $APEX"
97 else
98 echo "contents of $APEX are different between Soong and Bazel:"
99 echo
100 echo expected
101 echo
102 cat "$SOONG_LIST"
103 echo
104 echo got
105 echo
106 cat "$BAZEL_LIST"
107 exit 1
108 fi
109}
110
111compare_deapexer_list packages/modules/adb/apex com.android.adbd.apex
112compare_deapexer_list system/timezone/apex com.android.tzdata.apex
113compare_deapexer_list build/bazel/examples/apex/minimal build.bazel.examples.apex.minimal.apex