| OLD | NEW |
| 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 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 | 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. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 // VMOptions=--compile-all --error_on_bad_type --error_on_bad_override | 4 // VMOptions=--compile-all --error_on_bad_type --error_on_bad_override |
| 5 | 5 |
| 6 import 'package:observatory/service_io.dart'; | 6 import 'package:observatory/service_io.dart'; |
| 7 import 'package:unittest/unittest.dart'; | 7 import 'package:unittest/unittest.dart'; |
| 8 import 'test_helper.dart'; | 8 import 'test_helper.dart'; |
| 9 import 'dart:async'; | 9 import 'dart:async'; |
| 10 | 10 |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 | 52 |
| 53 // Inspect code objects for top two frames. | 53 // Inspect code objects for top two frames. |
| 54 (Isolate isolate) { | 54 (Isolate isolate) { |
| 55 return isolate.getStack().then((ServiceMap stack) { | 55 return isolate.getStack().then((ServiceMap stack) { |
| 56 // Make sure we are in the right place. | 56 // Make sure we are in the right place. |
| 57 expect(stack.type, equals('Stack')); | 57 expect(stack.type, equals('Stack')); |
| 58 expect(stack['frames'].length, greaterThanOrEqualTo(3)); | 58 expect(stack['frames'].length, greaterThanOrEqualTo(3)); |
| 59 var frame0 = stack['frames'][0]; | 59 var frame0 = stack['frames'][0]; |
| 60 var frame1 = stack['frames'][1]; | 60 var frame1 = stack['frames'][1]; |
| 61 print(frame0); | 61 print(frame0); |
| 62 expect(frame0['function'].name, equals('funcB')); | 62 expect(frame0.function.name, equals('funcB')); |
| 63 expect(frame1['function'].name, equals('funcA')); | 63 expect(frame1.function.name, equals('funcA')); |
| 64 var codeId0 = frame0['code'].id; | 64 var codeId0 = frame0.code.id; |
| 65 var codeId1 = frame1['code'].id; | 65 var codeId1 = frame1.code.id; |
| 66 | 66 |
| 67 List tests = []; | 67 List tests = []; |
| 68 // Load code from frame 0. | 68 // Load code from frame 0. |
| 69 tests.add(isolate.getObject(codeId0)..then((Code code) { | 69 tests.add(isolate.getObject(codeId0)..then((Code code) { |
| 70 expect(code.type, equals('Code')); | 70 expect(code.type, equals('Code')); |
| 71 expect(code.function.name, equals('funcB')); | 71 expect(code.function.name, equals('funcB')); |
| 72 expect(code.hasDisassembly, equals(true)); | 72 expect(code.hasDisassembly, equals(true)); |
| 73 })); | 73 })); |
| 74 // Load code from frame 0. | 74 // Load code from frame 0. |
| 75 tests.add(isolate.getObject(codeId1)..then((Code code) { | 75 tests.add(isolate.getObject(codeId1)..then((Code code) { |
| 76 expect(code.type, equals('Code')); | 76 expect(code.type, equals('Code')); |
| 77 expect(code.function.name, equals('funcA')); | 77 expect(code.function.name, equals('funcA')); |
| 78 expect(code.hasDisassembly, equals(true)); | 78 expect(code.hasDisassembly, equals(true)); |
| 79 })); | 79 })); |
| 80 return Future.wait(tests); | 80 return Future.wait(tests); |
| 81 }); | 81 }); |
| 82 }, | 82 }, |
| 83 | 83 |
| 84 ]; | 84 ]; |
| 85 | 85 |
| 86 main(args) => runIsolateTests(args, tests, testeeConcurrent: testFunction); | 86 main(args) => runIsolateTests(args, tests, testeeConcurrent: testFunction); |
| OLD | NEW |