-
Notifications
You must be signed in to change notification settings - Fork 68
Expand file tree
/
Copy pathAdbClientTests.cs
More file actions
1286 lines (1116 loc) · 46 KB
/
AdbClientTests.cs
File metadata and controls
1286 lines (1116 loc) · 46 KB
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
using System;
using System.Collections.Generic;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Net;
using System.Text;
using Xunit;
namespace AdvancedSharpAdbClient.Tests
{
/// <summary>
/// Tests the <see cref="AdbClient"/> class.
/// </summary>
public partial class AdbClientTests : SocketBasedTests
{
/// <summary>
/// Toggle the integration test flag to true to run on an actual adb server
/// (and to build/validate the test cases), set to false to use the mocked
/// adb sockets.
/// In release mode, this flag is ignored and the mocked adb sockets are always used.
/// </summary>
public AdbClientTests() : base(integrationTest: false, doDispose: false)
{
}
/// <summary>
/// Tests the <see cref="AdbClient(EndPoint, Func{EndPoint, IAdbSocket})"/> method.
/// </summary>
[Fact]
public void ConstructorNullTest() =>
_ = Assert.Throws<ArgumentNullException>(() => new AdbClient(null, Factories.AdbSocketFactory));
/// <summary>
/// Tests the <see cref="AdbClient(EndPoint, Func{EndPoint, IAdbSocket})"/> method.
/// </summary>
[Fact]
public void ConstructorInvalidEndPointTest() =>
_ = Assert.Throws<NotSupportedException>(() => new AdbClient(new CustomEndPoint(), Factories.AdbSocketFactory));
/// <summary>
/// Tests the <see cref="AdbClient()"/> method.
/// </summary>
[Fact]
public void ConstructorTest()
{
AdbClient adbClient = new();
Assert.NotNull(adbClient);
Assert.NotNull(adbClient.EndPoint);
Assert.IsType<IPEndPoint>(adbClient.EndPoint);
IPEndPoint endPoint = (IPEndPoint)adbClient.EndPoint;
Assert.Equal(IPAddress.Loopback, endPoint.Address);
Assert.Equal(AdbClient.AdbServerPort, endPoint.Port);
}
/// <summary>
/// Tests the <see cref="AdbClient.FormAdbRequest(string)"/> method.
/// </summary>
[Fact]
public void FormAdbRequestTest()
{
Assert.Equal("0009host:kill"u8, AdbClient.FormAdbRequest("host:kill"));
Assert.Equal("000Chost:version"u8, AdbClient.FormAdbRequest("host:version"));
}
/// <summary>
/// Tests the <see cref="AdbClient.FormAdbRequest(ReadOnlySpan{char})"/> method.
/// </summary>
[Fact]
public void FormAdbRequestSpanTest()
{
Assert.Equal("0009host:kill"u8, AdbClient.FormAdbRequest("host:kill".AsSpan()));
Assert.Equal("000Chost:version"u8, AdbClient.FormAdbRequest("host:version".AsSpan()));
}
/// <summary>
/// Tests the <see cref="AdbClient.CreateAdbForwardRequest(string, int)"/> method.
/// </summary>
[Fact]
public void CreateAdbForwardRequestTest()
{
Assert.Equal("0008tcp:1984"u8, AdbClient.CreateAdbForwardRequest(null, 1984));
Assert.Equal("0012tcp:1981:127.0.0.1"u8, AdbClient.CreateAdbForwardRequest("127.0.0.1", 1981));
}
/// <summary>
/// Tests the <see cref="AdbClient.CreateAdbForwardRequest(ReadOnlySpan{char}, int)"/> method.
/// </summary>
[Fact]
public void CreateAdbForwardRequestSpanTest()
{
Assert.Equal("0008tcp:1984"u8, AdbClient.CreateAdbForwardRequest([], 1984));
Assert.Equal("0012tcp:1981:127.0.0.1"u8, AdbClient.CreateAdbForwardRequest("127.0.0.1".AsSpan(), 1981));
}
/// <summary>
/// Tests the <see cref="AdbClient.GetAdbVersion"/> method.
/// </summary>
[Fact]
public void GetAdbVersionTest()
{
string[] responseMessages = ["0020"];
string[] requests = ["host:version"];
int version = RunTest(
OkResponse,
responseMessages,
requests,
TestClient.GetAdbVersion);
// Make sure and the correct value is returned.
Assert.Equal(32, version);
}
/// <summary>
/// Tests the <see cref="AdbClient.KillAdb"/> method.
/// </summary>
[Fact]
public void KillAdbTest()
{
string[] requests = ["host:kill"];
RunTest(
NoResponses,
NoResponseMessages,
requests,
TestClient.KillAdb);
}
/// <summary>
/// Tests the <see cref="AdbClient.GetDevices"/> method.
/// </summary>
[Fact]
public void GetDevicesTest()
{
string[] responseMessages = ["169.254.109.177:5555 device product:VS Emulator 5\" KitKat (4.4) XXHDPI Phone model:5__KitKat__4_4__XXHDPI_Phone device:donatello\n"];
string[] requests = ["host:devices-l"];
DeviceData[] devices = RunTest(
OkResponse,
responseMessages,
requests,
() => TestClient.GetDevices().ToArray());
// Make sure and the correct value is returned.
Assert.NotNull(devices);
Assert.Single(devices);
DeviceData device = devices.SingleOrDefault();
Assert.Equal("169.254.109.177:5555", device.Serial);
Assert.Equal(DeviceState.Online, device.State);
Assert.Equal("5__KitKat__4_4__XXHDPI_Phone", device.Model);
Assert.Equal("donatello", device.Name);
}
/// <summary>
/// Tests the <see cref="IAdbSocket.SetDevice(DeviceData)"/> method.
/// </summary>
[Fact]
public void SetDeviceTest()
{
string[] requests = ["host:transport:169.254.109.177:5555"];
RunTest(
OkResponse,
NoResponseMessages,
requests,
() => Socket.SetDevice(Device));
}
/// <summary>
/// Tests the <see cref="IAdbSocket.SetDevice(DeviceData)"/> method.
/// </summary>
[Fact]
public void SetInvalidDeviceTest()
{
string[] requests = ["host:transport:169.254.109.177:5555"];
_ = Assert.Throws<DeviceNotFoundException>(() =>
RunTest(
[AdbResponse.FromError("device not found")],
NoResponseMessages,
requests,
() => Socket.SetDevice(Device)));
}
/// <summary>
/// Tests the <see cref="IAdbSocket.SetDevice(DeviceData)"/> method.
/// </summary>
[Fact]
public void SetDeviceOtherException()
{
string[] requests = ["host:transport:169.254.109.177:5555"];
_ = Assert.Throws<AdbException>(() =>
RunTest(
[AdbResponse.FromError("Too many cats.")],
NoResponseMessages,
requests,
() => Socket.SetDevice(Device)));
}
/// <summary>
/// Tests the <see cref="AdbClient.CreateForward(DeviceData, string, string, bool)"/> method.
/// </summary>
[Fact]
public void CreateForwardTest() =>
RunCreateForwardTest(
device => TestClient.CreateForward(device, "tcp:1", "tcp:2", true),
"tcp:1;tcp:2");
/// <summary>
/// Tests the <see cref="AdbClient.CreateReverseForward(DeviceData, string, string, bool)"/> method.
/// </summary>
[Fact]
public void CreateReverseTest() =>
RunCreateReverseTest(
device => TestClient.CreateReverseForward(device, "tcp:1", "tcp:2", true),
"tcp:1;tcp:2");
/// <summary>
/// Tests the <see cref="AdbClientExtensions.CreateForward(IAdbClient, DeviceData, int, int)"/> method.
/// </summary>
[Fact]
public void CreateTcpForwardTest() =>
RunCreateForwardTest(
device => TestClient.CreateForward(device, 3, 4),
"tcp:3;tcp:4");
/// <summary>
/// Tests the <see cref="AdbClientExtensions.CreateForward(IAdbClient, DeviceData, int, string)"/> method.
/// </summary>
[Fact]
public void CreateSocketForwardTest() =>
RunCreateForwardTest(
device => TestClient.CreateForward(device, 5, "/socket/1"),
"tcp:5;local:/socket/1");
/// <summary>
/// Tests the <see cref="AdbClient.CreateForward(DeviceData, string, string, bool)"/> method.
/// </summary>
[Fact]
public void CreateDuplicateForwardTest()
{
AdbResponse[] responses = [AdbResponse.FromError("cannot rebind existing socket")];
string[] requests = ["host-serial:169.254.109.177:5555:forward:norebind:tcp:1;tcp:2"];
_ = Assert.Throws<AdbException>(() =>
RunTest(
responses,
NoResponseMessages,
requests,
() => TestClient.CreateForward(Device, "tcp:1", "tcp:2", false)));
}
/// <summary>
/// Tests the <see cref="AdbClient.RemoveForward(DeviceData, int)"/> method.
/// </summary>
[Fact]
public void RemoveForwardTest()
{
string[] requests = ["host-serial:169.254.109.177:5555:killforward:tcp:1"];
RunTest(
OkResponse,
NoResponseMessages,
requests,
() => TestClient.RemoveForward(Device, 1));
}
/// <summary>
/// Tests the <see cref="AdbClient.RemoveReverseForward(DeviceData, string)"/> method.
/// </summary>
[Fact]
public void RemoveReverseForwardTest()
{
string[] requests =
[
"host:transport:169.254.109.177:5555",
"reverse:killforward:localabstract:test"
];
RunTest(
OkResponses(2),
NoResponseMessages,
requests,
() => TestClient.RemoveReverseForward(Device, "localabstract:test"));
}
/// <summary>
/// Tests the <see cref="AdbClient.RemoveAllForwards(DeviceData)"/> method.
/// </summary>
[Fact]
public void RemoveAllForwardsTest()
{
string[] requests = ["host-serial:169.254.109.177:5555:killforward-all"];
RunTest(
OkResponse,
NoResponseMessages,
requests,
() => TestClient.RemoveAllForwards(Device));
}
/// <summary>
/// Tests the <see cref="AdbClient.RemoveAllReverseForwards(DeviceData)"/> method.
/// </summary>
[Fact]
public void RemoveAllReversesTest()
{
string[] requests =
[
"host:transport:169.254.109.177:5555",
"reverse:killforward-all"
];
RunTest(
OkResponses(2),
NoResponseMessages,
requests,
() => TestClient.RemoveAllReverseForwards(Device));
}
/// <summary>
/// Tests the <see cref="AdbClient.ListForward(DeviceData)"/> method.
/// </summary>
[Fact]
public void ListForwardTest()
{
string[] responseMessages = ["169.254.109.177:5555 tcp:1 tcp:2\n169.254.109.177:5555 tcp:3 tcp:4\n169.254.109.177:5555 tcp:5 local:/socket/1\n"];
string[] requests = ["host-serial:169.254.109.177:5555:list-forward"];
ForwardData[] forwards = RunTest(
OkResponse,
responseMessages,
requests,
() => TestClient.ListForward(Device).ToArray());
Assert.NotNull(forwards);
Assert.Equal(3, forwards.Length);
Assert.Equal("169.254.109.177:5555", forwards[0].SerialNumber);
Assert.Equal("tcp:1", forwards[0].Local);
Assert.Equal("tcp:2", forwards[0].Remote);
}
/// <summary>
/// Tests the <see cref="AdbClient.ListReverseForward(DeviceData)"/> method.
/// </summary>
[Fact]
public void ListReverseForwardTest()
{
string[] responseMessages = ["(reverse) localabstract:scrcpy tcp:100\n(reverse) localabstract: scrcpy2 tcp:100\n(reverse) localabstract: scrcpy3 tcp:100\n"];
string[] requests =
[
"host:transport:169.254.109.177:5555",
"reverse:list-forward"
];
ForwardData[] forwards = RunTest(
OkResponses(2),
responseMessages,
requests,
() => TestClient.ListReverseForward(Device).ToArray());
Assert.NotNull(forwards);
Assert.Equal(3, forwards.Length);
Assert.Equal("(reverse)", forwards[0].SerialNumber);
Assert.Equal("localabstract:scrcpy", forwards[0].Local);
Assert.Equal("tcp:100", forwards[0].Remote);
}
/// <summary>
/// Tests the <see cref="AdbClient.ExecuteServerCommand(string, string, IAdbSocket, IShellOutputReceiver?, Encoding)"/> method.
/// </summary>
[Fact]
public void ExecuteServerCommandTest()
{
string[] requests = ["host:version"];
byte[] streamData = "0020"u8.ToArray();
using MemoryStream shellStream = new(streamData);
ConsoleOutputReceiver receiver = new();
RunTest(
OkResponse,
NoResponseMessages,
requests,
[shellStream],
() => TestClient.ExecuteServerCommand("host", "version", receiver, AdbClient.Encoding));
string version = receiver.ToString();
Assert.Equal("0020\r\n", receiver.ToString(), ignoreLineEndingDifferences: true);
Assert.Equal(32, int.Parse(version, NumberStyles.HexNumber));
}
/// <summary>
/// Tests the <see cref="AdbClient.ExecuteRemoteCommand(string, DeviceData, IShellOutputReceiver?, Encoding)"/> method.
/// </summary>
[Fact]
public void ExecuteRemoteCommandTest()
{
string[] requests =
[
"host:transport:169.254.109.177:5555",
"shell:echo Hello, World"
];
byte[] streamData = "Hello, World\r\n"u8.ToArray();
using MemoryStream shellStream = new(streamData);
ConsoleOutputReceiver receiver = new();
RunTest(
OkResponses(2),
NoResponseMessages,
requests,
[shellStream],
() => TestClient.ExecuteRemoteCommand("echo Hello, World", Device, receiver, AdbClient.Encoding));
Assert.Equal("Hello, World\r\n", receiver.ToString(), ignoreLineEndingDifferences: true);
}
/// <summary>
/// Tests the <see cref="AdbClient.ExecuteRemoteCommand(string, DeviceData, IShellOutputReceiver?, Encoding)"/> method.
/// </summary>
[Fact]
public void ExecuteRemoteCommandUnresponsiveTest()
{
string[] requests =
[
"host:transport:169.254.109.177:5555",
"shell:echo Hello, World"
];
ConsoleOutputReceiver receiver = new();
_ = Assert.Throws<ShellCommandUnresponsiveException>(() =>
RunTest(
OkResponses(2),
NoResponseMessages,
requests,
null,
() => TestClient.ExecuteRemoteCommand("echo Hello, World", Device, receiver, AdbClient.Encoding)));
}
/// <summary>
/// Tests the <see cref="AdbClient.CreateFramebuffer(DeviceData)"/> method.
/// </summary>
[Fact]
public void CreateFramebufferTest()
{
Framebuffer framebuffer = TestClient.CreateFramebuffer(Device);
Assert.NotNull(framebuffer);
Assert.Equal(Device, framebuffer.Device);
Assert.Equal(default, framebuffer.Header);
Assert.Null(framebuffer.Data);
}
/// <summary>
/// Tests the <see cref="AdbClient.GetFrameBuffer(DeviceData)"/> method.
/// </summary>
[Fact]
public void GetFrameBufferTest()
{
string[] requests =
[
"host:transport:169.254.109.177:5555",
"framebuffer:"
];
Framebuffer framebuffer = RunTest(
OkResponses(2),
NoResponseMessages,
requests,
NoSyncRequests,
NoSyncResponses,
[
File.ReadAllBytes("Assets/FramebufferHeader.bin"),
File.ReadAllBytes("Assets/Framebuffer.bin")
],
null,
() => TestClient.GetFrameBuffer(Device));
Assert.NotNull(framebuffer);
Assert.Equal(Device, framebuffer.Device);
Assert.Equal(16, framebuffer.Data.Length);
FramebufferHeader header = framebuffer.Header;
Assert.Equal(8u, header.Alpha.Length);
Assert.Equal(24u, header.Alpha.Offset);
Assert.Equal(8u, header.Green.Length);
Assert.Equal(8u, header.Green.Offset);
Assert.Equal(8u, header.Red.Length);
Assert.Equal(0u, header.Red.Offset);
Assert.Equal(8u, header.Blue.Length);
Assert.Equal(16u, header.Blue.Offset);
Assert.Equal(32u, header.Bpp);
Assert.Equal(4u, header.Size);
Assert.Equal(1u, header.Height);
Assert.Equal(1u, header.Width);
Assert.Equal(1u, header.Version);
Assert.Equal(0u, header.ColorSpace);
#if HAS_IMAGING
if (!OperatingSystem.IsWindows()) { return; }
using Bitmap image = framebuffer.ToImage();
Assert.NotNull(image);
Assert.Equal(PixelFormat.Format32bppArgb, image.PixelFormat);
Assert.Equal(1, image.Width);
Assert.Equal(1, image.Height);
Color pixel = image.GetPixel(0, 0);
Assert.Equal(0x35, pixel.R);
Assert.Equal(0x4a, pixel.G);
Assert.Equal(0x4c, pixel.B);
Assert.Equal(0xff, pixel.A);
#endif
framebuffer.Dispose();
}
/// <summary>
/// Tests the <see cref="AdbClient.RunLogService(DeviceData, Action{LogEntry}, in bool, LogId[])"/> method.
/// </summary>
[Fact]
public void RunLogServiceTest()
{
string[] requests =
[
"host:transport:169.254.109.177:5555",
"shell:logcat -B -b system"
];
ConsoleOutputReceiver receiver = new();
using FileStream stream = File.OpenRead("Assets/Logcat.bin");
using ShellStream shellStream = new(stream, false);
List<LogEntry> logs = [];
Action<LogEntry> sink = logs.Add;
RunTest(
OkResponses(2),
NoResponseMessages,
requests,
[shellStream],
() => TestClient.RunLogService(Device, sink, LogId.System));
Assert.Equal(3, logs.Count);
}
/// <summary>
/// Tests the <see cref="AdbClient.RunLogService(DeviceData, LogId[])"/> method.
/// </summary>
[Fact]
public void RunLogServiceEnumerableTest()
{
string[] requests =
[
"host:transport:169.254.109.177:5555",
"shell:logcat -B -b system"
];
ConsoleOutputReceiver receiver = new();
using FileStream stream = File.OpenRead("Assets/Logcat.bin");
using ShellStream shellStream = new(stream, false);
LogEntry[] logs = RunTest(
OkResponses(2),
NoResponseMessages,
requests,
[shellStream],
() => TestClient.RunLogService(Device, LogId.System).ToArray());
Assert.Equal(3, logs.Length);
}
/// <summary>
/// Tests the <see cref="AdbClientExtensions.Reboot(IAdbClient, DeviceData)"/> method.
/// </summary>
[Fact]
public void RebootTest()
{
string[] requests =
[
"host:transport:169.254.109.177:5555",
"reboot:"
];
RunTest(
OkResponses(2),
NoResponseMessages,
requests,
() => TestClient.Reboot(Device));
}
/// <summary>
/// Tests the <see cref="AdbClientExtensions.Pair(IAdbClient, IPAddress, string)"/> method.
/// </summary>
[Fact]
public void PairIPAddressTest() =>
RunPairTest(
() => TestClient.Pair(IPAddress.Loopback, "114514"),
"127.0.0.1:5555",
"114514");
/// <summary>
/// Tests the <see cref="AdbClientExtensions.Pair(IAdbClient, DnsEndPoint, string)"/> method.
/// </summary>
[Fact]
public void PairDnsEndpointTest() =>
RunPairTest(
() => TestClient.Pair(new DnsEndPoint("localhost", 1234), "114514"),
"localhost:1234",
"114514");
/// <summary>
/// Tests the <see cref="AdbClientExtensions.Pair(IAdbClient, IPEndPoint, string)"/> method.
/// </summary>
[Fact]
public void PairIPEndpointTest() =>
RunPairTest(
() => TestClient.Pair(new IPEndPoint(IPAddress.Loopback, 4321), "114514"),
"127.0.0.1:4321",
"114514");
/// <summary>
/// Tests the <see cref="AdbClientExtensions.Pair(IAdbClient, string, string)"/> method.
/// </summary>
[Fact]
public void PairHostEndpointTest() =>
RunPairTest(
() => TestClient.Pair("localhost:9926", "114514"),
"localhost:9926",
"114514");
/// <summary>
/// Tests the <see cref="AdbClientExtensions.Pair(IAdbClient, IPAddress, string)"/> method.
/// </summary>
[Fact]
public void PairIPAddressNullTest() =>
_ = Assert.Throws<ArgumentNullException>(() => TestClient.Pair((IPAddress)null, "114514"));
/// <summary>
/// Tests the <see cref="AdbClientExtensions.Pair(IAdbClient, DnsEndPoint, string)"/> method.
/// </summary>
[Fact]
public void PairDnsEndpointNullTest() =>
_ = Assert.Throws<ArgumentNullException>(() => TestClient.Pair((DnsEndPoint)null, "114514"));
/// <summary>
/// Tests the <see cref="AdbClientExtensions.Pair(IAdbClient, IPEndPoint, string)"/> method.
/// </summary>
[Fact]
public void PairIPEndpointNullTest() =>
_ = Assert.Throws<ArgumentNullException>(() => TestClient.Pair((IPEndPoint)null, "114514"));
/// <summary>
/// Tests the <see cref="AdbClientExtensions.Pair(IAdbClient, string, string)"/> method.
/// </summary>
[Fact]
public void PairHostEndpointNullTest() =>
_ = Assert.Throws<ArgumentNullException>(() => TestClient.Pair((string)null, "114514"));
/// <summary>
/// Tests the <see cref="AdbClientExtensions.Connect(IAdbClient, IPAddress)"/> method.
/// </summary>
[Fact]
public void ConnectIPAddressTest() =>
RunConnectTest(
() => TestClient.Connect(IPAddress.Loopback),
"127.0.0.1:5555");
/// <summary>
/// Tests the <see cref="AdbClientExtensions.Connect(IAdbClient, DnsEndPoint)"/> method.
/// </summary>
[Fact]
public void ConnectDnsEndpointTest() =>
RunConnectTest(
() => TestClient.Connect(new DnsEndPoint("localhost", 1234)),
"localhost:1234");
/// <summary>
/// Tests the <see cref="AdbClientExtensions.Connect(IAdbClient, IPEndPoint)"/> method.
/// </summary>
[Fact]
public void ConnectIPEndpointTest() =>
RunConnectTest(
() => TestClient.Connect(new IPEndPoint(IPAddress.Loopback, 4321)),
"127.0.0.1:4321");
/// <summary>
/// Tests the <see cref="AdbClient.Connect(string, int)"/> method.
/// </summary>
[Fact]
public void ConnectHostEndpointTest() =>
RunConnectTest(
() => TestClient.Connect("localhost:9926"),
"localhost:9926");
/// <summary>
/// Tests the <see cref="AdbClientExtensions.Connect(IAdbClient, IPAddress)"/> method.
/// </summary>
[Fact]
public void ConnectIPAddressNullTest() =>
_ = Assert.Throws<ArgumentNullException>(() => TestClient.Connect((IPAddress)null));
/// <summary>
/// Tests the <see cref="AdbClientExtensions.Connect(IAdbClient, DnsEndPoint)"/> method.
/// </summary>
[Fact]
public void ConnectDnsEndpointNullTest() =>
_ = Assert.Throws<ArgumentNullException>(() => TestClient.Connect((DnsEndPoint)null));
/// <summary>
/// Tests the <see cref="AdbClientExtensions.Connect(IAdbClient, IPEndPoint)"/> method.
/// </summary>
[Fact]
public void ConnectIPEndpointNullTest() =>
_ = Assert.Throws<ArgumentNullException>(() => TestClient.Connect((IPEndPoint)null));
/// <summary>
/// Tests the <see cref="AdbClient.Connect(string, int)"/> method.
/// </summary>
[Fact]
public void ConnectHostEndpointNullTest() =>
_ = Assert.Throws<ArgumentNullException>(() => TestClient.Connect(null));
/// <summary>
/// Tests the <see cref="AdbClientExtensions.Disconnect(IAdbClient, DnsEndPoint)"/> method.
/// </summary>
[Fact]
public void DisconnectTest()
{
string[] requests = ["host:disconnect:localhost:5555"];
string[] responseMessages = ["disconnected 127.0.0.1:5555"];
RunTest(
OkResponse,
responseMessages,
requests,
() => TestClient.Disconnect(new DnsEndPoint("localhost", 5555)));
}
/// <summary>
/// Tests the <see cref="AdbClient.Root(DeviceData)"/> method.
/// </summary>
[Fact]
public void RootTest()
{
string[] requests =
[
"host:transport:169.254.109.177:5555",
"root:"
];
byte[] expectedData = new byte[1024];
"adbd cannot run as root in production builds\n"u8.CopyTo(expectedData);
_ = Assert.Throws<AdbException>(() =>
RunTest(
OkResponses(2),
NoResponseMessages,
requests,
NoSyncRequests,
NoSyncResponses,
[expectedData],
null,
() => TestClient.Root(Device)));
}
/// <summary>
/// Tests the <see cref="AdbClient.Unroot(DeviceData)"/> method.
/// </summary>
[Fact]
public void UnrootTest()
{
string[] requests =
[
"host:transport:169.254.109.177:5555",
"unroot:"
];
byte[] expectedData = new byte[1024];
"adbd not running as root\n"u8.CopyTo(expectedData);
_ = Assert.Throws<AdbException>(() =>
RunTest(
OkResponses(2),
NoResponseMessages,
requests,
NoSyncRequests,
NoSyncResponses,
[expectedData],
null,
() => TestClient.Unroot(Device)));
}
/// <summary>
/// Tests the <see cref="AdbClient.Install(DeviceData, Stream, Action{InstallProgressEventArgs}?, string[])"/> method.
/// </summary>
[Fact]
public void InstallTest()
{
// The app data is sent in chunks of 32 kb
List<byte[]> applicationDataChunks = [];
using (FileStream stream = File.OpenRead("Assets/TestApp/base.apk"))
{
byte[] buffer = new byte[32 * 1024];
int read = 0;
while ((read = stream.Read(buffer.AsSpan(0, buffer.Length))) > 0)
{
byte[] array = buffer.AsSpan(0, read).ToArray();
applicationDataChunks.Add(array);
}
}
byte[] response = "Success\n"u8.ToArray();
using (FileStream stream = File.OpenRead("Assets/TestApp/base.apk"))
{
string[] requests =
[
"host:transport:169.254.109.177:5555",
$"exec:cmd package 'install' -S {stream.Length}"
];
RunTest(
OkResponses(2),
NoResponseMessages,
requests,
NoSyncRequests,
NoSyncResponses,
[response],
applicationDataChunks,
() => TestClient.Install(Device, stream,
new InstallProgress(
PackageInstallProgressState.Preparing,
PackageInstallProgressState.Uploading,
PackageInstallProgressState.Installing,
PackageInstallProgressState.Finished)));
}
}
/// <summary>
/// Tests the <see cref="AdbClient.InstallMultiple(DeviceData, IEnumerable{Stream}, string, Action{InstallProgressEventArgs}?, string[])"/> method.
/// </summary>
[Fact]
public void InstallMultipleTest()
{
// The app data is sent in chunks of 32 kb
List<byte[]> applicationDataChunks = [];
using (FileStream stream = File.OpenRead("Assets/TestApp/split_config.arm64_v8a.apk"))
{
byte[] buffer = new byte[32 * 1024];
int read = 0;
while ((read = stream.Read(buffer.AsSpan(0, buffer.Length))) > 0)
{
byte[] array = buffer.AsSpan(0, read).ToArray();
applicationDataChunks.Add(array);
}
}
using (FileStream stream = File.OpenRead("Assets/TestApp/split_config.xxhdpi.apk"))
{
byte[] buffer = new byte[32 * 1024];
int read = 0;
while ((read = stream.Read(buffer.AsSpan(0, buffer.Length))) > 0)
{
byte[] array = buffer.AsSpan(0, read).ToArray();
applicationDataChunks.Add(array);
}
}
using FileStream abiStream = File.OpenRead("Assets/TestApp/split_config.arm64_v8a.apk");
using FileStream dpiStream = File.OpenRead("Assets/TestApp/split_config.xxhdpi.apk");
string[] requests =
[
"host:transport:169.254.109.177:5555",
"exec:cmd package 'install-create' -p com.google.android.gms",
"host:transport:169.254.109.177:5555",
$"exec:cmd package 'install-write' -S {abiStream.Length} 936013062 splitAPK0.apk",
"host:transport:169.254.109.177:5555",
$"exec:cmd package 'install-write' -S {dpiStream.Length} 936013062 splitAPK1.apk",
"host:transport:169.254.109.177:5555",
"exec:cmd package 'install-commit' 936013062"
];
byte[][] responses =
[
AdbClient.Encoding.GetBytes($"Success: streamed {abiStream.Length} bytes\n"),
AdbClient.Encoding.GetBytes($"Success: streamed {dpiStream.Length} bytes\n")
];
using MemoryStream sessionStream = new("Success: created install session [936013062]\r\n"u8.ToArray());
using MemoryStream commitStream = new("Success\n"u8.ToArray());
RunTest(
OkResponses(8),
NoResponseMessages,
requests,
NoSyncRequests,
NoSyncResponses,
responses,
applicationDataChunks,
[sessionStream, commitStream],
() => TestClient.InstallMultiple(Device, [abiStream, dpiStream], "com.google.android.gms",
new InstallProgress(
PackageInstallProgressState.Preparing,
PackageInstallProgressState.CreateSession,
PackageInstallProgressState.Uploading,
PackageInstallProgressState.Installing,
PackageInstallProgressState.Finished)));
}
/// <summary>
/// Tests the <see cref="AdbClient.InstallMultiple(DeviceData, Stream, IEnumerable{Stream}, Action{InstallProgressEventArgs}?, string[])"/> method.
/// </summary>
[Fact]
public void InstallMultipleWithBaseTest()
{
// The app data is sent in chunks of 32 kb
List<byte[]> applicationDataChunks = [];
using (FileStream stream = File.OpenRead("Assets/TestApp/base.apk"))
{
byte[] buffer = new byte[32 * 1024];
int read = 0;
while ((read = stream.Read(buffer.AsSpan(0, buffer.Length))) > 0)
{
byte[] array = buffer.AsSpan(0, read).ToArray();
applicationDataChunks.Add(array);
}
}
using (FileStream stream = File.OpenRead("Assets/TestApp/split_config.arm64_v8a.apk"))
{
byte[] buffer = new byte[32 * 1024];
int read = 0;
while ((read = stream.Read(buffer.AsSpan(0, buffer.Length))) > 0)
{
byte[] array = buffer.AsSpan(0, read).ToArray();
applicationDataChunks.Add(array);
}
}
using (FileStream stream = File.OpenRead("Assets/TestApp/split_config.xxhdpi.apk"))
{
byte[] buffer = new byte[32 * 1024];
int read = 0;
while ((read = stream.Read(buffer.AsSpan(0, buffer.Length))) > 0)
{
byte[] array = buffer.AsSpan(0, read).ToArray();
applicationDataChunks.Add(array);
}
}
using FileStream baseStream = File.OpenRead("Assets/TestApp/base.apk");
using FileStream abiStream = File.OpenRead("Assets/TestApp/split_config.arm64_v8a.apk");
using FileStream dpiStream = File.OpenRead("Assets/TestApp/split_config.xxhdpi.apk");
string[] requests =
[
"host:transport:169.254.109.177:5555",
"exec:cmd package 'install-create'",
"host:transport:169.254.109.177:5555",
$"exec:cmd package 'install-write' -S {baseStream.Length} 936013062 baseAPK.apk",
"host:transport:169.254.109.177:5555",
$"exec:cmd package 'install-write' -S {abiStream.Length} 936013062 splitAPK0.apk",
"host:transport:169.254.109.177:5555",
$"exec:cmd package 'install-write' -S {dpiStream.Length} 936013062 splitAPK1.apk",
"host:transport:169.254.109.177:5555",
"exec:cmd package 'install-commit' 936013062"
];
byte[][] responses =
[
AdbClient.Encoding.GetBytes($"Success: streamed {baseStream.Length} bytes\n"),
AdbClient.Encoding.GetBytes($"Success: streamed {abiStream.Length} bytes\n"),
AdbClient.Encoding.GetBytes($"Success: streamed {dpiStream.Length} bytes\n")
];
using MemoryStream sessionStream = new("Success: created install session [936013062]\r\n"u8.ToArray());