-
Notifications
You must be signed in to change notification settings - Fork 3.9k
/
Copy pathtest-actions.js
99 lines (81 loc) · 3.04 KB
/
test-actions.js
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
/**
* Copyright 2018 The AMP HTML Authors. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS-IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import {AmpEvents} from '../../src/amp-events';
import {createFixtureIframe, poll} from '../../testing/iframe.js';
describe
.configure()
.retryOnSaucelabs()
.run('on="..."', () => {
let fixture;
let sandbox;
beforeEach(() => {
sandbox = sinon.sandbox;
return createFixtureIframe('test/fixtures/actions.html', 500).then(f => {
fixture = f;
// Wait for one <amp-img> element to load.
return fixture.awaitEvent(AmpEvents.LOAD_END, 1);
});
});
function waitForDisplay(element, display) {
return () => fixture.win.getComputedStyle(element)['display'] === display;
}
afterEach(() => {
sandbox.restore();
});
describe('"tap" event', () => {
it('<non-AMP element>.toggleVisibility', function*() {
const span = fixture.doc.getElementById('spanToHide');
const button = fixture.doc.getElementById('hideBtn');
button.click();
yield poll('#spanToHide hidden', waitForDisplay(span, 'none'));
});
it('<AMP element>.toggleVisibility', function*() {
const img = fixture.doc.getElementById('imgToToggle');
const button = fixture.doc.getElementById('toggleBtn');
button.click();
yield poll('#imgToToggle hidden', waitForDisplay(img, 'none'));
button.click();
yield poll(
'#imgToToggle displayed',
waitForDisplay(img, 'inline-block')
);
});
describe
.configure()
.skipIfPropertiesObfuscated()
.run('navigate', function() {
it('AMP.navigateTo(url=)', function*() {
const button = fixture.doc.getElementById('navigateBtn');
// This is brittle but I don't know how else to stub
// window navigation.
const navigationService = fixture.win.__AMP_SERVICES.navigation.obj;
const navigateTo = sandbox.stub(navigationService, 'navigateTo');
button.click();
yield poll('navigateTo() called with correct args', () => {
return navigateTo.calledWith(fixture.win, 'https://google.com');
});
});
});
it('AMP.print()', function*() {
const button = fixture.doc.getElementById('printBtn');
const print = sandbox.stub(fixture.win, 'print');
button.click();
yield poll('print() called once', () => {
return print.calledOnce;
});
});
});
});