mirror of https://github.com/iSoron/uhabits.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
1.8 KiB
62 lines
1.8 KiB
#!/bin/bash
|
|
PACKAGE_NAME=org.isoron.uhabits
|
|
OUTPUT_DIR=app/build/outputs
|
|
LOG=${OUTPUT_DIR}/test.log
|
|
|
|
info() {
|
|
local COLOR='\033[1;32m'
|
|
local NC='\033[0m'
|
|
echo -e " $COLOR*$NC $1"
|
|
}
|
|
|
|
fail() {
|
|
cat $LOG
|
|
exit 1
|
|
}
|
|
|
|
info "Cleaning output directory..."
|
|
rm -rf ${OUTPUT_DIR}
|
|
mkdir -p ${OUTPUT_DIR}
|
|
|
|
info "Building project..."
|
|
./gradlew assembleDebug assembleAndroidTest >> $LOG 2>> $LOG || fail
|
|
|
|
info "Installing APK..."
|
|
adb install -r ${OUTPUT_DIR}/apk/app-debug.apk >> $LOG 2>> $LOG || fail
|
|
adb install -r ${OUTPUT_DIR}/apk/app-debug-androidTest-unaligned.apk \
|
|
>> $LOG 2>> $LOG || fail
|
|
|
|
info "Granting permissions..."
|
|
adb shell pm grant org.isoron.uhabits android.permission.SET_ANIMATION_SCALE \
|
|
>> $LOG 2>> $LOG || fail
|
|
|
|
info "Running tests..."
|
|
adb shell am instrument \
|
|
-e coverage true $* \
|
|
-w ${PACKAGE_NAME}.test/android.support.test.runner.AndroidJUnitRunner \
|
|
| tee ${OUTPUT_DIR}/runner.txt \
|
|
| tee -a $LOG
|
|
grep -q "FAILURES\!\!\!" ${OUTPUT_DIR}/runner.txt && failed=1
|
|
|
|
info "Fetching failed generated files..."
|
|
mkdir -p ${OUTPUT_DIR}/failed
|
|
adb pull /mnt/sdcard/test-screenshots/ ${OUTPUT_DIR}/failed >> $LOG 2>> $LOG
|
|
adb pull /sdcard/Android/data/${PACKAGE_NAME}/files/test-screenshots/ \
|
|
${OUTPUT_DIR}/failed >> $LOG 2>> $LOG
|
|
adb shell rm -r /sdcard/Android/data/${PACKAGE_NAME}/files/test-screenshots/ >> $LOG 2>> $LOG
|
|
|
|
info "Fetching logcat..."
|
|
adb logcat -d > ${OUTPUT_DIR}/logcat.txt
|
|
|
|
info "Building coverage report..."
|
|
mkdir -p ${OUTPUT_DIR}/code-coverage/connected/
|
|
adb pull /data/data/${PACKAGE_NAME}/files/coverage.ec \
|
|
${OUTPUT_DIR}/code-coverage/connected/ >> $LOG 2>> $LOG
|
|
./gradlew app:createDebugCoverageReport \
|
|
-x app:connectedDebugAndroidTest >> $LOG 2>> $LOG
|
|
|
|
info "Uninstalling test APK..."
|
|
adb uninstall ${PACKAGE_NAME}.test >> $LOG 2>> $LOG
|
|
|
|
exit $failed
|