| 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 globalVar = 100; |
| 11 |
| 12 class MyClass { |
| 13 static int staticVar = 1000; |
| 14 |
| 15 static void printValue(int value) { |
| 16 print(value); // line 16 |
| 17 } |
| 18 } |
| 19 |
| 20 void testFunction() { |
| 21 int i = 0; |
| 22 while (true) { |
| 23 if (++i % 100000000 == 0) { |
| 24 MyClass.printValue(10000); |
| 25 } |
| 26 } |
| 27 } |
| 28 |
| 29 var tests = [ |
| 30 |
| 31 // Go to breakpoint at line 16. |
| 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 = 16; |
| 47 return isolate.addBreakpoint(script, line).then((ServiceObject bpt) { |
| 48 return completer.future; // Wait for breakpoint reached. |
| 49 }); |
| 50 }); |
| 51 }, |
| 52 |
| 53 // Evaluate against library, class, and instance. |
| 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(2)); |
| 59 expect(stack['frames'][0]['function'].name, equals('printValue')); |
| 60 expect(stack['frames'][0]['function'].owningClass.name, equals('MyClass'))
; |
| 61 |
| 62 var lib = isolate.rootLib; |
| 63 var cls = stack['frames'][0]['function'].owningClass; |
| 64 var instance = stack['frames'][0]['vars'][0]['value']; |
| 65 |
| 66 List evals = []; |
| 67 evals.add(isolate.eval(lib, 'globalVar + 5').then((result) { |
| 68 print(result); |
| 69 expect(result.valueAsString, equals('105')); |
| 70 })); |
| 71 evals.add(isolate.eval(lib, 'globalVar + staticVar + 5').then((result) { |
| 72 expect(result.type, equals('Error')); |
| 73 })); |
| 74 evals.add(isolate.eval(cls, 'globalVar + staticVar + 5').then((result) { |
| 75 print(result); |
| 76 expect(result.valueAsString, equals('1105')); |
| 77 })); |
| 78 evals.add(isolate.eval(cls, 'this + 5').then((result) { |
| 79 expect(result.type, equals('Error')); |
| 80 })); |
| 81 evals.add(isolate.eval(instance, 'this + 5').then((result) { |
| 82 print(result); |
| 83 expect(result.valueAsString, equals('10005')); |
| 84 })); |
| 85 evals.add(isolate.eval(instance, 'this + frog').then((result) { |
| 86 expect(result.type, equals('Error')); |
| 87 })); |
| 88 return Future.wait(evals); |
| 89 }); |
| 90 }, |
| 91 |
| 92 ]; |
| 93 |
| 94 main(args) => runIsolateTests(args, tests, testeeConcurrent: testFunction); |
| OLD | NEW |