commit | 23cff8ec536cad6ee60e68d4cbfa338c20571294 | [log] [tgz] |
---|---|---|
author | Ziwei Zhang <[email protected]> | Tue Apr 09 12:49:28 2024 +0800 |
committer | Ziwei Zhang <[email protected]> | Tue Apr 09 05:01:40 2024 +0000 |
tree | 38533c9648bef596a95c5fa85774a4946e992625 | |
parent | a3af46165c6d4168bb33d6e97b9959eba531b5bd [diff] | |
parent | 3c705915cad43acd88a8815b3f3e3cf9455a60a4 [diff] |
Upgrade mobly-snippet-lib to 3c705915cad43acd88a8815b3f3e3cf9455a60a4 This project was upgraded with external_updater. Usage: tools/external_updater/updater.sh update external/mobly-snippet-lib For more info, check https://cs.android.com/android/platform/superproject/+/main:tools/external_updater/README.md Test: TreeHugger Bug: 331669033 Change-Id: I9c9338bbc1bbadf87f96381a366ba1f977965572
Mobly Snippet Lib is a library for triggering device-side code from host-side Mobly tests. This tutorial teaches you how to use the snippet lib to trigger custom device-side actions.
Note: Mobly and the snippet lib are not official Google products.
The Mobly Snippet Lib allows you to write Java methods that run on Android devices, and trigger the methods from inside a Mobly test case. The Java methods invoked this way are called snippets
.
The snippet
code can either be written in its own standalone apk, or as a product flavor of an existing apk. This allows you to write snippets that instrument or automate another app.
A snippet is launched by an am instrument
call. Snippets use a custom InstrumentationTestRunner
derived from AndroidJUnitRunner
. This allows for snippets that interact with a main app‘s classes, such as Espresso snippets, and allows you to get either the test app’s or the main app's context from InstrumentationRegistry
.
Once started, the special runner starts a web server which listens for requests to trigger snippets. The server's handler locates the corresponding methods by reflection, runs them, and returns results over the TCP socket. All common built-in variable types are supported as arguments.
The examples/ folder contains examples of how to use the mobly snippet lib along with detailed tutorials.