a1992fec6d
Change-Id: Ifd1bf62e3bc33bf14359802086c87b2fd19f3ba9 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/138561 Reviewed-by: Jacob Richman <jacobr@google.com> Commit-Queue: Ben Konyi <bkonyi@google.com>
110 lines
3.4 KiB
Dart
110 lines
3.4 KiB
Dart
// Copyright (c) 2019, 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';
|
|
|
|
String leafFunction() {
|
|
return "some constant";
|
|
}
|
|
|
|
void testFunction() {
|
|
debugger();
|
|
leafFunction();
|
|
debugger();
|
|
}
|
|
|
|
bool allRangesCompiled(coverage) {
|
|
for (int i = 0; i < coverage['ranges'].length; i++) {
|
|
if (!coverage['ranges'][i]['compiled']) {
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
var tests = <IsolateTest>[
|
|
hasStoppedAtBreakpoint,
|
|
(VmService service, IsolateRef isolateRef) async {
|
|
final isolate = await service.getIsolate(isolateRef.id);
|
|
final stack = await service.getStack(isolate.id);
|
|
|
|
// Make sure we are in the right place.
|
|
expect(stack.frames.length, greaterThanOrEqualTo(1));
|
|
expect(stack.frames[0].function.name, 'testFunction');
|
|
|
|
final Library root =
|
|
await service.getObject(isolate.id, isolate.rootLib.id);
|
|
FuncRef funcRef =
|
|
root.functions.singleWhere((f) => f.name == 'leafFunction');
|
|
Func func = await service.getObject(isolate.id, funcRef.id) as Func;
|
|
|
|
final expectedRange = {
|
|
'scriptIndex': 0,
|
|
'startPos': 397,
|
|
'endPos': 447,
|
|
'compiled': true,
|
|
'coverage': {
|
|
'hits': [],
|
|
'misses': [397]
|
|
}
|
|
};
|
|
|
|
final report = await service.getSourceReport(
|
|
isolate.id, [SourceReportKind.kCoverage],
|
|
scriptId: func.location.script.id,
|
|
tokenPos: func.location.tokenPos,
|
|
endTokenPos: func.location.endTokenPos,
|
|
forceCompile: true);
|
|
expect(report.ranges.length, 1);
|
|
expect(report.ranges[0].toJson(), expectedRange);
|
|
expect(report.scripts.length, 1);
|
|
expect(report.scripts[0].uri, endsWith('coverage_leaf_function_test.dart'));
|
|
},
|
|
resumeIsolate,
|
|
hasStoppedAtBreakpoint,
|
|
(VmService service, IsolateRef isolateRef) async {
|
|
final isolate = await service.getIsolate(isolateRef.id);
|
|
final stack = await service.getStack(isolate.id);
|
|
|
|
// Make sure we are in the right place.
|
|
expect(stack.frames.length, greaterThanOrEqualTo(1));
|
|
expect(stack.frames[0].function.name, 'testFunction');
|
|
|
|
final Library root =
|
|
await service.getObject(isolate.id, isolate.rootLib.id);
|
|
FuncRef funcRef =
|
|
root.functions.singleWhere((f) => f.name == 'leafFunction');
|
|
Func func = await service.getObject(isolate.id, funcRef.id) as Func;
|
|
|
|
var expectedRange = {
|
|
'scriptIndex': 0,
|
|
'startPos': 397,
|
|
'endPos': 447,
|
|
'compiled': true,
|
|
'coverage': {
|
|
'hits': [397],
|
|
'misses': []
|
|
}
|
|
};
|
|
|
|
final report = await service.getSourceReport(
|
|
isolate.id, [SourceReportKind.kCoverage],
|
|
scriptId: func.location.script.id,
|
|
tokenPos: func.location.tokenPos,
|
|
endTokenPos: func.location.endTokenPos,
|
|
forceCompile: true);
|
|
expect(report.ranges.length, 1);
|
|
expect(report.ranges[0].toJson(), expectedRange);
|
|
expect(report.scripts.length, 1);
|
|
expect(report.scripts[0].uri, endsWith('coverage_leaf_function_test.dart'));
|
|
},
|
|
];
|
|
|
|
main([args = const <String>[]]) =>
|
|
runIsolateTests(args, tests, testeeConcurrent: testFunction);
|