blob: 10157d5b499b77ed68aa5244565cebc34420bf28 [file] [log] [blame]
// Copyright (c) 2020, 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 'package:test/test.dart';
import 'package:vm_service/src/dart_io_extensions.dart';
import 'package:vm_service/vm_service.dart';
import 'common/service_test_common.dart';
import 'common/test_helper.dart';
const String kSetHttpEnableTimelineLogging =
'ext.dart.io.setHttpEnableTimelineLogging';
const String kGetHttpEnableTimelineLogging =
'ext.dart.io.getHttpEnableTimelineLogging';
const String kHttpEnableTimelineLogging =
'ext.dart.io.httpEnableTimelineLogging';
Future<void> setup() async {}
Future<void> waitForStreamEvent(
VmService service, IsolateRef isolateRef, bool state,
{bool useSetter = true}) async {
final completer = Completer<void>();
final isolateId = isolateRef.id;
StreamSubscription sub;
sub = service.onExtensionEvent.listen((event) {
expect(event.extensionKind, 'HttpTimelineLoggingStateChange');
expect(event.extensionData.data['isolateId'], isolateRef.id);
expect(event.extensionData.data['enabled'], state);
sub.cancel();
completer.complete();
});
await service.streamListen(EventStreams.kExtension);
if (useSetter) {
// ignore: deprecated_member_use_from_same_package
await service.setHttpEnableTimelineLogging(isolateId, state);
} else {
await service.httpEnableTimelineLogging(isolateId, state);
}
await completer.future;
await service.streamCancel(EventStreams.kExtension);
}
var tests = <IsolateTest>[
(VmService service, IsolateRef isolateRef) async {
final isolate = await service.getIsolate(isolateRef.id);
// Ensure all HTTP service extensions are registered.
expect(isolate.extensionRPCs.length, greaterThanOrEqualTo(2));
expect(
isolate.extensionRPCs.contains(kGetHttpEnableTimelineLogging), isTrue);
expect(
isolate.extensionRPCs.contains(kSetHttpEnableTimelineLogging), isTrue);
expect(isolate.extensionRPCs.contains(kHttpEnableTimelineLogging), isTrue);
},
(VmService service, IsolateRef isolateRef) async {
final isolateId = isolateRef.id;
// ignore: deprecated_member_use_from_same_package
dynamic response = await service.getHttpEnableTimelineLogging(isolateId);
expect(response.enabled, false);
await waitForStreamEvent(service, isolateRef, true);
// ignore: deprecated_member_use_from_same_package
response = await service.getHttpEnableTimelineLogging(isolateId);
expect(response.enabled, true);
await waitForStreamEvent(service, isolateRef, false);
// ignore: deprecated_member_use_from_same_package
response = await service.getHttpEnableTimelineLogging(isolateId);
expect(response.enabled, false);
},
(VmService service, IsolateRef isolateRef) async {
final isolateId = isolateRef.id;
dynamic response = await service.httpEnableTimelineLogging(isolateId, null);
expect(response.enabled, false);
await waitForStreamEvent(service, isolateRef, true, useSetter: false);
response = await service.httpEnableTimelineLogging(isolateId, null);
expect(response.enabled, true);
await waitForStreamEvent(service, isolateRef, false, useSetter: false);
response = await service.httpEnableTimelineLogging(isolateId);
expect(response.enabled, false);
},
];
main([args = const <String>[]]) async =>
runIsolateTests(args, tests, testeeBefore: setup);