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

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

Issue 536273002: Teach the Observatory about WeakProperties (ephemerons). (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/weak_properties_test.dart
diff --git a/runtime/bin/vmservice/observatory/test/weak_properties_test.dart b/runtime/bin/vmservice/observatory/test/weak_properties_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..662d60f1ee9871a1812594c2a9fad444842a4062
--- /dev/null
+++ b/runtime/bin/vmservice/observatory/test/weak_properties_test.dart
@@ -0,0 +1,64 @@
+// 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 { }
+class Bar { }
+
+var expando;
+var key;
+var value;
+var weak_property;
+
+void script() {
+ expando = new Expando('some debug name');
+ key = new Foo();
+ value = new Bar();
+ expando[key] = value;
+
+ InstanceMirror expandoMirror = reflect(expando);
+ LibraryMirror libcore = expandoMirror.type.owner;
+
+ var entries = expandoMirror.getField(MirrorSystem.getSymbol('_data', libcore)).reflectee;
+ weak_property = entries.singleWhere((e) => e != null);
+ print(weak_property);
+}
+
+var tests = [
+
+(Isolate isolate) =>
+ isolate.rootLib.load().then((Library lib) {
+ ServiceMap keyField = lib.variables.singleWhere((v) => v.name == 'key');
+ Instance key = keyField['value'];
+ ServiceMap valueField = lib.variables.singleWhere((v) => v.name == 'value');
+ Instance value = valueField['value'];
+ ServiceMap propField = lib.variables.singleWhere((v) => v.name == 'weak_property');
+ Instance prop = propField['value'];
+
+ expect(key.isWeakProperty, isFalse);
+ expect(value.isWeakProperty, isFalse);
+ expect(prop.isWeakProperty, isTrue);
+ expect(prop.key, isNull);
+ expect(prop.value, isNull);
+ return prop.load().then((Instance loadedProp) {
+ // Object ids are not cannonicalized, so we rely on the key and value
+ // being the sole instances of their classes to test we got the objects
+ // we expect.
+ expect(loadedProp.key, isNotNull);
+ expect(loadedProp.key.clazz, equals(key.clazz));
+ expect(loadedProp.value, isNotNull);
+ expect(loadedProp.value.clazz, equals(value.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