mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
Allow hyphens in iOS UDIDs (#62225)
This commit is contained in:
parent
50b7940b30
commit
5abe2d3364
@ -334,8 +334,9 @@ class XCDevice {
|
||||
}
|
||||
|
||||
// Attach: d83d5bc53967baa0ee18626ba87b6254b2ab5418
|
||||
// Attach: 00008027-00192736010F802E
|
||||
// Detach: d83d5bc53967baa0ee18626ba87b6254b2ab5418
|
||||
final RegExp _observationIdentifierPattern = RegExp(r'^(\w*): (\w*)$');
|
||||
final RegExp _observationIdentifierPattern = RegExp(r'^(\w*): ([\w-]*)$');
|
||||
|
||||
Future<void> _startObservingTetheredIOSDevices() async {
|
||||
try {
|
||||
@ -367,6 +368,7 @@ class XCDevice {
|
||||
//
|
||||
// Listening for all devices, on both interfaces.
|
||||
// Attach: d83d5bc53967baa0ee18626ba87b6254b2ab5418
|
||||
// Attach: 00008027-00192736010F802E
|
||||
// Detach: d83d5bc53967baa0ee18626ba87b6254b2ab5418
|
||||
// Attach: d83d5bc53967baa0ee18626ba87b6254b2ab5418
|
||||
final RegExpMatch match = _observationIdentifierPattern.firstMatch(line);
|
||||
|
||||
@ -356,8 +356,8 @@ void main() {
|
||||
);
|
||||
|
||||
device2 = IOSDevice(
|
||||
'43ad2fda7991b34fe1acbda82f9e2fd3d6ddc9f7',
|
||||
name: 'iPhone 6s',
|
||||
'00008027-00192736010F802E',
|
||||
name: 'iPad Pro',
|
||||
sdkVersion: '13.3',
|
||||
cpuArchitecture: DarwinArch.arm64,
|
||||
iProxy: IProxy.test(logger: logger, processManager: FakeProcessManager.any()),
|
||||
|
||||
@ -400,29 +400,37 @@ void main() {
|
||||
'observe',
|
||||
'--both',
|
||||
], stdout: 'Attach: d83d5bc53967baa0ee18626ba87b6254b2ab5418\n'
|
||||
'Detach: d83d5bc53967baa0ee18626ba87b6254b2ab5418',
|
||||
'Attach: 00008027-00192736010F802E\n'
|
||||
'Detach: d83d5bc53967baa0ee18626ba87b6254b2ab5418',
|
||||
stderr: 'Some error',
|
||||
));
|
||||
|
||||
final Completer<void> attach = Completer<void>();
|
||||
final Completer<void> detach = Completer<void>();
|
||||
final Completer<void> attach1 = Completer<void>();
|
||||
final Completer<void> attach2 = Completer<void>();
|
||||
final Completer<void> detach1 = Completer<void>();
|
||||
|
||||
// Attach: d83d5bc53967baa0ee18626ba87b6254b2ab5418
|
||||
// Attach: 00008027-00192736010F802E
|
||||
// Detach: d83d5bc53967baa0ee18626ba87b6254b2ab5418
|
||||
xcdevice.observedDeviceEvents().listen((Map<XCDeviceEvent, String> event) {
|
||||
expect(event.length, 1);
|
||||
if (event.containsKey(XCDeviceEvent.attach)) {
|
||||
expect(event[XCDeviceEvent.attach], 'd83d5bc53967baa0ee18626ba87b6254b2ab5418');
|
||||
attach.complete();
|
||||
if (event[XCDeviceEvent.attach] == 'd83d5bc53967baa0ee18626ba87b6254b2ab5418') {
|
||||
attach1.complete();
|
||||
} else
|
||||
if (event[XCDeviceEvent.attach] == '00008027-00192736010F802E') {
|
||||
attach2.complete();
|
||||
}
|
||||
} else if (event.containsKey(XCDeviceEvent.detach)) {
|
||||
expect(event[XCDeviceEvent.detach], 'd83d5bc53967baa0ee18626ba87b6254b2ab5418');
|
||||
detach.complete();
|
||||
detach1.complete();
|
||||
} else {
|
||||
fail('Unexpected event');
|
||||
}
|
||||
});
|
||||
await attach.future;
|
||||
await detach.future;
|
||||
await attach1.future;
|
||||
await attach2.future;
|
||||
await detach1.future;
|
||||
expect(logger.traceText, contains('xcdevice observe error: Some error'));
|
||||
});
|
||||
});
|
||||
@ -463,7 +471,7 @@ void main() {
|
||||
"available" : true,
|
||||
"platform" : "com.apple.platform.iphoneos",
|
||||
"modelCode" : "iPhone8,1",
|
||||
"identifier" : "d83d5bc53967baa0ee18626ba87b6254b2ab5418",
|
||||
"identifier" : "00008027-00192736010F802E",
|
||||
"architecture" : "arm64",
|
||||
"modelName" : "iPhone 6s",
|
||||
"name" : "An iPhone (Space Gray)"
|
||||
@ -542,7 +550,7 @@ void main() {
|
||||
));
|
||||
final List<IOSDevice> devices = await xcdevice.getAvailableIOSDevices();
|
||||
expect(devices, hasLength(3));
|
||||
expect(devices[0].id, 'd83d5bc53967baa0ee18626ba87b6254b2ab5418');
|
||||
expect(devices[0].id, '00008027-00192736010F802E');
|
||||
expect(devices[0].name, 'An iPhone (Space Gray)');
|
||||
expect(await devices[0].sdkNameAndVersion, 'iOS 13.3');
|
||||
expect(devices[0].cpuArchitecture, DarwinArch.arm64);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user