blob: 2c95a1f39afcf94b3d9811f957bfc6228f10837c [file] [log] [blame]
// Copyright (c) 2017, 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.
// VMOptions=--no_background_compilation --optimization_counter_threshold=10
import 'package:observatory_2/service_io.dart';
import 'package:test/test.dart';
import 'test_helper.dart';
import 'service_test_common.dart';
import 'dart:developer';
String optimizedFunction() {
return 5.toString() + 3.toString();
}
void testFunction() {
for (var i = 0; i < 20; i++) {
optimizedFunction();
}
debugger();
}
var tests = <IsolateTest>[
hasStoppedAtBreakpoint,
(Isolate isolate) async {
var stack = await isolate.getStack();
// Make sure we are in the right place.
expect(stack.type, equals('Stack'));
expect(stack['frames'].length, greaterThanOrEqualTo(1));
expect(stack['frames'][0].function.name, equals('testFunction'));
var root = isolate.rootLibrary;
await root.load();
var func = root.functions.singleWhere((f) => f.name == 'optimizedFunction');
await func.load();
var expectedRange = {
'scriptIndex': 0,
'startPos': 463,
'endPos': 530,
'compiled': true,
'coverage': {
'hits': [463, 503, 514, 518],
'misses': []
}
};
var params = {
'reports': ['Coverage'],
'scriptId': func.location.script.id,
'tokenPos': func.location.tokenPos,
'endTokenPos': func.location.endTokenPos,
'forceCompile': true
};
var report = await isolate.invokeRpcNoUpgrade('getSourceReport', params);
expect(report['type'], equals('SourceReport'));
expect(report['ranges'].length, 1);
expect(report['ranges'][0], equals(expectedRange));
expect(report['scripts'].length, 1);
expect(report['scripts'][0]['uri'],
endsWith('coverage_optimized_function_test.dart'));
},
];
main(args) => runIsolateTests(args, tests, testeeConcurrent: testFunction);