forked from dart-lang/shelf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlog_middleware_test.dart
More file actions
71 lines (58 loc) · 1.95 KB
/
Copy pathlog_middleware_test.dart
File metadata and controls
71 lines (58 loc) · 1.95 KB
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
// Copyright (c) 2014, 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:shelf/shelf.dart';
import 'package:test/test.dart';
import 'test_util.dart';
void main() {
late bool gotLog;
setUp(() {
gotLog = false;
});
var logger = (String msg, bool isError) {
expect(gotLog, isFalse);
gotLog = true;
expect(isError, isFalse);
expect(msg, contains('GET'));
expect(msg, contains('[200]'));
};
test('logs a request with a synchronous response', () {
var handler = const Pipeline()
.addMiddleware(logRequests(logger: logger))
.addHandler(syncHandler);
return makeSimpleRequest(handler).then((response) {
expect(gotLog, isTrue);
});
});
test('logs a request with an asynchronous response', () {
var handler = const Pipeline()
.addMiddleware(logRequests(logger: logger))
.addHandler(asyncHandler);
return makeSimpleRequest(handler).then((response) {
expect(gotLog, isTrue);
});
});
test('logs a request with an asynchronous error response', () {
var handler =
const Pipeline().addMiddleware(logRequests(logger: (msg, isError) {
expect(gotLog, isFalse);
gotLog = true;
expect(isError, isTrue);
expect(msg, contains('\tGET\t/'));
expect(msg, contains('testing logging throw'));
})).addHandler((request) {
throw 'testing logging throw';
});
expect(makeSimpleRequest(handler), throwsA('testing logging throw'));
});
test("doesn't log a HijackException", () {
var handler = const Pipeline()
.addMiddleware(logRequests(logger: logger))
.addHandler((request) => throw const HijackException());
expect(
makeSimpleRequest(handler).whenComplete(() {
expect(gotLog, isFalse);
}),
throwsHijackException);
});
}