|
1 |
| -describe('no-autoplay-audio', function () { |
2 |
| - 'use strict'; |
| 1 | +describe('no-autoplay-audio', () => { |
| 2 | + const check = checks['no-autoplay-audio']; |
| 3 | + const checkSetup = axe.testUtils.checkSetup; |
| 4 | + const checkContext = axe.testUtils.MockCheckContext(); |
| 5 | + const preloadOptions = { preload: { assets: ['media'] } }; |
3 | 6 |
|
4 |
| - var check; |
5 |
| - var fixture = document.getElementById('fixture'); |
6 |
| - var checkSetup = axe.testUtils.checkSetup; |
7 |
| - var checkContext = axe.testUtils.MockCheckContext(); |
8 |
| - var preloadOptions = { preload: { assets: ['media'] } }; |
9 |
| - |
10 |
| - before(function () { |
11 |
| - check = checks['no-autoplay-audio']; |
12 |
| - }); |
13 |
| - |
14 |
| - afterEach(function () { |
15 |
| - fixture.innerHTML = ''; |
16 |
| - axe._tree = undefined; |
| 7 | + afterEach(() => { |
17 | 8 | checkContext.reset();
|
18 | 9 | });
|
19 | 10 |
|
20 |
| - it('returns undefined when <audio> has no source (duration cannot be interpreted)', function (done) { |
21 |
| - var checkArgs = checkSetup('<audio id="target"></audio>'); |
22 |
| - axe.utils.preload(preloadOptions).then(function () { |
23 |
| - assert.isUndefined(check.evaluate.apply(checkContext, checkArgs)); |
24 |
| - done(); |
25 |
| - }); |
| 11 | + it('returns undefined when <audio> has no source (duration cannot be interpreted)', async () => { |
| 12 | + const checkArgs = checkSetup('<audio id="target"></audio>'); |
| 13 | + await axe.utils.preload(preloadOptions); |
| 14 | + assert.isUndefined(check.evaluate.apply(checkContext, checkArgs)); |
26 | 15 | });
|
27 | 16 |
|
28 |
| - it('returns undefined when <video> has no source (duration cannot be interpreted)', function (done) { |
29 |
| - var checkArgs = checkSetup('<video id="target"><source src=""/></video>'); |
30 |
| - axe.utils.preload(preloadOptions).then(function () { |
31 |
| - assert.isUndefined(check.evaluate.apply(checkContext, checkArgs)); |
32 |
| - done(); |
33 |
| - }); |
| 17 | + it('returns undefined when <video> has no source (duration cannot be interpreted)', async () => { |
| 18 | + const checkArgs = checkSetup('<video id="target"><source src=""/></video>'); |
| 19 | + await axe.utils.preload(preloadOptions); |
| 20 | + assert.isUndefined(check.evaluate.apply(checkContext, checkArgs)); |
34 | 21 | });
|
35 | 22 |
|
36 |
| - it('returns false when <audio> can autoplay and has no controls mechanism', function (done) { |
37 |
| - var checkArgs = checkSetup( |
| 23 | + it('returns false when <audio> can autoplay and has no controls mechanism', async () => { |
| 24 | + const checkArgs = checkSetup( |
38 | 25 | '<audio id="target" src="/test/assets/moon-speech.mp3" autoplay="true"></audio>'
|
39 | 26 | );
|
40 |
| - axe.utils.preload(preloadOptions).then(function () { |
41 |
| - assert.isFalse(check.evaluate.apply(checkContext, checkArgs)); |
42 |
| - done(); |
43 |
| - }); |
| 27 | + await axe.utils.preload(preloadOptions); |
| 28 | + assert.isFalse(check.evaluate.apply(checkContext, checkArgs)); |
44 | 29 | });
|
45 | 30 |
|
46 |
| - it('returns false when <video> can autoplay and has no controls mechanism', function (done) { |
47 |
| - var checkArgs = checkSetup( |
48 |
| - '<video id="target" autoplay="true">' + |
49 |
| - '<source src="/test/assets/video.webm" type="video/webm" />' + |
50 |
| - '<source src="/test/assets/video.mp4" type="video/mp4" />' + |
51 |
| - '</video>' |
52 |
| - ); |
53 |
| - axe.utils.preload(preloadOptions).then(function () { |
54 |
| - assert.isFalse(check.evaluate.apply(checkContext, checkArgs)); |
55 |
| - done(); |
56 |
| - }); |
| 31 | + it('returns false when <video> can autoplay and has no controls mechanism', async () => { |
| 32 | + const checkArgs = checkSetup(` |
| 33 | + <video id="target" autoplay="true"> |
| 34 | + <source src="/test/assets/video.webm" type="video/webm" /> |
| 35 | + <source src="/test/assets/video.mp4" type="video/mp4" /> |
| 36 | + </video> |
| 37 | + `); |
| 38 | + await axe.utils.preload(preloadOptions); |
| 39 | + assert.isFalse(check.evaluate.apply(checkContext, checkArgs)); |
57 | 40 | });
|
58 | 41 |
|
59 |
| - it('returns false when <audio> plays less than allowed dutation but loops', function (done) { |
60 |
| - var checkArgs = checkSetup( |
| 42 | + it('returns false when <audio> plays less than allowed dutation but loops', async () => { |
| 43 | + const checkArgs = checkSetup( |
61 | 44 | '<audio id="target" src="/test/assets/moon-speech.mp3#t=2,4" autoplay="true" loop="true"></audio>'
|
62 | 45 | );
|
63 |
| - axe.utils.preload(preloadOptions).then(function () { |
64 |
| - assert.isFalse(check.evaluate.apply(checkContext, checkArgs)); |
65 |
| - done(); |
66 |
| - }); |
| 46 | + await axe.utils.preload(preloadOptions); |
| 47 | + assert.isFalse(check.evaluate.apply(checkContext, checkArgs)); |
67 | 48 | });
|
68 | 49 |
|
69 |
| - it('returns true when <video> can autoplay and duration is below allowed duration (by passing options)', function (done) { |
70 |
| - var checkArgs = checkSetup( |
71 |
| - '<video id="target" autoplay="true">' + |
72 |
| - '<source src="/test/assets/video.webm" type="video/webm" />' + |
73 |
| - '<source src="/test/assets/video.mp4" type="video/mp4" />' + |
74 |
| - '</video>', |
75 |
| - { allowedDuration: 15 } |
| 50 | + it('returns false when <video> loops and has no controls mechanism when duration is unknown', () => { |
| 51 | + const checkArgs = checkSetup(` |
| 52 | + <video id="target" loop> |
| 53 | + <source src="/test/assets/video.webm#t=7,9" type="video/webm" /> |
| 54 | + <source src="/test/assets/video.mp4#t=7,9" type="video/mp4" /> |
| 55 | + </video> |
| 56 | + `); |
| 57 | + assert.isFalse(check.evaluate.apply(checkContext, checkArgs)); |
| 58 | + }); |
| 59 | + |
| 60 | + it('returns false when <audio> loops and has no controls mechanism when duration is unknown', () => { |
| 61 | + const checkArgs = checkSetup( |
| 62 | + '<audio id="target" src="/test/assets/moon-speech.mp3#t=2,4" loop="true"></audio>' |
76 | 63 | );
|
77 |
| - axe.utils.preload(preloadOptions).then(function () { |
78 |
| - assert.isTrue(check.evaluate.apply(checkContext, checkArgs)); |
79 |
| - done(); |
80 |
| - }); |
| 64 | + assert.isFalse(check.evaluate.apply(checkContext, checkArgs)); |
81 | 65 | });
|
82 | 66 |
|
83 |
| - it('returns true when <video> can autoplay and duration is below allowed duration (by setting playback range)', function (done) { |
84 |
| - var checkArgs = checkSetup( |
85 |
| - '<video id="target" autoplay="true">' + |
86 |
| - '<source src="/test/assets/video.webm#t=7,9" type="video/webm" />' + |
87 |
| - '<source src="/test/assets/video.mp4#t=7,9" type="video/mp4" />' + |
88 |
| - '</video>' |
89 |
| - // Note: default allowed duration is 3s |
| 67 | + it('returns true when <video> can autoplay and duration is below allowed duration (by passing options)', async () => { |
| 68 | + const checkArgs = checkSetup( |
| 69 | + ` |
| 70 | + <video id="target" autoplay="true"> |
| 71 | + <source src="/test/assets/video.webm" type="video/webm" /> |
| 72 | + <source src="/test/assets/video.mp4" type="video/mp4" /> |
| 73 | + </video>`, |
| 74 | + { allowedDuration: 15 } |
90 | 75 | );
|
91 |
| - axe.utils.preload(preloadOptions).then(function () { |
92 |
| - assert.isTrue(check.evaluate.apply(checkContext, checkArgs)); |
93 |
| - done(); |
94 |
| - }); |
| 76 | + await axe.utils.preload(preloadOptions); |
| 77 | + assert.isTrue(check.evaluate.apply(checkContext, checkArgs)); |
| 78 | + }); |
| 79 | + |
| 80 | + it('returns true when <video> can autoplay and duration is below allowed duration (by setting playback range)', async () => { |
| 81 | + const checkArgs = checkSetup(` |
| 82 | + <video id="target" autoplay="true"> |
| 83 | + <source src="/test/assets/video.webm#t=7,9" type="video/webm" /> |
| 84 | + <source src="/test/assets/video.mp4#t=7,9" type="video/mp4" /> |
| 85 | + </video>`); |
| 86 | + // Note: default allowed duration is 3s |
| 87 | + await axe.utils.preload(preloadOptions); |
| 88 | + assert.isTrue(check.evaluate.apply(checkContext, checkArgs)); |
95 | 89 | });
|
96 | 90 |
|
97 |
| - it('returns true when <audio> can autoplay but has controls mechanism', function (done) { |
98 |
| - var checkArgs = checkSetup( |
| 91 | + it('returns true when <audio> can autoplay but has controls mechanism', async () => { |
| 92 | + const checkArgs = checkSetup( |
99 | 93 | '<audio id="target" src="/test/assets/moon-speech.mp3" autoplay="true" controls></audio>'
|
100 | 94 | );
|
101 |
| - axe.utils.preload(preloadOptions).then(function () { |
102 |
| - assert.isTrue(check.evaluate.apply(checkContext, checkArgs)); |
103 |
| - done(); |
104 |
| - }); |
| 95 | + await axe.utils.preload(preloadOptions); |
| 96 | + assert.isTrue(check.evaluate.apply(checkContext, checkArgs)); |
| 97 | + }); |
| 98 | + |
| 99 | + it('returns true when <video> can autoplay and has controls mechanism', async () => { |
| 100 | + const checkArgs = checkSetup(` |
| 101 | + <video id="target" autoplay="true" controls> |
| 102 | + <source src="/test/assets/video.webm" type="video/webm" /> |
| 103 | + <source src="/test/assets/video.mp4" type="video/mp4" /> |
| 104 | + </video> |
| 105 | + `); |
| 106 | + await axe.utils.preload(preloadOptions); |
| 107 | + assert.isTrue(check.evaluate.apply(null, checkArgs)); |
| 108 | + }); |
| 109 | + |
| 110 | + it('returns true when <video> loops and has controls mechanism when duration is unknown', () => { |
| 111 | + const checkArgs = checkSetup(` |
| 112 | + <video id="target" loop controls> |
| 113 | + <source src="/test/assets/video.webm#t=7,9" type="video/webm" /> |
| 114 | + <source src="/test/assets/video.mp4#t=7,9" type="video/mp4" /> |
| 115 | + </video> |
| 116 | + `); |
| 117 | + assert.isTrue(check.evaluate.apply(checkContext, checkArgs)); |
105 | 118 | });
|
106 | 119 |
|
107 |
| - it('returns true when <video> can autoplay and has controls mechanism', function (done) { |
108 |
| - var checkArgs = checkSetup( |
109 |
| - '<video id="target" autoplay="true" controls>' + |
110 |
| - '<source src="/test/assets/video.webm" type="video/webm" />' + |
111 |
| - '<source src="/test/assets/video.mp4" type="video/mp4" />' + |
112 |
| - '</video>' |
| 120 | + it('returns true when <audio> loops and has controls mechanism when duration is unknown', () => { |
| 121 | + const checkArgs = checkSetup( |
| 122 | + '<audio id="target" src="/test/assets/moon-speech.mp3#t=2,4" controls="true" loop="true"></audio>' |
113 | 123 | );
|
114 |
| - axe.utils.preload(preloadOptions).then(function () { |
115 |
| - assert.isTrue(check.evaluate.apply(null, checkArgs)); |
116 |
| - done(); |
117 |
| - }); |
| 124 | + assert.isTrue(check.evaluate.apply(checkContext, checkArgs)); |
118 | 125 | });
|
119 | 126 | });
|
0 commit comments