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

Unified Diff: runtime/bin/vmservice/observatory/test/mirror_references_test.dart

Issue 542473003: Teach the Observatory about MirrorReferences. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: build Created 6 years, 3 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
« no previous file with comments | « runtime/bin/vmservice/observatory/lib/src/service/object.dart ('k') | runtime/vm/object.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/vmservice/observatory/test/mirror_references_test.dart
diff --git a/runtime/bin/vmservice/observatory/test/mirror_references_test.dart b/runtime/bin/vmservice/observatory/test/mirror_references_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..651803a54c0239af585adb17abcaef545f5a3196
--- /dev/null
+++ b/runtime/bin/vmservice/observatory/test/mirror_references_test.dart
@@ -0,0 +1,47 @@
+// Copyright (c) 2014, 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 vm_references_test;
+
+import 'dart:async';
+import 'dart:mirrors';
+import 'package:observatory/service_io.dart';
+import 'package:unittest/unittest.dart';
+import 'test_helper.dart';
+
+class Foo { }
+
+Foo foo;
+var /*MirrorReference*/ ref;
+
+void script() {
+ foo = new Foo();
+ ClassMirror fooClassMirror = reflectClass(Foo);
+ InstanceMirror fooClassMirrorMirror = reflect(fooClassMirror);
+ LibraryMirror libmirrors = fooClassMirrorMirror.type.owner;
+ ref = reflect(fooClassMirror).getField(MirrorSystem.getSymbol('_reflectee', libmirrors)).reflectee;
+}
+
+var tests = [
+
+(Isolate isolate) =>
+ isolate.rootLib.load().then((Library lib) {
+ ServiceMap fooField = lib.variables.singleWhere((v) => v.name == 'foo');
+ Instance foo = fooField['value'];
+ ServiceMap refField = lib.variables.singleWhere((v) => v.name == 'ref');
+ Instance ref = refField['value'];
+
+ expect(foo.isMirrorReference, isFalse);
+ expect(ref.isMirrorReference, isTrue);
+ expect(ref.referent, isNull);
+ return ref.load().then((Instance loadedRef) {
+ expect(loadedRef.referent, isNotNull);
+ expect(loadedRef.referent.name, equals('Foo'));
+ expect(loadedRef.referent, equals(foo.clazz));
+ });
+ }),
+
+];
+
+main(args) => runIsolateTests(args, tests, testeeBefore: script);
« no previous file with comments | « runtime/bin/vmservice/observatory/lib/src/service/object.dart ('k') | runtime/vm/object.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698