-
Notifications
You must be signed in to change notification settings - Fork 120
/
Copy pathio_utils_test.dart
110 lines (100 loc) · 3.9 KB
/
io_utils_test.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
// Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
// for details. 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:dartdoc/src/io_utils.dart';
import 'package:test/test.dart';
void main() {
group('io utils', () {
test('converts : to -', () {
expect(getFileNameFor('dart:io'), 'dart-io.html');
});
test('converts . to -', () {
expect(getFileNameFor('dartdoc.generator'), 'dartdoc-generator.html');
});
});
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 {
var sharedTracker = TaskQueue(maxJobs: 2);
expect(() async {
var t =
Future.delayed(Duration(milliseconds: 10), () => throw Exception());
await sharedTracker.add(() => t);
return t;
}, throwsA(const TypeMatcher<Exception>()));
expect(() async {
var t =
Future.delayed(Duration(milliseconds: 10), () => throw Exception());
await sharedTracker.add(() => t);
return t;
}, throwsA(const TypeMatcher<Exception>()));
expect(() async {
var t =
Future.delayed(Duration(milliseconds: 10), () => throw Exception());
// ignore: empty_catches
await sharedTracker.add(() => t);
return t;
}, throwsA(const TypeMatcher<Exception>()));
expect(() async {
var t =
Future.delayed(Duration(milliseconds: 10), () => throw Exception());
await sharedTracker.add(() => t);
return t;
}, throwsA(const TypeMatcher<Exception>()));
/// We deadlock here if the exception is not handled properly.
await sharedTracker.tasksComplete;
});
test('basic sequential processing works with no deadlock', () async {
var completed = <int>{};
var tracker = TaskQueue(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 {
var completed = <int>{};
var tracker = TaskQueue(maxJobs: 1);
await tracker.add(() async => completed.add(0));
await tracker.add(() async => throw Exception()).catchError((e) => -1);
await tracker.add(() async => throw Exception()).catchError((e) => -1);
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 {
var completed = <int>{};
var tracker = TaskQueue(maxJobs: 10);
for (var 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 {
var completed = <int>{};
var tracker = TaskQueue(maxJobs: 10);
for (var i = 0; i < 50; i++) {
await tracker.add(() async => completed.add(i));
}
for (var i = 50; i < 65; i++) {
try {
await tracker.add(() async => throw TestException());
} on TestException {
// Ignore
}
}
for (var i = 65; i < 100; i++) {
await tracker.add(() async => completed.add(i));
}
await tracker.tasksComplete;
expect(completed.length, equals(85));
});
});
}
class TestException implements Exception {}