mirror of
https://github.com/nextcloud/android.git
synced 2024-11-28 18:28:59 +03:00
update ScreenshotIT
add helper script Signed-off-by: tobiasKaminsky <tobias@kaminsky.me>
This commit is contained in:
parent
f7e08a724b
commit
be977dda31
2 changed files with 35 additions and 0 deletions
Binary file not shown.
Before Width: | Height: | Size: 33 KiB After Width: | Height: | Size: 32 KiB |
35
scripts/androidScreenshotTest
Executable file
35
scripts/androidScreenshotTest
Executable file
|
@ -0,0 +1,35 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
if [ $# -lt 2 ]; then
|
||||||
|
echo "1: record: true/false
|
||||||
|
2: class name
|
||||||
|
3: method name"
|
||||||
|
|
||||||
|
exit
|
||||||
|
fi
|
||||||
|
|
||||||
|
sed -i s'#<bool name="is_beta">false</bool>#<bool name="is_beta">true</bool>#'g src/main/res/values/setup.xml
|
||||||
|
|
||||||
|
emulator -writable-system -avd uiComparison -no-snapshot -gpu swiftshader_indirect -no-audio -skin 500x833 &
|
||||||
|
|
||||||
|
cd src/androidTest/java
|
||||||
|
|
||||||
|
class=$(find | grep $2 | grep java | head -n1|sed s'/\//\./'g | sed s'#^\.\.##' | sed s'#\.java##')
|
||||||
|
|
||||||
|
cd ../../../
|
||||||
|
|
||||||
|
if [ $1 == "true" ] ; then
|
||||||
|
record="-Precord"
|
||||||
|
else
|
||||||
|
record=""
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -e $3 ] ; then
|
||||||
|
method=""
|
||||||
|
else
|
||||||
|
method="#$3"
|
||||||
|
fi
|
||||||
|
|
||||||
|
./gradlew gplayDebugExecuteScreenshotTests $record -Pandroid.testInstrumentationRunnerArguments.class=$class$method
|
||||||
|
|
||||||
|
sed -i s'#<bool name="is_beta">true</bool>#<bool name="is_beta">false</bool>#'g src/main/res/values/setup.xml
|
Loading…
Reference in a new issue