Reland the Dart plugin registry (#79669)
diff --git a/packages/flutter_tools/test/general.shard/resident_runner_test.dart b/packages/flutter_tools/test/general.shard/resident_runner_test.dart
index beb459e..d7c6cb2 100644
--- a/packages/flutter_tools/test/general.shard/resident_runner_test.dart
+++ b/packages/flutter_tools/test/general.shard/resident_runner_test.dart
@@ -271,6 +271,8 @@
outputPath: anyNamed('outputPath'),
packageConfig: anyNamed('packageConfig'),
suppressErrors: true,
+ projectRootPath: anyNamed('projectRootPath'),
+ fs: anyNamed('fs'),
)).thenAnswer((Invocation invocation) async {
return const CompilerOutput('foo', 0 ,<Uri>[]);
});
@@ -288,6 +290,8 @@
outputPath: anyNamed('outputPath'),
packageConfig: anyNamed('packageConfig'),
suppressErrors: true,
+ projectRootPath: anyNamed('projectRootPath'),
+ fs: anyNamed('fs'),
)).called(1);
expect(fakeVmServiceHost.hasRemainingExpectations, false);
}), overrides: <Type, Generator>{
@@ -316,6 +320,8 @@
outputPath: anyNamed('outputPath'),
packageConfig: anyNamed('packageConfig'),
suppressErrors: true,
+ projectRootPath: anyNamed('projectRootPath'),
+ fs: anyNamed('fs'),
)).thenAnswer((Invocation invocation) async {
return const CompilerOutput('foo', 1 ,<Uri>[]);
});
@@ -408,6 +414,8 @@
any,
outputPath: anyNamed('outputPath'),
packageConfig: anyNamed('packageConfig'),
+ projectRootPath: anyNamed('projectRootPath'),
+ fs: anyNamed('fs'),
suppressErrors: false,
)).thenAnswer((Invocation invocation) async {
return const CompilerOutput('foo', 0, <Uri>[]);
@@ -426,6 +434,8 @@
outputPath: anyNamed('outputPath'),
packageConfig: anyNamed('packageConfig'),
suppressErrors: false,
+ projectRootPath: anyNamed('projectRootPath'),
+ fs: anyNamed('fs'),
)).called(1);
expect(fakeVmServiceHost.hasRemainingExpectations, false);
}), overrides: <Type, Generator>{
@@ -1438,6 +1448,26 @@
globals.fs.file('l10n.yaml').createSync();
globals.fs.file('pubspec.yaml').writeAsStringSync('flutter:\n generate: true\n');
+ // Create necessary files for [DartPluginRegistrantTarget]
+ final File packageConfig = globals.fs.directory('.dart_tool')
+ .childFile('package_config.json');
+ packageConfig.createSync(recursive: true);
+ packageConfig.writeAsStringSync('''
+{
+ "configVersion": 2,
+ "packages": [
+ {
+ "name": "path_provider_linux",
+ "rootUri": "../../../path_provider_linux",
+ "packageUri": "lib/",
+ "languageVersion": "2.12"
+ }
+ ]
+}
+''');
+ // Start from an empty generated_main.dart file.
+ globals.fs.directory('.dart_tool').childDirectory('flutter_build').childFile('generated_main.dart').createSync(recursive: true);
+
await residentRunner.runSourceGenerators();
expect(testLogger.errorText, isEmpty);
@@ -2515,6 +2545,8 @@
List<Uri> invalidatedFiles, {
@required String outputPath,
@required PackageConfig packageConfig,
+ @required String projectRootPath,
+ @required FileSystem fs,
bool suppressErrors = false,
}) async {
return const CompilerOutput('foo.dill', 0, <Uri>[]);