mirror of
https://github.com/nextcloud/android.git
synced 2024-11-22 05:05:31 +03:00
a619cdbef8
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
57 lines
2.1 KiB
Bash
Executable file
57 lines
2.1 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
# SPDX-FileCopyrightText: 2020-2024 Nextcloud GmbH and Nextcloud contributors
|
|
# SPDX-FileCopyrightText: 2020 Tobias Kaminsky <tobias@kaminsky.me>
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
## $1 noCI/stable/master: wether to run deleteOldComments.sh or uploadReport.sh
|
|
## $2 true/false: record or verify screenshots
|
|
## $3 classMethod: piped from androidScreenshotTest
|
|
## $4 github event number
|
|
|
|
sed -i s'#<bool name="is_beta">false</bool>#<bool name="is_beta">true</bool>#'g app/src/main/res/values/setup.xml
|
|
|
|
if [[ $2 = "true" ]]; then
|
|
record="-Precord"
|
|
else
|
|
record=""
|
|
fi
|
|
|
|
classMethod=$3
|
|
|
|
resultCode=0
|
|
grep -v "#" scripts/screenshotCombinations | while read line
|
|
do
|
|
darkMode=$(echo "$line" | cut -d" " -f1)
|
|
color=$(echo "$line" | cut -d" " -f2)
|
|
|
|
echo -n "Run $color on $darkMode mode"
|
|
|
|
if [[ $1 = "noCI" ]]; then
|
|
./gradlew --console plain gplayDebugExecuteScreenshotTests \
|
|
$record \
|
|
-Pscreenshot=true \
|
|
-Pandroid.testInstrumentationRunnerArguments.annotation=com.owncloud.android.utils.ScreenshotTest \
|
|
-Pandroid.testInstrumentationRunnerArguments.COLOR="$color" \
|
|
-Pandroid.testInstrumentationRunnerArguments.DARKMODE="$darkMode" \
|
|
$classMethod </dev/null > /dev/null
|
|
if [[ $? -ne 0 ]]; then
|
|
echo " failed!"
|
|
else
|
|
echo
|
|
fi
|
|
else
|
|
./gradlew --console plain gplayDebugExecuteScreenshotTests \
|
|
$record \
|
|
-Pandroid.testInstrumentationRunnerArguments.annotation=com.owncloud.android.utils.ScreenshotTest \
|
|
-Pandroid.testInstrumentationRunnerArguments.COLOR="$color" \
|
|
-Pandroid.testInstrumentationRunnerArguments.DARKMODE="$darkMode" </dev/null > /dev/null \
|
|
&& scripts/deleteOldComments.sh "$1-$darkMode-$color" "Screenshot" "$4" \
|
|
|| resultCode=1 && scripts/uploadReport.sh "$LOG_USERNAME" "$LOG_PASSWORD" "$4" \
|
|
"$1-$darkMode-$color" "Screenshot" "$4"
|
|
fi
|
|
done
|
|
|
|
sed -i s'#<bool name="is_beta">true</bool>#<bool name="is_beta">false</bool>#'g app/src/main/res/values/setup.xml
|
|
|
|
exit $resultCode
|