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

Side by Side Diff: runtime/observatory/tests/service/get_cpu_profile_timeline_rpc_test.dart

Issue 1525913002: Observatory: Include profiler samples in the timeline view. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years 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
OLDNEW
(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=--error_on_bad_type --error_on_bad_override
5
6 import 'package:observatory/service_io.dart';
7 import 'package:unittest/unittest.dart';
8
9 import 'test_helper.dart';
10
11 fib(n) {
12 if (n < 0) return 0;
13 if (n == 0) return 1;
14 return fib(n - 1) + fib(n - 2);
15 }
16
17 testeeDo() {
18 print("Testee doing something.");
19 fib(25);
20 print("Testee did something.");
21 }
22
23 var tests = [
24 (Isolate isolate) async {
25 var params = {
26 'tags': 'VMUser'
27 };
28 var result = await isolate.invokeRpcNoUpgrade(
29 '_getCpuProfileTimeline', params);
30 print(result);
31 expect(result['type'], equals('_CpuProfileTimeline'));
32
33 var isString = new isInstanceOf<String>();
34
35 Map frames = result['stackFrames'];
36 for (Map frame in frames.values) {
37 expect(frame['category'], isString);
38 expect(frame['name'], isString);
39 if (frame['parent'] != null) {
40 expect(frames.containsKey(frame['parent']), isTrue);
41 }
42 }
43
44 List events = result['traceEvents'];
45 for (Map event in events) {
46 expect(event['ph'], equals('P'));
47 expect(event['pid'], isString);
48 expect(event['tid'], isString);
49 expect(event['ts'], isString);
50 expect(event['category'], equals("Dart"));
51 expect(frames.containsKey(event['sf']), isTrue);
52 }
53 },
54 ];
55
56 main(args) async => runIsolateTests(args, tests, testeeBefore: testeeDo);
OLDNEW
« no previous file with comments | « runtime/observatory/lib/src/elements/timeline_page.dart ('k') | runtime/observatory/web/timeline.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698