Blame view

bower_components/iron-list/test/mutations.html 8.22 KB
73bcce88   luigser   COMPONENTS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  <!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>
73bcce88   luigser   COMPONENTS
19
  
e619a3b0   Luigi Serra   Controllet cross ...
20
21
    <link rel="import" href="helpers.html">
    <link rel="import" href="x-list.html">
73bcce88   luigser   COMPONENTS
22
23
24
25
26
  </head>
  <body>
  
    <test-fixture id="trivialList">
      <template>
e619a3b0   Luigi Serra   Controllet cross ...
27
        <x-list></x-list>
73bcce88   luigser   COMPONENTS
28
29
30
      </template>
    </test-fixture>
  
a53fbbed   Renato De Donato   select-dataset ne...
31
32
33
34
35
36
    <test-fixture id="trivialListPrimitiveItem">
      <template>
        <x-list primitive></x-list>
      </template>
    </test-fixture>
  
73bcce88   luigser   COMPONENTS
37
    <script>
73bcce88   luigser   COMPONENTS
38
  
a53fbbed   Renato De Donato   select-dataset ne...
39
      suite('mutations to the collection of items', function() {
e619a3b0   Luigi Serra   Controllet cross ...
40
        var list, container;
73bcce88   luigser   COMPONENTS
41
42
43
  
        setup(function() {
          container = fixture('trivialList');
e619a3b0   Luigi Serra   Controllet cross ...
44
          list = container.list;
73bcce88   luigser   COMPONENTS
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
        });
  
        test('update physical item', function(done) {
          var setSize = 100;
          var phrase = 'It works!';
  
          list.items = buildDataSet(setSize);
  
          list.set('items.0.index', phrase);
  
          flush(function() {
            assert.equal(getFirstItemFromList(list).textContent, phrase);
            done();
          });
        });
  
        test('update virtual item', function(done) {
          var setSize = 100;
          var phrase = 'It works!';
  
          list.items = buildDataSet(setSize);
  
          function scrollBackUp() {
            simulateScroll({
              list: list,
a53fbbed   Renato De Donato   select-dataset ne...
70
71
72
73
74
75
              contribution: 200,
              target: 0,
              onScrollEnd: function() {
               assert.equal(getFirstItemFromList(list).textContent, phrase);
               done();
              }
73bcce88   luigser   COMPONENTS
76
77
78
79
            });
          }
  
          flush(function() {
a53fbbed   Renato De Donato   select-dataset ne...
80
            var rowHeight = getFirstItemFromList(list).offsetHeight;
73bcce88   luigser   COMPONENTS
81
82
83
            // scroll down
            simulateScroll({
              list: list,
a53fbbed   Renato De Donato   select-dataset ne...
84
85
86
87
88
89
              contribution: 200,
              target: setSize*rowHeight,
              onScrollEnd: function() {
                list.set('items.0.index', phrase);
                scrollBackUp();
              }
73bcce88   luigser   COMPONENTS
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
            });
          });
        });
  
        test('push', function(done) {
          var setSize = 100;
  
          list.items = buildDataSet(setSize);
          setSize = list.items.length;
  
          list.push('items', buildItem(setSize));
          assert.equal(list.items.length, setSize + 1);
  
          flush(function() {
            var rowHeight = list._physicalItems[0].offsetHeight;
            var viewportHeight = list.offsetHeight;
            var itemsPerViewport = Math.floor(viewportHeight/rowHeight);
  
            assert.equal(getFirstItemFromList(list).textContent, 0);
  
            simulateScroll({
              list: list,
a53fbbed   Renato De Donato   select-dataset ne...
112
113
114
115
              contribution: 200,
              target: list.items.length*rowHeight,
              onScrollEnd: function() {
                assert.equal(getFirstItemFromList(list).textContent,
73bcce88   luigser   COMPONENTS
116
                  list.items.length - itemsPerViewport);
a53fbbed   Renato De Donato   select-dataset ne...
117
118
                done();
              }
73bcce88   luigser   COMPONENTS
119
120
121
122
            });
          })
        });
  
a53fbbed   Renato De Donato   select-dataset ne...
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
        test('push and scroll to bottom', function(done) {
          list.items = [buildItem(0)];
  
          flush(function() {
            var rowHeight = getFirstItemFromList(list).offsetHeight;
            var viewportHeight = list.offsetHeight;
            var itemsPerViewport = Math.floor(viewportHeight/rowHeight);
  
            while (list.items.length < 200) {
              list.push('items', buildItem(list.items.length));
            }
  
            list.scrollToIndex(list.items.length - 1);
            assert.isTrue(isFullOfItems(list));
            assert.equal(getFirstItemFromList(list).textContent.trim(),
                list.items.length - itemsPerViewport);
            done();
          });
        });
  
73bcce88   luigser   COMPONENTS
143
144
145
146
147
        test('pop', function(done) {
          var setSize = 100;
          list.items = buildDataSet(setSize);
  
          flush(function() {
a53fbbed   Renato De Donato   select-dataset ne...
148
            var rowHeight = getFirstItemFromList(list).offsetHeight;
73bcce88   luigser   COMPONENTS
149
150
151
  
            simulateScroll({
              list: list,
a53fbbed   Renato De Donato   select-dataset ne...
152
153
154
155
156
157
158
159
160
161
162
163
164
165
              contribution: 200,
              target: setSize*rowHeight,
              onScrollEnd: function() {
                var viewportHeight = list.offsetHeight;
                var itemsPerViewport = Math.floor(viewportHeight/rowHeight);
  
                list.pop('items');
  
                flush(function() {
                  assert.equal(list.items.length, setSize-1);
                  assert.equal(getFirstItemFromList(list).textContent, setSize - 3 - 1);
                  done();
                });
              }
73bcce88   luigser   COMPONENTS
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
            });
          });
        });
  
        test('splice', function(done) {
          var setSize = 45;
          var phrase = 'It works!'
          list.items = buildDataSet(setSize);
  
          list.splice('items', 0, setSize, buildItem(phrase));
  
          flush(function() {
            assert.equal(list.items.length, 1);
            assert.equal(getFirstItemFromList(list).textContent, phrase);
            done();
          });
        });
eb240478   Luigi Serra   public room cards...
183
184
185
186
187
188
189
190
191
192
193
194
195
196
  
        test('delete item and scroll to bottom', function() {
          var setSize = 100, index;
  
          list.items = buildDataSet(setSize);
  
          while (list.items.length > 10) {
            index = parseInt(list.items.length * Math.random());
            list.arrayDelete('items',  list.items[index]);
            list.scrollToIndex(list.items.length - 1);
            assert.isTrue(/^[0-9]*$/.test(getFirstItemFromList(list).textContent));
          }
        });
  
a53fbbed   Renato De Donato   select-dataset ne...
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
        test('reassign items', function(done) {
          list.items = buildDataSet(100);
          container.itemHeight = 'auto';
  
          flush(function() {
            var itemHeight = getFirstItemFromList(list).offsetHeight;
            var hasRepeatedItems = checkRepeatedItems(list);
  
            simulateScroll({
              list: list,
              contribution: 200,
              target: itemHeight * list.items.length,
              onScrollEnd: function() {
                list.items = list.items.slice(0);
                simulateScroll({
                  list: list,
                  contribution: itemHeight,
                  target: itemHeight * list.items.length,
                  onScroll: function() {
                    assert.isFalse(hasRepeatedItems(), 'List should not have repeated items');
                  },
                  onScrollEnd: done
                });
              }
            });
          });
        });
  
        test('empty items array', function(done) {
          list.items = buildDataSet(100);
  
          flush(function() {
            list.items = [];
            flush(function() {
              assert.notEqual(getFirstItemFromList(list).textContent, '0');
              done();
            });
          });
        });
  
        test('should notify path to the right physical item', function(done) {
          list.items = buildDataSet(100);
          flush(function() {
            var idx = list._physicalCount + 1;
  
            list.scrollToIndex(idx);
            list.notifyPath('items.1.index', 'bad');
            assert.equal(getFirstItemFromList(list).textContent, idx);
            done();
          });
        });
      });
  
      suite('mutations of primitive type items', function() {
        var container, list;
  
        setup(function() {
          container = fixture('trivialListPrimitiveItem');
          list = container.list;
        });
  
        test('push item = polymer', function(done) {
          list.items = [];
          list.push('items', 'polymer');
  
          flush(function() {
           assert.equal(getFirstItemFromList(list).textContent, 'polymer');
           done();
          });
        });
  
        test('push item = 0', function(done) {
          list.items = [];
          list.push('items', 0);
  
          flush(function() {
            assert.equal(getFirstItemFromList(list).textContent, '0');
            done();
          });
        });
  
        test('push item = false', function(done) {
          list.items = [];
          list.push('items', false);
  
          flush(function() {
            assert.equal(getFirstItemFromList(list).textContent, 'false');
            done();
          });
        });
73bcce88   luigser   COMPONENTS
287
      });
a53fbbed   Renato De Donato   select-dataset ne...
288
  
73bcce88   luigser   COMPONENTS
289
290
291
292
    </script>
  
  </body>
  </html>