Unverified Commit f688b0d5 authored by Ian Hickson's avatar Ian Hickson Committed by GitHub

Delete all temporary files in flutter test. (#20679)

Turns out we weren't deleting the dill directory or the fonts directory.
parent 8c79f40d
...@@ -206,6 +206,8 @@ class _Compiler { ...@@ -206,6 +206,8 @@ class _Compiler {
.createTempSync('flutter_test_compiler.'); .createTempSync('flutter_test_compiler.');
final File outputDill = outputDillDirectory.childFile('output.dill'); final File outputDill = outputDillDirectory.childFile('output.dill');
printTrace('Compiler will use the following file as its incremental dill file: ${outputDill.path}');
bool suppressOutput = false; bool suppressOutput = false;
void reportCompilerMessage(String message) { void reportCompilerMessage(String message) {
if (suppressOutput) if (suppressOutput)
...@@ -230,6 +232,7 @@ class _Compiler { ...@@ -230,6 +232,7 @@ class _Compiler {
); );
} }
printTrace('Listening to compiler controller...');
compilerController.stream.listen((_CompilationRequest request) async { compilerController.stream.listen((_CompilationRequest request) async {
final bool isEmpty = compilationQueue.isEmpty; final bool isEmpty = compilationQueue.isEmpty;
compilationQueue.add(request); compilationQueue.add(request);
...@@ -240,6 +243,7 @@ class _Compiler { ...@@ -240,6 +243,7 @@ class _Compiler {
while (compilationQueue.isNotEmpty) { while (compilationQueue.isNotEmpty) {
final _CompilationRequest request = compilationQueue.first; final _CompilationRequest request = compilationQueue.first;
printTrace('Compiling ${request.path}'); printTrace('Compiling ${request.path}');
final Stopwatch compilerTime = new Stopwatch()..start();
compiler ??= createCompiler(); compiler ??= createCompiler();
suppressOutput = false; suppressOutput = false;
final CompilerOutput compilerOutput = await handleTimeout<CompilerOutput>( final CompilerOutput compilerOutput = await handleTimeout<CompilerOutput>(
...@@ -256,7 +260,7 @@ class _Compiler { ...@@ -256,7 +260,7 @@ class _Compiler {
// a weird state. // a weird state.
if (outputPath == null || compilerOutput.errorCount > 0) { if (outputPath == null || compilerOutput.errorCount > 0) {
request.result.complete(null); request.result.complete(null);
await shutdown(); await _shutdown();
} else { } else {
final File kernelReadyToRun = final File kernelReadyToRun =
await fs.file(outputPath).copy('${request.path}.dill'); await fs.file(outputPath).copy('${request.path}.dill');
...@@ -264,11 +268,13 @@ class _Compiler { ...@@ -264,11 +268,13 @@ class _Compiler {
compiler.accept(); compiler.accept();
compiler.reset(); compiler.reset();
} }
printTrace('Compiling ${request.path} took ${compilerTime.elapsedMilliseconds}ms');
// Only remove now when we finished processing the element // Only remove now when we finished processing the element
compilationQueue.removeAt(0); compilationQueue.removeAt(0);
} }
} }
}, onDone: () { }, onDone: () {
printTrace('Deleting ${outputDillDirectory.path}...');
outputDillDirectory.deleteSync(recursive: true); outputDillDirectory.deleteSync(recursive: true);
}); });
} }
...@@ -284,7 +290,7 @@ class _Compiler { ...@@ -284,7 +290,7 @@ class _Compiler {
return handleTimeout<String>(completer.future, mainDart); return handleTimeout<String>(completer.future, mainDart);
} }
Future<dynamic> shutdown() async { Future<void> _shutdown() async {
// Check for null in case this instance is shut down before the // Check for null in case this instance is shut down before the
// lazily-created compiler has been created. // lazily-created compiler has been created.
if (compiler != null) { if (compiler != null) {
...@@ -293,6 +299,11 @@ class _Compiler { ...@@ -293,6 +299,11 @@ class _Compiler {
} }
} }
Future<void> dispose() async {
await _shutdown();
await compilerController.close();
}
static Future<T> handleTimeout<T>(Future<T> value, String path) { static Future<T> handleTimeout<T>(Future<T> value, String path) {
return value.timeout(const Duration(minutes: 5), onTimeout: () { return value.timeout(const Duration(minutes: 5), onTimeout: () {
printError('Compilation of $path timed out after 5 minutes.'); printError('Compilation of $path timed out after 5 minutes.');
...@@ -330,6 +341,7 @@ class _FlutterPlatform extends PlatformPlugin { ...@@ -330,6 +341,7 @@ class _FlutterPlatform extends PlatformPlugin {
final bool trackWidgetCreation; final bool trackWidgetCreation;
final bool updateGoldens; final bool updateGoldens;
Directory fontsDirectory;
_Compiler compiler; _Compiler compiler;
// Each time loadChannel() is called, we spin up a local WebSocket server, // Each time loadChannel() is called, we spin up a local WebSocket server,
...@@ -740,9 +752,14 @@ class _FlutterPlatform extends PlatformPlugin { ...@@ -740,9 +752,14 @@ class _FlutterPlatform extends PlatformPlugin {
@override @override
Future<dynamic> close() async { Future<dynamic> close() async {
if (compiler != null) { if (compiler != null) {
await compiler.shutdown(); await compiler.dispose();
compiler = null; compiler = null;
} }
if (fontsDirectory != null) {
printTrace('Deleting ${fontsDirectory.path}...');
fontsDirectory.deleteSync(recursive: true);
fontsDirectory = null;
}
} }
/// Returns a Fontconfig config file that limits font fallback to the /// Returns a Fontconfig config file that limits font fallback to the
...@@ -757,8 +774,12 @@ class _FlutterPlatform extends PlatformPlugin { ...@@ -757,8 +774,12 @@ class _FlutterPlatform extends PlatformPlugin {
sb.writeln(' <cachedir>/var/cache/fontconfig</cachedir>'); sb.writeln(' <cachedir>/var/cache/fontconfig</cachedir>');
sb.writeln('</fontconfig>'); sb.writeln('</fontconfig>');
final Directory fontsDir = fs.systemTempDirectory.createTempSync('flutter_test_fonts.'); if (fontsDirectory == null) {
_cachedFontConfig = fs.file('${fontsDir.path}/fonts.conf'); fontsDirectory = fs.systemTempDirectory.createTempSync('flutter_test_fonts.');
printTrace('Using this directory for fonts configuration: ${fontsDirectory.path}');
}
_cachedFontConfig = fs.file('${fontsDirectory.path}/fonts.conf');
_cachedFontConfig.createSync(); _cachedFontConfig.createSync();
_cachedFontConfig.writeAsStringSync(sb.toString()); _cachedFontConfig.writeAsStringSync(sb.toString());
return _cachedFontConfig; return _cachedFontConfig;
......
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