blob: 2ca1062b71243f803b3416e4fb668dffc4dd3a06 [file] [log] [blame] [edit]
// Copyright (c) 2024, 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 'dart:async';
import 'dart:developer';
import 'package:dds_service_extensions/dds_service_extensions.dart';
import 'package:test/test.dart';
import 'package:vm_service/vm_service.dart';
import 'common/test_helper.dart';
Future testMain() async {
// Post a total of 9 events
for (int i = 1; i <= 9; ++i) {
postEvent('Test', {
'id': i,
});
// Wait between posting events to make it more likely for the test below to
// exercise the logic that makes [service.onExtensionEventWithHistory]
// return both historical and future events.
await Future.delayed(const Duration(milliseconds: 50));
}
}
final tests = <IsolateTest>[
(VmService service, _) async {
// Confirm that all events in the history buffer get sent on a stream
// returned by [service.onExtensionEventWithHistory], and that all events
// posted after a listener has been added to the returned stream get sent to
// that listener.
final completer = Completer<void>();
int i = 1;
late final StreamSubscription subscription;
subscription = service.onExtensionEventWithHistory.listen((event) async {
expect(event.extensionKind, 'Test');
expect(event.extensionData!.data['id'], i);
i++;
if (i == 10) {
await subscription.cancel();
completer.complete();
} else if (i > 10) {
fail('Too many "Test" extension events');
}
});
await service.streamListen(EventStreams.kExtension);
await completer.future;
}
];
void main([args = const <String>[]]) => runIsolateTests(
args,
tests,
'extension_event_history_test.dart',
testeeConcurrent: testMain,
pauseOnExit: true,
);