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

Unified Diff: pkg/polymer/test/template_distribute_dynamic_test.dart

Issue 25740006: port polymer data binding tests (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 2 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 | « pkg/polymer/test/custom_event_test.dart ('k') | pkg/polymer/test/template_distribute_dynamic_test.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/polymer/test/template_distribute_dynamic_test.dart
diff --git a/pkg/polymer/test/template_distribute_dynamic_test.dart b/pkg/polymer/test/template_distribute_dynamic_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..130264a8ac93230bf26e4175d2f95df2b6312c43
--- /dev/null
+++ b/pkg/polymer/test/template_distribute_dynamic_test.dart
@@ -0,0 +1,65 @@
+// 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.
+
+import 'dart:async';
+import 'dart:html';
+import 'package:polymer/polymer.dart';
+import 'package:polymer/platform.dart' as Platform;
+import 'package:unittest/unittest.dart';
+import 'package:unittest/html_config.dart';
+
+@CustomTag('x-test')
+class XTest extends PolymerElement {
+ @observable List list;
+
+ final _enteredView = new Completer();
+ Future onTestDone;
+
+ XTest.created() : super.created() {
+ onTestDone = _enteredView.future.then(_runTest);
+ }
+
+ enteredView() {
+ super.enteredView();
+ _enteredView.complete();
+ }
+
+ _runTest(_) {
+ list = [
+ {'name': 'foo'},
+ {'name': 'bar'}
+ ];
+
+ Platform.flush();
+ Platform.endOfMicrotask(expectAsync0(() {
+ // tickle SD polyfill
+ offsetHeight;
+ var children = this.$['echo'].children;
+ expect(children[0].localName, 'template', reason:
+ 'shadowDOM dynamic distribution via template');
+ expect(children[1].text, 'foo', reason:
+ 'shadowDOM dynamic distribution via template');
+ expect(children[2].text, 'bar', reason:
+ 'shadowDOM dynamic distribution via template');
+
+ // TODO(jmesserly): restore this if we get the JS interop capability.
+ /*
+ if (window.ShadowDOMPolyfill) {
+ var actualChildren = this.$.echo.impl.children;
+ chai.assert.equal(actualChildren.length, 4,
+ 'shadowDOMPolyfill distributes expected number of actual children.');
+ }
+ */
+ }));
+ }
+}
+
+main() {
+ initPolymer();
+ useHtmlConfiguration();
+
+ setUp(() => Polymer.onReady);
+
+ test('inserted called', () => query('x-test').onTestDone);
+}
« no previous file with comments | « pkg/polymer/test/custom_event_test.dart ('k') | pkg/polymer/test/template_distribute_dynamic_test.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698