summaryrefslogtreecommitdiff
path: root/platform/android/tests/docs/UI_TESTS.md
diff options
context:
space:
mode:
Diffstat (limited to 'platform/android/tests/docs/UI_TESTS.md')
-rw-r--r--platform/android/tests/docs/UI_TESTS.md89
1 files changed, 3 insertions, 86 deletions
diff --git a/platform/android/tests/docs/UI_TESTS.md b/platform/android/tests/docs/UI_TESTS.md
index 4d7addea0d..9341cf1e1e 100644
--- a/platform/android/tests/docs/UI_TESTS.md
+++ b/platform/android/tests/docs/UI_TESTS.md
@@ -59,92 +59,9 @@ You can generate JaCoCo reports from espresso tests by
- running the gradle task `createMockDebugCoverageReport` when executing tests.
## Running Espresso test automatically on AWS Device Farm
-To automatically execute Espresso tests as part of our CI build, we have created a Python script called [`devicefarm.py`](https://github.com/mapbox/mapbox-gl-native/blob/master/platform/android/tests/scripts/devicefarm.py).
-
-This script is responsible for:
- - uploading an APK + test APK
- - scheduling tests
- - exiting with a return code
- - 0 -> all tests have passed
- - 1 otherwise
-
-### Requirements
-
- * [Boto 3](http://boto3.readthedocs.org)
- * [Requests](http://www.python-requests.org)
-
-### Running the script
-
- A sample run would be as follows:
-
- ```
- $ python devicefarm.py \
- --project-arn "arn:aws:devicefarm:us-west-2:XXXXX" \
- --device-pool-arn "arn:aws:devicefarm:us-west-2::devicepool:YYYYY" \
- --app-apk-path app/build/outputs/apk/app-debug-unaligned.apk \
- --test-apk-path app/build/outputs/apk/app-debug-androidTest-unaligned.apk
- ```
-
- Where you need to insert your actual project and device ARNs. We follow Boto 3
- conventions to to [set up the AWS credentials](https://github.com/boto/boto3#quick-start).
-
- You can build the `app-debug-androidTest-unaligned.apk` package with Gradle:
-
- ```
- ./gradlew assembleAndroidTest
- ```
-
- To run tests locally, you can use `./gradlew assemble` to build the app APK, and
- `./gradlew test --continue` to run unit tests. Finally, `./gradlew connectedAndroidTest`
- will run the Espresso tests in a local device.
-
- A sample output would be as follows:
-
- ```
- Starting upload: ANDROID_APP
- Uploading: ../app/build/outputs/apk/app-debug-unaligned.apk
- Checking if the upload succeeded.
- Upload not ready (status is INITIALIZED), waiting for 5 seconds.
- Starting upload: INSTRUMENTATION_TEST_PACKAGE
- Uploading: ../app/build/outputs/apk/app-debug-androidTest-unaligned.apk
- Checking if the upload succeeded.
- Upload not ready (status is INITIALIZED), waiting for 5 seconds.
- Scheduling a run.
- Checking if the run succeeded.
- Run not completed (status is SCHEDULING), waiting for 60 seconds.
- Run not completed (status is RUNNING), waiting for 60 seconds.
- Run not completed (status is RUNNING), waiting for 60 seconds.
- Run not completed (status is RUNNING), waiting for 60 seconds.
- Run not completed (status is RUNNING), waiting for 60 seconds.
- Run not completed (status is RUNNING), waiting for 60 seconds.
- Run completed: PASSED
- ```
-
-### Available commands
-
- You can use the `--help` command to get a list of all available options:
-
- ```
- $ python devicefarm.py --help
- usage: Device Farm Runner [-h] [--project-arn PROJECT_ARN]
- [--device-pool-arn DEVICE_POOL_ARN]
- [--app-apk-path APP_APK_PATH]
- [--test-apk-path TEST_APK_PATH]
-
- Runs the Espresso tests on AWS Device Farm.
-
- optional arguments:
- -h, --help show this help message and exit
- --project-arn PROJECT_ARN
- The project ARN (Amazon Resource Name) (default: None)
- --device-pool-arn DEVICE_POOL_ARN
- The device pool ARN (Amazon Resource Name) (default:
- None)
- --app-apk-path APP_APK_PATH
- Path to the app APK (default: None)
- --test-apk-path TEST_APK_PATH
- Path to the tests APK (default: None)
- ```
+To run tests on AWS device farm you need to execute `./gradlew devicefarmUpload`.
+You can configure the different steps in the testapp `build.gradle`.
+AWS credentials are found in bitrise.