Blame view

bower_components/iron-list/test/selection.html 9.16 KB
e619a3b0   Luigi Serra   Controllet cross ...
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>
e619a3b0   Luigi Serra   Controllet cross ...
19
20
    <script src="../../iron-test-helpers/mock-interactions.js"></script>
  
e619a3b0   Luigi Serra   Controllet cross ...
21
22
23
24
25
26
27
28
    <link rel="import" href="helpers.html">
    <link rel="import" href="x-list.html">
  
  </head>
  <body>
  
    <test-fixture id="trivialList">
      <template>
a53fbbed   Renato De Donato   select-dataset ne...
29
        <x-list item-height="10"></x-list>
e619a3b0   Luigi Serra   Controllet cross ...
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
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
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
      </template>
    </test-fixture>
  
    <script>
  
      suite('selection', function() {
        var list, container;
  
        setup(function() {
          container = fixture('trivialList');
          list = container.list;
        });
  
        test('single selection by item index', function(done) {
          list.items = buildDataSet(100);
  
          flush(function() {
            assert.isNull(list.selectedItem);
  
            list.selectItem(0);
  
            assert.deepEqual(list.selectedItem, list.items[0]);
  
            list.deselectItem(0);
  
            assert.deepEqual(list.selectedItem, null);
  
            list.selectItem(99);
  
            assert.deepEqual(list.selectedItem, list.items[99]);
  
            done();
          });
        });
  
        test('single selection by item object', function(done) {
          list.items = buildDataSet(100);
  
          flush(function() {
            assert.isNull(list.selectedItem);
  
            list.selectItem(list.items[50]);
  
            assert.deepEqual(list.selectedItem, list.items[50]);
  
            done();
          });
        });
  
        test('multi selection by item index', function(done) {
          list.items = buildDataSet(100);
  
          flush(function() {
            list.multiSelection = true;
  
            assert.isArray(list.selectedItems);
  
            list.selectItem(0);
            list.selectItem(50);
            list.selectItem(99);
  
            assert.equal(list.selectedItems.length, 3);
            assert.notEqual(list.selectedItems.indexOf(list.items[0]), -1);
            assert.notEqual(list.selectedItems.indexOf(list.items[50]), -1);
            assert.notEqual(list.selectedItems.indexOf(list.items[99]), -1);
            assert.equal(list.selectedItems.indexOf(list.items[2]), -1);
  
            done();
          });
        });
  
        test('multi selection by item object', function(done) {
          list.items = buildDataSet(100);
  
          flush(function() {
            list.multiSelection = true;
  
            assert.isArray(list.selectedItems);
  
            list.selectItem(list.items[0]);
            list.selectItem(list.items[50]);
            list.selectItem(list.items[99]);
  
            assert.equal(list.selectedItems.length, 3);
            assert.notEqual(list.selectedItems.indexOf(list.items[0]), -1);
            assert.notEqual(list.selectedItems.indexOf(list.items[50]), -1);
            assert.notEqual(list.selectedItems.indexOf(list.items[99]), -1);
            assert.equal(list.selectedItems.indexOf(list.items[2]), -1);
  
            done();
          });
        });
  
        test('clear selection', function(done) {
          list.items = buildDataSet(100);
  
          flush(function() {
            list.multiSelection = true;
  
            assert.isArray(list.selectedItems);
  
            list.items.forEach(function(item) {
               list.selectItem(item);
            });
  
            assert.equal(list.selectedItems.length, list.items.length);
  
            list.clearSelection();
  
            assert.equal(list.selectedItems.length, 0);
  
            done();
          });
        });
  
  
        test('toggle selection by item index', function(done) {
          list.items = buildDataSet(100);
  
          flush(function() {
            list.toggleSelectionForItem(0);
  
            assert.deepEqual(list.selectedItem, list.items[0]);
  
            list.toggleSelectionForItem(0);
  
            assert.isNull(list.selectedItem);
  
            done();
          });
        });
  
        test('toggle selection by item object', function(done) {
          list.items = buildDataSet(100);
  
          flush(function() {
            list.toggleSelectionForItem(list.items[0]);
  
            assert.deepEqual(list.selectedItem, list.items[0]);
  
            list.toggleSelectionForItem(list.items[0]);
  
            assert.isNull(list.selectedItem);
  
            done();
          });
        });
  
        test('change multi property', function(done) {
          list.items = buildDataSet(100);
  
          flush(function() {
            list.multiSelection = true;
  
            assert.isArray(list.selectedItems);
  
            list.multiSelection = false;
  
            assert.isNotArray(list.selectedItems);
            assert.isNull(list.selectedItems);
  
            list.multiSelection = true;
  
            assert.isArray(list.selectedItems);
  
            done();
          });
        });
  
        test('selectionEnabled with single selection', function(done) {
          list.items = buildDataSet(100);
  
          flush(function() {
            list.selectionEnabled = true;
  
            assert.isNull(list.selectedItem);
  
            // select item[0]
            MockInteractions.tap(list._physicalItems[0]);
  
            assert.deepEqual(list.selectedItem, list.items[0]);
  
            // select item[5] and deselect item[0]
            MockInteractions.tap(list._physicalItems[5]);
  
            // select item[1] and deselect item[5]
            MockInteractions.tap(list._physicalItems[1]);
  
            assert.deepEqual(list.selectedItem, list.items[1]);
  
            done();
          });
        });
  
        test('selectionEnabled with multiple selection', function(done) {
          list.items = buildDataSet(100);
  
          flush(function() {
            list.multiSelection = true;
  
            MockInteractions.tap(list._physicalItems[0]);
            assert.equal(list.selectedItems.length, 0);
  
            // enable the feature
            list.selectionEnabled = true;
  
            // select item[0]
            MockInteractions.tap(list._physicalItems[0]);
  
            assert.notEqual(list.selectedItems.indexOf(list.items[0]), -1);
  
            // multiple selection
            MockInteractions.tap(list._physicalItems[1]);
            MockInteractions.tap(list._physicalItems[5]);
            MockInteractions.tap(list._physicalItems[10]);
            MockInteractions.tap(list._physicalItems[12]);
  
            list.selectItem(0);
            list.deselectItem(1);
  
            assert.equal(list.selectedItems.indexOf(list.items[1]), -1);
            assert.notEqual(list.selectedItems.indexOf(list.items[0]), -1);
            assert.notEqual(list.selectedItems.indexOf(list.items[5]), -1);
            assert.notEqual(list.selectedItems.indexOf(list.items[10]), -1);
            assert.notEqual(list.selectedItems.indexOf(list.items[12]), -1);
  
            list.clearSelection();
  
            assert.equal(list.selectedItems.length, 0);
  
            // disable the feature
            list.selectionEnabled = false;
  
            MockInteractions.tap(list._physicalItems[1]);
  
            assert.equal(list.selectedItems.length, 0);
  
            done();
          });
        });
  
      test('toggle', function(done) {
        list.items = buildDataSet(100);
  
        flush(function() {
          list.selectionEnabled = true;
  
          MockInteractions.tap(list._physicalItems[0]);
  
          assert.deepEqual(list.selectedItem, list.items[0]);
  
          MockInteractions.tap(list._physicalItems[0]);
  
          assert.isNull(list.selectedItem);
  
          MockInteractions.tap(list._physicalItems[0]);
          list.clearSelection();
  
          assert.isNull(list.selectedItem);
  
          done();
        });
  
      });
  
       test('selectedAs', function(done) {
          list.items = buildDataSet(100);
  
          flush(function() {
            // multi selection
            list.multiSelection = true;
  
            assert.isFalse(list._physicalItems[0]._templateInstance.selected);
  
            list.selectItem(0);
  
            assert.isTrue(list._physicalItems[0]._templateInstance.selected);
  
            list.toggleSelectionForItem(0);
  
            assert.isFalse(list._physicalItems[0]._templateInstance.selected);
  
            // single selection
            list.multiSelection = false;
  
            list.selectItem(0);
            list.selectItem(10);
  
            assert.isFalse(list._physicalItems[0]._templateInstance.selected);
            assert.isTrue(list._physicalItems[10]._templateInstance.selected);
  
e619a3b0   Luigi Serra   Controllet cross ...
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
            done();
          });
        });
  
  
        test('splice a selected item', function(done) {
          list.items = buildDataSet(100);
  
          flush(function() {
            // multi selection
            list.multiSelection = true;
  
            // select the first two items
            list.selectItem(0);
            list.selectItem(1);
  
            assert.equal(list.selectedItems.length, 2);
  
            // remove the first two items
            list.splice('items', 0, 2);
  
            assert.equal(list.selectedItems.length, 0);
  
            done();
          });
        });
      });
  
    </script>
  
  </body>
  </html>