-
Notifications
You must be signed in to change notification settings - Fork 288
/
AndroidDriver.kt
1100 lines (943 loc) · 38.4 KB
/
AndroidDriver.kt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
*
* Copyright (c) 2022 mobile.dev inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*
*/
package maestro.drivers
import com.fasterxml.jackson.module.kotlin.jacksonObjectMapper
import com.google.protobuf.ByteString
import dadb.AdbShellPacket
import dadb.AdbShellResponse
import dadb.AdbShellStream
import dadb.Dadb
import io.grpc.ManagedChannelBuilder
import io.grpc.Status
import io.grpc.StatusRuntimeException
import maestro.*
import maestro.MaestroDriverStartupException.AndroidDriverTimeoutException
import maestro.MaestroDriverStartupException.AndroidInstrumentationSetupFailure
import maestro.UiElement.Companion.toUiElementOrNull
import maestro.android.AndroidAppFiles
import maestro.android.AndroidLaunchArguments.toAndroidLaunchArguments
import maestro.utils.BlockingStreamObserver
import maestro.utils.MaestroTimer
import maestro.utils.ScreenshotUtils
import maestro.utils.StringUtils.toRegexSafe
import maestro_android.*
import net.dongliu.apk.parser.ApkFile
import okio.*
import org.slf4j.LoggerFactory
import org.w3c.dom.Element
import org.w3c.dom.Node
import java.io.File
import java.io.IOException
import java.util.UUID
import java.util.concurrent.CompletableFuture
import java.util.concurrent.Executors
import java.util.concurrent.Semaphore
import java.util.concurrent.TimeUnit
import java.util.concurrent.TimeoutException
import javax.xml.parsers.DocumentBuilderFactory
import kotlin.io.use
private const val DefaultDriverHostPort = 7001
class AndroidDriver(
private val dadb: Dadb,
hostPort: Int? = null,
private var emulatorName: String = "",
) : Driver {
private var open = false
private val hostPort: Int = hostPort ?: DefaultDriverHostPort
private val channel = ManagedChannelBuilder.forAddress("localhost", this.hostPort)
.usePlaintext()
.build()
private val blockingStub = MaestroDriverGrpc.newBlockingStub(channel)
private val blockingStubWithTimeout get() = blockingStub.withDeadlineAfter(40, TimeUnit.SECONDS)
private val asyncStub = MaestroDriverGrpc.newStub(channel)
private val documentBuilderFactory = DocumentBuilderFactory.newInstance()
private val deviceCallSemaphore = Semaphore(1)
private var instrumentationSession: AdbShellStream? = null
private var proxySet = false
private var closed = false
override fun name(): String {
return "Android Device ($dadb)"
}
override fun open() {
allocateForwarder()
installMaestroApks()
startInstrumentationSession(hostPort)
try {
awaitLaunch()
} catch (ignored: InterruptedException) {
instrumentationSession?.close()
return
}
}
private fun startInstrumentationSession(port: Int = 7001) {
val startTime = System.currentTimeMillis()
val apiLevel = getDeviceApiLevel()
val instrumentationCommand = buildString {
append("am instrument -w ")
if (apiLevel >= 26) append("-m ")
append("-e debug false ")
append("-e class 'dev.mobile.maestro.MaestroDriverService#grpcServer' ")
append("-e port $port ")
append("dev.mobile.maestro.test/androidx.test.runner.AndroidJUnitRunner &\n")
}
open = true
while (System.currentTimeMillis() - startTime < getStartupTimeout()) {
instrumentationSession = dadb.openShell(instrumentationCommand)
if (instrumentationSession.successfullyStarted()) {
return
}
instrumentationSession?.close()
Thread.sleep(100)
}
throw AndroidInstrumentationSetupFailure("Maestro instrumentation could not be initialized")
}
private fun getDeviceApiLevel(): Int {
val response = dadb.openShell("getprop ro.build.version.sdk").readAll()
if (response.exitCode != 0) {
throw IOException("Failed to get device API level: ${response.errorOutput}")
}
return response.output.trim().toIntOrNull() ?: throw IOException("Invalid API level: ${response.output}")
}
private fun allocateForwarder() {
PORT_TO_FORWARDER[hostPort]?.close()
PORT_TO_ALLOCATION_POINT[hostPort]?.let {
LOGGER.warn("Port $hostPort was already allocated. Allocation point: $it")
}
PORT_TO_FORWARDER[hostPort] = dadb.tcpForward(
hostPort,
hostPort
)
PORT_TO_ALLOCATION_POINT[hostPort] = Exception().stackTraceToString()
}
private fun awaitLaunch() {
val startTime = System.currentTimeMillis()
while (System.currentTimeMillis() - startTime < getStartupTimeout()) {
runCatching {
dadb.open("tcp:$hostPort").close()
return
}
Thread.sleep(100)
}
throw AndroidDriverTimeoutException("Maestro Android driver did not start up in time --- emulator [ ${emulatorName} ] & port [ dadb.open( tcp:${hostPort} ) ]")
}
override fun close() {
if (closed) return
if (proxySet) {
resetProxy()
}
PORT_TO_FORWARDER[hostPort]?.close()
PORT_TO_FORWARDER.remove(hostPort)
PORT_TO_ALLOCATION_POINT.remove(hostPort)
uninstallMaestroApks()
instrumentationSession?.close()
instrumentationSession = null
channel.shutdown()
if (!channel.awaitTermination(5, TimeUnit.SECONDS)) {
throw TimeoutException("Couldn't close Maestro Android driver due to gRPC timeout")
}
}
override fun deviceInfo(): DeviceInfo {
return runDeviceCall {
val response = blockingStubWithTimeout.deviceInfo(deviceInfoRequest {})
DeviceInfo(
platform = Platform.ANDROID,
widthPixels = response.widthPixels,
heightPixels = response.heightPixels,
widthGrid = response.widthPixels,
heightGrid = response.heightPixels,
)
}
}
override fun launchApp(
appId: String,
launchArguments: Map<String, Any>,
sessionId: UUID?,
) {
if(!open) // pick device flow, no open() invocation
open()
if (!isPackageInstalled(appId)) {
throw IllegalArgumentException("Package $appId is not installed")
}
val arguments = launchArguments.toAndroidLaunchArguments()
val sessionUUID = sessionId ?: UUID.randomUUID()
dadb.shell("setprop debug.maestro.sessionId $sessionUUID")
runDeviceCall {
blockingStubWithTimeout.launchApp(
launchAppRequest {
this.packageName = appId
this.arguments.addAll(arguments)
}
) ?: throw IllegalStateException("Maestro driver failed to launch app")
}
}
override fun stopApp(appId: String) {
// Note: If the package does not exist, this call does *not* throw an exception
shell("am force-stop $appId")
}
override fun killApp(appId: String) {
// Kill is the adb command needed to trigger System-initiated Process Death
shell("am kill $appId")
}
override fun clearAppState(appId: String) {
if (!isPackageInstalled(appId)) {
return
}
shell("pm clear $appId")
}
override fun clearKeychain() {
// No op
}
override fun tap(point: Point) {
runDeviceCall {
blockingStubWithTimeout.tap(
tapRequest {
x = point.x
y = point.y
}
) ?: throw IllegalStateException("Response can't be null")
}
}
override fun longPress(point: Point) {
dadb.shell("input swipe ${point.x} ${point.y} ${point.x} ${point.y} 3000")
}
override fun pressKey(code: KeyCode) {
val intCode: Int = when (code) {
KeyCode.ENTER -> 66
KeyCode.BACKSPACE -> 67
KeyCode.BACK -> 4
KeyCode.VOLUME_UP -> 24
KeyCode.VOLUME_DOWN -> 25
KeyCode.HOME -> 3
KeyCode.LOCK -> 276
KeyCode.REMOTE_UP -> 19
KeyCode.REMOTE_DOWN -> 20
KeyCode.REMOTE_LEFT -> 21
KeyCode.REMOTE_RIGHT -> 22
KeyCode.REMOTE_CENTER -> 23
KeyCode.REMOTE_PLAY_PAUSE -> 85
KeyCode.REMOTE_STOP -> 86
KeyCode.REMOTE_NEXT -> 87
KeyCode.REMOTE_PREVIOUS -> 88
KeyCode.REMOTE_REWIND -> 89
KeyCode.REMOTE_FAST_FORWARD -> 90
KeyCode.POWER -> 26
KeyCode.ESCAPE -> 111
KeyCode.TAB -> 62
KeyCode.REMOTE_SYSTEM_NAVIGATION_UP -> 280
KeyCode.REMOTE_SYSTEM_NAVIGATION_DOWN -> 281
KeyCode.REMOTE_BUTTON_A -> 96
KeyCode.REMOTE_BUTTON_B -> 97
KeyCode.REMOTE_MENU -> 82
KeyCode.TV_INPUT -> 178
KeyCode.TV_INPUT_HDMI_1 -> 243
KeyCode.TV_INPUT_HDMI_2 -> 244
KeyCode.TV_INPUT_HDMI_3 -> 245
}
dadb.shell("input keyevent $intCode")
Thread.sleep(300)
}
override fun contentDescriptor(excludeKeyboardElements: Boolean): TreeNode {
val response = callViewHierarchy()
val document = documentBuilderFactory
.newDocumentBuilder()
.parse(response.hierarchy.byteInputStream())
val treeNode = mapHierarchy(document)
return if (excludeKeyboardElements) {
treeNode.excludeKeyboardElements() ?: treeNode
} else {
treeNode
}
}
private fun TreeNode.excludeKeyboardElements(): TreeNode? {
val filtered = children.mapNotNull {
it.excludeKeyboardElements()
}.toList()
val resourceId = attributes["resource-id"]
if (resourceId != null && resourceId.startsWith("com.google.android.inputmethod.latin:id/")) {
return null
}
return TreeNode(
attributes = attributes,
children = filtered,
clickable = clickable,
enabled = enabled,
focused = focused,
checked = checked,
selected = selected
)
}
private fun callViewHierarchy(attempt: Int = 1): MaestroAndroid.ViewHierarchyResponse {
return try {
blockingStubWithTimeout.viewHierarchy(viewHierarchyRequest {})
} catch (throwable: StatusRuntimeException) {
val status = Status.fromThrowable(throwable)
if (status.code == Status.Code.DEADLINE_EXCEEDED) {
LOGGER.error("Timeout while fetching view hierarchy")
throw MaestroException.DriverTimeout("Android driver unreachable")
}
// There is a bug in Android UiAutomator that rarely throws an NPE while dumping a view hierarchy.
// Trying to recover once by giving it a bit of time to settle.
LOGGER.error("Failed to get view hierarchy: ${status.description}", throwable)
if (attempt > 0) {
MaestroTimer.sleep(MaestroTimer.Reason.BUFFER, 1000L)
return callViewHierarchy(attempt - 1)
}
throw throwable
}
}
override fun scrollVertical() {
swipe(SwipeDirection.UP, 400)
}
override fun isKeyboardVisible(): Boolean {
val root = contentDescriptor().let {
val deviceInfo = deviceInfo()
val filtered = it.filterOutOfBounds(
width = deviceInfo.widthGrid,
height = deviceInfo.heightGrid
)
filtered ?: it
}
return "com.google.android.inputmethod.latin:id" in jacksonObjectMapper().writeValueAsString(root)
}
override fun swipe(start: Point, end: Point, durationMs: Long) {
dadb.shell("input swipe ${start.x} ${start.y} ${end.x} ${end.y} $durationMs")
}
override fun swipe(swipeDirection: SwipeDirection, durationMs: Long) {
val deviceInfo = deviceInfo()
when (swipeDirection) {
SwipeDirection.UP -> {
val startX = (deviceInfo.widthGrid * 0.5f).toInt()
val startY = (deviceInfo.heightGrid * 0.5f).toInt()
val endX = (deviceInfo.widthGrid * 0.5f).toInt()
val endY = (deviceInfo.heightGrid * 0.1f).toInt()
directionalSwipe(
durationMs,
Point(startX, startY),
Point(endX, endY)
)
}
SwipeDirection.DOWN -> {
val startX = (deviceInfo.widthGrid * 0.5f).toInt()
val startY = (deviceInfo.heightGrid * 0.2f).toInt()
val endX = (deviceInfo.widthGrid * 0.5f).toInt()
val endY = (deviceInfo.heightGrid * 0.9f).toInt()
directionalSwipe(
durationMs,
Point(startX, startY),
Point(endX, endY)
)
}
SwipeDirection.RIGHT -> {
val startX = (deviceInfo.widthGrid * 0.1f).toInt()
val startY = (deviceInfo.heightGrid * 0.5f).toInt()
val endX = (deviceInfo.widthGrid * 0.9f).toInt()
val endY = (deviceInfo.heightGrid * 0.5f).toInt()
directionalSwipe(
durationMs,
Point(startX, startY),
Point(endX, endY)
)
}
SwipeDirection.LEFT -> {
val startX = (deviceInfo.widthGrid * 0.9f).toInt()
val startY = (deviceInfo.heightGrid * 0.5f).toInt()
val endX = (deviceInfo.widthGrid * 0.1f).toInt()
val endY = (deviceInfo.heightGrid * 0.5f).toInt()
directionalSwipe(
durationMs,
Point(startX, startY),
Point(endX, endY)
)
}
}
}
override fun swipe(elementPoint: Point, direction: SwipeDirection, durationMs: Long) {
val deviceInfo = deviceInfo()
when (direction) {
SwipeDirection.UP -> {
val endY = (deviceInfo.heightGrid * 0.1f).toInt()
directionalSwipe(durationMs, elementPoint, Point(elementPoint.x, endY))
}
SwipeDirection.DOWN -> {
val endY = (deviceInfo.heightGrid * 0.9f).toInt()
directionalSwipe(durationMs, elementPoint, Point(elementPoint.x, endY))
}
SwipeDirection.RIGHT -> {
val endX = (deviceInfo.widthGrid * 0.9f).toInt()
directionalSwipe(durationMs, elementPoint, Point(endX, elementPoint.y))
}
SwipeDirection.LEFT -> {
val endX = (deviceInfo.widthGrid * 0.1f).toInt()
directionalSwipe(durationMs, elementPoint, Point(endX, elementPoint.y))
}
}
}
private fun directionalSwipe(durationMs: Long, start: Point, end: Point) {
dadb.shell("input swipe ${start.x} ${start.y} ${end.x} ${end.y} $durationMs")
}
override fun backPress() {
dadb.shell("input keyevent 4")
Thread.sleep(300)
}
override fun hideKeyboard() {
dadb.shell("input keyevent 4") // 'Back', which dismisses the keyboard before handing over to navigation
Thread.sleep(300)
waitForAppToSettle(null, null)
}
override fun takeScreenshot(out: Sink, compressed: Boolean) {
runDeviceCall {
val response = blockingStubWithTimeout.screenshot(screenshotRequest {})
out.buffer().use {
it.write(response.bytes.toByteArray())
}
}
}
override fun startScreenRecording(out: Sink): ScreenRecording {
val deviceScreenRecordingPath = "/sdcard/maestro-screenrecording.mp4"
val future = CompletableFuture.runAsync({
val timeLimit = if (getDeviceApiLevel() >= 34) "--time-limit 0" else ""
try {
shell("screenrecord $timeLimit --bit-rate '100000' $deviceScreenRecordingPath")
} catch (e: IOException) {
throw IOException(
"Failed to capture screen recording on the device. Note that some Android emulators do not support screen recording. " +
"Try using a different Android emulator (eg. Pixel 5 / API 30)",
e,
)
}
}, Executors.newSingleThreadExecutor())
return object : ScreenRecording {
override fun close() {
dadb.shell("killall -INT screenrecord") // Ignore exit code
future.get()
Thread.sleep(3000)
dadb.pull(out, deviceScreenRecordingPath)
}
}
}
override fun inputText(text: String) {
runDeviceCall {
blockingStubWithTimeout.inputText(inputTextRequest {
this.text = text
}) ?: throw IllegalStateException("Input Response can't be null")
}
}
override fun openLink(link: String, appId: String?, autoVerify: Boolean, browser: Boolean) {
if (browser) {
openBrowser(link)
} else {
dadb.shell("am start -a android.intent.action.VIEW -d \"$link\"")
}
if (autoVerify) {
autoVerifyApp(appId)
}
}
private fun autoVerifyApp(appId: String?) {
if (appId != null) {
autoVerifyWithAppName(appId)
}
autoVerifyChromeAgreement()
}
private fun autoVerifyWithAppName(appId: String) {
val appNameResult = runCatching {
val apkFile = AndroidAppFiles.getApkFile(dadb, appId)
val appName = ApkFile(apkFile).apkMeta.name
apkFile.delete()
appName
}
if (appNameResult.isSuccess) {
val appName = appNameResult.getOrThrow()
waitUntilScreenIsStatic(3000)
val appNameElement = filterByText(appName)
if (appNameElement != null) {
tap(appNameElement.bounds.center())
filterById("android:id/button_once")?.let {
tap(it.bounds.center())
}
} else {
val openWithAppElement = filterByText(".*$appName.*")
if (openWithAppElement != null) {
filterById("android:id/button_once")?.let {
tap(it.bounds.center())
}
}
}
}
}
private fun autoVerifyChromeAgreement() {
filterById("com.android.chrome:id/terms_accept")?.let { tap(it.bounds.center()) }
waitForAppToSettle(null, null)
filterById("com.android.chrome:id/negative_button")?.let { tap(it.bounds.center()) }
}
private fun filterByText(textRegex: String): UiElement? {
val textMatcher = Filters.textMatches(textRegex.toRegexSafe(REGEX_OPTIONS))
val filterFunc = Filters.deepestMatchingElement(textMatcher)
return filterFunc(contentDescriptor().aggregate()).firstOrNull()?.toUiElementOrNull()
}
private fun filterById(idRegex: String): UiElement? {
val idMatcher = Filters.idMatches(idRegex.toRegexSafe(REGEX_OPTIONS))
val filterFunc = Filters.deepestMatchingElement(idMatcher)
return filterFunc(contentDescriptor().aggregate()).firstOrNull()?.toUiElementOrNull()
}
private fun openBrowser(link: String) {
val installedPackages = installedPackages()
when {
installedPackages.contains("com.android.chrome") -> {
dadb.shell("am start -a android.intent.action.VIEW -d \"$link\" com.android.chrome")
}
installedPackages.contains("org.mozilla.firefox") -> {
dadb.shell("am start -a android.intent.action.VIEW -d \"$link\" org.mozilla.firefox")
}
else -> {
dadb.shell("am start -a android.intent.action.VIEW -d \"$link\"")
}
}
}
private fun installedPackages() = shell("pm list packages").split("\n")
.map { line: String -> line.split(":".toRegex()).toTypedArray() }
.filter { parts: Array<String> -> parts.size == 2 }
.map { parts: Array<String> -> parts[1] }
override fun setLocation(latitude: Double, longitude: Double) {
shell("appops set dev.mobile.maestro android:mock_location allow")
runDeviceCall {
blockingStubWithTimeout.setLocation(
setLocationRequest {
this.latitude = latitude
this.longitude = longitude
}
) ?: error("Set Location Response can't be null")
}
}
override fun eraseText(charactersToErase: Int) {
runDeviceCall {
blockingStubWithTimeout.eraseAllText(
eraseAllTextRequest {
this.charactersToErase = charactersToErase
}
) ?: throw IllegalStateException("Erase Response can't be null")
}
}
override fun setProxy(host: String, port: Int) {
shell("""settings put global http_proxy "${host}:${port}"""")
proxySet = true
}
override fun resetProxy() {
shell("settings put global http_proxy :0")
}
override fun isShutdown(): Boolean {
return channel.isShutdown
}
override fun isUnicodeInputSupported(): Boolean {
return false
}
override fun waitForAppToSettle(initialHierarchy: ViewHierarchy?, appId: String?, timeoutMs: Int?): ViewHierarchy? {
return if (appId != null) {
waitForWindowToSettle(appId, initialHierarchy, timeoutMs)
} else {
ScreenshotUtils.waitForAppToSettle(initialHierarchy, this, timeoutMs)
}
}
private fun waitForWindowToSettle(appId: String, initialHierarchy: ViewHierarchy?, timeoutMs: Int? = null): ViewHierarchy {
val endTime = System.currentTimeMillis() + WINDOW_UPDATE_TIMEOUT_MS
var hierarchy: ViewHierarchy? = null
do {
runDeviceCall {
val windowUpdating = blockingStubWithTimeout.isWindowUpdating(checkWindowUpdatingRequest {
this.appId = appId
}).isWindowUpdating
if (windowUpdating) {
hierarchy = ScreenshotUtils.waitForAppToSettle(initialHierarchy, this, timeoutMs)
}
}
} while (System.currentTimeMillis() < endTime)
return hierarchy ?: ScreenshotUtils.waitForAppToSettle(initialHierarchy, this)
}
override fun waitUntilScreenIsStatic(timeoutMs: Long): Boolean {
return ScreenshotUtils.waitUntilScreenIsStatic(timeoutMs, SCREENSHOT_DIFF_THRESHOLD, this)
}
override fun capabilities(): List<Capability> {
return listOf(
Capability.FAST_HIERARCHY
)
}
override fun setPermissions(appId: String, permissions: Map<String, String>) {
val mutable = permissions.toMutableMap()
mutable.remove("all")?.let { value ->
setAllPermissions(appId, value)
}
mutable.forEach { permission ->
val permissionValue = translatePermissionValue(permission.value)
translatePermissionName(permission.key).forEach { permissionName ->
setPermissionInternal(appId, permissionName, permissionValue)
}
}
}
override fun addMedia(mediaFiles: List<File>) {
LOGGER.info("[Start] Adding media files")
mediaFiles.forEach { addMediaToDevice(it) }
LOGGER.info("[Done] Adding media files")
}
override fun isAirplaneModeEnabled(): Boolean {
return when (val result = shell("cmd connectivity airplane-mode").trim()) {
"No shell command implementation.", "" -> {
LOGGER.debug("Falling back to old airplane mode read method")
when (val fallbackResult = shell("settings get global airplane_mode_on").trim()) {
"0" -> false
"1" -> true
else -> throw IllegalStateException("Received invalid response from while trying to read airplane mode state: $fallbackResult")
}
}
"disabled" -> false
"enabled" -> true
else -> throw IllegalStateException("Received invalid response while trying to read airplane mode state: $result")
}
}
override fun setAirplaneMode(enabled: Boolean) {
// fallback to old way on API < 28
if (getDeviceApiLevel() < 28) {
val num = if (enabled) 1 else 0
shell("settings put global airplane_mode_on $num")
// We need to broadcast the change to really apply it
broadcastAirplaneMode(enabled)
return
}
val value = if (enabled) "enable" else "disable"
shell("cmd connectivity airplane-mode $value")
}
private fun broadcastAirplaneMode(enabled: Boolean) {
val command = "am broadcast -a android.intent.action.AIRPLANE_MODE --ez state $enabled"
try {
shell(command)
} catch (e: IOException) {
if (e.message?.contains("Security exception: Permission Denial:") == true) {
try {
shell("su root $command")
} catch (e: IOException) {
throw MaestroException.NoRootAccess("Failed to broadcast airplane mode change. Make sure to run an emulator with root access for API < 28")
}
}
}
}
fun setDeviceLocale(country: String, language: String): Int {
dadb.shell("pm grant dev.mobile.maestro android.permission.CHANGE_CONFIGURATION")
val response = dadb.shell("am broadcast -a dev.mobile.maestro.locale -n dev.mobile.maestro/.receivers.LocaleSettingReceiver --es lang $language --es country $country")
return extractSetLocaleResult(response.output)
}
private fun extractSetLocaleResult(result: String): Int {
val regex = Regex("result=(-?\\d+)")
val match = regex.find(result)
return match?.groups?.get(1)?.value?.toIntOrNull() ?: -1
}
private fun addMediaToDevice(mediaFile: File) {
val namedSource = NamedSource(
mediaFile.name,
mediaFile.source(),
mediaFile.extension,
mediaFile.path
)
val responseObserver = BlockingStreamObserver<MaestroAndroid.AddMediaResponse>()
val requestStream = asyncStub.addMedia(responseObserver)
val ext =
MediaExt.values().firstOrNull { it.extName == namedSource.extension } ?: throw IllegalArgumentException(
"Extension .${namedSource.extension} is not yet supported for add media"
)
val buffer = Buffer()
val source = namedSource.source
while (source.read(buffer, CHUNK_SIZE) != -1L) {
requestStream.onNext(
addMediaRequest {
this.payload = payload {
data = ByteString.copyFrom(buffer.readByteArray())
}
this.mediaName = namedSource.name
this.mediaExt = ext.extName
}
)
buffer.clear()
}
source.close()
requestStream.onCompleted()
responseObserver.awaitResult()
}
private fun setAllPermissions(appId: String, permissionValue: String) {
val permissionsResult = runCatching {
val apkFile = AndroidAppFiles.getApkFile(dadb, appId)
val permissions = ApkFile(apkFile).apkMeta.usesPermissions
apkFile.delete()
permissions
}
if (permissionsResult.isSuccess) {
permissionsResult.getOrNull()?.let {
it.forEach { permission ->
setPermissionInternal(appId, permission, translatePermissionValue(permissionValue))
}
}
}
}
private fun setPermissionInternal(appId: String, permission: String, permissionValue: String) {
try {
dadb.shell("pm $permissionValue $appId $permission")
} catch (exception: Exception) {
/* no-op */
}
}
private fun translatePermissionName(name: String): List<String> {
return when (name) {
"location" -> listOf(
"android.permission.ACCESS_FINE_LOCATION",
"android.permission.ACCESS_COARSE_LOCATION",
)
"camera" -> listOf("android.permission.CAMERA")
"contacts" -> listOf(
"android.permission.READ_CONTACTS",
"android.permission.WRITE_CONTACTS"
)
"phone" -> listOf(
"android.permission.CALL_PHONE",
"android.permission.ANSWER_PHONE_CALLS",
)
"microphone" -> listOf(
"android.permission.RECORD_AUDIO"
)
"bluetooth" -> listOf(
"android.permission.BLUETOOTH_CONNECT",
"android.permission.BLUETOOTH_SCAN",
)
"storage" -> listOf(
"android.permission.WRITE_EXTERNAL_STORAGE",
"android.permission.READ_EXTERNAL_STORAGE"
)
"notifications" -> listOf(
"android.permission.POST_NOTIFICATIONS"
)
"medialibrary" -> listOf(
"android.permission.WRITE_EXTERNAL_STORAGE",
"android.permission.READ_EXTERNAL_STORAGE",
"android.permission.READ_MEDIA_AUDIO",
"android.permission.READ_MEDIA_IMAGES",
"android.permission.READ_MEDIA_VIDEO"
)
"calendar" -> listOf(
"android.permission.WRITE_CALENDAR",
"android.permission.READ_CALENDAR"
)
"sms" -> listOf(
"android.permission.READ_SMS",
"android.permission.RECEIVE_SMS",
"android.permission.SEND_SMS"
)
else -> listOf(name.replace("[^A-Za-z0-9._]+".toRegex(), ""))
}
}
private fun translatePermissionValue(value: String): String {
return when (value) {
"allow" -> "grant"
"deny" -> "revoke"
"unset" -> "revoke"
else -> "revoke"
}
}
private fun mapHierarchy(node: Node): TreeNode {
val attributes = if (node is Element) {
val attributesBuilder = mutableMapOf<String, String>()
if (node.hasAttribute("text")) {
val text = node.getAttribute("text")
attributesBuilder["text"] = text
}
if (node.hasAttribute("content-desc")) {
attributesBuilder["accessibilityText"] = node.getAttribute("content-desc")
}
if (node.hasAttribute("hintText")) {
attributesBuilder["hintText"] = node.getAttribute("hintText")
}
if (node.hasAttribute("class") && node.getAttribute("class") == TOAST_CLASS_NAME) {
attributesBuilder["ignoreBoundsFiltering"] = true.toString()
} else {
attributesBuilder["ignoreBoundsFiltering"] = false.toString()
}
if (node.hasAttribute("resource-id")) {
attributesBuilder["resource-id"] = node.getAttribute("resource-id")
}
if (node.hasAttribute("clickable")) {
attributesBuilder["clickable"] = node.getAttribute("clickable")
}
if (node.hasAttribute("bounds")) {
attributesBuilder["bounds"] = node.getAttribute("bounds")
}
if (node.hasAttribute("enabled")) {
attributesBuilder["enabled"] = node.getAttribute("enabled")
}
if (node.hasAttribute("focused")) {
attributesBuilder["focused"] = node.getAttribute("focused")
}
if (node.hasAttribute("checked")) {
attributesBuilder["checked"] = node.getAttribute("checked")
}
if (node.hasAttribute("scrollable")) {
attributesBuilder["scrollable"] = node.getAttribute("scrollable")
}
if (node.hasAttribute("selected")) {
attributesBuilder["selected"] = node.getAttribute("selected")
}
if (node.hasAttribute("class")) {
attributesBuilder["class"] = node.getAttribute("class")
}
attributesBuilder
} else {
emptyMap()
}
val children = mutableListOf<TreeNode>()
val childNodes = node.childNodes
(0 until childNodes.length).forEach { i ->
children += mapHierarchy(childNodes.item(i))
}
return TreeNode(
attributes = attributes.toMutableMap(),
children = children,
clickable = node.getBoolean("clickable"),
enabled = node.getBoolean("enabled"),
focused = node.getBoolean("focused"),
checked = node.getBoolean("checked"),
selected = node.getBoolean("selected"),
)
}
private fun Node.getBoolean(name: String): Boolean? {
return (this as? Element)
?.getAttribute(name)
?.let { it == "true" }
}
fun installMaestroDriverApp() {
uninstallMaestroDriverApp()
val maestroAppApk = File.createTempFile("maestro-app", ".apk")
Maestro::class.java.getResourceAsStream("/maestro-app.apk")?.let {
val bufferedSink = maestroAppApk.sink().buffer()
bufferedSink.writeAll(it.source())
bufferedSink.flush()
}
install(maestroAppApk)
if (!isPackageInstalled("dev.mobile.maestro")) {
throw IllegalStateException("dev.mobile.maestro was not installed")
}
maestroAppApk.delete()
}
private fun installMaestroServerApp() {
uninstallMaestroServerApp()
val maestroServerApk = File.createTempFile("maestro-server", ".apk")
Maestro::class.java.getResourceAsStream("/maestro-server.apk")?.let {
val bufferedSink = maestroServerApk.sink().buffer()
bufferedSink.writeAll(it.source())
bufferedSink.flush()
}
install(maestroServerApk)
if (!isPackageInstalled("dev.mobile.maestro.test")) {
throw IllegalStateException("dev.mobile.maestro.test was not installed")
}
maestroServerApk.delete()
}
private fun installMaestroApks() {
installMaestroDriverApp()
installMaestroServerApp()
}
fun uninstallMaestroDriverApp() {
if (isPackageInstalled("dev.mobile.maestro")) {
uninstall("dev.mobile.maestro")