// Copyright 2014 The Flutter Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // @dart = 2.8 import 'package:file/file.dart'; import 'package:file/memory.dart'; import 'package:file_testing/file_testing.dart'; import 'package:flutter_tools/src/android/android_sdk.dart'; import 'package:flutter_tools/src/base/file_system.dart'; import 'package:flutter_tools/src/base/io.dart'; import 'package:flutter_tools/src/base/logger.dart'; import 'package:flutter_tools/src/base/os.dart'; import 'package:flutter_tools/src/base/platform.dart'; import 'package:flutter_tools/src/cache.dart'; import 'package:flutter_tools/src/dart/pub.dart'; import 'package:flutter_tools/src/flutter_cache.dart'; import 'package:meta/meta.dart'; import 'package:mockito/mockito.dart'; import '../src/common.dart'; import '../src/context.dart'; import '../src/fakes.dart'; const FakeCommand unameCommandForX64 = FakeCommand( command: [ 'uname', '-m', ], stdout: 'x86_64', ); const FakeCommand unameCommandForArm64 = FakeCommand( command: [ 'uname', '-m', ], stdout: 'aarch64', ); void main() { FakeProcessManager fakeProcessManager; setUp(() { fakeProcessManager = FakeProcessManager.empty(); }); Cache createCache(Platform platform) { return Cache.test( platform: platform, processManager: fakeProcessManager ); } group('Cache.checkLockAcquired', () { setUp(() { Cache.enableLocking(); }); tearDown(() { // Restore locking to prevent potential side-effects in // tests outside this group (this option is globally shared). Cache.enableLocking(); }); testWithoutContext('should throw when locking is not acquired', () { final Cache cache = Cache.test(processManager: FakeProcessManager.any()); expect(cache.checkLockAcquired, throwsStateError); }); testWithoutContext('should not throw when locking is disabled', () { final Cache cache = Cache.test(processManager: FakeProcessManager.any()); Cache.disableLocking(); expect(cache.checkLockAcquired, returnsNormally); }); testWithoutContext('should not throw when lock is acquired', () async { Cache.flutterRoot = ''; final FileSystem fileSystem = MemoryFileSystem.test(); final Cache cache = Cache.test(fileSystem: fileSystem, processManager: FakeProcessManager.any()); fileSystem.file(fileSystem.path.join('bin', 'cache', 'lockfile')) .createSync(recursive: true); await cache.lock(); expect(cache.checkLockAcquired, returnsNormally); expect(cache.releaseLock, returnsNormally); }, skip: true); // TODO(jonahwilliams): implement support for lock so this can be tested with the memory file system. testWithoutContext('throws tool exit when lockfile open fails', () async { final FileSystem fileSystem = MemoryFileSystem.test(); final Cache cache = Cache.test(fileSystem: fileSystem, processManager: FakeProcessManager.any()); fileSystem.file(fileSystem.path.join('bin', 'cache', 'lockfile')) .createSync(recursive: true); expect(() async => cache.lock(), throwsToolExit()); }, skip: true); // TODO(jonahwilliams): implement support for lock so this can be tested with the memory file system. testWithoutContext('should not throw when FLUTTER_ALREADY_LOCKED is set', () { final Cache cache = Cache.test( platform: FakePlatform(environment: { 'FLUTTER_ALREADY_LOCKED': 'true', }), processManager: FakeProcessManager.any(), ); expect(cache.checkLockAcquired, returnsNormally); }); }); group('Cache', () { testWithoutContext('Continues on failed stamp file update', () async { final FileSystem fileSystem = MemoryFileSystem.test(); final BufferLogger logger = BufferLogger.test(); final Cache mockCache = MockCache(); final Directory artifactDir = fileSystem.systemTempDirectory.createTempSync('flutter_cache_test_artifact.'); final Directory downloadDir = fileSystem.systemTempDirectory.createTempSync('flutter_cache_test_download.'); when(mockCache.getVersionFor(any)).thenReturn('asdasd'); when(mockCache.getArtifactDirectory(any)).thenReturn(artifactDir); when(mockCache.getDownloadDir()).thenReturn(downloadDir); when(mockCache.setStampFor(any, any)).thenAnswer((_) { throw const FileSystemException('stamp write failed'); }); final FakeSimpleArtifact artifact = FakeSimpleArtifact(mockCache); await artifact.update(FakeArtifactUpdater(), logger, fileSystem, FakeOperatingSystemUtils()); expect(logger.errorText, contains('stamp write failed')); }); testWithoutContext('Continues on missing version file', () async { final FileSystem fileSystem = MemoryFileSystem.test(); final BufferLogger logger = BufferLogger.test(); final Cache mockCache = MockCache(); final Directory artifactDir = fileSystem.systemTempDirectory.createTempSync('flutter_cache_test_artifact.'); final Directory downloadDir = fileSystem.systemTempDirectory.createTempSync('flutter_cache_test_download.'); when(mockCache.getVersionFor(any)).thenReturn(null); // version is missing. when(mockCache.getArtifactDirectory(any)).thenReturn(artifactDir); when(mockCache.getDownloadDir()).thenReturn(downloadDir); final FakeSimpleArtifact artifact = FakeSimpleArtifact(mockCache); await artifact.update(FakeArtifactUpdater(), logger, fileSystem, FakeOperatingSystemUtils()); expect(logger.errorText, contains('No known version for the artifact name "fake"')); }); testWithoutContext('Gradle wrapper should not be up to date, if some cached artifact is not available', () { final FileSystem fileSystem = MemoryFileSystem.test(); final Cache cache = Cache.test(fileSystem: fileSystem, processManager: FakeProcessManager.any()); final GradleWrapper gradleWrapper = GradleWrapper(cache); final Directory directory = cache.getCacheDir(fileSystem.path.join('artifacts', 'gradle_wrapper')); fileSystem.file(fileSystem.path.join(directory.path, 'gradle', 'wrapper', 'gradle-wrapper.jar')).createSync(recursive: true); expect(gradleWrapper.isUpToDateInner(fileSystem), false); }); testWithoutContext('Gradle wrapper will delete .properties/NOTICES if they exist', () async { final FileSystem fileSystem = MemoryFileSystem.test(); final Cache cache = Cache.test(fileSystem: fileSystem, processManager: FakeProcessManager.any()); final OperatingSystemUtils operatingSystemUtils = OperatingSystemUtils( processManager: FakeProcessManager.any(), platform: FakePlatform(), logger: BufferLogger.test(), fileSystem: fileSystem, ); final GradleWrapper gradleWrapper = GradleWrapper(cache); final Directory directory = cache.getCacheDir(fileSystem.path.join('artifacts', 'gradle_wrapper')); final File propertiesFile = fileSystem.file(fileSystem.path.join(directory.path, 'gradle', 'wrapper', 'gradle-wrapper.properties')) ..createSync(recursive: true); final File noticeFile = fileSystem.file(fileSystem.path.join(directory.path, 'NOTICE')) ..createSync(recursive: true); await gradleWrapper.updateInner(FakeArtifactUpdater(), fileSystem, operatingSystemUtils); expect(propertiesFile, isNot(exists)); expect(noticeFile, isNot(exists)); }); testWithoutContext('Gradle wrapper should be up to date, only if all cached artifact are available', () { final FileSystem fileSystem = MemoryFileSystem.test(); final Cache cache = Cache.test(fileSystem: fileSystem, processManager: FakeProcessManager.any()); final GradleWrapper gradleWrapper = GradleWrapper(cache); final Directory directory = cache.getCacheDir(fileSystem.path.join('artifacts', 'gradle_wrapper')); fileSystem.file(fileSystem.path.join(directory.path, 'gradle', 'wrapper', 'gradle-wrapper.jar')).createSync(recursive: true); fileSystem.file(fileSystem.path.join(directory.path, 'gradlew')).createSync(recursive: true); fileSystem.file(fileSystem.path.join(directory.path, 'gradlew.bat')).createSync(recursive: true); expect(gradleWrapper.isUpToDateInner(fileSystem), true); }); testWithoutContext('should not be up to date, if some cached artifact is not', () async { final CachedArtifact artifact1 = MockCachedArtifact(); final CachedArtifact artifact2 = MockCachedArtifact(); final FileSystem fileSystem = MemoryFileSystem.test(); when(artifact1.isUpToDate(fileSystem)).thenAnswer((Invocation _) => Future.value(true)); when(artifact2.isUpToDate(fileSystem)).thenAnswer((Invocation _) => Future.value(false)); final Cache cache = Cache.test( fileSystem: fileSystem, artifacts: [artifact1, artifact2], processManager: FakeProcessManager.any(), ); expect(await cache.isUpToDate(), isFalse); }); testWithoutContext('should be up to date, if all cached artifacts are', () async { final CachedArtifact artifact1 = MockCachedArtifact(); final CachedArtifact artifact2 = MockCachedArtifact(); final FileSystem fileSystem = MemoryFileSystem.test(); when(artifact1.isUpToDate(fileSystem)).thenAnswer((Invocation _) => Future.value(true)); when(artifact2.isUpToDate(fileSystem)).thenAnswer((Invocation _) => Future.value(true)); final Cache cache = Cache.test( fileSystem: fileSystem, artifacts: [artifact1, artifact2], processManager: FakeProcessManager.any(), ); expect(await cache.isUpToDate(), isTrue); }); testWithoutContext('should update cached artifacts which are not up to date', () async { final CachedArtifact artifact1 = MockCachedArtifact(); final CachedArtifact artifact2 = MockCachedArtifact(); final FileSystem fileSystem = MemoryFileSystem.test(); when(artifact1.isUpToDate(fileSystem)).thenAnswer((Invocation _) => Future.value(true)); when(artifact2.isUpToDate(fileSystem)).thenAnswer((Invocation _) => Future.value(false)); final Cache cache = Cache.test( fileSystem: fileSystem, artifacts: [artifact1, artifact2], processManager: FakeProcessManager.any(), ); await cache.updateAll({ null, }); verifyNever(artifact1.update(any, any, any, any)); verify(artifact2.update(any, any, any, any)); }); testWithoutContext("getter dyLdLibEntry concatenates the output of each artifact's dyLdLibEntry getter", () async { final IosUsbArtifacts artifact1 = MockIosUsbArtifacts(); final IosUsbArtifacts artifact2 = MockIosUsbArtifacts(); final IosUsbArtifacts artifact3 = MockIosUsbArtifacts(); when(artifact1.environment) .thenReturn({ 'DYLD_LIBRARY_PATH': '/path/to/alpha:/path/to/beta', }); when(artifact2.environment) .thenReturn({ 'DYLD_LIBRARY_PATH': '/path/to/gamma:/path/to/delta:/path/to/epsilon', }); when(artifact3.environment) .thenReturn({ 'DYLD_LIBRARY_PATH': '', }); final Cache cache = Cache.test( artifacts: [artifact1, artifact2, artifact3], processManager: FakeProcessManager.any(), ); expect(cache.dyLdLibEntry.key, 'DYLD_LIBRARY_PATH'); expect( cache.dyLdLibEntry.value, '/path/to/alpha:/path/to/beta:/path/to/gamma:/path/to/delta:/path/to/epsilon', ); }); testWithoutContext('failed storage.googleapis.com download shows China warning', () async { final CachedArtifact artifact1 = MockCachedArtifact(); final CachedArtifact artifact2 = MockCachedArtifact(); when(artifact1.isUpToDate(any)).thenAnswer((Invocation _) => Future.value(false)); when(artifact2.isUpToDate(any)).thenAnswer((Invocation _) => Future.value(false)); final InternetAddress address = (await InternetAddress.lookup('storage.googleapis.com')).first; when(artifact1.update(any, any, any, any)).thenThrow(SocketException( 'Connection reset by peer', address: address, )); final BufferLogger logger = BufferLogger.test(); final Cache cache = Cache.test( artifacts: [artifact1, artifact2], processManager: FakeProcessManager.any(), logger: logger, ); await expectLater( () => cache.updateAll({null}), throwsException, ); verify(artifact1.update(any, any, any, any)); // Don't continue when retrieval fails. verifyNever(artifact2.update(any, any, any, any)); expect( logger.errorText, contains('https://flutter.dev/community/china'), ); }); testWithoutContext('Invalid URI for FLUTTER_STORAGE_BASE_URL throws ToolExit', () async { final Cache cache = Cache.test( platform: FakePlatform(environment: { 'FLUTTER_STORAGE_BASE_URL': ' http://foo', }), processManager: FakeProcessManager.any(), ); expect(() => cache.storageBaseUrl, throwsToolExit()); }); }); testWithoutContext('flattenNameSubdirs', () { expect(flattenNameSubdirs(Uri.parse('http://flutter.dev/foo/bar'), MemoryFileSystem.test()), 'flutter.dev/foo/bar'); expect(flattenNameSubdirs(Uri.parse('http://api.flutter.dev/foo/bar'), MemoryFileSystem.test()), 'api.flutter.dev/foo/bar'); expect(flattenNameSubdirs(Uri.parse('https://www.flutter.dev'), MemoryFileSystem.test()), 'www.flutter.dev'); }); testWithoutContext('EngineCachedArtifact makes binary dirs readable and executable by all', () async { final FakeOperatingSystemUtils operatingSystemUtils = FakeOperatingSystemUtils(); final MockCache cache = MockCache(); final FileSystem fileSystem = MemoryFileSystem.test(); final Directory artifactDir = fileSystem.systemTempDirectory.createTempSync('flutter_cache_test_artifact.'); final Directory downloadDir = fileSystem.systemTempDirectory.createTempSync('flutter_cache_test_download.'); when(cache.getArtifactDirectory(any)).thenReturn(artifactDir); when(cache.getDownloadDir()).thenReturn(downloadDir); artifactDir.childDirectory('bin_dir').createSync(); artifactDir.childFile('unused_url_path').createSync(); final FakeCachedArtifact artifact = FakeCachedArtifact( cache: cache, binaryDirs: >[ ['bin_dir', 'unused_url_path'], ], requiredArtifacts: DevelopmentArtifact.universal, ); await artifact.updateInner(FakeArtifactUpdater(), fileSystem, operatingSystemUtils); final Directory dir = fileSystem.systemTempDirectory .listSync(recursive: true) .whereType() .singleWhere((Directory directory) => directory.basename == 'bin_dir', orElse: () => null); expect(dir, isNotNull); expect(dir.path, artifactDir.childDirectory('bin_dir').path); expect(operatingSystemUtils.chmods, >[['/.tmp_rand0/flutter_cache_test_artifact.rand0/bin_dir', 'a+r,a+x']]); }); testWithoutContext('EngineCachedArtifact removes unzipped FlutterMacOS.framework before replacing', () async { final OperatingSystemUtils operatingSystemUtils = FakeOperatingSystemUtils(); final MockCache cache = MockCache(); final FileSystem fileSystem = MemoryFileSystem.test(); final Directory artifactDir = fileSystem.systemTempDirectory.createTempSync('flutter_cache_test_artifact.'); final Directory downloadDir = fileSystem.systemTempDirectory.createTempSync('flutter_cache_test_download.'); when(cache.getArtifactDirectory(any)).thenReturn(artifactDir); when(cache.getDownloadDir()).thenReturn(downloadDir); final Directory binDir = artifactDir.childDirectory('bin_dir')..createSync(); binDir.childFile('FlutterMacOS.framework.zip').createSync(); final Directory unzippedFramework = binDir.childDirectory('FlutterMacOS.framework'); final File staleFile = unzippedFramework.childFile('stale_file')..createSync(recursive: true); artifactDir.childFile('unused_url_path').createSync(); final FakeCachedArtifact artifact = FakeCachedArtifact( cache: cache, binaryDirs: >[ ['bin_dir', 'unused_url_path'], ], requiredArtifacts: DevelopmentArtifact.universal, ); await artifact.updateInner(FakeArtifactUpdater(), fileSystem, operatingSystemUtils); expect(unzippedFramework, exists); expect(staleFile, isNot(exists)); }); testWithoutContext('IosUsbArtifacts verifies executables for libimobiledevice in isUpToDateInner', () async { final FileSystem fileSystem = MemoryFileSystem.test(); final Cache cache = Cache.test(fileSystem: fileSystem, processManager: FakeProcessManager.any()); final IosUsbArtifacts iosUsbArtifacts = IosUsbArtifacts('libimobiledevice', cache, platform: FakePlatform(operatingSystem: 'macos')); iosUsbArtifacts.location.createSync(); final File ideviceScreenshotFile = iosUsbArtifacts.location.childFile('idevicescreenshot') ..createSync(); iosUsbArtifacts.location.childFile('idevicesyslog') .createSync(); expect(iosUsbArtifacts.isUpToDateInner(fileSystem), true); ideviceScreenshotFile.deleteSync(); expect(iosUsbArtifacts.isUpToDateInner(fileSystem), false); }); testWithoutContext('IosUsbArtifacts verifies iproxy for usbmuxd in isUpToDateInner', () async { final FileSystem fileSystem = MemoryFileSystem.test(); final Cache cache = Cache.test(fileSystem: fileSystem, processManager: FakeProcessManager.any()); final IosUsbArtifacts iosUsbArtifacts = IosUsbArtifacts('usbmuxd', cache, platform: FakePlatform(operatingSystem: 'macos')); iosUsbArtifacts.location.createSync(); final File iproxy = iosUsbArtifacts.location.childFile('iproxy') ..createSync(); expect(iosUsbArtifacts.isUpToDateInner(fileSystem), true); iproxy.deleteSync(); expect(iosUsbArtifacts.isUpToDateInner(fileSystem), false); }); testWithoutContext('IosUsbArtifacts does not verify executables for openssl in isUpToDateInner', () async { final FileSystem fileSystem = MemoryFileSystem.test(); final Cache cache = Cache.test(fileSystem: fileSystem, processManager: FakeProcessManager.any()); final IosUsbArtifacts iosUsbArtifacts = IosUsbArtifacts('openssl', cache, platform: FakePlatform(operatingSystem: 'macos')); iosUsbArtifacts.location.createSync(); expect(iosUsbArtifacts.isUpToDateInner(fileSystem), true); }); testWithoutContext('IosUsbArtifacts uses unsigned when specified', () async { final Cache cache = Cache.test(processManager: FakeProcessManager.any()); cache.useUnsignedMacBinaries = true; final IosUsbArtifacts iosUsbArtifacts = IosUsbArtifacts('name', cache, platform: FakePlatform(operatingSystem: 'macos')); expect(iosUsbArtifacts.archiveUri.toString(), contains('/unsigned/')); }); testWithoutContext('IosUsbArtifacts does not use unsigned when not specified', () async { final Cache cache = Cache.test(processManager: FakeProcessManager.any()); final IosUsbArtifacts iosUsbArtifacts = IosUsbArtifacts('name', cache, platform: FakePlatform(operatingSystem: 'macos')); expect(iosUsbArtifacts.archiveUri.toString(), isNot(contains('/unsigned/'))); }); testWithoutContext('FlutterRunnerDebugSymbols downloads Flutter runner debug symbols', () async { final FileSystem fileSystem = MemoryFileSystem.test(); final Cache cache = Cache.test( fileSystem: fileSystem, processManager: FakeProcessManager.any(), ); final FakeVersionedPackageResolver packageResolver = FakeVersionedPackageResolver(); final FlutterRunnerDebugSymbols flutterRunnerDebugSymbols = FlutterRunnerDebugSymbols( cache, packageResolver: packageResolver, platform: FakePlatform(operatingSystem: 'linux'), ); await flutterRunnerDebugSymbols.updateInner(FakeArtifactUpdater(), fileSystem, FakeOperatingSystemUtils()); expect(packageResolver.resolved, >[ ['fuchsia-debug-symbols-x64', null], ['fuchsia-debug-symbols-arm64', null], ]); }); testWithoutContext('FontSubset in universal artifacts', () { final Cache cache = Cache.test(processManager: FakeProcessManager.any()); final FontSubsetArtifacts artifacts = FontSubsetArtifacts(cache, platform: FakePlatform(operatingSystem: 'linux')); expect(artifacts.developmentArtifact, DevelopmentArtifact.universal); }); testWithoutContext('FontSubset artifacts on x64 linux', () { fakeProcessManager.addCommand(unameCommandForX64); final Cache cache = createCache(FakePlatform(operatingSystem: 'linux')); final FontSubsetArtifacts artifacts = FontSubsetArtifacts(cache, platform: FakePlatform(operatingSystem: 'linux')); cache.includeAllPlatforms = false; expect(artifacts.getBinaryDirs(), >[['linux-x64', 'linux-x64/font-subset.zip']]); }); testWithoutContext('FontSubset artifacts on arm64 linux', () { fakeProcessManager.addCommand(unameCommandForArm64); final Cache cache = createCache(FakePlatform(operatingSystem: 'linux')); final FontSubsetArtifacts artifacts = FontSubsetArtifacts(cache, platform: FakePlatform(operatingSystem: 'linux')); cache.includeAllPlatforms = false; expect(artifacts.getBinaryDirs(), >[['linux-arm64', 'linux-arm64/font-subset.zip']]); }); testWithoutContext('FontSubset artifacts on windows', () { final Cache cache = createCache(FakePlatform(operatingSystem: 'windows')); final FontSubsetArtifacts artifacts = FontSubsetArtifacts(cache, platform: FakePlatform(operatingSystem: 'windows')); cache.includeAllPlatforms = false; expect(artifacts.getBinaryDirs(), >[['windows-x64', 'windows-x64/font-subset.zip']]); }); testWithoutContext('FontSubset artifacts on macos', () { fakeProcessManager.addCommands([ const FakeCommand( command: [ 'which', 'sysctl' ], stdout: '/sbin/sysctl', ), const FakeCommand( command: [ 'sysctl', 'hw.optional.arm64', ], stdout: 'hw.optional.arm64: 0', ), ]); final Cache cache = createCache(FakePlatform(operatingSystem: 'macos')); final FontSubsetArtifacts artifacts = FontSubsetArtifacts(cache, platform: FakePlatform(operatingSystem: 'macos')); cache.includeAllPlatforms = false; expect(artifacts.getBinaryDirs(), >[['darwin-x64', 'darwin-x64/font-subset.zip']]); }); testWithoutContext('FontSubset artifacts on fuchsia', () { fakeProcessManager.addCommand(unameCommandForX64); final Cache cache = createCache(FakePlatform(operatingSystem: 'fuchsia')); final FontSubsetArtifacts artifacts = FontSubsetArtifacts(cache, platform: FakePlatform(operatingSystem: 'fuchsia')); cache.includeAllPlatforms = false; expect(artifacts.getBinaryDirs, throwsToolExit(message: 'Unsupported operating system: fuchsia')); }); testWithoutContext('FontSubset artifacts for all platforms on x64 hosts', () { fakeProcessManager.addCommand(unameCommandForX64); final Cache cache = createCache(FakePlatform(operatingSystem: 'fuchsia')); final FontSubsetArtifacts artifacts = FontSubsetArtifacts(cache, platform: FakePlatform(operatingSystem: 'fuchsia')); cache.includeAllPlatforms = true; expect(artifacts.getBinaryDirs(), >[ ['darwin-x64', 'darwin-x64/font-subset.zip'], ['linux-x64', 'linux-x64/font-subset.zip'], ['windows-x64', 'windows-x64/font-subset.zip'], ]); }); testWithoutContext('FontSubset artifacts for all platforms on arm64 hosts', () { fakeProcessManager.addCommand(unameCommandForArm64); final Cache cache = createCache(FakePlatform(operatingSystem: 'fuchsia')); final FontSubsetArtifacts artifacts = FontSubsetArtifacts(cache, platform: FakePlatform(operatingSystem: 'fuchsia')); cache.includeAllPlatforms = true; expect(artifacts.getBinaryDirs(), >[ ['darwin-x64', 'darwin-x64/font-subset.zip'], // arm64 macOS hosts are not supported now ['linux-arm64', 'linux-arm64/font-subset.zip'], ['windows-x64', 'windows-x64/font-subset.zip'], // arm64 macOS hosts are not supported now ]); }); testWithoutContext('macOS desktop artifacts ignore filtering when requested', () { final Cache cache = Cache.test(processManager: FakeProcessManager.any()); final MacOSEngineArtifacts artifacts = MacOSEngineArtifacts(cache, platform: FakePlatform(operatingSystem: 'linux')); cache.includeAllPlatforms = false; cache.platformOverrideArtifacts = {'macos'}; expect(artifacts.getBinaryDirs(), isNotEmpty); }); testWithoutContext('Windows desktop artifacts ignore filtering when requested', () { final Cache cache = Cache.test(processManager: FakeProcessManager.any()); final WindowsEngineArtifacts artifacts = WindowsEngineArtifacts( cache, platform: FakePlatform(operatingSystem: 'linux'), ); cache.includeAllPlatforms = false; cache.platformOverrideArtifacts = {'windows'}; expect(artifacts.getBinaryDirs(), isNotEmpty); }); testWithoutContext('Windows desktop artifacts include profile and release artifacts', () { final Cache cache = Cache.test(processManager: FakeProcessManager.any()); final WindowsEngineArtifacts artifacts = WindowsEngineArtifacts( cache, platform: FakePlatform(operatingSystem: 'windows'), ); expect(artifacts.getBinaryDirs(), containsAll([ contains(contains('profile')), contains(contains('release')), ])); }); testWithoutContext('Windows UWP desktop artifacts include profile, debug, and release artifacts', () { final Cache cache = Cache.test(processManager: FakeProcessManager.any()); final WindowsUwpEngineArtifacts artifacts = WindowsUwpEngineArtifacts( cache, platform: FakePlatform(operatingSystem: 'windows'), ); expect(artifacts.getBinaryDirs(), containsAll([ contains(contains('profile')), contains(contains('release')), contains(contains('debug')), ])); }); testWithoutContext('Linux desktop artifacts ignore filtering when requested', () { fakeProcessManager.addCommand(unameCommandForX64); final Cache cache = createCache(FakePlatform(operatingSystem: 'linux')); final LinuxEngineArtifacts artifacts = LinuxEngineArtifacts( cache, platform: FakePlatform(operatingSystem: 'macos'), ); cache.includeAllPlatforms = false; cache.platformOverrideArtifacts = {'linux'}; expect(artifacts.getBinaryDirs(), isNotEmpty); }); testWithoutContext('Linux desktop artifacts for x64 include profile and release artifacts', () { fakeProcessManager.addCommand(unameCommandForX64); final Cache cache = createCache(FakePlatform(operatingSystem: 'linux')); final LinuxEngineArtifacts artifacts = LinuxEngineArtifacts( cache, platform: FakePlatform(operatingSystem: 'linux'), ); expect(artifacts.getBinaryDirs(), >[ ['linux-x64', 'linux-x64/linux-x64-flutter-gtk.zip'], ['linux-x64-profile', 'linux-x64-profile/linux-x64-flutter-gtk.zip'], ['linux-x64-release', 'linux-x64-release/linux-x64-flutter-gtk.zip'], ]); }); testWithoutContext('Linux desktop artifacts for arm64 include profile and release artifacts', () { fakeProcessManager.addCommand(unameCommandForArm64); final Cache cache = createCache(FakePlatform(operatingSystem: 'linux')); final LinuxEngineArtifacts artifacts = LinuxEngineArtifacts( cache, platform: FakePlatform(operatingSystem: 'linux'), ); expect(artifacts.getBinaryDirs(), >[ ['linux-arm64', 'linux-arm64/linux-arm64-flutter-gtk.zip'], ['linux-arm64-profile', 'linux-arm64-profile/linux-arm64-flutter-gtk.zip'], ['linux-arm64-release', 'linux-arm64-release/linux-arm64-flutter-gtk.zip'], ]); }); testWithoutContext('Cache can delete stampfiles of artifacts', () { final FileSystem fileSystem = MemoryFileSystem.test(); final ArtifactSet artifactSet = MockIosUsbArtifacts(); final BufferLogger logger = BufferLogger.test(); when(artifactSet.stampName).thenReturn('STAMP'); final Cache cache = Cache( artifacts: [ artifactSet, ], logger: logger, fileSystem: fileSystem, platform: FakePlatform(), osUtils: FakeOperatingSystemUtils(), rootOverride: fileSystem.currentDirectory, ); final File toolStampFile = fileSystem.file('bin/cache/flutter_tools.stamp'); final File stampFile = cache.getStampFileFor(artifactSet.stampName); stampFile.createSync(recursive: true); toolStampFile.createSync(recursive: true); cache.clearStampFiles(); expect(logger.errorText, isEmpty); expect(stampFile, isNot(exists)); expect(toolStampFile, isNot(exists)); }); testWithoutContext('Cache does not attempt to delete already missing stamp files', () { final FileSystem fileSystem = MemoryFileSystem.test(); final ArtifactSet artifactSet = MockIosUsbArtifacts(); final BufferLogger logger = BufferLogger.test(); when(artifactSet.stampName).thenReturn('STAMP'); final Cache cache = Cache( artifacts: [ artifactSet, ], logger: logger, fileSystem: fileSystem, platform: FakePlatform(), osUtils: FakeOperatingSystemUtils(), rootOverride: fileSystem.currentDirectory, ); final File toolStampFile = fileSystem.file('bin/cache/flutter_tools.stamp'); final File stampFile = cache.getStampFileFor(artifactSet.stampName); toolStampFile.createSync(recursive: true); cache.clearStampFiles(); expect(logger.errorText, isEmpty); expect(stampFile, isNot(exists)); expect(toolStampFile, isNot(exists)); }); testWithoutContext('Cache catches file system exception from missing tool stamp file', () { final FileSystem fileSystem = MemoryFileSystem.test(); final ArtifactSet artifactSet = MockIosUsbArtifacts(); final BufferLogger logger = BufferLogger.test(); when(artifactSet.stampName).thenReturn('STAMP'); final Cache cache = Cache( artifacts: [ artifactSet, ], logger: logger, fileSystem: fileSystem, platform: FakePlatform(), osUtils: FakeOperatingSystemUtils(), rootOverride: fileSystem.currentDirectory, ); cache.clearStampFiles(); expect(logger.errorText, contains('Failed to delete some stamp files')); }); testWithoutContext('FlutterWebSdk deletes previous directory contents', () { final MemoryFileSystem fileSystem = MemoryFileSystem.test(); final Cache cache = Cache.test(processManager: FakeProcessManager.any(), fileSystem: fileSystem); final Directory webCacheDirectory = cache.getWebSdkDirectory(); final FakeArtifactUpdater artifactUpdater = FakeArtifactUpdater(); final FlutterWebSdk webSdk = FlutterWebSdk(cache, platform: FakePlatform(operatingSystem: 'linux')); artifactUpdater.onDownloadZipArchive = (String message, Uri uri, Directory location) { location.createSync(recursive: true); location.childFile('foo').createSync(); }; webCacheDirectory.childFile('bar').createSync(recursive: true); webSdk.updateInner(artifactUpdater, fileSystem, FakeOperatingSystemUtils()); expect(webCacheDirectory.childFile('foo'), exists); expect(webCacheDirectory.childFile('bar'), isNot(exists)); }); testWithoutContext('FlutterWebSdk uses tryToDelete to handle directory edge cases', () async { final FileExceptionHandler handler = FileExceptionHandler(); final MemoryFileSystem fileSystem = MemoryFileSystem.test(opHandle: handler.opHandle); final Cache cache = Cache.test(processManager: FakeProcessManager.any(), fileSystem: fileSystem); final Directory webCacheDirectory = cache.getWebSdkDirectory(); final FakeArtifactUpdater artifactUpdater = FakeArtifactUpdater(); final FlutterWebSdk webSdk = FlutterWebSdk(cache, platform: FakePlatform(operatingSystem: 'linux')); artifactUpdater.onDownloadZipArchive = (String message, Uri uri, Directory location) { location.createSync(recursive: true); location.childFile('foo').createSync(); }; webCacheDirectory.childFile('bar').createSync(recursive: true); handler.addError(webCacheDirectory, FileSystemOp.delete, const FileSystemException('', '', OSError('', 2))); await expectLater(() => webSdk.updateInner(artifactUpdater, fileSystem, FakeOperatingSystemUtils()), throwsToolExit( message: RegExp('The Flutter tool tried to delete the file or directory cache/bin/cache/flutter_web_sdk but was unable to'), )); }); testWithoutContext('Cache handles exception thrown if stamp file cannot be parsed', () { final FileExceptionHandler exceptionHandler = FileExceptionHandler(); final FileSystem fileSystem = MemoryFileSystem.test(opHandle: exceptionHandler.opHandle); final Logger logger = BufferLogger.test(); final FakeCache cache = FakeCache( fileSystem: fileSystem, logger: logger, platform: FakePlatform(), osUtils: FakeOperatingSystemUtils() ); final File file = fileSystem.file('stamp'); cache.stampFile = file; expect(cache.getStampFor('foo'), null); file.createSync(); exceptionHandler.addError( file, FileSystemOp.read, const FileSystemException(), ); expect(cache.getStampFor('foo'), null); }); testWithoutContext('Cache parses stamp file', () { final FileSystem fileSystem = MemoryFileSystem.test(); final Logger logger = BufferLogger.test(); final FakeCache cache = FakeCache( fileSystem: fileSystem, logger: logger, platform: FakePlatform(), osUtils: FakeOperatingSystemUtils() ); final File file = fileSystem.file('stamp')..writeAsStringSync('ABC '); cache.stampFile = file; expect(cache.getStampFor('foo'), 'ABC'); }); testWithoutContext('PubDependencies needs to be updated if the package config' ' file or the source directories are missing', () async { final BufferLogger logger = BufferLogger.test(); final MemoryFileSystem fileSystem = MemoryFileSystem.test(); final PubDependencies pubDependencies = PubDependencies( flutterRoot: () => '', logger: logger, pub: () => FakePub(), ); expect(await pubDependencies.isUpToDate(fileSystem), false); // no package config fileSystem.file('packages/flutter_tools/.packages') ..createSync(recursive: true) ..writeAsStringSync('\n'); fileSystem.file('packages/flutter_tools/.dart_tool/package_config.json') ..createSync(recursive: true) ..writeAsStringSync(''' { "configVersion": 2, "packages": [ { "name": "example", "rootUri": "file:///.pub-cache/hosted/pub.dartlang.org/example-7.0.0", "packageUri": "lib/", "languageVersion": "2.7" } ], "generated": "2020-09-15T20:29:20.691147Z", "generator": "pub", "generatorVersion": "2.10.0-121.0.dev" } '''); expect(await pubDependencies.isUpToDate(fileSystem), false); // dependencies are missing. fileSystem.file('.pub-cache/hosted/pub.dartlang.org/example-7.0.0/lib/foo.dart') .createSync(recursive: true); expect(await pubDependencies.isUpToDate(fileSystem), true); }); testWithoutContext('PubDependencies updates via pub get', () async { final BufferLogger logger = BufferLogger.test(); final MemoryFileSystem fileSystem = MemoryFileSystem.test(); final FakePub pub = FakePub(); final PubDependencies pubDependencies = PubDependencies( flutterRoot: () => '', logger: logger, pub: () => pub, ); await pubDependencies.update(FakeArtifactUpdater(), logger, fileSystem, FakeOperatingSystemUtils()); expect(pub.calledGet, 1); }); group('AndroidMavenArtifacts', () { MemoryFileSystem memoryFileSystem; Cache cache; FakeAndroidSdk fakeAndroidSdk; setUp(() { memoryFileSystem = MemoryFileSystem.test(); cache = Cache.test( fileSystem: memoryFileSystem, processManager: FakeProcessManager.any(), ); fakeAndroidSdk = FakeAndroidSdk(); }); testWithoutContext('AndroidMavenArtifacts has a specified development artifact', () async { final AndroidMavenArtifacts mavenArtifacts = AndroidMavenArtifacts(cache, platform: FakePlatform(operatingSystem: 'linux')); expect(mavenArtifacts.developmentArtifact, DevelopmentArtifact.androidMaven); }); testUsingContext('AndroidMavenArtifacts can invoke Gradle resolve dependencies if Android SDK is present', () async { Cache.flutterRoot = ''; final AndroidMavenArtifacts mavenArtifacts = AndroidMavenArtifacts(cache, platform: FakePlatform(operatingSystem: 'linux')); expect(await mavenArtifacts.isUpToDate(memoryFileSystem), isFalse); final Directory gradleWrapperDir = cache.getArtifactDirectory('gradle_wrapper')..createSync(recursive: true); gradleWrapperDir.childFile('gradlew').writeAsStringSync('irrelevant'); gradleWrapperDir.childFile('gradlew.bat').writeAsStringSync('irrelevant'); await mavenArtifacts.update(FakeArtifactUpdater(), BufferLogger.test(), memoryFileSystem, FakeOperatingSystemUtils()); expect(await mavenArtifacts.isUpToDate(memoryFileSystem), isFalse); expect(fakeAndroidSdk.reinitialized, true); }, overrides: { Cache: () => cache, FileSystem: () => memoryFileSystem, Platform: () => FakePlatform(operatingSystem: 'linux'), ProcessManager: () => FakeProcessManager.list([ const FakeCommand(command: [ '/cache/bin/cache/flutter_gradle_wrapper.rand0/gradlew', '-b', 'packages/flutter_tools/gradle/resolve_dependencies.gradle', '--project-cache-dir', 'cache/bin/cache/flutter_gradle_wrapper.rand0', 'resolveDependencies', ]) ]), AndroidSdk: () => fakeAndroidSdk }); testUsingContext('AndroidMavenArtifacts is a no-op if the Android SDK is absent', () async { final AndroidMavenArtifacts mavenArtifacts = AndroidMavenArtifacts(cache, platform: FakePlatform(operatingSystem: 'linux')); expect(await mavenArtifacts.isUpToDate(memoryFileSystem), isFalse); await mavenArtifacts.update(FakeArtifactUpdater(), BufferLogger.test(), memoryFileSystem, FakeOperatingSystemUtils()); expect(await mavenArtifacts.isUpToDate(memoryFileSystem), isFalse); }, overrides: { Cache: () => cache, FileSystem: () => memoryFileSystem, ProcessManager: () => FakeProcessManager.empty(), AndroidSdk: () => null // Android SDK was not located. }); }); } class FakeCachedArtifact extends EngineCachedArtifact { FakeCachedArtifact({ String stampName = 'STAMP', @required Cache cache, DevelopmentArtifact requiredArtifacts, this.binaryDirs = const >[], this.licenseDirs = const [], this.packageDirs = const [], }) : super(stampName, cache, requiredArtifacts); final List> binaryDirs; final List licenseDirs; final List packageDirs; @override List> getBinaryDirs() => binaryDirs; @override List getLicenseDirs() => licenseDirs; @override List getPackageDirs() => packageDirs; } class FakeSimpleArtifact extends CachedArtifact { FakeSimpleArtifact(Cache cache) : super( 'fake', cache, DevelopmentArtifact.universal, ); @override Future updateInner(ArtifactUpdater artifactUpdater, FileSystem fileSystem, OperatingSystemUtils operatingSystemUtils) async { } } class FakeDownloadedArtifact extends CachedArtifact { FakeDownloadedArtifact(this.downloadedFile, Cache cache) : super( 'fake', cache, DevelopmentArtifact.universal, ); final File downloadedFile; @override Future updateInner(ArtifactUpdater artifactUpdater, FileSystem fileSystem, OperatingSystemUtils operatingSystemUtils) async { } } class MockCachedArtifact extends Mock implements CachedArtifact {} class MockIosUsbArtifacts extends Mock implements IosUsbArtifacts {} class MockCache extends Mock implements Cache {} class FakeVersionedPackageResolver extends Fake implements VersionedPackageResolver { final List> resolved = >[]; @override String resolveUrl(String packageName, String version) { resolved.add([packageName, version]); return ''; } } class FakePub extends Fake implements Pub { int calledGet = 0; @override Future get({PubContext context, String directory, bool skipIfAbsent = false, bool upgrade = false, bool offline = false, bool generateSyntheticPackage = false, String flutterRootOverride, bool checkUpToDate = false}) async { calledGet += 1; } } class FakeCache extends Cache { FakeCache({ @required Logger logger, @required FileSystem fileSystem, @required Platform platform, @required OperatingSystemUtils osUtils, }) : super( logger: logger, fileSystem: fileSystem, platform: platform, osUtils: osUtils, artifacts: [], ); File stampFile; @override File getStampFileFor(String artifactName) { return stampFile; } } class FakeAndroidSdk extends Fake implements AndroidSdk { bool reinitialized = false; @override void reinitialize() { reinitialized = true; } } class FakeArtifactUpdater extends Fake implements ArtifactUpdater { void Function(String, Uri, Directory) onDownloadZipArchive; void Function(String, Uri, Directory) onDownloadZipTarball; @override Future downloadZippedTarball(String message, Uri url, Directory location) async { onDownloadZipTarball?.call(message, url, location); } @override Future downloadZipArchive(String message, Uri url, Directory location) async { onDownloadZipArchive?.call(message, url, location); } @override void removeDownloadedFiles() { } }