blob: c1429aca9aa94faecbf8d17d8816a5643ad327dd [file] [log] [blame]
// Copyright (c) 2023, 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:developer';
import 'package:test/test.dart';
import 'package:vm_service/vm_service.dart';
import 'common/service_test_common.dart';
import 'common/test_helper.dart';
// AUTOGENERATED START
//
// Update these constants by running:
//
// dart pkg/vm_service/test/update_line_numbers.dart <test.dart>
//
const LINE_A = 34;
const LINE_B = 40;
// AUTOGENERATED END
class Class {}
class Subclass extends Class {}
class Implementor implements Class {}
late final Class aClass;
late final Subclass aSubclass;
late final Implementor anImplementor;
void testMain() {
debugger(); // LINE_A
final _ = 1;
aClass = Class();
aSubclass = Subclass();
anImplementor = Implementor();
debugger(); // LINE_B
}
IsolateTest expectInstanceCounts(
int numInstances,
int numInstancesWhenIncludingSubclasses,
int numInstancesWhenIncludingImplementers,
) {
return (VmService service, IsolateRef isolateRef) async {
final isolateId = isolateRef.id!;
final isolate = await service.getIsolate(isolateId);
final rootLib = await service.getObject(
isolateId,
isolate.rootLib!.id!,
) as Library;
Future<int> instanceCount(
String className, {
bool includeSubclasses = false,
bool includeImplementers = false,
}) async {
final result = await service.getInstancesAsList(
isolateId,
rootLib.classes!
.singleWhere(
(cls) => cls.name == className,
)
.id!,
includeSubclasses: includeSubclasses,
includeImplementers: includeImplementers,
);
expect(result.kind, InstanceKind.kList);
return result.length!;
}
expect(
await instanceCount('Class'),
numInstances,
);
expect(
await instanceCount('Class', includeSubclasses: true),
numInstancesWhenIncludingSubclasses,
);
expect(
await instanceCount('Class', includeImplementers: true),
numInstancesWhenIncludingImplementers,
);
};
}
final tests = <IsolateTest>[
hasStoppedAtBreakpoint,
stoppedAtLine(LINE_A),
expectInstanceCounts(0, 0, 0),
resumeIsolate,
hasStoppedAtBreakpoint,
stoppedAtLine(LINE_B),
expectInstanceCounts(1, 2, 3),
];
void main([args = const <String>[]]) => runIsolateTests(
args,
tests,
'get_instances_as_list_rpc_test.dart',
testeeConcurrent: testMain,
);