summaryrefslogtreecommitdiff
path: root/systrace/catapult/third_party/polymer/components/iron-dropdown/test/iron-dropdown.html
blob: a01b0001cfcb1dbcb2b116a6d81b33932fd80495 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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
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
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
<!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.txt
The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
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.txt
-->
<html>

<head>
  <meta charset="UTF-8">
  <title>iron-dropdown basic tests</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>
  <script src="../../iron-test-helpers/mock-interactions.js"></script>

  <link rel="import" href="../iron-dropdown.html">
  <link rel="import" href="../../test-fixture/test-fixture.html">

</head>
<style>
  body {
    margin: 0;
    padding: 0;
  }

  .container {
    display: block;
    position: relative;
    width: 100px;
    height: 100px;
    background-color: yellow;
  }

  .positioned {
    position: absolute;
    top: 40px;
    left: 40px;
  }

  .dropdown-content {
    width: 50px;
    height: 50px;
    background-color: orange;
  }

  .big {
    width: 3000px;
    height: 3000px;
  }
</style>

<body>

  <test-fixture id="TrivialDropdown">
    <template>
      <iron-dropdown>
        <div class="dropdown-content"></div>
      </iron-dropdown>
    </template>
  </test-fixture>

  <test-fixture id="NonLockingDropdown">
    <template>
      <iron-dropdown allow-outside-scroll>
        <div class="dropdown-content">I don't lock scroll!</div>
      </iron-dropdown>
    </template>
  </test-fixture>

  <test-fixture id="AlignedDropdown">
    <template>
      <div class="container">
        <iron-dropdown horizontal-align="right" vertical-align="top">
          <div class="dropdown-content big"></div>
        </iron-dropdown>
      </div>
    </template>
  </test-fixture>

  <!-- Absolutely position the dropdown so that it has enough space to move around -->
  <test-fixture id="OffsetDropdownTopLeft">
    <template>
      <div class="container positioned">
        <iron-dropdown>
          <div class="dropdown-content"></div>
        </iron-dropdown>
      </div>
    </template>
  </test-fixture>

  <test-fixture id="OffsetDropdownBottomRight">
    <template>
      <div class="container positioned">
        <iron-dropdown horizontal-align="right" vertical-align="bottom">
          <div class="dropdown-content"></div>
        </iron-dropdown>
      </div>
    </template>
  </test-fixture>

  <test-fixture id="FocusableContentDropdown">
    <template>
      <iron-dropdown>
        <div class="dropdown-content" tabindex="0">
          <div class="subcontent" tabindex="0"></div>
        </div>
      </iron-dropdown>
    </template>
  </test-fixture>

  <test-fixture id="RTLDropdownLeft">
    <template>
      <div dir="rtl" class="container">
        <iron-dropdown>
          <div class="dropdown-content"></div>
        </iron-dropdown>
      </div>
    </template>
  </test-fixture>

  <test-fixture id="RTLDropdownRight">
    <template>
      <div dir="rtl" class="container">
        <iron-dropdown horizontal-align="right">
          <div class="dropdown-content"></div>
        </iron-dropdown>
      </div>
    </template>
  </test-fixture>

  <test-fixture id="sizingTarget">
    <template>
      <iron-dropdown>
        <div class="dropdown-content">
          <div class="subcontent"></div>
        </div>
      </iron-dropdown>
    </template>
  </test-fixture>

  <test-fixture id="EmptyDropdown">
    <template>
      <iron-dropdown></iron-dropdown>
    </template>
  </test-fixture>

  <script>
    function elementIsVisible(element) {
      var contentRect = element.getBoundingClientRect();
      var computedStyle = window.getComputedStyle(element);

      return computedStyle.display !== 'none' &&
        contentRect.width > 0 &&
        contentRect.height > 0;
    }

    function runAfterOpen(overlay, callback) {
      overlay.addEventListener('iron-overlay-opened', callback);
      overlay.open();
    }

    function fireWheel(node, deltaX, deltaY) {
      // IE 11 doesn't support WheelEvent, use CustomEvent.
      var event = new CustomEvent('wheel', {
        cancelable: true,
        bubbles: true
      });
      event.deltaX = deltaX;
      event.deltaY = deltaY;
      node.dispatchEvent(event);
      return event;
    }

    function dispatchScroll(target, scrollLeft, scrollTop) {
      target.scrollLeft = scrollLeft;
      target.scrollTop = scrollTop;
      target.dispatchEvent(new CustomEvent('scroll', { bubbles:true } ));
    }

    suite('<iron-dropdown>', function() {
      var dropdown;
      var content;

      suite('basic', function() {
        setup(function() {
          dropdown = fixture('TrivialDropdown');
          content = Polymer.dom(dropdown).querySelector('.dropdown-content');
        });

        test('effectively hides the dropdown content', function() {
          expect(elementIsVisible(content)).to.be.equal(false);
        });

        test('shows dropdown content when opened', function(done) {
          runAfterOpen(dropdown, function() {
            expect(elementIsVisible(content)).to.be.equal(true);
            done();
          });
        });

        test('hides dropdown content when outside is clicked', function(done) {
          runAfterOpen(dropdown, function() {
            expect(elementIsVisible(content)).to.be.equal(true);
            dropdown.addEventListener('iron-overlay-closed', function() {
              expect(elementIsVisible(content)).to.be.equal(false);
              done();
            });
            MockInteractions.tap(dropdown.parentNode);
          });
        });

        suite('when content is focusable', function() {
          setup(function() {
            dropdown = fixture('FocusableContentDropdown');
            content = Polymer.dom(dropdown).querySelector('.dropdown-content');
          });
          test('focuses the content when opened', function(done) {
            runAfterOpen(dropdown, function() {
              expect(document.activeElement).to.be.equal(content);
              done();
            });
          });

          test('focuses a configured focus target', function(done) {
            var focusableChild = Polymer.dom(content).querySelector('div[tabindex]');
            dropdown.focusTarget = focusableChild;

            runAfterOpen(dropdown, function() {
              expect(document.activeElement).to.not.be.equal(content);
              expect(document.activeElement).to.be.equal(focusableChild);
              done();
            });
          });
        });

        suite('when dropdown is empty', function() {
          test('keeps the sizingTarget default value', function() {
            dropdown = fixture('EmptyDropdown');
            expect(dropdown.sizingTarget).to.be.equal(dropdown);
          });
        });

        suite('correct animationConfig setup', function() {
          test('as objects', function() {
            dropdown.openAnimationConfig = {
              name: 'open-animation'
            };
            dropdown.closeAnimationConfig = {
              name: 'close-animation'
            };

            dropdown.opened = true;

            assert.deepEqual(dropdown.openAnimationConfig, {
              name: 'open-animation',
              node: content
            }, 'open animation ok');

            assert.deepEqual(dropdown.closeAnimationConfig, {
              name: 'close-animation',
              node: content
            }, 'close animation ok');

            assert.deepEqual(dropdown.animationConfig, {
              open: dropdown.openAnimationConfig,
              close: dropdown.closeAnimationConfig
            }, 'animationConfig ok');
          });

          test('as arrays', function() {
            dropdown.openAnimationConfig = [{
              name: 'open-animation-1'
            }, {
              name: 'open-animation-2'
            }];
            dropdown.closeAnimationConfig = [{
              name: 'close-animation-1'
            }, {
              name: 'close-animation-2'
            }];

            dropdown.opened = true;

            assert.deepEqual(dropdown.openAnimationConfig, [{
              name: 'open-animation-1',
              node: content
            }, {
              name: 'open-animation-2',
              node: content
            }], 'open animation ok');

            assert.deepEqual(dropdown.closeAnimationConfig, [{
              name: 'close-animation-1',
              node: content
            }, {
              name: 'close-animation-2',
              node: content
            }], 'close animation ok');

            assert.deepEqual(dropdown.animationConfig, {
              open: dropdown.openAnimationConfig,
              close: dropdown.closeAnimationConfig
            }, 'animationConfig ok');
          });
        });

      });

      suite('locking scroll', function() {

        var bigDiv, scrollTarget;
        suiteSetup(function() {
          bigDiv = document.createElement('div');
          bigDiv.classList.add('big');
          document.body.appendChild(bigDiv);
          // Need to discover if html or body is scrollable.
          // Here we are sure the page is scrollable.
          document.documentElement.scrollTop = 1;
          if (document.documentElement.scrollTop === 1) {
            document.documentElement.scrollTop = 0;
            scrollTarget = document.documentElement;
          } else {
            scrollTarget = document.body;
          }
        });

        suiteTeardown(function() {
          document.body.removeChild(bigDiv);
        });

        setup(function() {
          dropdown = fixture('TrivialDropdown');
        });

        teardown(function() {
          dispatchScroll(scrollTarget, 0, 0);
        });

        test('should lock, only once', function(done) {
          var openCount = 0;
          runAfterOpen(dropdown, function() {
            expect(Polymer.IronDropdownScrollManager._lockingElements.length)
              .to.be.equal(1);
            expect(Polymer.IronDropdownScrollManager.elementIsScrollLocked(document.body))
              .to.be.equal(true);
            expect(fireWheel(document.body, 0, 10).defaultPrevented).to.be.equal(true);

            if (openCount === 0) {
              // This triggers a second `pushScrollLock` with the same element, however
              // that should not add the element to the `_lockingElements` stack twice
              dropdown.close();
              dropdown.open();
            } else {
              done();
            }
            openCount++;
          });
        });

        test('should lock scroll', function(done) {
          runAfterOpen(dropdown, function() {
            dispatchScroll(scrollTarget, 10, 10);
            assert.equal(scrollTarget.scrollTop, 0, 'scrollTop ok');
            assert.equal(scrollTarget.scrollLeft, 0, 'scrollLeft ok');
            done();
          });
        });

        test('can be disabled with `allowOutsideScroll`', function(done) {
          dropdown.allowOutsideScroll = true;
          runAfterOpen(dropdown, function() {
            dispatchScroll(scrollTarget, 10, 10);
            assert.equal(scrollTarget.scrollTop, 10, 'scrollTop ok');
            assert.equal(scrollTarget.scrollLeft, 10, 'scrollLeft ok');
            done();
          });
        });

      });

      suite('non locking scroll', function() {

        setup(function() {
          dropdown = fixture('NonLockingDropdown');
        });

        test('can be disabled with `allowOutsideScroll`', function(done) {
          runAfterOpen(dropdown, function() {
            expect(Polymer.IronDropdownScrollManager.elementIsScrollLocked(document.body))
              .to.be.equal(false);
            expect(fireWheel(document.body, 0, 10).defaultPrevented).to.be.equal(false);
            done();
          });
        });
      });

      suite('aligned dropdown', function() {
        var parent;
        var parentRect;
        var dropdownRect;

        setup(function() {
          parent = fixture('AlignedDropdown');
          dropdown = parent.querySelector('iron-dropdown');
          parentRect = parent.getBoundingClientRect();
        });

        test('can be re-aligned to the right and the top', function(done) {
          runAfterOpen(dropdown, function() {
            dropdownRect = dropdown.getBoundingClientRect();
            assert.equal(dropdownRect.top, parentRect.top, 'top ok');
            assert.equal(dropdownRect.left, 0, 'left ok');
            assert.equal(dropdownRect.bottom, window.innerHeight, 'bottom ok');
            assert.equal(dropdownRect.right, parentRect.right, 'right ok');
            done();
          });
        });

        test('can be re-aligned to the bottom', function(done) {
          dropdown.verticalAlign = 'bottom';
          runAfterOpen(dropdown, function() {
            dropdownRect = dropdown.getBoundingClientRect();
            assert.equal(dropdownRect.top, 0, 'top ok');
            assert.equal(dropdownRect.left, 0, 'left ok');
            assert.equal(dropdownRect.bottom, parentRect.bottom, 'bottom ok');
            assert.equal(dropdownRect.right, parentRect.right, 'right ok');
            done();
          });
        });

        test('handles parent\'s stacking context', function(done) {
          // This will create a new stacking context.
          parent.style.transform = 'translateZ(0)';
          runAfterOpen(dropdown, function() {
            dropdownRect = dropdown.getBoundingClientRect();
            assert.equal(dropdownRect.top, parentRect.top, 'top ok');
            assert.equal(dropdownRect.left, 0, 'left ok');
            assert.equal(dropdownRect.bottom, window.innerHeight, 'bottom ok');
            assert.equal(dropdownRect.right, parentRect.right, 'right ok');
            done();
          });
        });
      });

      suite('when align is left/top, with an offset', function() {
        var dropdownRect;
        var offsetDropdownRect;
        setup(function() {
          var parent = fixture('OffsetDropdownTopLeft');
          dropdown = parent.querySelector('iron-dropdown');
        });

        test('can be offset towards the bottom right', function(done) {
          runAfterOpen(dropdown, function() {
            dropdownRect = dropdown.getBoundingClientRect();
            dropdown.verticalOffset = 10;
            dropdown.horizontalOffset = 10;
            // Force refit instead of waiting for requestAnimationFrame.
            dropdown.refit();
            offsetDropdownRect = dropdown.getBoundingClientRect();
            // verticalAlign is top, so a positive offset moves down.
            assert.equal(dropdownRect.top + 10, offsetDropdownRect.top, 'top ok');
            // horizontalAlign is left, so a positive offset moves to the right.
            assert.equal(dropdownRect.left + 10, offsetDropdownRect.left, 'left ok');
            done();
          });
        });

        test('can be offset towards the top left', function(done) {
          runAfterOpen(dropdown, function() {
            dropdownRect = dropdown.getBoundingClientRect();
            dropdown.verticalOffset = -10;
            dropdown.horizontalOffset = -10;
            // Force refit instead of waiting for requestAnimationFrame.
            dropdown.refit();
            offsetDropdownRect = dropdown.getBoundingClientRect();
            // verticalAlign is top, so a negative offset moves up.
            assert.equal(dropdownRect.top - 10, offsetDropdownRect.top, 'top ok');
            // horizontalAlign is left, so a negative offset moves to the left.
            assert.equal(dropdownRect.left - 10, offsetDropdownRect.left, 'left ok');
            done();
          });
        });
      });

      suite('when align is right/bottom, with an offset', function() {
        var dropdownRect;
        var offsetDropdownRect;
        setup(function() {
          var parent = fixture('OffsetDropdownBottomRight');
          dropdown = parent.querySelector('iron-dropdown');
        });

        test('can be offset towards the top left', function(done) {
          runAfterOpen(dropdown, function() {
            dropdownRect = dropdown.getBoundingClientRect();
            dropdown.verticalOffset = 10;
            dropdown.horizontalOffset = 10;
            // Force refit instead of waiting for requestAnimationFrame.
            dropdown.refit();
            offsetDropdownRect = dropdown.getBoundingClientRect();
            // verticalAlign is bottom, so a positive offset moves up.
            assert.equal(dropdownRect.bottom - 10, offsetDropdownRect.bottom, 'bottom ok');
            // horizontalAlign is right, so a positive offset moves to the left.
            assert.equal(dropdownRect.right - 10, offsetDropdownRect.right, 'right ok');
            done();
          });
        });

        test('can be offset towards the bottom right', function(done) {
          runAfterOpen(dropdown, function() {
            dropdownRect = dropdown.getBoundingClientRect();
            dropdown.verticalOffset = -10;
            dropdown.horizontalOffset = -10;
            // Force refit instead of waiting for requestAnimationFrame.
            dropdown.refit();
            offsetDropdownRect = dropdown.getBoundingClientRect();
            // verticalAlign is bottom, so a negative offset moves down.
            assert.equal(dropdownRect.bottom + 10, offsetDropdownRect.bottom, 'bottom ok');
            // horizontalAlign is right, so a positive offset moves to the right.
            assert.equal(dropdownRect.right + 10, offsetDropdownRect.right, 'right ok');
            done();
          });
        });
      });

      suite('RTL', function() {
        var dropdownRect;

        test('with horizontalAlign=left', function(done) {
          var parent = fixture('RTLDropdownLeft');
          dropdown = parent.querySelector('iron-dropdown');
          runAfterOpen(dropdown, function() {
            // In RTL, if `horizontalAlign` is "left", that's the same as
            // being right-aligned in LTR. So the dropdown should be in the top
            // right corner.
            dropdownRect = dropdown.getBoundingClientRect();
            expect(dropdownRect.top).to.be.equal(0);
            expect(dropdownRect.right).to.be.equal(100);
            done();
          });
        });

        test('with horizontalAlign=right', function(done) {
          var parent = fixture('RTLDropdownRight');
          dropdown = parent.querySelector('iron-dropdown');
          runAfterOpen(dropdown, function() {
            // In RTL, if `horizontalAlign` is "right", that's the same as
            // being left-aligned in LTR. So the dropdown should be in the top
            // left corner.
            dropdownRect = dropdown.getBoundingClientRect();
            expect(dropdownRect.top).to.be.equal(0);
            expect(dropdownRect.left).to.be.equal(0);
            done();
          });
        });
      });

      suite('sizing target', function() {
        setup(function() {
          dropdown = fixture('sizingTarget');
          content = Polymer.dom(dropdown).querySelector('.dropdown-content');
        });

        test('sizingTarget is the content element by default', function(done) {
          runAfterOpen(dropdown, function() {
            expect(dropdown.sizingTarget).to.be.equal(content);
            expect(content.style.maxHeight).to.be.not.empty;
            expect(content.style.maxWidth).to.be.not.empty;
            done();
          });
        });

        test('sizingTarget can be set to a child element', function(done) {
          var subcontent = Polymer.dom(dropdown).querySelector('.subcontent');
          dropdown.sizingTarget = subcontent;

          runAfterOpen(dropdown, function() {
            expect(dropdown.sizingTarget).to.be.equal(subcontent);
            expect(subcontent.style.maxHeight).to.be.not.empty;
            expect(subcontent.style.maxWidth).to.be.not.empty;
            done();
          });
        });
      });
    });
  </script>
</body>

</html>