appium-uiautomator2-driver 6.6.2 → 6.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -0
- package/README.md +18 -12
- package/build/lib/constraints.d.ts +3 -0
- package/build/lib/constraints.d.ts.map +1 -1
- package/build/test/unit/uiautomator2-specs.js +50 -55
- package/build/test/unit/uiautomator2-specs.js.map +1 -1
- package/build/tsconfig.tsbuildinfo +1 -1
- package/npm-shrinkwrap.json +247 -382
- package/package.json +2 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## [6.7.0](https://github.com/appium/appium-uiautomator2-driver/compare/v6.6.3...v6.7.0) (2025-12-09)
|
|
2
|
+
|
|
3
|
+
### Features
|
|
4
|
+
|
|
5
|
+
* add appium:adbListenAllNetwork with uiautomator2:adb_listen_all_network flag to add -a option for adb ([#955](https://github.com/appium/appium-uiautomator2-driver/issues/955)) ([5b0fa8b](https://github.com/appium/appium-uiautomator2-driver/commit/5b0fa8b61b41b9273f272c9a426b048463b51ddc))
|
|
6
|
+
|
|
7
|
+
## [6.6.3](https://github.com/appium/appium-uiautomator2-driver/compare/v6.6.2...v6.6.3) (2025-12-08)
|
|
8
|
+
|
|
9
|
+
### Miscellaneous Chores
|
|
10
|
+
|
|
11
|
+
* Ditch usage of @appium/test-support ([#954](https://github.com/appium/appium-uiautomator2-driver/issues/954)) ([9351cfc](https://github.com/appium/appium-uiautomator2-driver/commit/9351cfc9ef911155634abc06d28b497e182657c2))
|
|
12
|
+
|
|
1
13
|
## [6.6.2](https://github.com/appium/appium-uiautomator2-driver/compare/v6.6.1...v6.6.2) (2025-12-03)
|
|
2
14
|
|
|
3
15
|
### Bug Fixes
|
package/README.md
CHANGED
|
@@ -88,7 +88,7 @@ appium:otherApps | Allows to set one or more comma-separated paths to Android pa
|
|
|
88
88
|
appium:uninstallOtherPackages | Allows to set one or more comma-separated package identifiers to be uninstalled from the device before a test starts
|
|
89
89
|
appium:allowTestPackages | If set to `true` then it would be possible to use packages built with the test flag for the automated testing (literally adds `-t` flag to the `adb install` command). `false` by default
|
|
90
90
|
appium:remoteAppsCacheLimit | Sets the maximum amount of application packages to be cached on the device under test. This is needed for devices that don't support streamed installs (Android 7 and below), because ADB must push app packages to the device first in order to install them, which takes some time. Setting this capability to zero disables apps caching. `10` by default.
|
|
91
|
-
appium:enforceAppInstall | If set to `true` then the application under test is always reinstalled even if a newer version of it already exists on the device under test. This capability has no effect if `appium:noReset` is set to `true`. `false` by default
|
|
91
|
+
appium:enforceAppInstall | If set to `true` then the application under test is always reinstalled even if a newer version of it already exists on the device under test. This capability has no effect if `appium:noReset` is set to `true`. `false` by default. Since driver version 6.7.0.
|
|
92
92
|
|
|
93
93
|
### App Localization
|
|
94
94
|
|
|
@@ -115,6 +115,7 @@ appium:mockLocationApp | Sets the package identifier of the app, which is used a
|
|
|
115
115
|
appium:logcatFormat | The log print format, where `format` is one of: `brief` `process` `tag` `thread` `raw` `time` `threadtime` `long`. `threadtime` is the default value.
|
|
116
116
|
appium:logcatFilterSpecs | Series of `tag[:priority]` where `tag` is a log component tag (or * for all) and priority is: `V Verbose`, `D Debug`, `I Info`, `W Warn`, `E Error`, `F Fatal`, `S Silent (supress all output)`. '*' means '*:d' and `tag` by itself means `tag:v`. If not specified on the commandline, filterspec is set from ANDROID_LOG_TAGS. If no filterspec is found, filter defaults to '*:I'.
|
|
117
117
|
appium:allowDelayAdb | Being set to `false` prevents emulator to use `-delay-adb` feature to detect its startup. See https://github.com/appium/appium/issues/14773 for more details.
|
|
118
|
+
appium:adbListenAllNetwork | Being set to `true` adds `-a` ADB command line global option. Requires `uiautomator2:adb_listen_all_network` [security feature](https://github.com/appium/appium/blob/master/packages/appium/docs/en/guides/security.md) to be enabled. Unset by default
|
|
118
119
|
|
|
119
120
|
### Emulator (Android Virtual Device)
|
|
120
121
|
|
|
@@ -258,6 +259,8 @@ className | This strategy is mapped to the native UiAutomator's `By.clazz` [loca
|
|
|
258
259
|
-android uiautomator | This strategy is mapped to the native UiAutomator's `UiSelector` [locator](https://developer.android.com/reference/androidx/test/uiautomator/UiSelector)). It is even possible to perform some advanced operations, like scrolling, with this locator type. Check [Guide on UiAutomator Locator Types](docs/uiautomator-uiselector.md) | `⭐⭐⭐⭐` | new UiScrollable(new UiSelector().resourceId(\"android:id/list\")).scrollIntoView(new UiSelector().text(\"Radio Group\"))
|
|
259
260
|
xpath | For elements lookup Xpath strategy the driver uses the same XML tree that is generated by page source API. Only Xpath 1.0 is supported for appium-uiatomator2-server versions below 4.25.0. All server versions starting from 4.25.0 support both Xpath 1.0 and 2.0 | `⭐⭐⭐` | By.xpath("//android.view.View[@text=\"Regular\" and @checkable=\"true\"]")
|
|
260
261
|
|
|
262
|
+
> [!NOTE] For testing multi-window applications, see the [Multi-Window Testing Guide](docs/android-multiwindow.md).
|
|
263
|
+
|
|
261
264
|
> [!WARNING]
|
|
262
265
|
> Google is going to [deprecate](https://developer.android.com/training/testing/other-components/ui-automator#ui-automator)
|
|
263
266
|
> and remove `UiCollection`, `UiObject`, `UiScrollable`, and `UiSelector` support from the UiAutomator framework.
|
|
@@ -306,8 +309,8 @@ actionAcknowledgmentTimeout | long | Maximum number of milliseconds to wait for
|
|
|
306
309
|
allowInvisibleElements | boolean | Whether to include elements that are not visible to the user (e. g. whose `displayed` attribute is `false`) to the XML source tree. `false` by default
|
|
307
310
|
ignoreUnimportantViews | boolean | Enables or disables layout hierarchy compression. If compression is enabled, the layout hierarchy derived from the Acessibility framework will only contain nodes that are important for uiautomator testing. Any unnecessary surrounding layout nodes that make viewing and searching the hierarchy inefficient are removed. `false` by default
|
|
308
311
|
elementResponseAttributes | string | Comma-separated list of element attribute names to be included into findElement response. By default only element UUID is present there, but it is also possible to add the following items: `name`, `text`, `rect`, `enabled`, `displayed`, `selected`, `attribute/<element_attribute_name>`. It is required that `shouldUseCompactResponses` setting is set to `false` in order for this one to apply.
|
|
309
|
-
enableMultiWindows | boolean | Whether to include all windows that the user can interact with (for example an on-screen keyboard) while building the XML page source (`true`). By default it is `false` and only the single active application window is included to the page source.
|
|
310
|
-
enableTopmostWindowFromActivePackage | boolean | Whether to limit the window with the highest Z-order from the active package for interactions and page source retrieval. By default it is `false` and the active application window, which may not necessarily have this order, is included to the page source.
|
|
312
|
+
enableMultiWindows | boolean | Whether to include all windows that the user can interact with (for example an on-screen keyboard) while building the XML page source (`true`). By default it is `false` and only the single active application window is included to the page source. See the [Multi-Window Testing Guide](docs/android-multiwindow.md) for detailed information.
|
|
313
|
+
enableTopmostWindowFromActivePackage | boolean | Whether to limit the window with the highest Z-order from the active package for interactions and page source retrieval. By default it is `false` and the active application window, which may not necessarily have this order, is included to the page source. See the [Multi-Window Testing Guide](docs/android-multiwindow.md) for detailed information.
|
|
311
314
|
enableNotificationListener | boolean | Whether to enable (`true`) toast notifications listener to listen for new toast notifications. By default this listener is enabled and UiAutomator2 server includes the text of toast messages to the generated XML page source, but not for longer than `3500` ms after the corresponding notification expires.
|
|
312
315
|
keyInjectionDelay | long | Delay in milliseconds between key presses when injecting text input. 0 ms by default
|
|
313
316
|
scrollAcknowledgmentTimeout | long | Timeout for waiting for an acknowledgement of an uiautomator scroll swipe action. The acknowledgment is an [AccessibilityEvent](http://developer.android.com/reference/android/view/accessibility/AccessibilityEvent.html), corresponding to the scroll action, that lets the framework determine if the scroll action was successful. Generally, this timeout should not be modified. `200` ms by default
|
|
@@ -332,7 +335,8 @@ disableIdLocatorAutocompletion | boolean | According to internal Android standar
|
|
|
332
335
|
includeExtrasInPageSource | boolean | Whether to include `extras` element attribute in the XML page source result. Then, XPath locator can find the element by the extras. Its value consists of combined [getExtras](https://developer.android.com/reference/android/view/accessibility/AccessibilityNodeInfo#getExtras()) as `keys=value` pair separated by a semicolon (`;`), thus you may need to find the element with partial matching like `contains` e.g. `driver.find_element :xpath, '//*[contains(@extras, "AccessibilityNodeInfo.roleDescription=")]'`. The value could be huge if elements in the XML page source have large `extras`. It could affect the performance of XML page source generation.
|
|
333
336
|
includeA11yActionsInPageSource | boolean | Whether to include `actions` element attribute in the XML page source result. Its value consists of names of available accessibility actions from [getActionList](https://developer.android.com/reference/android/view/accessibility/AccessibilityNodeInfo#getActionList()), separated by a comma. The value could be huge if elements in the XML page source have a lot of actions and could affect the performance of XML page source generation.
|
|
334
337
|
snapshotMaxDepth | int | The number of maximum depth for the source tree snapshot. The default value is `70`. This number should be in range [1, 500]. A part of the elements source tree might be lost if the value is too low. Also, StackOverflowError might be caused if the value is too high (Issues [12545](https://github.com/appium/appium/issues/12545), [12892](https://github.com/appium/appium/issues/12892)). The available driver version is `2.27.0` or higher.
|
|
335
|
-
currentDisplayId | int | The id of the display that should be used when finding elements, taking screenshots, etc. It can be found in the output of `adb shell dumpsys display` (search for `mDisplayId`). The default value is [Display.DEFAULT_DISPLAY](https://developer.android.com/reference/android/view/Display#DEFAULT_DISPLAY).
|
|
338
|
+
currentDisplayId | int | The id of the display that should be used when finding elements, taking screenshots, etc. It can be found in the output of `adb shell dumpsys display` (search for `mDisplayId`). The default value is [Display.DEFAULT_DISPLAY](https://developer.android.com/reference/android/view/Display#DEFAULT_DISPLAY). See the [Multi-Window Testing Guide](docs/android-multiwindow.md) for detailed information about windows, displays, and how this setting affects element location. Set this setting to `-1`
|
|
339
|
+
in order to reset it.
|
|
336
340
|
alwaysTraversableViewClasses | string | Allows to continue the tree traversal for user defined classes even though the node itself is invisible. The default logic for the UI tree traversal (controlled by the `allowInvisibleElements` setting) is to stop recursing when an invisible node is found. However, with certain Jetpack Compose classes (e.g. androidx.compose.ui.viewinterop.ViewFactoryHolder), it is possible that invisible parent nodes have visible child nodes. See [Google issue \#354958193](https://issuetracker.google.com/issues/354958193) and [UIA2 server issue \#709](https://github.com/appium/appium-uiautomator2-server/issues/709) for more details. This setting only affects the XPath lookup and the page source buildup. You can provide a comma separated list of glob patterns, that will be used as an exemption list: `androidx.compose.ui.viewinterop.*,android.widget.ImageButton`.
|
|
337
341
|
|
|
338
342
|
|
|
@@ -384,7 +388,7 @@ object result = driver.ExecuteScript("mobile: <methodName>", new Dictionary<stri
|
|
|
384
388
|
|
|
385
389
|
### mobile: shell
|
|
386
390
|
|
|
387
|
-
Executes the given shell command on the device under test via ADB connection. This extension exposes a potential security risk and thus is only enabled when explicitly activated by the `adb_shell` server command line feature specifier.
|
|
391
|
+
Executes the given shell command on the device under test via ADB connection. This extension exposes a potential security risk and thus is only enabled when explicitly activated by the `uiautomator2:adb_shell` server command line feature specifier.
|
|
388
392
|
|
|
389
393
|
#### Arguments
|
|
390
394
|
|
|
@@ -1667,21 +1671,23 @@ These extensions allow to deal with short-living UI elements. Read [the document
|
|
|
1667
1671
|
Retrieves a screenshot of each display available to Android.
|
|
1668
1672
|
This functionality is only supported since Android 10.
|
|
1669
1673
|
|
|
1670
|
-
**Important:** This method uses **physical display IDs**, which are different from logical display IDs used by the `currentDisplayId` setting.
|
|
1671
|
-
- The `physicalId` field returned by [`mobile: listDisplays`](#mobile-listdisplays) (recommended)
|
|
1672
|
-
- The `physicalDisplayId` field returned by [`mobile: listWindows`](#mobile-listwindows)
|
|
1674
|
+
**Important:** This method uses **physical or virtual display IDs**, which are different from logical display IDs used by the `currentDisplayId` setting. Display IDs can be obtained from:
|
|
1675
|
+
- The `physicalId` or `virtualId` field returned by [`mobile: listDisplays`](#mobile-listdisplays) (recommended)
|
|
1676
|
+
- The `physicalDisplayId` or `virtualDisplayId` field returned by [`mobile: listWindows`](#mobile-listwindows)
|
|
1673
1677
|
- The `adb shell dumpsys SurfaceFlinger --display-id` command output
|
|
1674
1678
|
|
|
1679
|
+
**Note:** For physical displays, use the `physicalId` from `mobile: listDisplays` or `physicalDisplayId` from `mobile: listWindows`. For virtual displays, use the `virtualId` from `mobile: listDisplays` or `virtualDisplayId` from `mobile: listWindows`.
|
|
1680
|
+
|
|
1675
1681
|
#### Arguments
|
|
1676
1682
|
|
|
1677
1683
|
Name | Type | Required | Description | Example
|
|
1678
1684
|
--- | --- | --- | --- | ---
|
|
1679
|
-
displayId | number or string | no | **Physical display identifier** to take a screenshot for. If not provided then screenshots of all displays are going to be returned. If no matches were found then an error is thrown. **Note:** This is a physical display ID, not a logical display ID. Use `mobile: listDisplays` to get the correct `physicalId` value. | 1234567890
|
|
1685
|
+
displayId | number or string | no | **Physical or virtual display identifier** to take a screenshot for. If not provided then screenshots of all displays are going to be returned. If no matches were found then an error is thrown. **Note:** This is a physical or virtual display ID, not a logical display ID. Use `mobile: listDisplays` to get the correct `physicalId` (for physical displays) or `virtualId` (for virtual displays) value. | 1234567890
|
|
1680
1686
|
|
|
1681
1687
|
#### Returns
|
|
1682
1688
|
|
|
1683
|
-
A dictionary where each key is the physical display identifier (as a string) and the value has the following keys:
|
|
1684
|
-
- `id`: The physical display identifier (same as the key)
|
|
1689
|
+
A dictionary where each key is the physical or virtual display identifier (as a string) and the value has the following keys:
|
|
1690
|
+
- `id`: The physical or virtual display identifier (same as the key)
|
|
1685
1691
|
- `name`: Display name
|
|
1686
1692
|
- `isDefault`: Whether this display is the default one
|
|
1687
1693
|
- `payload`: The actual PNG screenshot data encoded to base64 string
|
|
@@ -1953,7 +1959,7 @@ in it. The contents of the file needs to be parsable as a JSON object, like:
|
|
|
1953
1959
|
}
|
|
1954
1960
|
```
|
|
1955
1961
|
|
|
1956
|
-
There is a possibility to automatically download the necessary chromedriver(s) into `appium:chromedriverExecutableDir` from the official Google storage. The script will automatically search for the newest chromedriver version that supports the given browser/web view, download it (the hash sum is verified as well for the downloaded archive) and add to the `appium:chromedriverChromeMappingFile` mapping. Everything, which is needed to be done from your side is to execute the server with `chromedriver_autodownload` feature enabled (like `appium server --allow-insecure chromedriver_autodownload`).
|
|
1962
|
+
There is a possibility to automatically download the necessary chromedriver(s) into `appium:chromedriverExecutableDir` from the official Google storage. The script will automatically search for the newest chromedriver version that supports the given browser/web view, download it (the hash sum is verified as well for the downloaded archive) and add to the `appium:chromedriverChromeMappingFile` mapping. Everything, which is needed to be done from your side is to execute the server with `uiautomator2:chromedriver_autodownload` feature enabled (like `appium server --allow-insecure uiautomator2:chromedriver_autodownload`).
|
|
1957
1963
|
|
|
1958
1964
|
### Troubleshooting Chromedriver Download Issues
|
|
1959
1965
|
|
|
@@ -252,6 +252,9 @@ declare const UIAUTOMATOR2_CONSTRAINTS: {
|
|
|
252
252
|
readonly allowDelayAdb: {
|
|
253
253
|
readonly isBoolean: true;
|
|
254
254
|
};
|
|
255
|
+
readonly adbListenAllNetwork: {
|
|
256
|
+
readonly isBoolean: true;
|
|
257
|
+
};
|
|
255
258
|
readonly ignoreUnimportantViews: {
|
|
256
259
|
readonly isBoolean: true;
|
|
257
260
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"constraints.d.ts","sourceRoot":"","sources":["../../lib/constraints.ts"],"names":[],"mappings":"AAGA,QAAA,MAAM,wBAAwB
|
|
1
|
+
{"version":3,"file":"constraints.d.ts","sourceRoot":"","sources":["../../lib/constraints.ts"],"names":[],"mappings":"AAGA,QAAA,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAmCE,CAAC;AAEjC,eAAe,wBAAwB,CAAC;AAExC,MAAM,MAAM,uBAAuB,GAAG,OAAO,wBAAwB,CAAC"}
|
|
@@ -37,7 +37,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
37
37
|
};
|
|
38
38
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39
39
|
const appium_adb_1 = require("appium-adb");
|
|
40
|
-
const
|
|
40
|
+
const sinon_1 = __importDefault(require("sinon"));
|
|
41
41
|
const uiautomator2_1 = require("../../lib/uiautomator2");
|
|
42
42
|
const helpers = __importStar(require("../../lib/helpers"));
|
|
43
43
|
const logger_1 = __importDefault(require("../../lib/logger"));
|
|
@@ -207,119 +207,114 @@ describe('UiAutomator2', function () {
|
|
|
207
207
|
])).to.be.true;
|
|
208
208
|
});
|
|
209
209
|
});
|
|
210
|
-
describe('installServerApk',
|
|
210
|
+
describe('installServerApk', function () {
|
|
211
|
+
let mockAdb;
|
|
212
|
+
let mockHelpers;
|
|
213
|
+
let testAdb;
|
|
211
214
|
beforeEach(function () {
|
|
215
|
+
testAdb = new appium_adb_1.ADB();
|
|
216
|
+
mockAdb = sinon_1.default.mock(testAdb);
|
|
217
|
+
mockHelpers = sinon_1.default.mock(helpers);
|
|
212
218
|
uiautomator2 = new uiautomator2_1.UiAutomator2Server(logger_1.default, {
|
|
213
|
-
adb, ...defaultUIA2ServerOptions
|
|
219
|
+
adb: testAdb, ...defaultUIA2ServerOptions
|
|
214
220
|
});
|
|
215
221
|
});
|
|
216
222
|
afterEach(function () {
|
|
217
|
-
|
|
223
|
+
mockAdb.verify();
|
|
224
|
+
mockHelpers.verify();
|
|
225
|
+
mockAdb.restore();
|
|
226
|
+
mockHelpers.restore();
|
|
218
227
|
});
|
|
219
228
|
it('new server and server.test are older than installed version', async function () {
|
|
220
|
-
|
|
229
|
+
mockHelpers.expects('isWriteable').never();
|
|
221
230
|
// SERVER_PACKAGE_ID
|
|
222
|
-
|
|
231
|
+
mockAdb.expects('getApplicationInstallState').once()
|
|
223
232
|
.returns(adb.APP_INSTALL_STATE.NEWER_VERSION_INSTALLED);
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
mocks.adb.expects('install').twice();
|
|
228
|
-
mocks.adb.expects('isAppInstalled')
|
|
233
|
+
mockAdb.expects('uninstallApk').twice();
|
|
234
|
+
mockAdb.expects('install').twice();
|
|
235
|
+
mockAdb.expects('isAppInstalled')
|
|
229
236
|
.withExactArgs(uiautomator2_1.SERVER_TEST_PACKAGE_ID)
|
|
230
237
|
.once().returns(true);
|
|
231
|
-
|
|
238
|
+
mockAdb.expects('shell')
|
|
232
239
|
.withExactArgs(['pm', 'list', 'instrumentation'])
|
|
233
240
|
.once().returns(uiautomator2_1.INSTRUMENTATION_TARGET);
|
|
234
241
|
await uiautomator2.installServerApk();
|
|
235
242
|
});
|
|
236
243
|
it('new server and server.test are newer than installed version', async function () {
|
|
237
|
-
|
|
244
|
+
mockHelpers.expects('isWriteable').never();
|
|
238
245
|
// SERVER_PACKAGE_ID
|
|
239
|
-
|
|
246
|
+
mockAdb.expects('getApplicationInstallState').once()
|
|
240
247
|
.returns(adb.APP_INSTALL_STATE.OLDER_VERSION_INSTALLED);
|
|
241
|
-
|
|
242
|
-
mocks.adb.expects('checkApkCert').twice().returns(true);
|
|
243
|
-
mocks.adb.expects('isAppInstalled')
|
|
248
|
+
mockAdb.expects('isAppInstalled')
|
|
244
249
|
.withExactArgs(uiautomator2_1.SERVER_TEST_PACKAGE_ID)
|
|
245
250
|
.once().returns(true);
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
251
|
+
mockAdb.expects('uninstallApk').never();
|
|
252
|
+
mockAdb.expects('install').twice();
|
|
253
|
+
mockAdb.expects('shell')
|
|
249
254
|
.withExactArgs(['pm', 'list', 'instrumentation'])
|
|
250
255
|
.once().returns(uiautomator2_1.INSTRUMENTATION_TARGET);
|
|
251
256
|
await uiautomator2.installServerApk();
|
|
252
257
|
});
|
|
253
258
|
it('new server and server.test are the same as installed version', async function () {
|
|
254
|
-
|
|
259
|
+
mockHelpers.expects('isWriteable').never();
|
|
255
260
|
// SERVER_PACKAGE_ID
|
|
256
|
-
|
|
261
|
+
mockAdb.expects('getApplicationInstallState').once()
|
|
257
262
|
.returns(adb.APP_INSTALL_STATE.SAME_VERSION_INSTALLED);
|
|
258
|
-
|
|
259
|
-
mocks.adb.expects('checkApkCert').twice().returns(true);
|
|
260
|
-
mocks.adb.expects('isAppInstalled')
|
|
263
|
+
mockAdb.expects('isAppInstalled')
|
|
261
264
|
.withExactArgs(uiautomator2_1.SERVER_TEST_PACKAGE_ID)
|
|
262
265
|
.once().returns(true);
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
+
mockAdb.expects('uninstallApk').never();
|
|
267
|
+
mockAdb.expects('install').never();
|
|
268
|
+
mockAdb.expects('shell')
|
|
266
269
|
.withExactArgs(['pm', 'list', 'instrumentation'])
|
|
267
270
|
.once().returns(uiautomator2_1.INSTRUMENTATION_TARGET);
|
|
268
271
|
await uiautomator2.installServerApk();
|
|
269
272
|
});
|
|
270
273
|
it('new server and server.test are not installed', async function () {
|
|
271
|
-
|
|
272
|
-
.returns(true);
|
|
274
|
+
mockHelpers.expects('isWriteable').never();
|
|
273
275
|
// SERVER_PACKAGE_ID
|
|
274
|
-
|
|
276
|
+
mockAdb.expects('getApplicationInstallState').once()
|
|
275
277
|
.returns(adb.APP_INSTALL_STATE.NOT_INSTALLED);
|
|
276
|
-
// SERVER_PACKAGE_ID and SERVER_TEST_PACKAGE_ID
|
|
277
|
-
mocks.adb.expects('checkApkCert').twice().returns(false);
|
|
278
|
-
mocks.adb.expects('sign').twice();
|
|
279
278
|
// SERVER_TEST_PACKAGE_ID
|
|
280
|
-
|
|
279
|
+
mockAdb.expects('isAppInstalled')
|
|
281
280
|
.withExactArgs(uiautomator2_1.SERVER_TEST_PACKAGE_ID)
|
|
282
281
|
.once().returns(false);
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
282
|
+
mockAdb.expects('uninstallApk').never();
|
|
283
|
+
mockAdb.expects('install').twice();
|
|
284
|
+
mockAdb.expects('shell').withExactArgs(['pm', 'list', 'instrumentation'])
|
|
286
285
|
.once().returns(uiautomator2_1.INSTRUMENTATION_TARGET);
|
|
287
286
|
await uiautomator2.installServerApk();
|
|
288
287
|
});
|
|
289
288
|
it('version numbers of new server and server.test are unknown', async function () {
|
|
290
|
-
|
|
289
|
+
mockHelpers.expects('isWriteable').never();
|
|
291
290
|
// SERVER_PACKAGE_ID
|
|
292
|
-
|
|
291
|
+
mockAdb.expects('getApplicationInstallState').once()
|
|
293
292
|
.returns(adb.APP_INSTALL_STATE.UNKNOWN);
|
|
294
|
-
|
|
295
|
-
mocks.adb.expects('checkApkCert').twice().returns(true);
|
|
296
|
-
mocks.adb.expects('isAppInstalled')
|
|
293
|
+
mockAdb.expects('isAppInstalled')
|
|
297
294
|
.withExactArgs(uiautomator2_1.SERVER_TEST_PACKAGE_ID)
|
|
298
295
|
.once().returns(false);
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
296
|
+
mockAdb.expects('uninstallApk').twice();
|
|
297
|
+
mockAdb.expects('install').twice();
|
|
298
|
+
mockAdb.expects('shell')
|
|
302
299
|
.withExactArgs(['pm', 'list', 'instrumentation'])
|
|
303
300
|
.once().returns(uiautomator2_1.INSTRUMENTATION_TARGET);
|
|
304
301
|
await uiautomator2.installServerApk();
|
|
305
302
|
});
|
|
306
303
|
it('a server is installed but server.test is not', async function () {
|
|
307
|
-
|
|
304
|
+
mockHelpers.expects('isWriteable').never();
|
|
308
305
|
// SERVER_PACKAGE_ID
|
|
309
|
-
|
|
306
|
+
mockAdb.expects('getApplicationInstallState').once()
|
|
310
307
|
.returns(adb.APP_INSTALL_STATE.SAME_VERSION_INSTALLED);
|
|
311
|
-
|
|
312
|
-
mocks.adb.expects('checkApkCert').twice().returns(true);
|
|
313
|
-
mocks.adb.expects('isAppInstalled')
|
|
308
|
+
mockAdb.expects('isAppInstalled')
|
|
314
309
|
.withExactArgs(uiautomator2_1.SERVER_TEST_PACKAGE_ID)
|
|
315
310
|
.once().returns(false);
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
311
|
+
mockAdb.expects('uninstallApk').twice();
|
|
312
|
+
mockAdb.expects('install').twice();
|
|
313
|
+
mockAdb.expects('shell')
|
|
319
314
|
.withExactArgs(['pm', 'list', 'instrumentation'])
|
|
320
315
|
.once().returns(uiautomator2_1.INSTRUMENTATION_TARGET);
|
|
321
316
|
await uiautomator2.installServerApk();
|
|
322
317
|
});
|
|
323
|
-
})
|
|
318
|
+
});
|
|
324
319
|
});
|
|
325
320
|
//# sourceMappingURL=uiautomator2-specs.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"uiautomator2-specs.js","sourceRoot":"","sources":["../../../test/unit/uiautomator2-specs.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,2CAAiC;AACjC,
|
|
1
|
+
{"version":3,"file":"uiautomator2-specs.js","sourceRoot":"","sources":["../../../test/unit/uiautomator2-specs.ts"],"names":[],"mappings":"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"}
|