Magisk/scripts/avd.sh
2025-05-15 02:56:36 -07:00

238 lines
4.5 KiB
Bash
Executable File

#!/usr/bin/env bash
set -e
. scripts/test_common.sh
emu_port=5682
export ANDROID_SERIAL="emulator-$emu_port"
emu_args_base="-no-window -no-audio -no-boot-anim -gpu swiftshader_indirect -read-only -no-snapshot -port $emu_port -cores $core_count"
log_args="-show-kernel -logcat '' -logcat-output logcat.log"
emu_args=
emu_pid=
atd_min_api=30
atd_max_api=35
huge_ram_min_api=26
case $(uname -m) in
'arm64'|'aarch64')
if [ -n "$FORCE_32_BIT" ]; then
echo "! ARM32 is not supported"
exit 1
fi
arch=arm64-v8a
;;
*)
if [ -n "$FORCE_32_BIT" ]; then
arch=x86
else
arch=x86_64
fi
;;
esac
cleanup() {
pkill -INT -P $$
wait
trap - EXIT
rm -f magisk_*.img
"$avd" delete avd -n test
exit 1
}
test_error() {
print_error "! An error occurred"
cleanup
}
wait_for_boot() {
set -e
adb wait-for-device
while true; do
local result="$(adb exec-out getprop sys.boot_completed)"
if [ $? -ne 0 ]; then
exit 1
elif [ "$result" = "1" ]; then
break
fi
sleep 2
done
}
wait_emu() {
local which_pid
timeout $boot_timeout bash -c wait_for_boot &
local wait_pid=$!
# Handle the case when emulator dies earlier than timeout
wait -p which_pid -n $emu_pid $wait_pid
[ $which_pid -eq $wait_pid ]
}
dump_vars() {
local val
for name in $@; do
eval val=\$$name
echo $name=\"$val\"\;
done
}
resolve_vars() {
local arg_list="$1"
local ver=$2
local type=$3
# Determine API level
local api
case $ver in
[0-9]*) api=$ver ;;
TiramisuPrivacySandbox) api=33 ;;
UpsideDownCakePrivacySandbox) api=34 ;;
VanillaIceCream) api=35 ;;
Baklava) api=36 ;;
*)
print_error "! Unknown system image version '$ver'"
exit 1
;;
esac
# Determine default image type
if [ -z $type ]; then
if [ $api -ge $atd_min_api -a $api -le $atd_max_api ]; then
# Use the lightweight ATD images if possible
type='aosp_atd'
elif [ $api -gt $atd_max_api ]; then
# Preview/beta release, no AOSP version available
type='google_apis'
else
type='default'
fi
fi
# Old Linux kernels will not boot with memory larger than 3GB
local memory
if [ $api -lt $huge_ram_min_api ]; then
memory=3072
else
memory=8192
fi
emu_args="$emu_args_base -memory $memory"
# System image variable and paths
local avd_pkg="system-images;android-$ver;$type;$arch"
local sys_img_dir="$ANDROID_HOME/system-images/android-$ver/$type/$arch"
local ramdisk="$sys_img_dir/ramdisk.img"
# Dump variables to output
dump_vars $arg_list
}
setup_emu() {
local avd_pkg=$1
yes | "$sdk" --licenses > /dev/null 2>&1
"$sdk" --channel=3 platform-tools emulator $avd_pkg
echo no | "$avd" create avd -f -n test -k $avd_pkg
}
test_emu() {
local variant=$1
local magisk_args="-ramdisk magisk_${variant}.img -feature -SystemAsRoot"
if [ -n "$AVD_TEST_LOG" ]; then
rm -f logcat.log
"$emu" @test $emu_args $log_args $magisk_args > kernel.log 2>&1 &
else
"$emu" @test $emu_args $magisk_args > /dev/null 2>&1 &
fi
emu_pid=$!
wait_emu
run_setup $variant
adb reboot
wait_emu
run_tests
kill -INT $emu_pid
wait $emu_pid
}
test_main() {
local avd_pkg ramdisk
eval $(resolve_vars "emu_args avd_pkg ramdisk" $1 $2)
setup_emu "$avd_pkg"
# Restart ADB daemon just in case
adb kill-server
adb start-server
# Launch stock emulator
print_title "* Launching $avd_pkg"
"$emu" @test $emu_args >/dev/null 2>&1 &
emu_pid=$!
wait_emu
# Patch images
if [ -z "$AVD_TEST_SKIP_DEBUG" ]; then
./build.py -v avd_patch "$ramdisk" magisk_debug.img
fi
if [ -z "$AVD_TEST_SKIP_RELEASE" ]; then
./build.py -vr avd_patch "$ramdisk" magisk_release.img
fi
kill -INT $emu_pid
wait $emu_pid
if [ -z "$AVD_TEST_SKIP_DEBUG" ]; then
print_title "* Testing $avd_pkg (debug)"
test_emu debug
fi
if [ -z "$AVD_TEST_SKIP_RELEASE" ]; then
print_title "* Testing $avd_pkg (release)"
test_emu release
fi
# Cleanup
rm -f magisk_*.img
"$avd" delete avd -n test
}
run_main() {
local avd_pkg
eval $(resolve_vars "emu_args avd_pkg" $1 $2)
setup_emu "$avd_pkg"
"$emu" @test $emu_args 2>/dev/null
}
case "$1" in
test )
shift
trap test_error EXIT
export -f wait_for_boot
set -x
test_main "$@"
;;
run )
shift
trap cleanup EXIT
run_main "$@"
;;
* )
print_error "Unknown argument '$1'"
exit 1
;;
esac
# Exit normally, don't run through cleanup again
trap - EXIT