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

Unified Diff: tests/standalone/vmservice/isolate_class_test.dart

Issue 22297008: Expose classes, codes, functions, and libraries collections. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: tests/standalone/vmservice/isolate_class_test.dart
diff --git a/tests/standalone/vmservice/isolate_class_test.dart b/tests/standalone/vmservice/isolate_class_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..3f9064e43120f9f650f7ed0a9e3902d6a91e0cca
--- /dev/null
+++ b/tests/standalone/vmservice/isolate_class_test.dart
@@ -0,0 +1,82 @@
+// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+library isolate_class_test;
+
+import 'dart:async';
+import 'test_helper.dart';
+import 'package:expect/expect.dart';
+
+class ClassTest extends VmServiceRequestHelper {
+ ClassTest(port, id, classId) :
+ super('http://127.0.0.1:$port/isolates/$id/classes/$classId');
+
+ onRequestCompleted(Map reply) {
+ Expect.equals('Class', reply['type']);
+ Expect.equals('C', reply['name']);
+ Expect.equals('isolate_stacktrace_command_script',
+ reply['library']['name']);
+ }
+}
+
+class LibraryTest extends VmServiceRequestHelper {
+ LibraryTest(port, id, libId) :
+ super('http://127.0.0.1:$port/isolates/$id/libraries/$libId');
+
+ int _classId;
+ onRequestCompleted(Map reply) {
+ Expect.equals('Library', reply['type']);
+ Expect.equals('isolate_stacktrace_command_script', reply['name']);
+ Expect.equals(1, reply['classes'].length);
+ Expect.equals('@Class', reply['classes'][0]['type']);
+ Expect.equals('C', reply['classes'][0]['name']);
+ _classId = reply['classes'][0]['id'];
+ }
+}
+
+class RootLibraryTest extends VmServiceRequestHelper {
+ RootLibraryTest(port, id) :
+ super('http://127.0.0.1:$port/isolates/$id/libraries');
+
+ int _libId;
+ onRequestCompleted(Map reply) {
+ Expect.equals('@Library', reply['type']);
+ Expect.equals('isolate_stacktrace_command_script', reply['name']);
+ _libId = reply['id'];
+ }
+}
+
+class IsolateListTest extends VmServiceRequestHelper {
+ IsolateListTest(port) : super('http://127.0.0.1:$port/isolates');
+
+ int _isolateId;
+ onRequestCompleted(Map reply) {
+ IsolateListTester tester = new IsolateListTester(reply);
+ tester.checkIsolateCount(2);
+ tester.checkIsolateNameContains('isolate_stacktrace_command_script.dart');
+ _isolateId = tester.checkIsolateNameContains('myIsolateName');
+ }
+}
+
+main() {
+ var process = new TestLauncher('isolate_stacktrace_command_script.dart');
+ process.launch().then((port) {
+ var test = new IsolateListTest(port);
+ test.makeRequest().then((_) {
+ var rootLibraryTest =
+ new RootLibraryTest(port, test._isolateId);
+ rootLibraryTest.makeRequest().then((_) {
+ var libraryTest = new LibraryTest(port, test._isolateId,
+ rootLibraryTest._libId);
+ libraryTest.makeRequest().then((_) {
+ var classTest = new ClassTest(port, test._isolateId,
+ libraryTest._classId);
+ classTest.makeRequest().then((_) {
+ process.requestExit();
+ });
+ });
+ });
+ });
+ });
+}
« no previous file with comments | « tests/standalone/vmservice/isolate_bad_library_test.dart ('k') | tests/standalone/vmservice/isolate_code_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698