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>
111 lines
4.0 KiB
Dart
111 lines
4.0 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 'package:flutter_tools/src/base/task_queue.dart';
|
|
|
|
import '../../src/common.dart';
|
|
|
|
void main() {
|
|
group('TaskQueue', () {
|
|
/// A special test designed to check shared [TaskQueue]
|
|
/// behavior when exceptions occur after a delay in the passed closures to
|
|
/// [TaskQueue.add].
|
|
test('no deadlock when delayed exceptions fire in closures', () async {
|
|
final TaskQueue<void> sharedTracker = TaskQueue<void>(maxJobs: 2);
|
|
expect(() async {
|
|
final Future<void> t = Future<void>.delayed(
|
|
const Duration(milliseconds: 10),
|
|
() => throw TestException(),
|
|
);
|
|
await sharedTracker.add(() => t);
|
|
return t;
|
|
}, throwsA(const TypeMatcher<TestException>()));
|
|
expect(() async {
|
|
final Future<void> t = Future<void>.delayed(
|
|
const Duration(milliseconds: 10),
|
|
() => throw TestException(),
|
|
);
|
|
await sharedTracker.add(() => t);
|
|
return t;
|
|
}, throwsA(const TypeMatcher<TestException>()));
|
|
expect(() async {
|
|
final Future<void> t = Future<void>.delayed(
|
|
const Duration(milliseconds: 10),
|
|
() => throw TestException(),
|
|
);
|
|
await sharedTracker.add(() => t);
|
|
return t;
|
|
}, throwsA(const TypeMatcher<TestException>()));
|
|
expect(() async {
|
|
final Future<void> t = Future<void>.delayed(
|
|
const Duration(milliseconds: 10),
|
|
() => throw TestException(),
|
|
);
|
|
await sharedTracker.add(() => t);
|
|
return t;
|
|
}, throwsA(const TypeMatcher<TestException>()));
|
|
|
|
/// We deadlock here if the exception is not handled properly.
|
|
await sharedTracker.tasksComplete;
|
|
});
|
|
|
|
test('basic sequential processing works with no deadlock', () async {
|
|
final Set<int> completed = <int>{};
|
|
final TaskQueue<void> tracker = TaskQueue<void>(maxJobs: 1);
|
|
await tracker.add(() async => completed.add(1));
|
|
await tracker.add(() async => completed.add(2));
|
|
await tracker.add(() async => completed.add(3));
|
|
await tracker.tasksComplete;
|
|
expect(completed.length, equals(3));
|
|
});
|
|
|
|
test('basic sequential processing works on exceptions', () async {
|
|
final Set<int> completed = <int>{};
|
|
final TaskQueue<void> tracker = TaskQueue<void>(maxJobs: 1);
|
|
await tracker.add(() async => completed.add(0));
|
|
await tracker.add(() async => throw TestException()).then((_) {}, onError: (Object _) {});
|
|
await tracker.add(() async => throw TestException()).then((_) {}, onError: (Object _) {});
|
|
await tracker.add(() async => completed.add(3));
|
|
await tracker.tasksComplete;
|
|
expect(completed.length, equals(2));
|
|
});
|
|
|
|
/// Verify that if there are more exceptions than the maximum number
|
|
/// of in-flight [Future]s that there is no deadlock.
|
|
test('basic parallel processing works with no deadlock', () async {
|
|
final Set<int> completed = <int>{};
|
|
final TaskQueue<void> tracker = TaskQueue<void>(maxJobs: 10);
|
|
for (int i = 0; i < 100; i++) {
|
|
await tracker.add(() async => completed.add(i));
|
|
}
|
|
await tracker.tasksComplete;
|
|
expect(completed.length, equals(100));
|
|
});
|
|
|
|
test('basic parallel processing works on exceptions', () async {
|
|
final Set<int> completed = <int>{};
|
|
final TaskQueue<void> tracker = TaskQueue<void>(maxJobs: 10);
|
|
for (int i = 0; i < 50; i++) {
|
|
await tracker.add(() async => completed.add(i));
|
|
}
|
|
for (int i = 50; i < 65; i++) {
|
|
try {
|
|
await tracker.add(() async => throw TestException());
|
|
} on TestException {
|
|
// Ignore
|
|
}
|
|
}
|
|
for (int i = 65; i < 100; i++) {
|
|
await tracker.add(() async => completed.add(i));
|
|
}
|
|
await tracker.tasksComplete;
|
|
expect(completed.length, equals(85));
|
|
});
|
|
});
|
|
}
|
|
|
|
class TestException implements Exception {}
|