mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00

Reverts flutter/flutter#126086. This PR changed the interfaces of some classes, namely `AndroidSdk`, and deleted a global. These classes had custom overrides in g3 that were not updated with a g3fix, so this PR has broken tests. See https://b.corp.google.com/issues/281945232 (non-public link)
666 lines
25 KiB
Dart
666 lines
25 KiB
Dart
// 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.
|
|
|
|
import 'package:file/memory.dart';
|
|
import 'package:flutter_tools/src/android/android_sdk.dart';
|
|
import 'package:flutter_tools/src/android/android_studio.dart';
|
|
import 'package:flutter_tools/src/base/config.dart';
|
|
import 'package:flutter_tools/src/base/file_system.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/base/process.dart';
|
|
import 'package:flutter_tools/src/globals.dart' as globals;
|
|
import 'package:test/fake.dart';
|
|
|
|
import '../../integration.shard/test_utils.dart';
|
|
import '../../src/common.dart';
|
|
import '../../src/context.dart';
|
|
import '../../src/fakes.dart' show FakeAndroidStudio, FakeOperatingSystemUtils;
|
|
|
|
void main() {
|
|
late MemoryFileSystem fileSystem;
|
|
late FakeProcessManager processManager;
|
|
late Config config;
|
|
|
|
setUp(() {
|
|
fileSystem = MemoryFileSystem.test();
|
|
processManager = FakeProcessManager.empty();
|
|
config = Config.test();
|
|
});
|
|
|
|
group('AndroidSdk', () {
|
|
testUsingContext('constructing an AndroidSdk handles no matching lines in build.prop', () {
|
|
final Directory sdkDir = createSdkDirectory(
|
|
fileSystem: fileSystem,
|
|
withAndroidN: true,
|
|
// Does not have valid version string
|
|
buildProp: '\n\n\n',
|
|
);
|
|
config.setValue('android-sdk', sdkDir.path);
|
|
|
|
try {
|
|
AndroidSdk.locateAndroidSdk()!;
|
|
} on StateError catch (err) {
|
|
fail('sdk.reinitialize() threw a StateError:\n$err');
|
|
}
|
|
}, overrides: <Type, Generator>{
|
|
FileSystem: () => fileSystem,
|
|
ProcessManager: () => FakeProcessManager.any(),
|
|
Config: () => config,
|
|
});
|
|
|
|
testUsingContext('parse sdk', () {
|
|
final Directory sdkDir = createSdkDirectory(fileSystem: fileSystem);
|
|
config.setValue('android-sdk', sdkDir.path);
|
|
|
|
final AndroidSdk sdk = AndroidSdk.locateAndroidSdk()!;
|
|
expect(sdk.latestVersion, isNotNull);
|
|
expect(sdk.latestVersion!.sdkLevel, 23);
|
|
}, overrides: <Type, Generator>{
|
|
FileSystem: () => fileSystem,
|
|
ProcessManager: () => FakeProcessManager.any(),
|
|
Config: () => config,
|
|
});
|
|
|
|
testUsingContext('parse sdk N', () {
|
|
final Directory sdkDir = createSdkDirectory(
|
|
withAndroidN: true,
|
|
fileSystem: fileSystem,
|
|
);
|
|
config.setValue('android-sdk', sdkDir.path);
|
|
|
|
final AndroidSdk sdk = AndroidSdk.locateAndroidSdk()!;
|
|
expect(sdk.latestVersion, isNotNull);
|
|
expect(sdk.latestVersion!.sdkLevel, 24);
|
|
}, overrides: <Type, Generator>{
|
|
FileSystem: () => fileSystem,
|
|
ProcessManager: () => FakeProcessManager.any(),
|
|
Config: () => config,
|
|
});
|
|
|
|
testUsingContext('returns sdkmanager path under cmdline tools on Linux/macOS', () {
|
|
final Directory sdkDir = createSdkDirectory(fileSystem: fileSystem);
|
|
config.setValue('android-sdk', sdkDir.path);
|
|
|
|
final AndroidSdk sdk = AndroidSdk.locateAndroidSdk()!;
|
|
fileSystem.file(
|
|
fileSystem.path.join(sdk.directory.path, 'cmdline-tools', 'latest', 'bin', 'sdkmanager')
|
|
).createSync(recursive: true);
|
|
|
|
expect(sdk.sdkManagerPath, fileSystem.path.join(sdk.directory.path, 'cmdline-tools', 'latest', 'bin', 'sdkmanager'));
|
|
}, overrides: <Type, Generator>{
|
|
FileSystem: () => fileSystem,
|
|
ProcessManager: () => FakeProcessManager.any(),
|
|
Platform: () => FakePlatform(),
|
|
Config: () => config,
|
|
});
|
|
|
|
testUsingContext('returns sdkmanager path under cmdline tools (highest version) on Linux/macOS', () {
|
|
final Directory sdkDir = createSdkDirectory(
|
|
fileSystem: fileSystem,
|
|
withSdkManager: false,
|
|
);
|
|
config.setValue('android-sdk', sdkDir.path);
|
|
|
|
final AndroidSdk sdk = AndroidSdk.locateAndroidSdk()!;
|
|
final List<String> versions = <String>['3.0', '2.1', '1.0'];
|
|
for (final String version in versions) {
|
|
fileSystem.file(
|
|
fileSystem.path.join(sdk.directory.path, 'cmdline-tools', version, 'bin', 'sdkmanager')
|
|
).createSync(recursive: true);
|
|
}
|
|
|
|
expect(sdk.sdkManagerPath, fileSystem.path.join(sdk.directory.path, 'cmdline-tools', '3.0', 'bin', 'sdkmanager'));
|
|
}, overrides: <Type, Generator>{
|
|
FileSystem: () => fileSystem,
|
|
ProcessManager: () => FakeProcessManager.any(),
|
|
Platform: () => FakePlatform(),
|
|
Config: () => config,
|
|
});
|
|
|
|
testUsingContext('Does not return sdkmanager under deprecated tools component', () {
|
|
final Directory sdkDir = createSdkDirectory(
|
|
fileSystem: fileSystem,
|
|
withSdkManager: false,
|
|
);
|
|
config.setValue('android-sdk', sdkDir.path);
|
|
|
|
final AndroidSdk sdk = AndroidSdk.locateAndroidSdk()!;
|
|
fileSystem.file(
|
|
fileSystem.path.join(sdk.directory.path, 'tools/bin/sdkmanager')
|
|
).createSync(recursive: true);
|
|
|
|
expect(sdk.sdkManagerPath, null);
|
|
}, overrides: <Type, Generator>{
|
|
FileSystem: () => fileSystem,
|
|
ProcessManager: () => FakeProcessManager.any(),
|
|
Platform: () => FakePlatform(),
|
|
Config: () => config,
|
|
});
|
|
|
|
testUsingContext('Can look up cmdline tool from deprecated tools path', () {
|
|
final Directory sdkDir = createSdkDirectory(
|
|
fileSystem: fileSystem,
|
|
withSdkManager: false,
|
|
);
|
|
config.setValue('android-sdk', sdkDir.path);
|
|
|
|
final AndroidSdk sdk = AndroidSdk.locateAndroidSdk()!;
|
|
fileSystem.file(
|
|
fileSystem.path.join(sdk.directory.path, 'tools/bin/foo')
|
|
).createSync(recursive: true);
|
|
|
|
expect(sdk.getCmdlineToolsPath('foo'), '/.tmp_rand0/flutter_mock_android_sdk.rand0/tools/bin/foo');
|
|
}, overrides: <Type, Generator>{
|
|
FileSystem: () => fileSystem,
|
|
ProcessManager: () => FakeProcessManager.any(),
|
|
Platform: () => FakePlatform(),
|
|
Config: () => config,
|
|
});
|
|
|
|
testUsingContext('Caches adb location after first access', () {
|
|
final Directory sdkDir = createSdkDirectory(fileSystem: fileSystem);
|
|
config.setValue('android-sdk', sdkDir.path);
|
|
|
|
final AndroidSdk sdk = AndroidSdk.locateAndroidSdk()!;
|
|
final File adbFile = fileSystem.file(
|
|
fileSystem.path.join(sdk.directory.path, 'cmdline-tools', 'adb.exe')
|
|
)..createSync(recursive: true);
|
|
|
|
expect(sdk.adbPath, fileSystem.path.join(sdk.directory.path, 'cmdline-tools', 'adb.exe'));
|
|
|
|
adbFile.deleteSync(recursive: true);
|
|
|
|
expect(sdk.adbPath, fileSystem.path.join(sdk.directory.path, 'cmdline-tools', 'adb.exe'));
|
|
}, overrides: <Type, Generator>{
|
|
FileSystem: () => fileSystem,
|
|
ProcessManager: () => FakeProcessManager.any(),
|
|
Platform: () => FakePlatform(operatingSystem: 'windows'),
|
|
Config: () => config,
|
|
});
|
|
|
|
testUsingContext('returns sdkmanager.bat path under cmdline tools for windows', () {
|
|
final Directory sdkDir = createSdkDirectory(fileSystem: fileSystem);
|
|
config.setValue('android-sdk', sdkDir.path);
|
|
|
|
final AndroidSdk sdk = AndroidSdk.locateAndroidSdk()!;
|
|
fileSystem.file(
|
|
fileSystem.path.join(sdk.directory.path, 'cmdline-tools', 'latest', 'bin', 'sdkmanager.bat')
|
|
).createSync(recursive: true);
|
|
|
|
expect(sdk.sdkManagerPath,
|
|
fileSystem.path.join(sdk.directory.path, 'cmdline-tools', 'latest', 'bin', 'sdkmanager.bat'));
|
|
}, overrides: <Type, Generator>{
|
|
FileSystem: () => fileSystem,
|
|
ProcessManager: () => FakeProcessManager.any(),
|
|
Platform: () => FakePlatform(operatingSystem: 'windows'),
|
|
Config: () => config,
|
|
});
|
|
|
|
testUsingContext('returns sdkmanager version', () {
|
|
final Directory sdkDir = createSdkDirectory(fileSystem: fileSystem);
|
|
config.setValue('android-sdk', sdkDir.path);
|
|
processManager.addCommand(
|
|
const FakeCommand(
|
|
command: <String>[
|
|
'/.tmp_rand0/flutter_mock_android_sdk.rand0/cmdline-tools/latest/bin/sdkmanager',
|
|
'--version',
|
|
],
|
|
stdout: '26.1.1\n',
|
|
),
|
|
);
|
|
final AndroidSdk sdk = AndroidSdk.locateAndroidSdk()!;
|
|
|
|
expect(sdk.sdkManagerVersion, '26.1.1');
|
|
}, overrides: <Type, Generator>{
|
|
FileSystem: () => fileSystem,
|
|
ProcessManager: () => processManager,
|
|
Config: () => config,
|
|
Platform: () => FakePlatform(environment: <String, String>{}),
|
|
});
|
|
|
|
testUsingContext('returns validate sdk is well formed', () {
|
|
final Directory sdkDir = createBrokenSdkDirectory(fileSystem: fileSystem);
|
|
processManager.addCommand(const FakeCommand(command: <String>[
|
|
'/.tmp_rand0/flutter_mock_android_sdk.rand0/cmdline-tools/latest/bin/sdkmanager',
|
|
'--version',
|
|
]));
|
|
config.setValue('android-sdk', sdkDir.path);
|
|
final AndroidSdk sdk = AndroidSdk.locateAndroidSdk()!;
|
|
|
|
final List<String> validationIssues = sdk.validateSdkWellFormed();
|
|
expect(validationIssues.first, 'No valid Android SDK platforms found in'
|
|
' /.tmp_rand0/flutter_mock_android_sdk.rand0/platforms. Candidates were:\n'
|
|
' - android-22\n'
|
|
' - android-23');
|
|
}, overrides: <Type, Generator>{
|
|
FileSystem: () => fileSystem,
|
|
ProcessManager: () => processManager,
|
|
Config: () => config,
|
|
Platform: () => FakePlatform(),
|
|
});
|
|
|
|
testUsingContext('does not throw on sdkmanager version check failure', () {
|
|
final Directory sdkDir = createSdkDirectory(fileSystem: fileSystem);
|
|
config.setValue('android-sdk', sdkDir.path);
|
|
processManager.addCommand(
|
|
const FakeCommand(
|
|
command: <String>[
|
|
'/.tmp_rand0/flutter_mock_android_sdk.rand0/cmdline-tools/latest/bin/sdkmanager',
|
|
'--version',
|
|
],
|
|
stdout: '\n',
|
|
stderr: 'Mystery error',
|
|
exitCode: 1,
|
|
),
|
|
);
|
|
|
|
final AndroidSdk sdk = AndroidSdk.locateAndroidSdk()!;
|
|
|
|
expect(sdk.sdkManagerVersion, isNull);
|
|
}, overrides: <Type, Generator>{
|
|
FileSystem: () => fileSystem,
|
|
ProcessManager: () => processManager,
|
|
Config: () => config,
|
|
Platform: () => FakePlatform(environment: <String, String>{}),
|
|
});
|
|
|
|
testUsingContext('throws on sdkmanager version check if sdkmanager not found', () {
|
|
final Directory sdkDir = createSdkDirectory(withSdkManager: false, fileSystem: fileSystem);
|
|
config.setValue('android-sdk', sdkDir.path);
|
|
processManager.excludedExecutables.add('/.tmp_rand0/flutter_mock_android_sdk.rand0/cmdline-tools/latest/bin/sdkmanager');
|
|
final AndroidSdk? sdk = AndroidSdk.locateAndroidSdk();
|
|
|
|
expect(() => sdk!.sdkManagerVersion, throwsToolExit());
|
|
}, overrides: <Type, Generator>{
|
|
FileSystem: () => fileSystem,
|
|
ProcessManager: () => processManager,
|
|
Config: () => config,
|
|
Platform: () => FakePlatform(),
|
|
});
|
|
|
|
testUsingContext('returns avdmanager path under cmdline tools', () {
|
|
final Directory sdkDir = createSdkDirectory(fileSystem: fileSystem);
|
|
config.setValue('android-sdk', sdkDir.path);
|
|
|
|
final AndroidSdk sdk = AndroidSdk.locateAndroidSdk()!;
|
|
fileSystem.file(
|
|
fileSystem.path.join(sdk.directory.path, 'cmdline-tools', 'latest', 'bin', 'avdmanager')
|
|
).createSync(recursive: true);
|
|
|
|
expect(sdk.avdManagerPath, fileSystem.path.join(sdk.directory.path, 'cmdline-tools', 'latest', 'bin', 'avdmanager'));
|
|
}, overrides: <Type, Generator>{
|
|
FileSystem: () => fileSystem,
|
|
ProcessManager: () => FakeProcessManager.any(),
|
|
Platform: () => FakePlatform(),
|
|
Config: () => config,
|
|
});
|
|
|
|
testUsingContext('returns avdmanager path under cmdline tools on windows', () {
|
|
final Directory sdkDir = createSdkDirectory(fileSystem: fileSystem);
|
|
config.setValue('android-sdk', sdkDir.path);
|
|
|
|
final AndroidSdk sdk = AndroidSdk.locateAndroidSdk()!;
|
|
fileSystem.file(
|
|
fileSystem.path.join(sdk.directory.path, 'cmdline-tools', 'latest', 'bin', 'avdmanager.bat')
|
|
).createSync(recursive: true);
|
|
|
|
expect(sdk.avdManagerPath, fileSystem.path.join(sdk.directory.path, 'cmdline-tools', 'latest', 'bin', 'avdmanager.bat'));
|
|
}, overrides: <Type, Generator>{
|
|
FileSystem: () => fileSystem,
|
|
ProcessManager: () => FakeProcessManager.any(),
|
|
Platform: () => FakePlatform(operatingSystem: 'windows'),
|
|
Config: () => config,
|
|
});
|
|
|
|
testUsingContext("returns avdmanager path under tools if cmdline doesn't exist", () {
|
|
final Directory sdkDir = createSdkDirectory(fileSystem: fileSystem);
|
|
config.setValue('android-sdk', sdkDir.path);
|
|
|
|
final AndroidSdk sdk = AndroidSdk.locateAndroidSdk()!;
|
|
fileSystem.file(
|
|
fileSystem.path.join(sdk.directory.path, 'tools', 'bin', 'avdmanager')
|
|
).createSync(recursive: true);
|
|
|
|
expect(sdk.avdManagerPath, fileSystem.path.join(sdk.directory.path, 'tools', 'bin', 'avdmanager'));
|
|
}, overrides: <Type, Generator>{
|
|
FileSystem: () => fileSystem,
|
|
ProcessManager: () => FakeProcessManager.any(),
|
|
Platform: () => FakePlatform(),
|
|
Config: () => config,
|
|
});
|
|
|
|
testUsingContext("returns avdmanager path under tools if cmdline doesn't exist on windows", () {
|
|
final Directory sdkDir = createSdkDirectory(fileSystem: fileSystem);
|
|
config.setValue('android-sdk', sdkDir.path);
|
|
|
|
final AndroidSdk sdk = AndroidSdk.locateAndroidSdk()!;
|
|
fileSystem.file(
|
|
fileSystem.path.join(sdk.directory.path, 'tools', 'bin', 'avdmanager.bat')
|
|
).createSync(recursive: true);
|
|
|
|
expect(sdk.avdManagerPath, fileSystem.path.join(sdk.directory.path, 'tools', 'bin', 'avdmanager.bat'));
|
|
}, overrides: <Type, Generator>{
|
|
FileSystem: () => fileSystem,
|
|
ProcessManager: () => FakeProcessManager.any(),
|
|
Platform: () => FakePlatform(operatingSystem: 'windows'),
|
|
Config: () => config,
|
|
});
|
|
|
|
group('findJavaBinary', () {
|
|
testUsingContext('returns the path of the JDK bundled with Android Studio, if it exists', () {
|
|
final String androidStudioBundledJdkHome = globals.androidStudio!.javaPath!;
|
|
final String expectedJavaBinaryPath = globals.fs.path.join(androidStudioBundledJdkHome, 'bin', 'java');
|
|
|
|
final String? foundJavaBinaryPath = AndroidSdk.findJavaBinary(
|
|
androidStudio: globals.androidStudio,
|
|
fileSystem: globals.fs,
|
|
operatingSystemUtils: globals.os,
|
|
platform: globals.platform,
|
|
);
|
|
|
|
expect(foundJavaBinaryPath, expectedJavaBinaryPath);
|
|
}, overrides: <Type, Generator>{
|
|
FileSystem: () => MemoryFileSystem.test(),
|
|
ProcessManager: () => FakeProcessManager.any(),
|
|
OperatingSystemUtils: () => FakeOperatingSystemUtilsWithJava(),
|
|
Platform: () => FakePlatform(),
|
|
Config: () => Config,
|
|
AndroidStudio: () => FakeAndroidStudioWithJdk(),
|
|
});
|
|
|
|
testUsingContext('returns the current value of JAVA_HOME if it is set and the JDK bundled with Android Studio could not be found', () {
|
|
final String expectedJavaBinaryPath = globals.fs.path.join('java-home-path', 'bin', 'java');
|
|
|
|
final String? foundJavaBinaryPath = AndroidSdk.findJavaBinary(
|
|
androidStudio: globals.androidStudio,
|
|
fileSystem: globals.fs,
|
|
operatingSystemUtils: globals.os,
|
|
platform: globals.platform,
|
|
);
|
|
|
|
expect(foundJavaBinaryPath, expectedJavaBinaryPath);
|
|
}, overrides: <Type, Generator>{
|
|
FileSystem: () => MemoryFileSystem.test(),
|
|
ProcessManager: () => FakeProcessManager.any(),
|
|
OperatingSystemUtils: () => FakeOperatingSystemUtilsWithJava(),
|
|
Platform: () => FakePlatform(environment: <String, String>{
|
|
AndroidSdk.javaHomeEnvironmentVariable: 'java-home-path',
|
|
}),
|
|
Config: () => Config,
|
|
AndroidStudio: () => FakeAndroidStudioWithoutJdk(),
|
|
});
|
|
|
|
testUsingContext('returns the java binary found on PATH if no other can be found', () {
|
|
final String? foundJavaBinaryPath = AndroidSdk.findJavaBinary(
|
|
androidStudio: globals.androidStudio,
|
|
fileSystem: globals.fs,
|
|
operatingSystemUtils: globals.os,
|
|
platform: globals.platform,
|
|
);
|
|
|
|
expect(foundJavaBinaryPath, globals.os.which('java')!.path);
|
|
}, overrides: <Type, Generator>{
|
|
FileSystem: () => MemoryFileSystem.test(),
|
|
ProcessManager: () => FakeProcessManager.any(),
|
|
OperatingSystemUtils: () => FakeOperatingSystemUtilsWithJava(),
|
|
Platform: () => FakePlatform(),
|
|
Config: () => Config,
|
|
AndroidStudio: () => FakeAndroidStudioWithoutJdk(),
|
|
});
|
|
|
|
testUsingContext('returns null if no java binary could be found', () {
|
|
final String? foundJavaBinaryPath = AndroidSdk.findJavaBinary(
|
|
androidStudio: globals.androidStudio,
|
|
fileSystem: globals.fs,
|
|
operatingSystemUtils: globals.os,
|
|
platform: globals.platform,
|
|
);
|
|
|
|
expect(foundJavaBinaryPath, null);
|
|
}, overrides: <Type, Generator>{
|
|
FileSystem: () => MemoryFileSystem.test(),
|
|
ProcessManager: () => FakeProcessManager.any(),
|
|
OperatingSystemUtils: () => FakeOperatingSystemUtilsWithoutJava(),
|
|
Platform: () => FakePlatform(),
|
|
Config: () => Config,
|
|
AndroidStudio: () => FakeAndroidStudioWithoutJdk(),
|
|
});
|
|
});
|
|
});
|
|
|
|
group('java version', () {
|
|
const String exampleJdk8Output = '''
|
|
java version "1.8.0_202"
|
|
Java(TM) SE Runtime Environment (build 1.8.0_202-b10)
|
|
Java HotSpot(TM) 64-Bit Server VM (build 25.202-b10, mixed mode)
|
|
''';
|
|
// Example strings came from actual terminal output.
|
|
testWithoutContext('parses jdk 8', () {
|
|
expect(AndroidSdk.parseJavaVersion(exampleJdk8Output), '1.8.0');
|
|
});
|
|
|
|
testWithoutContext('parses jdk 11 windows', () {
|
|
const String exampleJdkOutput = '''
|
|
java version "11.0.14"
|
|
Java(TM) SE Runtime Environment (build 11.0.14+10-b13)
|
|
Java HotSpot(TM) 64-Bit Server VM (build 11.0.14+10-b13, mixed mode)
|
|
''';
|
|
expect(AndroidSdk.parseJavaVersion(exampleJdkOutput), '11.0.14');
|
|
});
|
|
|
|
testWithoutContext('parses jdk 11 mac/linux', () {
|
|
const String exampleJdkOutput = '''
|
|
openjdk version "11.0.18" 2023-01-17 LTS
|
|
OpenJDK Runtime Environment Zulu11.62+17-CA (build 11.0.18+10-LTS)
|
|
OpenJDK 64-Bit Server VM Zulu11.62+17-CA (build 11.0.18+10-LTS, mixed mode)
|
|
''';
|
|
expect(AndroidSdk.parseJavaVersion(exampleJdkOutput), '11.0.18');
|
|
});
|
|
|
|
testWithoutContext('parses jdk 17', () {
|
|
const String exampleJdkOutput = '''
|
|
openjdk 17.0.6 2023-01-17
|
|
OpenJDK Runtime Environment (build 17.0.6+0-17.0.6b802.4-9586694)
|
|
OpenJDK 64-Bit Server VM (build 17.0.6+0-17.0.6b802.4-9586694, mixed mode)
|
|
''';
|
|
expect(AndroidSdk.parseJavaVersion(exampleJdkOutput), '17.0.6');
|
|
});
|
|
|
|
testWithoutContext('parses jdk 19', () {
|
|
const String exampleJdkOutput = '''
|
|
openjdk 19.0.2 2023-01-17
|
|
OpenJDK Runtime Environment Homebrew (build 19.0.2)
|
|
OpenJDK 64-Bit Server VM Homebrew (build 19.0.2, mixed mode, sharing)
|
|
''';
|
|
expect(AndroidSdk.parseJavaVersion(exampleJdkOutput), '19.0.2');
|
|
});
|
|
|
|
// https://chrome-infra-packages.appspot.com/p/flutter/java/openjdk/
|
|
testWithoutContext('parses jdk output from ci', () {
|
|
const String exampleJdkOutput = '''
|
|
openjdk 11.0.2 2019-01-15
|
|
OpenJDK Runtime Environment 18.9 (build 11.0.2+9)
|
|
OpenJDK 64-Bit Server VM 18.9 (build 11.0.2+9, mixed mode)
|
|
''';
|
|
expect(AndroidSdk.parseJavaVersion(exampleJdkOutput), '11.0.2');
|
|
});
|
|
|
|
testWithoutContext('parses jdk two number versions', () {
|
|
const String exampleJdkOutput = 'openjdk 19.0 2023-01-17';
|
|
expect(AndroidSdk.parseJavaVersion(exampleJdkOutput), '19.0');
|
|
});
|
|
|
|
testUsingContext('getJavaBinary with AS install', () {
|
|
final Directory sdkDir = createSdkDirectory(fileSystem: fileSystem);
|
|
config.setValue('android-sdk', sdkDir.path);
|
|
final AndroidStudio androidStudio = FakeAndroidStudio();
|
|
|
|
final String javaPath = AndroidSdk.findJavaBinary(
|
|
androidStudio: androidStudio,
|
|
fileSystem: fileSystem,
|
|
operatingSystemUtils: FakeOperatingSystemUtils(),
|
|
platform: platform)!;
|
|
// Built from the implementation of findJavaBinary android studio case.
|
|
final String expectedJavaPath = '${androidStudio.javaPath}/bin/java';
|
|
|
|
expect(javaPath, expectedJavaPath);
|
|
}, overrides: <Type, Generator>{
|
|
FileSystem: () => fileSystem,
|
|
ProcessManager: () => processManager,
|
|
Config: () => config,
|
|
Platform: () => FakePlatform(environment: <String, String>{}),
|
|
});
|
|
|
|
group('java', () {
|
|
late AndroidStudio androidStudio;
|
|
setUp(() {
|
|
androidStudio = FakeAndroidStudio();
|
|
});
|
|
testUsingContext('getJavaVersion finds AS java and parses version', () {
|
|
final Directory sdkDir = createSdkDirectory(fileSystem: fileSystem);
|
|
config.setValue('android-sdk', sdkDir.path);
|
|
|
|
final ProcessUtils processUtils = ProcessUtils(
|
|
processManager: processManager, logger: BufferLogger.test());
|
|
// Built from the implementation of findJavaBinary android studio case.
|
|
final String expectedJavaPath = '${androidStudio.javaPath}/bin/java';
|
|
|
|
processManager.addCommand(FakeCommand(
|
|
command: <String>[
|
|
expectedJavaPath,
|
|
'--version',
|
|
],
|
|
stdout: exampleJdk8Output,
|
|
));
|
|
|
|
final AndroidSdk sdk = AndroidSdk.locateAndroidSdk()!;
|
|
|
|
final String? javaVersion = sdk.getJavaVersion(
|
|
androidStudio: androidStudio,
|
|
fileSystem: fileSystem,
|
|
operatingSystemUtils: FakeOperatingSystemUtils(),
|
|
platform: FakePlatform(),
|
|
processUtils: processUtils,
|
|
);
|
|
|
|
expect(javaVersion, '1.8.0');
|
|
}, overrides: <Type, Generator>{
|
|
FileSystem: () => fileSystem,
|
|
ProcessManager: () => processManager,
|
|
AndroidStudio: () => androidStudio,
|
|
Config: () => config,
|
|
Platform: () => FakePlatform(environment: <String, String>{}),
|
|
});
|
|
});
|
|
});
|
|
}
|
|
|
|
/// A broken SDK installation.
|
|
Directory createBrokenSdkDirectory({
|
|
bool withAndroidN = false,
|
|
bool withSdkManager = true,
|
|
required FileSystem fileSystem,
|
|
}) {
|
|
final Directory dir = fileSystem.systemTempDirectory.createTempSync('flutter_mock_android_sdk.');
|
|
_createSdkFile(dir, 'licenses/dummy');
|
|
_createSdkFile(dir, 'platform-tools/adb');
|
|
|
|
_createSdkFile(dir, 'build-tools/sda/aapt');
|
|
_createSdkFile(dir, 'build-tools/af/aapt');
|
|
_createSdkFile(dir, 'build-tools/ljkasd/aapt');
|
|
|
|
_createSdkFile(dir, 'platforms/android-22/android.jar');
|
|
_createSdkFile(dir, 'platforms/android-23/android.jar');
|
|
|
|
return dir;
|
|
}
|
|
|
|
void _createSdkFile(Directory dir, String filePath, { String? contents }) {
|
|
final File file = dir.childFile(filePath);
|
|
file.createSync(recursive: true);
|
|
if (contents != null) {
|
|
file.writeAsStringSync(contents, flush: true);
|
|
}
|
|
}
|
|
|
|
Directory createSdkDirectory({
|
|
bool withAndroidN = false,
|
|
bool withSdkManager = true,
|
|
bool withPlatformTools = true,
|
|
bool withBuildTools = true,
|
|
required FileSystem fileSystem,
|
|
String buildProp = _buildProp,
|
|
}) {
|
|
final Directory dir = fileSystem.systemTempDirectory.createTempSync('flutter_mock_android_sdk.');
|
|
final String exe = globals.platform.isWindows ? '.exe' : '';
|
|
final String bat = globals.platform.isWindows ? '.bat' : '';
|
|
|
|
void createDir(Directory dir, String path) {
|
|
final Directory directory = dir.fileSystem.directory(dir.fileSystem.path.join(dir.path, path));
|
|
directory.createSync(recursive: true);
|
|
}
|
|
|
|
createDir(dir, 'licenses');
|
|
|
|
if (withPlatformTools) {
|
|
_createSdkFile(dir, 'platform-tools/adb$exe');
|
|
}
|
|
|
|
if (withBuildTools) {
|
|
_createSdkFile(dir, 'build-tools/19.1.0/aapt$exe');
|
|
_createSdkFile(dir, 'build-tools/22.0.1/aapt$exe');
|
|
_createSdkFile(dir, 'build-tools/23.0.2/aapt$exe');
|
|
if (withAndroidN) {
|
|
_createSdkFile(dir, 'build-tools/24.0.0-preview/aapt$exe');
|
|
}
|
|
}
|
|
|
|
_createSdkFile(dir, 'platforms/android-22/android.jar');
|
|
_createSdkFile(dir, 'platforms/android-23/android.jar');
|
|
if (withAndroidN) {
|
|
_createSdkFile(dir, 'platforms/android-N/android.jar');
|
|
_createSdkFile(dir, 'platforms/android-N/build.prop', contents: buildProp);
|
|
}
|
|
|
|
if (withSdkManager) {
|
|
_createSdkFile(dir, 'cmdline-tools/latest/bin/sdkmanager$bat');
|
|
}
|
|
return dir;
|
|
}
|
|
|
|
const String _buildProp = r'''
|
|
ro.build.version.incremental=1624448
|
|
ro.build.version.sdk=24
|
|
ro.build.version.codename=REL
|
|
''';
|
|
|
|
class FakeAndroidStudioWithJdk extends Fake implements AndroidStudio {
|
|
@override
|
|
String? get javaPath => '/fake/android_studio/java/path/';
|
|
}
|
|
|
|
class FakeAndroidStudioWithoutJdk extends Fake implements AndroidStudio {
|
|
@override
|
|
String? get javaPath => null;
|
|
}
|
|
|
|
class FakeOperatingSystemUtilsWithJava extends Fake implements OperatingSystemUtils {
|
|
@override
|
|
File? which(String execName) {
|
|
if (execName == 'java') {
|
|
return globals.fs.file('/fake/which/java/path');
|
|
}
|
|
return null;
|
|
}
|
|
}
|
|
|
|
class FakeOperatingSystemUtilsWithoutJava extends Fake implements OperatingSystemUtils {
|
|
@override
|
|
File? which(String execName) {
|
|
return null;
|
|
}
|
|
}
|