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 | 4 |
5 import 'dart:async'; | 5 import 'dart:async'; |
6 import 'dart:convert'; | 6 import 'dart:convert'; |
7 import 'dart:developer'; | 7 import 'dart:developer'; |
8 import 'dart:io' as io; | 8 import 'dart:io' as io; |
9 import 'package:observatory/service_io.dart'; | 9 import 'package:observatory/service_io.dart'; |
10 import 'package:unittest/unittest.dart'; | 10 import 'package:unittest/unittest.dart'; |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 (Isolate isolate) async { | 72 (Isolate isolate) async { |
73 await isolate.invokeRpcNoUpgrade('__setup', {}); | 73 await isolate.invokeRpcNoUpgrade('__setup', {}); |
74 try { | 74 try { |
75 var result = await isolate.invokeRpcNoUpgrade('__getOpenFiles', {}); | 75 var result = await isolate.invokeRpcNoUpgrade('__getOpenFiles', {}); |
76 expect(result['type'], equals('_openfiles')); | 76 expect(result['type'], equals('_openfiles')); |
77 | 77 |
78 expect(result['data'].length, equals(2)); | 78 expect(result['data'].length, equals(2)); |
79 var writing = await isolate.invokeRpcNoUpgrade( | 79 var writing = await isolate.invokeRpcNoUpgrade( |
80 '__getFileByID', { 'id' : result['data'][0]['id'] }); | 80 '__getFileByID', { 'id' : result['data'][0]['id'] }); |
81 | 81 |
82 expect(writing['total_read'], equals(0)); | 82 expect(writing['totalRead'], equals(0)); |
83 expect(writing['read_count'], equals(0)); | 83 expect(writing['readCount'], equals(0)); |
84 expect(writing['write_count'], equals(3)); | 84 expect(writing['writeCount'], equals(3)); |
85 expect(writing['total_written'], equals(3)); | 85 expect(writing['totalWritten'], equals(3)); |
86 expect(writing['last_write'], greaterThan(0)); | 86 expect(writing['lastWrite'], greaterThan(0)); |
87 expect(writing['last_read'], equals(0)); | 87 expect(writing['lastRead'], equals(0)); |
88 | 88 |
89 var reading = await isolate.invokeRpcNoUpgrade( | 89 var reading = await isolate.invokeRpcNoUpgrade( |
90 '__getFileByID', { 'id' : result['data'][1]['id'] }); | 90 '__getFileByID', { 'id' : result['data'][1]['id'] }); |
91 | 91 |
92 expect(reading['total_read'], equals(5)); | 92 expect(reading['totalRead'], equals(5)); |
93 expect(reading['read_count'], equals(5)); | 93 expect(reading['readCount'], equals(5)); |
94 expect(reading['write_count'], equals(0)); | 94 expect(reading['writeCount'], equals(0)); |
95 expect(reading['total_written'], equals(0)); | 95 expect(reading['totalWritten'], equals(0)); |
96 expect(reading['last_write'], equals(0)); | 96 expect(reading['lastWrite'], equals(0)); |
97 expect(reading['last_read'], greaterThan(0)); | 97 expect(reading['lastRead'], greaterThan(0)); |
98 | 98 |
99 } finally { | 99 } finally { |
100 await isolate.invokeRpcNoUpgrade('__cleanup', {}); | 100 await isolate.invokeRpcNoUpgrade('__cleanup', {}); |
101 } | 101 } |
102 }, | 102 }, |
103 ]; | 103 ]; |
104 | 104 |
105 main(args) async => runIsolateTests(args, fileTests, testeeBefore:setupFiles); | 105 main(args) async => runIsolateTests(args, fileTests, testeeBefore:setupFiles); |
OLD | NEW |