blob: dd7fb6afa96286a04b22dcd30d62b2f600dcdd9f [file] [log] [blame]
#!/usr/bin/env bash
# Copyright 2014 The Flutter Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
# Store the time to prevent capturing logs from previous runs.
script_start_time=$(adb shell 'date +"%m-%d %H:%M:%S.0"')
adb uninstall "io.flutter.integration.deferred_components_test"
rm -f build/app/outputs/bundle/release/app-release.apks
rm -f build/app/outputs/bundle/release/run_logcat.log
flutter build appbundle
java -jar $1 build-apks --bundle=build/app/outputs/bundle/release/app-release.aab --output=build/app/outputs/bundle/release/app-release.apks --local-testing
java -jar $1 install-apks --apks=build/app/outputs/bundle/release/app-release.apks
adb shell "
am start -n io.flutter.integration.deferred_components_test/.MainActivity
sleep 12
exit
"
adb logcat -d -t "$script_start_time" -s "flutter" > build/app/outputs/bundle/release/run_logcat.log
echo ""
if cat build/app/outputs/bundle/release/run_logcat.log | grep -q "Running deferred code"; then
echo "All tests passed."
exit 0
fi
echo "Failure: Deferred component did not load."
exit 1