forked from dart-lang/webdev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathevents_test.dart
542 lines (477 loc) · 17 KB
/
events_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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
// Copyright (c) 2021, 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.
@Timeout(Duration(minutes: 2))
library;
import 'dart:async';
import 'dart:io';
import 'package:dwds/src/events.dart';
import 'package:dwds/src/utilities/server.dart';
import 'package:test/test.dart';
import 'package:test_common/logging.dart';
import 'package:test_common/test_sdk_configuration.dart';
import 'package:vm_service/vm_service.dart';
import 'package:vm_service_interface/vm_service_interface.dart';
import 'package:webdriver/async_core.dart';
import 'fixtures/context.dart';
import 'fixtures/project.dart';
import 'fixtures/utilities.dart';
void main() {
final provider = TestSdkConfigurationProvider();
tearDownAll(provider.dispose);
final context = TestContext(TestProject.test, provider);
group('serve requests', () {
late HttpServer server;
setUp(() async {
setCurrentLogWriter();
server = await startHttpServer('localhost', port: 0);
});
tearDown(() async {
await server.close();
});
test('emits HTTP_REQUEST_EXCEPTION event', () async {
Future<void> throwAsyncException() async {
await Future.delayed(const Duration(milliseconds: 100));
throw Exception('async error');
}
// The events stream is a broadcast stream so start listening
// before the action.
final events = expectLater(
pipe(eventStream),
emitsThrough(
matchesEvent(DwdsEventKind.httpRequestException, {
'server': 'FakeServer',
'exception': startsWith('Exception: async error'),
}),
),
);
// Start serving requests with a failing handler in an error zone.
serveHttpRequests(server, (request) async {
unawaited(throwAsyncException());
return Future.error('error');
}, (e, s) {
emitEvent(DwdsEvent.httpRequestException('FakeServer', '$e:$s'));
});
// Send a request.
final client = HttpClient();
final request =
await client.getUrl(Uri.parse('http://localhost:${server.port}/foo'));
// Ignore the response.
final response = await request.close();
await response.drain();
// Wait for expected events.
await events;
});
});
group(
'with dwds',
() {
Future? initialEvents;
late Keyboard keyboard;
late Stream<DwdsEvent> events;
late VmService fakeClient;
/// Runs [action] and waits for an event matching [eventMatcher].
Future<T> expectEventDuring<T>(
Matcher eventMatcher,
Future<T> Function() action, {
Timeout? timeout,
}) async {
// The events stream is a broadcast stream so start listening
// before the action.
final events = expectLater(
pipe(context.testServer.dwds.events, timeout: timeout),
emitsThrough(eventMatcher),
);
final result = await action();
await events;
return result;
}
/// Runs [action] and waits for an event matching [eventMatcher].
Future<T> expectEventsDuring<T>(
List<Matcher> eventMatchers,
Future<T> Function() action, {
Timeout? timeout,
}) async {
// The events stream is a broadcast stream so start listening
// before the action.
final events = eventMatchers.map(
(matcher) => expectLater(
pipe(context.testServer.dwds.events, timeout: timeout),
emitsThrough(matcher),
),
);
final result = await action();
await Future.wait(events);
return result;
}
setUpAll(() async {
setCurrentLogWriter();
initialEvents = expectLater(
pipe(eventStream, timeout: const Timeout.factor(5)),
emitsThrough(
matchesEvent(DwdsEventKind.compilerUpdateDependencies, {
'entrypoint': 'hello_world/main.dart.bootstrap.js',
'elapsedMilliseconds': isNotNull,
}),
),
);
await context.setUp(
testSettings: TestSettings(enableExpressionEvaluation: true),
debugSettings: TestDebugSettings.withDevTools(context),
);
keyboard = context.webDriver.driver.keyboard;
events = context.testServer.dwds.events;
fakeClient = await context.connectFakeClient();
});
tearDownAll(() async {
await context.tearDown();
});
test(
'emits DEBUGGER_READY and DEVTOOLS_LOAD events',
() async {
await expectEventsDuring(
[
matchesEvent(DwdsEventKind.debuggerReady, {
'elapsedMilliseconds': isNotNull,
'screen': equals('debugger'),
}),
matchesEvent(DwdsEventKind.devToolsLoad, {
'elapsedMilliseconds': isNotNull,
'screen': equals('debugger'),
}),
],
() => keyboard.sendChord([Keyboard.alt, 'd']),
);
},
skip: 'https://github.com/dart-lang/webdev/issues/2394',
);
test('emits DEVTOOLS_LAUNCH event', () async {
await expectEventDuring(
matchesEvent(DwdsEventKind.devtoolsLaunch, {}),
() => keyboard.sendChord([Keyboard.alt, 'd']),
);
});
test('events can be listened to multiple times', () async {
events.listen((_) {});
events.listen((_) {});
});
test('can emit event through service extension', () async {
final response = await expectEventDuring(
matchesEvent('foo-event', {'data': 1234}),
() => fakeClient.callServiceExtension(
'ext.dwds.emitEvent',
args: {
'type': 'foo-event',
'payload': {'data': 1234},
},
),
);
expect(response.type, 'Success');
});
group('evaluate', () {
late VmServiceInterface service;
late String isolateId;
late String bootstrapId;
setUpAll(() async {
setCurrentLogWriter();
service = context.service;
final vm = await service.getVM();
final isolate = await service.getIsolate(vm.isolates!.first.id!);
isolateId = isolate.id!;
bootstrapId = isolate.rootLib!.id!;
});
setUp(() async {
setCurrentLogWriter();
});
test('emits EVALUATE events on evaluation success', () async {
final expression = "helloString('world')";
await expectEventDuring(
matchesEvent(DwdsEventKind.evaluate, {
'expression': expression,
'success': isTrue,
'elapsedMilliseconds': isNotNull,
}),
() => service.evaluate(isolateId, bootstrapId, expression),
);
});
test('emits COMPILER_UPDATE_DEPENDENCIES event', () async {
await initialEvents;
});
test('emits EVALUATE events on evaluation failure', () async {
final expression = 'some-bad-expression';
await expectEventDuring(
matchesEvent(DwdsEventKind.evaluate, {
'expression': expression,
'success': isFalse,
'error': isA<ErrorRef>(),
'elapsedMilliseconds': isNotNull,
}),
() => service.evaluate(isolateId, bootstrapId, expression),
);
});
});
group('evaluateInFrame', () {
late VmServiceInterface service;
late String isolateId;
late Stream<Event> stream;
late ScriptRef mainScript;
setUpAll(() async {
setCurrentLogWriter();
service = context.service;
final vm = await service.getVM();
isolateId = vm.isolates!.first.id!;
await service.streamListen('Debug');
stream = service.onEvent('Debug');
final scriptList = await service.getScripts(isolateId);
mainScript = scriptList.scripts!
.firstWhere((script) => script.uri!.contains('main.dart'));
});
setUp(() async {
setCurrentLogWriter();
});
test('emits EVALUATE_IN_FRAME events on RPC error', () async {
final expression = 'some-bad-expression';
await expectEventDuring(
matchesEvent(DwdsEventKind.evaluateInFrame, {
'expression': expression,
'success': isFalse,
'exception': isA<RPCError>().having(
(e) => e.message,
'message',
contains('program is not paused'),
),
'elapsedMilliseconds': isNotNull,
}),
() => service
.evaluateInFrame(isolateId, 0, expression)
.catchError((_) => Future.value(Response())),
);
});
test('emits EVALUATE_IN_FRAME events on evaluation error', () async {
final line = await context.findBreakpointLine(
'callPrintCount',
isolateId,
mainScript,
);
final bp =
await service.addBreakpoint(isolateId, mainScript.id!, line);
// Wait for breakpoint to trigger.
await stream
.firstWhere((event) => event.kind == EventKind.kPauseBreakpoint);
// Evaluation succeeds and return ErrorRef containing compilation error,
// so event is marked as success.
final expression = 'some-bad-expression';
await expectEventDuring(
matchesEvent(DwdsEventKind.evaluateInFrame, {
'expression': expression,
'success': isFalse,
'error': isA<ErrorRef>(),
'elapsedMilliseconds': isNotNull,
}),
() => service
.evaluateInFrame(isolateId, 0, expression)
.catchError((_) => Future.value(Response())),
);
await service.removeBreakpoint(isolateId, bp.id!);
await service.resume(isolateId);
});
test('emits EVALUATE_IN_FRAME events on evaluation success', () async {
final line = await context.findBreakpointLine(
'callPrintCount',
isolateId,
mainScript,
);
final bp =
await service.addBreakpoint(isolateId, mainScript.id!, line);
// Wait for breakpoint to trigger.
await stream
.firstWhere((event) => event.kind == EventKind.kPauseBreakpoint);
// Evaluation succeeds and return InstanceRef,
// so event is marked as success.
final expression = 'true';
await expectEventDuring(
matchesEvent(DwdsEventKind.evaluateInFrame, {
'expression': expression,
'success': isTrue,
'elapsedMilliseconds': isNotNull,
}),
() => service
.evaluateInFrame(isolateId, 0, expression)
.catchError((_) => Future.value(Response())),
);
await service.removeBreakpoint(isolateId, bp.id!);
await service.resume(isolateId);
});
});
group('getSourceReport', () {
late VmServiceInterface service;
late String isolateId;
late ScriptRef mainScript;
setUp(() async {
setCurrentLogWriter();
service = context.service;
final vm = await service.getVM();
isolateId = vm.isolates!.first.id!;
final scriptList = await service.getScripts(isolateId);
mainScript = scriptList.scripts!
.firstWhere((script) => script.uri!.contains('main.dart'));
});
test('emits GET_SOURCE_REPORT events', () async {
await expectEventDuring(
matchesEvent(DwdsEventKind.getSourceReport, {
'elapsedMilliseconds': isNotNull,
}),
() => service.getSourceReport(
isolateId,
[SourceReportKind.kPossibleBreakpoints],
scriptId: mainScript.id,
),
);
});
});
group('getScripts', () {
late VmServiceInterface service;
late String isolateId;
setUp(() async {
setCurrentLogWriter();
service = context.service;
final vm = await service.getVM();
isolateId = vm.isolates!.first.id!;
});
test('emits GET_SCRIPTS events', () async {
await expectEventDuring(
matchesEvent(DwdsEventKind.getScripts, {
'elapsedMilliseconds': isNotNull,
}),
() => service.getScripts(isolateId),
);
});
});
group('getIsolate', () {
late VmServiceInterface service;
late String isolateId;
setUp(() async {
setCurrentLogWriter();
service = context.service;
final vm = await service.getVM();
isolateId = vm.isolates!.first.id!;
});
test('emits GET_ISOLATE events', () async {
await expectEventDuring(
matchesEvent(DwdsEventKind.getIsolate, {
'elapsedMilliseconds': isNotNull,
}),
() => service.getIsolate(isolateId),
);
});
});
group('getVM', () {
setUp(() async {
setCurrentLogWriter();
});
test('emits GET_VM events', () async {
await expectEventDuring(
matchesEvent(DwdsEventKind.getVM, {
'elapsedMilliseconds': isNotNull,
}),
() => context.service.getVM(),
);
});
});
group('hotRestart', () {
setUp(() async {
setCurrentLogWriter();
});
test('emits HOT_RESTART event', () async {
final hotRestart =
context.getRegisteredServiceExtension('hotRestart');
await expectEventDuring(
matchesEvent(DwdsEventKind.hotRestart, {
'elapsedMilliseconds': isNotNull,
}),
() => fakeClient.callServiceExtension(hotRestart!),
);
});
});
group('resume', () {
late VmServiceInterface service;
late String isolateId;
setUp(() async {
setCurrentLogWriter();
service = context.service;
final vm = await service.getVM();
isolateId = vm.isolates!.first.id!;
await service.streamListen('Debug');
final stream = service.onEvent('Debug');
final scriptList = await service.getScripts(isolateId);
final mainScript = scriptList.scripts!
.firstWhere((script) => script.uri!.contains('main.dart'));
final line = await context.findBreakpointLine(
'callPrintCount',
isolateId,
mainScript,
);
final bp =
await service.addBreakpoint(isolateId, mainScript.id!, line);
// Wait for breakpoint to trigger.
await stream
.firstWhere((event) => event.kind == EventKind.kPauseBreakpoint);
await service.removeBreakpoint(isolateId, bp.id!);
});
tearDown(() async {
// Resume execution to not impact other tests.
await service.resume(isolateId);
});
test('emits RESUME events', () async {
await expectEventDuring(
matchesEvent(DwdsEventKind.resume, {
'step': 'Into',
'elapsedMilliseconds': isNotNull,
}),
() => service.resume(isolateId, step: 'Into'),
);
});
});
group('fullReload', () {
setUp(() async {
setCurrentLogWriter();
});
test('emits FULL_RELOAD event', () async {
final fullReload =
context.getRegisteredServiceExtension('fullReload');
await expectEventDuring(
matchesEvent(DwdsEventKind.fullReload, {
'elapsedMilliseconds': isNotNull,
}),
() => fakeClient.callServiceExtension(fullReload!),
);
});
});
},
// TODO(elliette): Re-enable (https://github.com/dart-lang/webdev/issues/1852).
skip: Platform.isWindows,
timeout: Timeout.factor(2),
);
}
/// Matches event recursively.
Matcher matchesEvent(String type, Map<String, Object> payload) {
return isA<DwdsEvent>()
.having((e) => e.type, 'type', type)
.having((e) => e.payload.keys, 'payload.keys', payload.keys)
.having((e) => e.payload.values, 'payload.values', payload.values);
}
/// Pipes the [stream] into a newly created stream.
/// Returns the new stream which is closed on [timeout].
Stream<DwdsEvent> pipe(Stream<DwdsEvent> stream, {Timeout? timeout}) {
final controller = StreamController<DwdsEvent>();
final defaultTimeout = const Timeout(Duration(seconds: 20));
timeout ??= defaultTimeout;
unawaited(
stream
.forEach(controller.add)
.timeout(defaultTimeout.merge(timeout).duration!)
.catchError((_) {})
.then((value) => controller.close()),
);
return controller.stream;
}