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

This auto-formats all *.dart files in the repository outside of the `engine` subdirectory and enforces that these files stay formatted with a presubmit check. **Reviewers:** Please carefully review all the commits except for the one titled "formatted". The "formatted" commit was auto-generated by running `dev/tools/format.sh -a -f`. The other commits were hand-crafted to prepare the repo for the formatting change. I recommend reviewing the commits one-by-one via the "Commits" tab and avoiding Github's "Files changed" tab as it will likely slow down your browser because of the size of this PR. --------- Co-authored-by: Kate Lovett <katelovett@google.com> Co-authored-by: LongCatIsLooong <31859944+LongCatIsLooong@users.noreply.github.com>
239 lines
7.3 KiB
Dart
239 lines
7.3 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 'dart:async';
|
|
import 'dart:io' as io;
|
|
|
|
import 'package:flutter_tools/src/base/io.dart';
|
|
import 'package:flutter_tools/src/base/logger.dart';
|
|
import 'package:flutter_tools/src/base/process.dart';
|
|
import 'package:flutter_tools/src/base/signals.dart';
|
|
import 'package:test/fake.dart';
|
|
|
|
import '../../src/common.dart';
|
|
import '../../src/context.dart';
|
|
|
|
void main() {
|
|
group('Signals', () {
|
|
late Signals signals;
|
|
late FakeProcessSignal fakeSignal;
|
|
late ProcessSignal signalUnderTest;
|
|
late FakeShutdownHooks shutdownHooks;
|
|
|
|
setUp(() {
|
|
shutdownHooks = FakeShutdownHooks();
|
|
signals = Signals.test(shutdownHooks: shutdownHooks);
|
|
fakeSignal = FakeProcessSignal();
|
|
signalUnderTest = ProcessSignal(fakeSignal);
|
|
});
|
|
|
|
testWithoutContext('signal handler runs', () async {
|
|
final Completer<void> completer = Completer<void>();
|
|
signals.addHandler(signalUnderTest, (ProcessSignal s) {
|
|
expect(s, signalUnderTest);
|
|
completer.complete();
|
|
});
|
|
|
|
fakeSignal.controller.add(fakeSignal);
|
|
await completer.future;
|
|
});
|
|
|
|
testWithoutContext('signal handlers run in order', () async {
|
|
final Completer<void> completer = Completer<void>();
|
|
|
|
bool first = false;
|
|
|
|
signals.addHandler(signalUnderTest, (ProcessSignal s) {
|
|
expect(s, signalUnderTest);
|
|
first = true;
|
|
});
|
|
|
|
signals.addHandler(signalUnderTest, (ProcessSignal s) {
|
|
expect(s, signalUnderTest);
|
|
expect(first, isTrue);
|
|
completer.complete();
|
|
});
|
|
|
|
fakeSignal.controller.add(fakeSignal);
|
|
await completer.future;
|
|
});
|
|
|
|
testWithoutContext(
|
|
'signal handlers do not cause concurrent modification errors when removing handlers in a signal callback',
|
|
() async {
|
|
final Completer<void> completer = Completer<void>();
|
|
late Object token;
|
|
Future<void> handle(ProcessSignal s) async {
|
|
expect(s, signalUnderTest);
|
|
expect(await signals.removeHandler(signalUnderTest, token), true);
|
|
completer.complete();
|
|
}
|
|
|
|
token = signals.addHandler(signalUnderTest, handle);
|
|
|
|
fakeSignal.controller.add(fakeSignal);
|
|
await completer.future;
|
|
},
|
|
);
|
|
|
|
testWithoutContext('signal handler error goes on error stream', () async {
|
|
final Exception exn = Exception('Error');
|
|
signals.addHandler(signalUnderTest, (ProcessSignal s) async {
|
|
throw exn;
|
|
});
|
|
|
|
final Completer<void> completer = Completer<void>();
|
|
final List<Object> errList = <Object>[];
|
|
final StreamSubscription<Object> errSub = signals.errors.listen((Object err) {
|
|
errList.add(err);
|
|
completer.complete();
|
|
});
|
|
|
|
fakeSignal.controller.add(fakeSignal);
|
|
await completer.future;
|
|
await errSub.cancel();
|
|
expect(errList, contains(exn));
|
|
});
|
|
|
|
testWithoutContext('removed signal handler does not run', () async {
|
|
final Object token = signals.addHandler(signalUnderTest, (ProcessSignal s) async {
|
|
fail('Signal handler should have been removed.');
|
|
});
|
|
|
|
await signals.removeHandler(signalUnderTest, token);
|
|
|
|
final List<Object> errList = <Object>[];
|
|
final StreamSubscription<Object> errSub = signals.errors.listen((Object err) {
|
|
errList.add(err);
|
|
});
|
|
|
|
fakeSignal.controller.add(fakeSignal);
|
|
|
|
await errSub.cancel();
|
|
expect(errList, isEmpty);
|
|
});
|
|
|
|
testWithoutContext('non-removed signal handler still runs', () async {
|
|
final Completer<void> completer = Completer<void>();
|
|
signals.addHandler(signalUnderTest, (ProcessSignal s) {
|
|
expect(s, signalUnderTest);
|
|
completer.complete();
|
|
});
|
|
|
|
final Object token = signals.addHandler(signalUnderTest, (ProcessSignal s) async {
|
|
fail('Signal handler should have been removed.');
|
|
});
|
|
await signals.removeHandler(signalUnderTest, token);
|
|
|
|
final List<Object> errList = <Object>[];
|
|
final StreamSubscription<Object> errSub = signals.errors.listen((Object err) {
|
|
errList.add(err);
|
|
});
|
|
|
|
fakeSignal.controller.add(fakeSignal);
|
|
await completer.future;
|
|
await errSub.cancel();
|
|
expect(errList, isEmpty);
|
|
});
|
|
|
|
testWithoutContext('only handlers for the correct signal run', () async {
|
|
final FakeProcessSignal mockSignal2 = FakeProcessSignal();
|
|
final ProcessSignal otherSignal = ProcessSignal(mockSignal2);
|
|
|
|
final Completer<void> completer = Completer<void>();
|
|
signals.addHandler(signalUnderTest, (ProcessSignal s) {
|
|
expect(s, signalUnderTest);
|
|
completer.complete();
|
|
});
|
|
|
|
signals.addHandler(otherSignal, (ProcessSignal s) async {
|
|
fail('Wrong signal!.');
|
|
});
|
|
|
|
final List<Object> errList = <Object>[];
|
|
final StreamSubscription<Object> errSub = signals.errors.listen((Object err) {
|
|
errList.add(err);
|
|
});
|
|
|
|
fakeSignal.controller.add(fakeSignal);
|
|
await completer.future;
|
|
await errSub.cancel();
|
|
expect(errList, isEmpty);
|
|
});
|
|
|
|
testUsingContext('all handlers for exiting signals are run before exit', () async {
|
|
final Signals signals = Signals.test(
|
|
exitSignals: <ProcessSignal>[signalUnderTest],
|
|
shutdownHooks: shutdownHooks,
|
|
);
|
|
final Completer<void> completer = Completer<void>();
|
|
bool first = false;
|
|
bool second = false;
|
|
|
|
setExitFunctionForTests((int exitCode) {
|
|
// Both handlers have run before exit is called.
|
|
expect(first, isTrue);
|
|
expect(second, isTrue);
|
|
expect(exitCode, 0);
|
|
restoreExitFunction();
|
|
completer.complete();
|
|
});
|
|
|
|
signals.addHandler(signalUnderTest, (ProcessSignal s) {
|
|
expect(s, signalUnderTest);
|
|
expect(first, isFalse);
|
|
expect(second, isFalse);
|
|
first = true;
|
|
});
|
|
|
|
signals.addHandler(signalUnderTest, (ProcessSignal s) {
|
|
expect(s, signalUnderTest);
|
|
expect(first, isTrue);
|
|
expect(second, isFalse);
|
|
second = true;
|
|
});
|
|
|
|
fakeSignal.controller.add(fakeSignal);
|
|
await completer.future;
|
|
expect(shutdownHooks.ranShutdownHooks, isTrue);
|
|
});
|
|
|
|
testUsingContext('ShutdownHooks run before exiting', () async {
|
|
final Signals signals = Signals.test(
|
|
exitSignals: <ProcessSignal>[signalUnderTest],
|
|
shutdownHooks: shutdownHooks,
|
|
);
|
|
final Completer<void> completer = Completer<void>();
|
|
|
|
setExitFunctionForTests((int exitCode) {
|
|
expect(exitCode, 0);
|
|
restoreExitFunction();
|
|
completer.complete();
|
|
});
|
|
|
|
signals.addHandler(signalUnderTest, (ProcessSignal s) {});
|
|
|
|
fakeSignal.controller.add(fakeSignal);
|
|
await completer.future;
|
|
expect(shutdownHooks.ranShutdownHooks, isTrue);
|
|
});
|
|
});
|
|
}
|
|
|
|
class FakeProcessSignal extends Fake implements io.ProcessSignal {
|
|
final StreamController<io.ProcessSignal> controller = StreamController<io.ProcessSignal>();
|
|
|
|
@override
|
|
Stream<io.ProcessSignal> watch() => controller.stream;
|
|
}
|
|
|
|
class FakeShutdownHooks extends Fake implements ShutdownHooks {
|
|
bool ranShutdownHooks = false;
|
|
|
|
@override
|
|
Future<void> runShutdownHooks(Logger logger) async {
|
|
ranShutdownHooks = true;
|
|
}
|
|
}
|