Android-Tutorial-Test-ShowCase/gradlescripts/pull-screenshots.gradle

71 lines
No EOL
2.7 KiB
Groovy

// Variables:
// ext.screenshotsPackageName => the package name to pull from
// ext.screenshotsDirectory => the directory on the device to pull from inside the Pictures folder
// ext.screenshotsSavePath => where to pull the images
// ext.adbPath => Give adb path, if the script cant find it by itself from localProperties
def propertyOrNull = { key ->
if (extensions.extraProperties.has(key)) {
return extensions.extraProperties.get(key)
} else {
return null
}
}
def findAdbFromLocal = {
def localProperties = new File(rootDir, "local.properties")
if (localProperties.exists()) {
Properties properties = new Properties()
localProperties.withInputStream { instr -> properties.load(instr) }
def sdkDir = properties.getProperty('sdk.dir')
return "$sdkDir/platform-tools/adb"
} else {
System.err.println("WARNING: SDK dir not found by local properties, returning static: $System.env.HOME/Library/Android/sdk/platform-tools/adb")
return "$System.env.HOME/Library/Android/sdk/platform-tools/adb"
}
}
task pullScreenshots(type: Exec) {
group = 'Test'
description = 'Pull screenshots'
def packageName = propertyOrNull("screenshotsPackageName") ?: "$android.defaultConfig.applicationId"
def screenshotDirectory = propertyOrNull("screenshotsDirectory") ?: "test-screenshots"
def fullPath = "/sdcard/Android/data/$packageName/files/Pictures/$screenshotDirectory/"
def savePath = propertyOrNull("screenshotsSavePath") ?: "build/testscreenshots/"
def adb = propertyOrNull("adbPath") ?: findAdbFromLocal()
try {
commandLine "$adb", 'pull', "$fullPath", "$savePath/"
} catch (Throwable throwable) {
throwable.printStackTrace()
}
}
task removeScreenshotsFromDevice(type: Exec) {
group = 'Test'
description = 'Delete screenshots From Device'
def packageName = propertyOrNull("screenshotsPackageName") ?: "$android.defaultConfig.applicationId"
def screenshotDirectory = propertyOrNull("screenshotsDirectory") ?: "test-screenshots"
def fullPath = "/sdcard/Android/data/$packageName/files/Pictures/$screenshotDirectory/"
def adb = propertyOrNull("adbPath") ?: findAdbFromLocal()
try {
commandLine "$adb", 'shell', 'rm', '-r', "$fullPath"
} catch (Throwable throwable) {
throwable.printStackTrace()
}
}
task removeLocalScreenshots(type: Delete) {
def savePath = propertyOrNull("screenshotsSavePath") ?: "build/testscreenshots/"
delete files("$savePath")
}
afterEvaluate {
connectedDebugAndroidTest.finalizedBy pullScreenshots
pullScreenshots.finalizedBy removeScreenshotsFromDevice
clean.dependsOn(removeLocalScreenshots)
}