Index: polymer_1.0.4/bower_components/iron-list/test/basic.html |
diff --git a/polymer_1.0.4/bower_components/iron-list/test/basic.html b/polymer_1.0.4/bower_components/iron-list/test/basic.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..184225b58cfc2257e11fe4fc41d681aa22d8a1a8 |
--- /dev/null |
+++ b/polymer_1.0.4/bower_components/iron-list/test/basic.html |
@@ -0,0 +1,189 @@ |
+<!doctype html> |
+<!-- |
+@license |
+Copyright (c) 2015 The Polymer Project Authors. All rights reserved. |
+This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE |
+The complete set of authors may be found at http://polymer.github.io/AUTHORS |
+The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS |
+Code distributed by Google as part of the polymer project is also |
+subject to an additional IP rights grant found at http://polymer.github.io/PATENTS |
+--> |
+<html> |
+<head> |
+ <meta charset="UTF-8"> |
+ <title>iron-list test</title> |
+ <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0"> |
+ |
+ <script src="../../webcomponentsjs/webcomponents-lite.js"></script> |
+ <script src="../../web-component-tester/browser.js"></script> |
+ <script src="../../test-fixture/test-fixture-mocha.js"></script> |
+ |
+ <link rel="import" href="helpers.html"> |
+ <link rel="import" href="../../test-fixture/test-fixture.html"> |
+ <link rel="import" href="../iron-list.html"> |
+</head> |
+<body> |
+ |
+ <test-fixture id="trivialList"> |
+ <template> |
+ <template is="dom-bind"> |
+ <style> |
+ :host { |
+ @apply(--layout-fit); |
+ @apply(--layout-vertical); |
+ |
+ display: block; |
+ } |
+ |
+ iron-list { |
+ height: 300px; |
+ } |
+ |
+ .item:nth-child(odd) { |
+ height: 100px; |
+ background-color: green; |
+ color: white; |
+ } |
+ |
+ .item:nth-child(even) { |
+ height: 100px; |
+ background-color: red; |
+ color: white; |
+ } |
+ </style> |
+ <iron-list items="[[data]]" as="item"> |
+ <template> |
+ <div class="item">[[item.index]]</div> |
+ </template> |
+ </iron-list> |
+ </template> |
+ </template> |
+ </test-fixture> |
+ |
+ |
+<script> |
+ |
+ suite('basic features', function() { |
+ var list, container; |
+ |
+ setup(function() { |
+ container = fixture('trivialList'); |
+ list = findElementInList(container, 'iron-list'); |
+ }); |
+ |
+ test('defaults', function() { |
+ assert.equal(list.items, null); |
+ assert.equal(list.as, 'item'); |
+ assert.equal(list.indexAs, 'index'); |
+ }); |
+ |
+ test('check items length', function(done) { |
+ container.data = buildDataSet(100); |
+ |
+ flush(function() { |
+ assert.equal(list.items.length, container.data.length); |
+ done(); |
+ }); |
+ }); |
+ |
+ test('check physical item heights', function(done) { |
+ container.data = buildDataSet(100); |
+ |
+ flush(function() { |
+ var rowHeight = list._physicalItems[0].offsetHeight; |
+ |
+ list._physicalItems.forEach(function(item) { |
+ assert.equal(item.offsetHeight, rowHeight); |
+ }); |
+ |
+ done(); |
+ }); |
+ }); |
+ |
+ test('check physical item size', function(done) { |
+ var setSize = list._physicalCount - 1; |
+ container.data = buildDataSet(setSize); |
+ |
+ flush(function() { |
+ assert.equal(list.items.length, setSize); |
+ done(); |
+ }); |
+ }); |
+ |
+ test('first visible index', function(done) { |
+ container.data = buildDataSet(100); |
+ |
+ flush(function() { |
+ var setSize = list.items.length; |
+ var rowHeight = list._physicalItems[0].offsetHeight; |
+ var viewportHeight = list.offsetHeight; |
+ var scrollToItem; |
+ |
+ function checkFirstVisible() { |
+ assert.equal(list.firstVisibleIndex, scrollToItem); |
+ assert.equal(getFirstItemFromList(list).textContent, scrollToItem); |
+ } |
+ |
+ function doneScrollDown() { |
+ checkFirstVisible(); |
+ |
+ scrollToItem = 1; |
+ |
+ flush(function() { |
+ simulateScroll({ |
+ list: list, |
+ contribution: rowHeight, |
+ target: scrollToItem*rowHeight |
+ }, doneScrollUp); |
+ }); |
+ } |
+ |
+ function doneScrollUp() { |
+ checkFirstVisible(); |
+ done(); |
+ } |
+ |
+ scrollToItem = 50; |
+ simulateScroll({ |
+ list: list, |
+ contribution: 50, |
+ target: scrollToItem*rowHeight |
+ }, doneScrollDown); |
+ |
+ }); |
+ }); |
+ |
+ test('scroll to index', function(done) { |
+ list.items = buildDataSet(100); |
+ |
+ flush(function() { |
+ list.scrollToIndex(30); |
+ assert.equal(list.firstVisibleIndex, 30); |
+ |
+ list.scrollToIndex(0); |
+ assert.equal(list.firstVisibleIndex, 0); |
+ |
+ var rowHeight = getFirstItemFromList(list).offsetHeight; |
+ var viewportHeight = list.offsetHeight; |
+ var itemsPerViewport = Math.floor(viewportHeight/rowHeight); |
+ |
+ list.scrollToIndex(99); |
+ assert.equal(list.firstVisibleIndex, list.items.length - itemsPerViewport); |
+ |
+ // make the height of the viewport same as the height of the row |
+ // and scroll to the last item |
+ list.style.height = list._physicalItems[0].offsetHeight + 'px'; |
+ |
+ setTimeout(function() { |
+ list.scrollToIndex(99); |
+ assert.equal(list.firstVisibleIndex, 99); |
+ done(); |
+ }, 100); |
+ |
+ }); |
+ }); |
+ }); |
+</script> |
+ |
+</body> |
+</html> |