Blame view

bower_components/iron-overlay-behavior/test/iron-overlay-behavior.html 12.3 KB
73bcce88   luigser   COMPONENTS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
  <!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>
  
      <title>iron-overlay-behavior tests</title>
  
      <meta charset="utf-8">
      <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
      <meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1, user-scalable=yes">
  
      <script src="../../webcomponentsjs/webcomponents-lite.js"></script>
  
      <script src="../../web-component-tester/browser.js"></script>
c5169e0e   Renato De Donato   a new hope
23
24
25
26
      <script src="../../test-fixture/test-fixture-mocha.js"></script>
      <script src="../../iron-test-helpers/test-helpers.js"></script>
  
      <link rel="import" href="../../test-fixture/test-fixture.html">
73bcce88   luigser   COMPONENTS
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
      <link rel="import" href="test-overlay.html">
  
    </head>
    <body>
  
      <test-fixture id="basic">
        <template>
          <test-overlay>
            Basic Overlay
          </test-overlay>
        </template>
      </test-fixture>
  
      <test-fixture id="opened">
        <template>
          <test-overlay opened>
            Basic Overlay
          </test-overlay>
        </template>
      </test-fixture>
  
      <test-fixture id="autofocus">
        <template>
          <test-overlay>
            Autofocus
            <button autofocus>button</button>
          </test-overlay>
        </template>
      </test-fixture>
  
      <test-fixture id="multiple">
        <template>
          <test-overlay class="overlay-1">
            Overlay 1
          </test-overlay>
          <test-overlay class="overlay-2">
            Overlay 2
          </test-overlay>
          <test-overlay class="overlay-3">
            Overlay 3
          </test-overlay>
        </template>
      </test-fixture>
  
      <test-fixture id="backdrop-multiple">
        <template>
          <test-overlay with-backdrop class="overlay-1">
            Overlay 1 with backdrop
          </test-overlay>
          <test-overlay with-backdrop class="overlay-2">
            Overlay 2 with backdrop
          </test-overlay>
          <test-overlay with-backdrop class="overlay-3">
            Overlay 3 with backdrop
          </test-overlay>
        </template>
      </test-fixture>
  
      <script>
  
        function runAfterOpen(overlay, cb) {
          overlay.addEventListener('iron-overlay-opened', function() {
e619a3b0   Luigi Serra   Controllet cross ...
89
            Polymer.Base.async(cb, 1);
73bcce88   luigser   COMPONENTS
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
          });
          overlay.open();
        }
  
        suite('basic overlay tests', function() {
          var overlay;
  
          setup(function() {
            overlay = fixture('basic');
          });
  
          test('overlay starts hidden', function() {
            assert.isFalse(overlay.opened, 'overlay starts closed');
            assert.equal(getComputedStyle(overlay).display, 'none', 'overlay starts hidden');
          });
  
c5169e0e   Renato De Donato   a new hope
106
          test('overlay open by default', function() {
73bcce88   luigser   COMPONENTS
107
            overlay = fixture('opened');
c5169e0e   Renato De Donato   a new hope
108
            runAfterOpen(overlay, function() {
73bcce88   luigser   COMPONENTS
109
110
              assert.isTrue(overlay.opened, 'overlay starts opened');
              assert.notEqual(getComputedStyle(overlay).display, 'none', 'overlay starts showing');
73bcce88   luigser   COMPONENTS
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
            });
          });
  
          test('overlay open/close events', function(done) {
            var nevents = 0;
  
            overlay.addEventListener('iron-overlay-opened', function() {
              nevents += 1;
              overlay.opened = false;
            });
  
            overlay.addEventListener('iron-overlay-closed', function() {
              nevents += 1;
              assert.equal(nevents, 2, 'opened and closed events fired');
              done();
            });
  
            overlay.opened = true;
          });
  
          test('close an overlay quickly after open', function(done) {
            // first, open the overlay
            overlay.open();
            overlay.async(function() {
              // during the opening transition, close the overlay
              this.close();
              // wait for any exceptions to be thrown until the transition is done
              this.async(function() {
                done();
              }, 300);
            });
          });
  
          test('close an overlay in proximity to another overlay', function(done) {
            var secondOverlay = fixture('basic');
            // Open and close a separate overlay.
            secondOverlay.open();
            secondOverlay.close();
  
            // Open the overlay we care about.
            overlay.open();
  
            // Wait for infinite recursion, otherwise we win:
            overlay.addEventListener('iron-overlay-closed', function() {
              done();
            });
  
            // Immediately close the first overlay:
            overlay.close();
          });
  
          test('clicking an overlay does not close it', function(done) {
            runAfterOpen(overlay, function() {
              overlay.addEventListener('iron-overlay-closed', function() {
                assert('iron-overlay-closed should not fire');
              });
              overlay.fire('click');
              setTimeout(function() {
                done();
              }, 10);
            });
          });
  
          test('node with autofocus is focused', function(done) {
            overlay = fixture('autofocus');
            runAfterOpen(overlay, function() {
              assert.equal(Polymer.dom(overlay).querySelector('[autofocus]'), document.activeElement, '<button autofocus> is focused');
              done();
            });
          });
  
          test('cancel an overlay by clicking outside', function(done) {
            runAfterOpen(overlay, function() {
eb240478   Luigi Serra   public room cards...
184
185
186
              overlay.addEventListener('iron-overlay-canceled', function(event) {
                done();
              });
c5169e0e   Renato De Donato   a new hope
187
              Polymer.Base.fire.call(document, 'click');
eb240478   Luigi Serra   public room cards...
188
189
190
191
192
            });
          });
  
          test('close an overlay by clicking outside', function(done) {
            runAfterOpen(overlay, function() {
73bcce88   luigser   COMPONENTS
193
194
195
196
              overlay.addEventListener('iron-overlay-closed', function(event) {
                assert.isTrue(event.detail.canceled, 'overlay is canceled');
                done();
              });
c5169e0e   Renato De Donato   a new hope
197
              Polymer.Base.fire.call(document, 'click');
73bcce88   luigser   COMPONENTS
198
199
200
            });
          });
  
eb240478   Luigi Serra   public room cards...
201
202
203
204
205
206
207
208
209
          test('cancel event can be prevented', function(done) {
            runAfterOpen(overlay, function() {
              overlay.addEventListener('iron-overlay-canceled', function(event) {
                event.preventDefault();
              });
              var closedListener = function(event) {
                throw new Error('iron-overlay-closed should not fire');
              };
              overlay.addEventListener('iron-overlay-closed', closedListener);
c5169e0e   Renato De Donato   a new hope
210
              Polymer.Base.fire.call(document, 'click');
eb240478   Luigi Serra   public room cards...
211
212
213
214
215
216
217
              setTimeout(function() {
                overlay.removeEventListener('iron-overlay-closed', closedListener);
                done();
              }, 10);
            });
          });
  
73bcce88   luigser   COMPONENTS
218
219
          test('cancel an overlay with esc key', function(done) {
            runAfterOpen(overlay, function() {
eb240478   Luigi Serra   public room cards...
220
221
222
223
224
225
226
227
228
229
230
              overlay.addEventListener('iron-overlay-canceled', function(event) {
                done();
              });
              fireEvent('keydown', {
                keyCode: 27
              }, document);
            });
          });
  
          test('close an overlay with esc key', function(done) {
            runAfterOpen(overlay, function() {
73bcce88   luigser   COMPONENTS
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
              overlay.addEventListener('iron-overlay-closed', function(event) {
                assert.isTrue(event.detail.canceled, 'overlay is canceled');
                done();
              });
              fireEvent('keydown', {
                keyCode: 27
              }, document);
            });
          });
  
          test('no-cancel-on-outside-click property', function(done) {
            overlay.noCancelOnOutsideClick = true;
            runAfterOpen(overlay, function() {
              overlay.addEventListener('iron-overlay-closed', function() {
                assert('iron-overlay-closed should not fire');
              });
c5169e0e   Renato De Donato   a new hope
247
              Polymer.Base.fire.call(document, 'click');
73bcce88   luigser   COMPONENTS
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
              setTimeout(function() {
                done();
              }, 10);
            });
          });
  
          test('no-cancel-on-esc-key property', function(done) {
            overlay.noCancelOnEscKey = true;
            runAfterOpen(overlay, function() {
              overlay.addEventListener('iron-overlay-closed', function() {
                assert('iron-overlay-cancel should not fire');
              });
              fireEvent('keydown', {
                keyCode: 27
              }, document);
              setTimeout(function() {
                done();
              }, 10);
            });
          });
  
        });
  
        suite('multiple overlays', function() {
          var overlays;
  
          setup(function() {
            overlays = fixture('multiple');
          });
  
          test('new overlays appear on top', function(done) {
            runAfterOpen(overlays[0], function() {
              runAfterOpen(overlays[1], function() {
                var styleZ = parseInt(window.getComputedStyle(overlays[0]).zIndex, 10);
                var styleZ1 = parseInt(window.getComputedStyle(overlays[1]).zIndex, 10);
                assert.isTrue(styleZ1 > styleZ, 'overlays[1] has higher z-index than overlays[0]');
                done();
              });
            });
          });
73bcce88   luigser   COMPONENTS
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
        });
  
        suite('overlays with backdrop', function() {
          var overlays;
  
          setup(function() {
            overlays = fixture('backdrop-multiple');
          });
  
          test('backdrop appears behind the overlay', function(done) {
            runAfterOpen(overlays[0], function() {
              assert.isDefined(overlays[0].backdropElement, 'backdrop is defined');
              assert.isDefined(overlays[0].backdropElement.parentNode, 'backdrop is inserted in the DOM');
  
              styleZ = parseInt(window.getComputedStyle(overlays[0]).zIndex, 10);
              backdropStyleZ = parseInt(window.getComputedStyle(overlays[0].backdropElement).zIndex, 10);
              assert.isTrue(styleZ > backdropStyleZ, 'overlay has higher z-index than backdrop');
              done();
            });
          });
  
          test('backdrop is removed when the element is removed from DOM', function(done) {
            runAfterOpen(overlays[0], function() {
              var backdrop = overlays[0].backdropElement;
              Polymer.dom(backdrop.parentNode).removeChild(backdrop);
              Polymer.dom.flush();
              assert.isNull(backdrop.parentNode, 'backdrop is removed from DOM');
              done();
            });
          });
  
          test('backdrop is opened when iron-overlay-open-completed fires', function(done) {
            runAfterOpen(overlays[0], function() {
              assert.isTrue(overlays[0].backdropElement.opened, 'backdrop is opened');
              done();
            });
          });
        });
  
        suite('multiple overlays with backdrop', function() {
          var overlays;
  
          setup(function() {
            overlays = fixture('backdrop-multiple');
          });
  
          test('multiple overlays share the same backdrop', function() {
            assert.isTrue(overlays[0].backdropElement === overlays[1].backdropElement, 'overlays[0] has the same backdrop element as overlays[1]');
          });
  
          test('newest overlay appear on top', function(done) {
            runAfterOpen(overlays[0], function() {
              runAfterOpen(overlays[1], function() {
                var styleZ = parseInt(window.getComputedStyle(overlays[0]).zIndex, 10);
                var style1Z = parseInt(window.getComputedStyle(overlays[1]).zIndex, 10);
                var bgStyleZ = parseInt(window.getComputedStyle(overlays[0].backdropElement).zIndex, 10);
                assert.isTrue(style1Z > styleZ, 'overlays[1] has higher z-index than overlays[0]');
                assert.isTrue(styleZ > bgStyleZ, 'overlays[0] has higher z-index than backdrop');
                done();
              });
            });
          });
  
        });
  
        suite('a11y', function() {
  
          test('overlay has aria-hidden=true when opened', function() {
            var overlay = fixture('basic');
            assert.equal(overlay.getAttribute('aria-hidden'), 'true', 'overlay has aria-hidden="true"');
            overlay.open();
            assert.isFalse(overlay.hasAttribute('aria-hidden'), 'overlay does not have aria-hidden attribute');
            overlay.close();
            assert.equal(overlay.getAttribute('aria-hidden'), 'true', 'overlay has aria-hidden="true"');
          });
  
        })
  
      </script>
  
    </body>
  </html>