// Copyright 2018 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. import 'package:mockito/mockito.dart'; import 'package:flutter_tools/src/base/file_system.dart'; import 'package:flutter_tools/src/base/platform.dart'; import 'package:flutter_tools/src/cache.dart'; import 'package:flutter_tools/src/macos/macos_workflow.dart'; import '../src/common.dart'; import '../src/context.dart'; void main() { group(MacOSWorkflow, () { final MockPlatform mac = MockPlatform(); final MockPlatform notMac = MockPlatform(); when(mac.isMacOS).thenReturn(true); when(notMac.isMacOS).thenReturn(false); testUsingContext('Applies to mac platform', () { expect(macOSWorkflow.appliesToHostPlatform, true); }, overrides: { Platform: () => mac, }); testUsingContext('Does not apply to non-mac platform', () { expect(macOSWorkflow.appliesToHostPlatform, false); }, overrides: { Platform: () => notMac, }); final MockFileSystem fileSystem = MockFileSystem(); final MockDirectory directory = MockDirectory(); Cache.flutterRoot = ''; when(fileSystem.directory(Cache.flutterRoot)).thenReturn(directory); when(directory.parent).thenReturn(directory); when(directory.childDirectory('flutter-desktop-embedding')).thenReturn(directory); when(directory.existsSync()).thenReturn(true); testUsingContext('defaults', () { expect(macOSWorkflow.canListEmulators, false); expect(macOSWorkflow.canLaunchDevices, true); expect(macOSWorkflow.canListDevices, true); }, overrides: { Platform: () => mac, FileSystem: () => fileSystem, }); }); } class MockFileSystem extends Mock implements FileSystem {} class MockDirectory extends Mock implements Directory {} class MockPlatform extends Mock implements Platform { @override Map get environment => const {}; }