| OLD | NEW |
| (Empty) | |
| 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. |
| 4 |
| 5 import 'package:observatory/service_io.dart'; |
| 6 import 'package:unittest/unittest.dart'; |
| 7 import 'test_helper.dart'; |
| 8 import 'dart:async'; |
| 9 |
| 10 int counter = 0; |
| 11 |
| 12 void funcB() { |
| 13 counter++; // line 13 |
| 14 if (counter % 100000000 == 0) { |
| 15 print(counter); |
| 16 } |
| 17 } |
| 18 |
| 19 void funcA() { |
| 20 funcB(); |
| 21 } |
| 22 |
| 23 void testFunction() { |
| 24 while (true) { |
| 25 funcA(); |
| 26 } |
| 27 } |
| 28 |
| 29 var tests = [ |
| 30 |
| 31 // Go to breakpoint at line 13. |
| 32 (Isolate isolate) { |
| 33 return isolate.rootLib.load().then((_) { |
| 34 // Set up a listener to wait for breakpoint events. |
| 35 Completer completer = new Completer(); |
| 36 List events = []; |
| 37 isolate.vm.events.stream.listen((ServiceEvent event) { |
| 38 if (event.eventType == 'BreakpointReached') { |
| 39 print('Breakpoint reached'); |
| 40 completer.complete(); |
| 41 } |
| 42 }); |
| 43 |
| 44 // Add the breakpoint. |
| 45 var script = isolate.rootLib.scripts[0]; |
| 46 var line = 13; |
| 47 return isolate.addBreakpoint(script, line).then((ServiceObject bpt) { |
| 48 return completer.future; // Wait for breakpoint reached. |
| 49 }); |
| 50 }); |
| 51 }, |
| 52 |
| 53 // Inspect code objects for top two frames. |
| 54 (Isolate isolate) { |
| 55 return isolate.getStack().then((ServiceMap stack) { |
| 56 // Make sure we are in the right place. |
| 57 expect(stack.type, equals('Stack')); |
| 58 expect(stack['frames'].length, greaterThanOrEqualTo(3)); |
| 59 var frame0 = stack['frames'][0]; |
| 60 var frame1 = stack['frames'][1]; |
| 61 print(frame0); |
| 62 expect(frame0['function'].name, equals('funcB')); |
| 63 expect(frame1['function'].name, equals('funcA')); |
| 64 var codeId0 = frame0['code'].id; |
| 65 var codeId1 = frame1['code'].id; |
| 66 |
| 67 List tests = []; |
| 68 // Load code from frame 0. |
| 69 tests.add(isolate.get(codeId0)..then((ServiceObject code) { |
| 70 expect(code.type, equals('Code')); |
| 71 expect(code.function.name, equals('funcB')); |
| 72 expect(code.hasDisassembly, equals(true)); |
| 73 })); |
| 74 // Load code from frame 0. |
| 75 tests.add(isolate.get(codeId1)..then((ServiceObject code) { |
| 76 expect(code.type, equals('Code')); |
| 77 expect(code.function.name, equals('funcA')); |
| 78 expect(code.hasDisassembly, equals(true)); |
| 79 })); |
| 80 return Future.wait(tests); |
| 81 }); |
| 82 }, |
| 83 |
| 84 ]; |
| 85 |
| 86 main(args) => runIsolateTests(args, tests, testeeConcurrent: testFunction); |
| OLD | NEW |