Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(50)

Side by Side Diff: runtime/observatory/test/vm_metrics_test.dart

Issue 839543002: Revert "Build Observatory with runtime" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « runtime/observatory/test/test_helper.dart ('k') | runtime/observatory/test/vm_test.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 import 'package:observatory/service_io.dart';
2 import 'package:unittest/unittest.dart';
3 import 'test_helper.dart';
4
5 import 'dart:profiler';
6
7 void script() {
8 var counter = new Counter('a.b.c', 'description');
9 Metrics.register(counter);
10 counter.value = 1234.5;
11 }
12
13 var tests = [
14
15 (Isolate isolate) =>
16 isolate.get('metrics/vm').then((ServiceMap metrics) {
17 expect(metrics['type'], equals('MetricList'));
18 var members = metrics['members'];
19 expect(members, isList);
20 expect(members.length, greaterThan(1));
21 var foundOldHeapCapacity = members.any((m) =>
22 m.name == 'heap.old.capacity');
23 expect(foundOldHeapCapacity, equals(true));
24 }),
25
26 (Isolate isolate) =>
27 isolate.get('metrics/vm/heap.old.used').then((ServiceMetric counter) {
28 expect(counter.type, equals('Counter'));
29 expect(counter.name, equals('heap.old.used'));
30 }),
31
32 (Isolate isolate) =>
33 isolate.get('metrics/vm/doesnotexist').then((DartError err) {
34 expect(err is DartError, isTrue);
35 }),
36
37 ];
38
39 main(args) => runIsolateTests(args, tests, testeeBefore: script);
OLDNEW
« no previous file with comments | « runtime/observatory/test/test_helper.dart ('k') | runtime/observatory/test/vm_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698