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 // VMOptions=--compile-all --error_on_bad_type --error_on_bad_override |
| 5 |
| 6 import 'dart:async'; |
| 7 |
| 8 import 'package:observatory/service_io.dart'; |
| 9 import 'package:unittest/unittest.dart'; |
| 10 |
| 11 import 'test_helper.dart'; |
| 12 |
| 13 class _TestClass { |
| 14 _TestClass(this.x, this.y); |
| 15 var x; |
| 16 var y; |
| 17 } |
| 18 |
| 19 var global; |
| 20 |
| 21 void warmup() { |
| 22 global = new _TestClass(new _TestClass(1, 2), null); |
| 23 } |
| 24 |
| 25 eval(Isolate isolate, String expression) async { |
| 26 Map params = { |
| 27 'targetId': isolate.rootLib.id, |
| 28 'expression': expression, |
| 29 }; |
| 30 return await isolate.invokeRpcNoUpgrade('eval', params); |
| 31 } |
| 32 |
| 33 var tests = [ |
| 34 (Isolate isolate) async { |
| 35 var obj = await eval(isolate, 'global'); |
| 36 var params = { |
| 37 'classId': obj['class']['id'], |
| 38 'limit': 4, |
| 39 }; |
| 40 var result = await isolate.invokeRpcNoUpgrade('_getInstances', params); |
| 41 expect(result['type'], equals('InstanceSet')); |
| 42 expect(result['totalCount'], equals(2)); |
| 43 expect(result['samples'].length, equals(2)); |
| 44 expect(result['samples'][0]['type'], equals('@Instance')); |
| 45 |
| 46 // Limit is respected. |
| 47 params = { |
| 48 'classId': obj['class']['id'], |
| 49 'limit': 1, |
| 50 }; |
| 51 result = await isolate.invokeRpcNoUpgrade('_getInstances', params); |
| 52 expect(result['type'], equals('InstanceSet')); |
| 53 expect(result['totalCount'], equals(2)); |
| 54 expect(result['samples'].length, equals(1)); |
| 55 expect(result['samples'][0]['type'], equals('@Instance')); |
| 56 }, |
| 57 ]; |
| 58 |
| 59 main(args) async => runIsolateTests(args, tests, testeeBefore:warmup); |
OLD | NEW |