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=--error_on_bad_type --error_on_bad_override | 4 // VMOptions=--error_on_bad_type --error_on_bad_override --vm-name=Walter |
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 | 8 |
9 import 'test_helper.dart'; | 9 import 'test_helper.dart'; |
10 | 10 |
11 var tests = [ | 11 var tests = [ |
12 (VM vm) async { | 12 (VM vm) async { |
13 var result = await vm.invokeRpcNoUpgrade('getVM', {}); | 13 var result = await vm.invokeRpcNoUpgrade('getVM', {}); |
14 expect(result['type'], equals('VM')); | 14 expect(result['type'], equals('VM')); |
| 15 expect(result['name'], equals('Walter')); |
15 expect(result['architectureBits'], isPositive); | 16 expect(result['architectureBits'], isPositive); |
16 expect(result['targetCPU'], new isInstanceOf<String>()); | 17 expect(result['targetCPU'], new isInstanceOf<String>()); |
17 expect(result['hostCPU'], new isInstanceOf<String>()); | 18 expect(result['hostCPU'], new isInstanceOf<String>()); |
18 expect(result['version'], new isInstanceOf<String>()); | 19 expect(result['version'], new isInstanceOf<String>()); |
19 expect(result['pid'], new isInstanceOf<int>()); | 20 expect(result['pid'], new isInstanceOf<int>()); |
20 expect(result['startTime'], isPositive); | 21 expect(result['startTime'], isPositive); |
21 expect(result['isolates'].length, isPositive); | 22 expect(result['isolates'].length, isPositive); |
22 expect(result['isolates'][0]['type'], equals('@Isolate')); | 23 expect(result['isolates'][0]['type'], equals('@Isolate')); |
23 expect(result['_assertsEnabled'], new isInstanceOf<bool>()); | |
24 expect(result['_typeChecksEnabled'], new isInstanceOf<bool>()); | |
25 }, | 24 }, |
26 ]; | 25 ]; |
27 | 26 |
28 main(args) async => runVMTests(args, tests); | 27 main(args) async => runVMTests(args, tests); |
OLD | NEW |