Unverified Commit 1eaa8c30 authored by Jenn Magder's avatar Jenn Magder Committed by GitHub

Swap xcode_tests from MockProcessManager to FakeProcessManager (#56502)

parent 1aaf73fa
...@@ -4,7 +4,6 @@ ...@@ -4,7 +4,6 @@
import 'package:file/memory.dart'; import 'package:file/memory.dart';
import 'package:flutter_tools/src/artifacts.dart'; import 'package:flutter_tools/src/artifacts.dart';
import 'package:flutter_tools/src/base/file_system.dart';
import 'package:flutter_tools/src/base/io.dart' show ProcessException, ProcessResult; import 'package:flutter_tools/src/base/io.dart' show ProcessException, ProcessResult;
import 'package:flutter_tools/src/base/logger.dart'; import 'package:flutter_tools/src/base/logger.dart';
import 'package:flutter_tools/src/base/platform.dart'; import 'package:flutter_tools/src/base/platform.dart';
...@@ -20,30 +19,31 @@ import '../../src/common.dart'; ...@@ -20,30 +19,31 @@ import '../../src/common.dart';
import '../../src/context.dart'; import '../../src/context.dart';
void main() { void main() {
ProcessManager processManager;
Logger logger; Logger logger;
setUp(() { setUp(() {
logger = BufferLogger.test(); logger = BufferLogger.test();
});
// Group exists to work around https://github.com/flutter/flutter/issues/56415.
// Do not add more `MockProcessManager` tests.
group('MockProcessManager', () {
ProcessManager processManager;
setUp(() {
processManager = MockProcessManager(); processManager = MockProcessManager();
}); });
group('Xcode', () { group('Xcode', () {
Xcode xcode; Xcode xcode;
MockXcodeProjectInterpreter mockXcodeProjectInterpreter;
MockPlatform platform;
FileSystem fileSystem;
setUp(() { setUp(() {
fileSystem = MemoryFileSystem();
mockXcodeProjectInterpreter = MockXcodeProjectInterpreter();
platform = MockPlatform();
xcode = Xcode( xcode = Xcode(
logger: logger, logger: logger,
platform: platform, platform: MockPlatform(),
fileSystem: fileSystem, fileSystem: MemoryFileSystem.test(),
processManager: processManager, processManager: processManager,
xcodeProjectInterpreter: mockXcodeProjectInterpreter, xcodeProjectInterpreter: MockXcodeProjectInterpreter(),
); );
}); });
...@@ -57,12 +57,98 @@ void main() { ...@@ -57,12 +57,98 @@ void main() {
expect(xcode.xcodeSelectPath, isNull); expect(xcode.xcodeSelectPath, isNull);
}); });
testWithoutContext('eulaSigned is false when clang is not installed', () {
when(processManager.runSync(<String>['/usr/bin/xcrun', 'clang']))
.thenThrow(const ProcessException('/usr/bin/xcrun', <String>['clang']));
expect(xcode.eulaSigned, isFalse);
});
});
group('xcdevice', () {
XCDevice xcdevice;
MockXcode mockXcode;
setUp(() {
mockXcode = MockXcode();
xcdevice = XCDevice(
processManager: processManager,
logger: logger,
xcode: mockXcode,
platform: null,
artifacts: MockArtifacts(),
cache: MockCache(),
);
});
testWithoutContext("xcrun can't find xcdevice", () {
when(mockXcode.isInstalledAndMeetsVersionCheck).thenReturn(true);
when(processManager.runSync(<String>['xcrun', '--find', 'xcdevice']))
.thenThrow(const ProcessException('xcrun', <String>['--find', 'xcdevice']));
expect(xcdevice.isInstalled, false);
verify(processManager.runSync(any)).called(1);
});
testWithoutContext('available devices xcdevice fails', () async {
when(mockXcode.isInstalledAndMeetsVersionCheck).thenReturn(true);
when(processManager.runSync(<String>['xcrun', '--find', 'xcdevice']))
.thenReturn(ProcessResult(1, 0, '/path/to/xcdevice', ''));
when(processManager.run(<String>['xcrun', 'xcdevice', 'list', '--timeout', '2']))
.thenThrow(const ProcessException('xcrun', <String>['xcdevice', 'list', '--timeout', '2']));
expect(await xcdevice.getAvailableTetheredIOSDevices(), isEmpty);
});
testWithoutContext('diagnostics xcdevice fails', () async {
when(mockXcode.isInstalledAndMeetsVersionCheck).thenReturn(true);
when(processManager.runSync(<String>['xcrun', '--find', 'xcdevice']))
.thenReturn(ProcessResult(1, 0, '/path/to/xcdevice', ''));
when(processManager.run(<String>['xcrun', 'xcdevice', 'list', '--timeout', '2']))
.thenThrow(const ProcessException('xcrun', <String>['xcdevice', 'list', '--timeout', '2']));
expect(await xcdevice.getDiagnostics(), isEmpty);
});
});
});
group('FakeProcessManager', () {
FakeProcessManager fakeProcessManager;
setUp(() {
fakeProcessManager = FakeProcessManager.list(<FakeCommand>[]);
});
group('Xcode', () {
Xcode xcode;
MockXcodeProjectInterpreter mockXcodeProjectInterpreter;
MockPlatform platform;
setUp(() {
mockXcodeProjectInterpreter = MockXcodeProjectInterpreter();
platform = MockPlatform();
xcode = Xcode(
logger: logger,
platform: platform,
fileSystem: MemoryFileSystem.test(),
processManager: fakeProcessManager,
xcodeProjectInterpreter: mockXcodeProjectInterpreter,
);
});
testWithoutContext('xcodeSelectPath returns path when xcode-select is installed', () { testWithoutContext('xcodeSelectPath returns path when xcode-select is installed', () {
const String xcodePath = '/Applications/Xcode8.0.app/Contents/Developer'; const String xcodePath = '/Applications/Xcode8.0.app/Contents/Developer';
when(processManager.runSync(<String>['/usr/bin/xcode-select', '--print-path'])) fakeProcessManager.addCommand(const FakeCommand(
.thenReturn(ProcessResult(1, 0, xcodePath, '')); command: <String>['/usr/bin/xcode-select', '--print-path'],
stdout: xcodePath,
));
expect(xcode.xcodeSelectPath, xcodePath); expect(xcode.xcodeSelectPath, xcodePath);
expect(fakeProcessManager.hasRemainingExpectations, isFalse);
}); });
testWithoutContext('xcodeVersionSatisfactory is false when version is less than minimum', () { testWithoutContext('xcodeVersionSatisfactory is false when version is less than minimum', () {
...@@ -111,68 +197,79 @@ void main() { ...@@ -111,68 +197,79 @@ void main() {
testWithoutContext('isInstalledAndMeetsVersionCheck is false when not installed', () { testWithoutContext('isInstalledAndMeetsVersionCheck is false when not installed', () {
when(platform.isMacOS).thenReturn(true); when(platform.isMacOS).thenReturn(true);
const String xcodePath = '/Applications/Xcode8.0.app/Contents/Developer'; fakeProcessManager.addCommand(const FakeCommand(
when(processManager.runSync(<String>['/usr/bin/xcode-select', '--print-path'])) command: <String>['/usr/bin/xcode-select', '--print-path'],
.thenReturn(ProcessResult(1, 0, xcodePath, '')); stdout: '/Applications/Xcode8.0.app/Contents/Developer',
));
when(mockXcodeProjectInterpreter.isInstalled).thenReturn(false); when(mockXcodeProjectInterpreter.isInstalled).thenReturn(false);
expect(xcode.isInstalledAndMeetsVersionCheck, isFalse); expect(xcode.isInstalledAndMeetsVersionCheck, isFalse);
expect(fakeProcessManager.hasRemainingExpectations, isFalse);
}); });
testWithoutContext('isInstalledAndMeetsVersionCheck is false when no xcode-select', () { testWithoutContext('isInstalledAndMeetsVersionCheck is false when no xcode-select', () {
when(platform.isMacOS).thenReturn(true); when(platform.isMacOS).thenReturn(true);
when(processManager.runSync(<String>['/usr/bin/xcode-select', '--print-path'])) fakeProcessManager.addCommand(const FakeCommand(
.thenReturn(ProcessResult(1, 127, '', 'ERROR')); command: <String>['/usr/bin/xcode-select', '--print-path'],
exitCode: 127,
stderr: 'ERROR',
));
when(mockXcodeProjectInterpreter.isInstalled).thenReturn(true); when(mockXcodeProjectInterpreter.isInstalled).thenReturn(true);
when(mockXcodeProjectInterpreter.majorVersion).thenReturn(11); when(mockXcodeProjectInterpreter.majorVersion).thenReturn(11);
when(mockXcodeProjectInterpreter.minorVersion).thenReturn(0); when(mockXcodeProjectInterpreter.minorVersion).thenReturn(0);
expect(xcode.isInstalledAndMeetsVersionCheck, isFalse); expect(xcode.isInstalledAndMeetsVersionCheck, isFalse);
expect(fakeProcessManager.hasRemainingExpectations, isFalse);
}); });
testWithoutContext('isInstalledAndMeetsVersionCheck is false when version not satisfied', () { testWithoutContext('isInstalledAndMeetsVersionCheck is false when version not satisfied', () {
when(platform.isMacOS).thenReturn(true); when(platform.isMacOS).thenReturn(true);
const String xcodePath = '/Applications/Xcode8.0.app/Contents/Developer'; fakeProcessManager.addCommand(const FakeCommand(
when(processManager.runSync(<String>['/usr/bin/xcode-select', '--print-path'])) command: <String>['/usr/bin/xcode-select', '--print-path'],
.thenReturn(ProcessResult(1, 0, xcodePath, '')); stdout: '/Applications/Xcode8.0.app/Contents/Developer',
));
when(mockXcodeProjectInterpreter.isInstalled).thenReturn(true); when(mockXcodeProjectInterpreter.isInstalled).thenReturn(true);
when(mockXcodeProjectInterpreter.majorVersion).thenReturn(10); when(mockXcodeProjectInterpreter.majorVersion).thenReturn(10);
when(mockXcodeProjectInterpreter.minorVersion).thenReturn(2); when(mockXcodeProjectInterpreter.minorVersion).thenReturn(2);
expect(xcode.isInstalledAndMeetsVersionCheck, isFalse); expect(xcode.isInstalledAndMeetsVersionCheck, isFalse);
expect(fakeProcessManager.hasRemainingExpectations, isFalse);
}); });
testWithoutContext('isInstalledAndMeetsVersionCheck is true when macOS and installed and version is satisfied', () { testWithoutContext('isInstalledAndMeetsVersionCheck is true when macOS and installed and version is satisfied', () {
when(platform.isMacOS).thenReturn(true); when(platform.isMacOS).thenReturn(true);
const String xcodePath = '/Applications/Xcode8.0.app/Contents/Developer'; fakeProcessManager.addCommand(const FakeCommand(
when(processManager.runSync(<String>['/usr/bin/xcode-select', '--print-path'])) command: <String>['/usr/bin/xcode-select', '--print-path'],
.thenReturn(ProcessResult(1, 0, xcodePath, '')); stdout: '/Applications/Xcode8.0.app/Contents/Developer',
));
when(mockXcodeProjectInterpreter.isInstalled).thenReturn(true); when(mockXcodeProjectInterpreter.isInstalled).thenReturn(true);
when(mockXcodeProjectInterpreter.majorVersion).thenReturn(11); when(mockXcodeProjectInterpreter.majorVersion).thenReturn(11);
when(mockXcodeProjectInterpreter.minorVersion).thenReturn(0); when(mockXcodeProjectInterpreter.minorVersion).thenReturn(0);
expect(xcode.isInstalledAndMeetsVersionCheck, isTrue); expect(xcode.isInstalledAndMeetsVersionCheck, isTrue);
}); expect(fakeProcessManager.hasRemainingExpectations, isFalse);
testWithoutContext('eulaSigned is false when clang is not installed', () {
when(processManager.runSync(<String>['/usr/bin/xcrun', 'clang']))
.thenThrow(const ProcessException('/usr/bin/xcrun', <String>['clang']));
expect(xcode.eulaSigned, isFalse);
}); });
testWithoutContext('eulaSigned is false when clang output indicates EULA not yet accepted', () { testWithoutContext('eulaSigned is false when clang output indicates EULA not yet accepted', () {
when(processManager.runSync(<String>['/usr/bin/xcrun', 'clang'])) fakeProcessManager.addCommand(const FakeCommand(
.thenReturn(ProcessResult(1, 1, '', 'Xcode EULA has not been accepted.\nLaunch Xcode and accept the license.')); command: <String>['/usr/bin/xcrun', 'clang'],
exitCode: 1,
stderr: 'Xcode EULA has not been accepted.\nLaunch Xcode and accept the license.',
));
expect(xcode.eulaSigned, isFalse); expect(xcode.eulaSigned, isFalse);
expect(fakeProcessManager.hasRemainingExpectations, isFalse);
}); });
testWithoutContext('eulaSigned is true when clang output indicates EULA has been accepted', () { testWithoutContext('eulaSigned is true when clang output indicates EULA has been accepted', () {
when(processManager.runSync(<String>['/usr/bin/xcrun', 'clang'])) fakeProcessManager.addCommand(const FakeCommand(
.thenReturn(ProcessResult(1, 1, '', 'clang: error: no input files')); command: <String>['/usr/bin/xcrun', 'clang'],
exitCode: 1,
stderr: 'clang: error: no input files',
));
expect(xcode.eulaSigned, isTrue); expect(xcode.eulaSigned, isTrue);
expect(fakeProcessManager.hasRemainingExpectations, isFalse);
}); });
testWithoutContext('SDK name', () { testWithoutContext('SDK name', () {
...@@ -185,25 +282,35 @@ void main() { ...@@ -185,25 +282,35 @@ void main() {
const String sdkroot = 'Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.2.sdk'; const String sdkroot = 'Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS13.2.sdk';
testWithoutContext('--show-sdk-path iphoneos', () async { testWithoutContext('--show-sdk-path iphoneos', () async {
when(processManager.run(<String>['xcrun', '--sdk', 'iphoneos', '--show-sdk-path'])).thenAnswer((_) => fakeProcessManager.addCommand(const FakeCommand(
Future<ProcessResult>.value(ProcessResult(1, 0, sdkroot, ''))); command: <String>['xcrun', '--sdk', 'iphoneos', '--show-sdk-path'],
stdout: sdkroot,
));
expect(await xcode.sdkLocation(SdkType.iPhone), sdkroot); expect(await xcode.sdkLocation(SdkType.iPhone), sdkroot);
expect(fakeProcessManager.hasRemainingExpectations, isFalse);
}); });
testWithoutContext('--show-sdk-path macosx', () async { testWithoutContext('--show-sdk-path macosx', () async {
when(processManager.run(<String>['xcrun', '--sdk', 'macosx', '--show-sdk-path'])).thenAnswer((_) => fakeProcessManager.addCommand(const FakeCommand(
Future<ProcessResult>.value(ProcessResult(1, 0, sdkroot, ''))); command: <String>['xcrun', '--sdk', 'macosx', '--show-sdk-path'],
stdout: sdkroot,
));
expect(await xcode.sdkLocation(SdkType.macOS), sdkroot); expect(await xcode.sdkLocation(SdkType.macOS), sdkroot);
expect(fakeProcessManager.hasRemainingExpectations, isFalse);
}); });
testWithoutContext('--show-sdk-path fails', () async { testWithoutContext('--show-sdk-path fails', () async {
when(processManager.run(<String>['xcrun', '--sdk', 'iphoneos', '--show-sdk-path'])).thenAnswer((_) => fakeProcessManager.addCommand(const FakeCommand(
Future<ProcessResult>.value(ProcessResult(1, 1, '', 'xcrun: error:'))); command: <String>['xcrun', '--sdk', 'iphoneos', '--show-sdk-path'],
exitCode: 1,
stderr: 'xcrun: error:',
));
expect(() async => await xcode.sdkLocation(SdkType.iPhone), expect(() async => await xcode.sdkLocation(SdkType.iPhone),
throwsToolExit(message: 'Could not find SDK location')); throwsToolExit(message: 'Could not find SDK location'));
expect(fakeProcessManager.hasRemainingExpectations, isFalse);
}); });
}); });
}); });
...@@ -219,7 +326,7 @@ void main() { ...@@ -219,7 +326,7 @@ void main() {
mockArtifacts = MockArtifacts(); mockArtifacts = MockArtifacts();
mockCache = MockCache(); mockCache = MockCache();
xcdevice = XCDevice( xcdevice = XCDevice(
processManager: processManager, processManager: fakeProcessManager,
logger: logger, logger: logger,
xcode: mockXcode, xcode: mockXcode,
platform: null, platform: null,
...@@ -234,21 +341,15 @@ void main() { ...@@ -234,21 +341,15 @@ void main() {
expect(xcdevice.isInstalled, false); expect(xcdevice.isInstalled, false);
}); });
testWithoutContext("xcrun can't find xcdevice", () {
when(mockXcode.isInstalledAndMeetsVersionCheck).thenReturn(true);
when(processManager.runSync(<String>['xcrun', '--find', 'xcdevice']))
.thenThrow(const ProcessException('xcrun', <String>['--find', 'xcdevice']));
expect(xcdevice.isInstalled, false);
verify(processManager.runSync(any)).called(1);
});
testWithoutContext('is installed', () { testWithoutContext('is installed', () {
when(mockXcode.isInstalledAndMeetsVersionCheck).thenReturn(true); when(mockXcode.isInstalledAndMeetsVersionCheck).thenReturn(true);
fakeProcessManager.addCommand(const FakeCommand(
command: <String>['xcrun', '--find', 'xcdevice'],
stdout: '/path/to/xcdevice',
));
when(processManager.runSync(<String>['xcrun', '--find', 'xcdevice']))
.thenReturn(ProcessResult(1, 0, '/path/to/xcdevice', ''));
expect(xcdevice.isInstalled, true); expect(xcdevice.isInstalled, true);
expect(fakeProcessManager.hasRemainingExpectations, isFalse);
}); });
}); });
...@@ -258,27 +359,15 @@ void main() { ...@@ -258,27 +359,15 @@ void main() {
testWithoutContext('Xcode not installed', () async { testWithoutContext('Xcode not installed', () async {
when(mockXcode.isInstalledAndMeetsVersionCheck).thenReturn(false); when(mockXcode.isInstalledAndMeetsVersionCheck).thenReturn(false);
expect(await xcdevice.getAvailableTetheredIOSDevices(), isEmpty);
verifyNever(processManager.run(any));
});
testWithoutContext('xcdevice fails', () async {
when(mockXcode.isInstalledAndMeetsVersionCheck).thenReturn(true);
when(processManager.runSync(<String>['xcrun', '--find', 'xcdevice']))
.thenReturn(ProcessResult(1, 0, '/path/to/xcdevice', ''));
when(processManager.run(<String>['xcrun', 'xcdevice', 'list', '--timeout', '2']))
.thenThrow(const ProcessException('xcrun', <String>['xcdevice', 'list', '--timeout', '2']));
expect(await xcdevice.getAvailableTetheredIOSDevices(), isEmpty); expect(await xcdevice.getAvailableTetheredIOSDevices(), isEmpty);
}); });
testUsingContext('returns devices', () async { testUsingContext('returns devices', () async {
when(mockXcode.isInstalledAndMeetsVersionCheck).thenReturn(true); when(mockXcode.isInstalledAndMeetsVersionCheck).thenReturn(true);
fakeProcessManager.addCommand(const FakeCommand(
when(processManager.runSync(<String>['xcrun', '--find', 'xcdevice'])) command: <String>['xcrun', '--find', 'xcdevice'],
.thenReturn(ProcessResult(1, 0, '/path/to/xcdevice', '')); stdout: '/path/to/xcdevice',
));
const String devicesOutput = ''' const String devicesOutput = '''
[ [
...@@ -373,8 +462,10 @@ void main() { ...@@ -373,8 +462,10 @@ void main() {
] ]
'''; ''';
when(processManager.run(<String>['xcrun', 'xcdevice', 'list', '--timeout', '2'])) fakeProcessManager.addCommand(const FakeCommand(
.thenAnswer((_) => Future<ProcessResult>.value(ProcessResult(1, 0, devicesOutput, ''))); command: <String>['xcrun', 'xcdevice', 'list', '--timeout', '2'],
stdout: devicesOutput,
));
final List<IOSDevice> devices = await xcdevice.getAvailableTetheredIOSDevices(); final List<IOSDevice> devices = await xcdevice.getAvailableTetheredIOSDevices();
expect(devices, hasLength(3)); expect(devices, hasLength(3));
expect(devices[0].id, 'd83d5bc53967baa0ee18626ba87b6254b2ab5418'); expect(devices[0].id, 'd83d5bc53967baa0ee18626ba87b6254b2ab5418');
...@@ -389,27 +480,32 @@ void main() { ...@@ -389,27 +480,32 @@ void main() {
expect(devices[2].name, 'iPad 2'); expect(devices[2].name, 'iPad 2');
expect(await devices[2].sdkNameAndVersion, 'iOS 10.1'); expect(await devices[2].sdkNameAndVersion, 'iOS 10.1');
expect(devices[2].cpuArchitecture, DarwinArch.arm64); // Defaults to arm64 for unknown architecture. expect(devices[2].cpuArchitecture, DarwinArch.arm64); // Defaults to arm64 for unknown architecture.
expect(fakeProcessManager.hasRemainingExpectations, isFalse);
}, overrides: <Type, Generator>{ }, overrides: <Type, Generator>{
Platform: () => macPlatform, Platform: () => macPlatform,
}); });
testWithoutContext('uses timeout', () async { testWithoutContext('uses timeout', () async {
when(mockXcode.isInstalledAndMeetsVersionCheck).thenReturn(true); when(mockXcode.isInstalledAndMeetsVersionCheck).thenReturn(true);
fakeProcessManager.addCommand(const FakeCommand(
when(processManager.runSync(<String>['xcrun', '--find', 'xcdevice'])) command: <String>['xcrun', '--find', 'xcdevice'],
.thenReturn(ProcessResult(1, 0, '/path/to/xcdevice', '')); stdout: '/path/to/xcdevice',
));
when(processManager.run(any))
.thenAnswer((_) => Future<ProcessResult>.value(ProcessResult(1, 0, '[]', ''))); fakeProcessManager.addCommand(const FakeCommand(
command: <String>['xcrun', 'xcdevice', 'list', '--timeout', '20'],
stdout: '[]',
));
await xcdevice.getAvailableTetheredIOSDevices(timeout: const Duration(seconds: 20)); await xcdevice.getAvailableTetheredIOSDevices(timeout: const Duration(seconds: 20));
verify(processManager.run(<String>['xcrun', 'xcdevice', 'list', '--timeout', '20'])).called(1); expect(fakeProcessManager.hasRemainingExpectations, isFalse);
}); });
testUsingContext('ignores "Preparing debugger support for iPhone" error', () async { testUsingContext('ignores "Preparing debugger support for iPhone" error', () async {
when(mockXcode.isInstalledAndMeetsVersionCheck).thenReturn(true); when(mockXcode.isInstalledAndMeetsVersionCheck).thenReturn(true);
fakeProcessManager.addCommand(const FakeCommand(
when(processManager.runSync(<String>['xcrun', '--find', 'xcdevice'])) command: <String>['xcrun', '--find', 'xcdevice'],
.thenReturn(ProcessResult(1, 0, '/path/to/xcdevice', '')); stdout: '/path/to/xcdevice',
));
const String devicesOutput = ''' const String devicesOutput = '''
[ [
...@@ -435,20 +531,24 @@ void main() { ...@@ -435,20 +531,24 @@ void main() {
] ]
'''; ''';
when(processManager.run(<String>['xcrun', 'xcdevice', 'list', '--timeout', '2'])) fakeProcessManager.addCommand(const FakeCommand(
.thenAnswer((_) => Future<ProcessResult>.value(ProcessResult(1, 0, devicesOutput, ''))); command: <String>['xcrun', 'xcdevice', 'list', '--timeout', '2'],
stdout: devicesOutput,
));
final List<IOSDevice> devices = await xcdevice.getAvailableTetheredIOSDevices(); final List<IOSDevice> devices = await xcdevice.getAvailableTetheredIOSDevices();
expect(devices, hasLength(1)); expect(devices, hasLength(1));
expect(devices[0].id, '43ad2fda7991b34fe1acbda82f9e2fd3d6ddc9f7'); expect(devices[0].id, '43ad2fda7991b34fe1acbda82f9e2fd3d6ddc9f7');
expect(fakeProcessManager.hasRemainingExpectations, isFalse);
}, overrides: <Type, Generator>{ }, overrides: <Type, Generator>{
Platform: () => macPlatform, Platform: () => macPlatform,
}); });
testUsingContext('handles unknown architectures', () async { testUsingContext('handles unknown architectures', () async {
when(mockXcode.isInstalledAndMeetsVersionCheck).thenReturn(true); when(mockXcode.isInstalledAndMeetsVersionCheck).thenReturn(true);
fakeProcessManager.addCommand(const FakeCommand(
when(processManager.runSync(<String>['xcrun', '--find', 'xcdevice'])) command: <String>['xcrun', '--find', 'xcdevice'],
.thenReturn(ProcessResult(1, 0, '/path/to/xcdevice', '')); stdout: '/path/to/xcdevice',
));
const String devicesOutput = ''' const String devicesOutput = '''
[ [
...@@ -479,11 +579,14 @@ void main() { ...@@ -479,11 +579,14 @@ void main() {
] ]
'''; ''';
when(processManager.run(<String>['xcrun', 'xcdevice', 'list', '--timeout', '2'])) fakeProcessManager.addCommand(const FakeCommand(
.thenAnswer((_) => Future<ProcessResult>.value(ProcessResult(1, 0, devicesOutput, ''))); command: <String>['xcrun', 'xcdevice', 'list', '--timeout', '2'],
stdout: devicesOutput,
));
final List<IOSDevice> devices = await xcdevice.getAvailableTetheredIOSDevices(); final List<IOSDevice> devices = await xcdevice.getAvailableTetheredIOSDevices();
expect(devices[0].cpuArchitecture, DarwinArch.armv7); expect(devices[0].cpuArchitecture, DarwinArch.armv7);
expect(devices[1].cpuArchitecture, DarwinArch.arm64); expect(devices[1].cpuArchitecture, DarwinArch.arm64);
expect(fakeProcessManager.hasRemainingExpectations, isFalse);
}, overrides: <Type, Generator>{ }, overrides: <Type, Generator>{
Platform: () => macPlatform, Platform: () => macPlatform,
}); });
...@@ -495,27 +598,15 @@ void main() { ...@@ -495,27 +598,15 @@ void main() {
testWithoutContext('Xcode not installed', () async { testWithoutContext('Xcode not installed', () async {
when(mockXcode.isInstalledAndMeetsVersionCheck).thenReturn(false); when(mockXcode.isInstalledAndMeetsVersionCheck).thenReturn(false);
expect(await xcdevice.getDiagnostics(), isEmpty);
verifyNever(processManager.run(any));
});
testWithoutContext('xcdevice fails', () async {
when(mockXcode.isInstalledAndMeetsVersionCheck).thenReturn(true);
when(processManager.runSync(<String>['xcrun', '--find', 'xcdevice']))
.thenReturn(ProcessResult(1, 0, '/path/to/xcdevice', ''));
when(processManager.run(<String>['xcrun', 'xcdevice', 'list', '--timeout', '2']))
.thenThrow(const ProcessException('xcrun', <String>['xcdevice', 'list', '--timeout', '2']));
expect(await xcdevice.getDiagnostics(), isEmpty); expect(await xcdevice.getDiagnostics(), isEmpty);
}); });
testUsingContext('uses cache', () async { testUsingContext('uses cache', () async {
when(mockXcode.isInstalledAndMeetsVersionCheck).thenReturn(true); when(mockXcode.isInstalledAndMeetsVersionCheck).thenReturn(true);
fakeProcessManager.addCommand(const FakeCommand(
when(processManager.runSync(<String>['xcrun', '--find', 'xcdevice'])) command: <String>['xcrun', '--find', 'xcdevice'],
.thenReturn(ProcessResult(1, 0, '/path/to/xcdevice', '')); stdout: '/path/to/xcdevice',
));
const String devicesOutput = ''' const String devicesOutput = '''
[ [
...@@ -538,22 +629,25 @@ void main() { ...@@ -538,22 +629,25 @@ void main() {
] ]
'''; ''';
when(processManager.run(<String>['xcrun', 'xcdevice', 'list', '--timeout', '2'])) fakeProcessManager.addCommand(const FakeCommand(
.thenAnswer((_) => Future<ProcessResult>.value(ProcessResult(1, 0, devicesOutput, ''))); command: <String>['xcrun', 'xcdevice', 'list', '--timeout', '2'],
stdout: devicesOutput,
));
await xcdevice.getAvailableTetheredIOSDevices(); await xcdevice.getAvailableTetheredIOSDevices();
final List<String> errors = await xcdevice.getDiagnostics(); final List<String> errors = await xcdevice.getDiagnostics();
expect(errors, hasLength(1)); expect(errors, hasLength(1));
expect(fakeProcessManager.hasRemainingExpectations, isFalse);
verify(processManager.run(any)).called(1);
}, overrides: <Type, Generator>{ }, overrides: <Type, Generator>{
Platform: () => macPlatform, Platform: () => macPlatform,
}); });
testUsingContext('returns error message', () async { testUsingContext('returns error message', () async {
when(mockXcode.isInstalledAndMeetsVersionCheck).thenReturn(true); when(mockXcode.isInstalledAndMeetsVersionCheck).thenReturn(true);
fakeProcessManager.addCommand(const FakeCommand(
when(processManager.runSync(<String>['xcrun', '--find', 'xcdevice'])) command: <String>['xcrun', '--find', 'xcdevice'],
.thenReturn(ProcessResult(1, 0, '/path/to/xcdevice', '')); stdout: '/path/to/xcdevice',
));
const String devicesOutput = ''' const String devicesOutput = '''
[ [
...@@ -640,19 +734,24 @@ void main() { ...@@ -640,19 +734,24 @@ void main() {
] ]
'''; ''';
when(processManager.run(<String>['xcrun', 'xcdevice', 'list', '--timeout', '2'])) fakeProcessManager.addCommand(const FakeCommand(
.thenAnswer((_) => Future<ProcessResult>.value(ProcessResult(1, 0, devicesOutput, ''))); command: <String>['xcrun', 'xcdevice', 'list', '--timeout', '2'],
stdout: devicesOutput,
));
final List<String> errors = await xcdevice.getDiagnostics(); final List<String> errors = await xcdevice.getDiagnostics();
expect(errors, hasLength(4)); expect(errors, hasLength(4));
expect(errors[0], 'Error: iPhone is not paired with your computer. To use iPhone with Xcode, unlock it and choose to trust this computer when prompted. (code -9)'); expect(errors[0], 'Error: iPhone is not paired with your computer. To use iPhone with Xcode, unlock it and choose to trust this computer when prompted. (code -9)');
expect(errors[1], 'Error: iPhone is not paired with your computer.'); expect(errors[1], 'Error: iPhone is not paired with your computer.');
expect(errors[2], 'Error: Xcode pairing error. (code -13)'); expect(errors[2], 'Error: Xcode pairing error. (code -13)');
expect(errors[3], 'Error: iPhone is busy: Preparing debugger support for iPhone. Xcode will continue when iPhone is finished. (code -10)'); expect(errors[3], 'Error: iPhone is busy: Preparing debugger support for iPhone. Xcode will continue when iPhone is finished. (code -10)');
expect(fakeProcessManager.hasRemainingExpectations, isFalse);
}, overrides: <Type, Generator>{ }, overrides: <Type, Generator>{
Platform: () => macPlatform, Platform: () => macPlatform,
}); });
}); });
}); });
});
} }
class MockXcode extends Mock implements Xcode {} class MockXcode extends Mock implements Xcode {}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment