forked from ampproject/amphtml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathiframe.js
684 lines (655 loc) · 20.6 KB
/
iframe.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
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
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
import {deserializeMessage, isAmpMessage} from '#core/3p-frame-messaging';
import {AmpEvents_Enum} from '#core/constants/amp-events';
import {install as installCustomElements} from '#polyfills/custom-elements';
import {Services} from '#service';
import {installDocService} from '#service/ampdoc-impl';
import {
installAmpdocServices,
installRuntimeServices,
} from '#service/core-services';
import {installExtensionsService} from '#service/extensions-impl';
import {dev} from '#utils/log';
import {FakeLocation} from './fake-dom';
import {cssText as ampDocCss} from '../build/ampdoc.css';
import {cssText as ampSharedCss} from '../build/ampshared.css';
import {BindEvents} from '../extensions/amp-bind/0.1/bind-events';
import {FormEvents} from '../extensions/amp-form/0.1/form-events';
import {parseIfNeeded} from '../src/iframe-helper';
let iframeCount = 0;
/**
* Creates an iframe from an HTML fixture for use in tests.
*
* Returns a promise for when the iframe is usable for testing that produces
* an object with properties related to the created iframe and utility methods:
* - win: The created window.
* - doc: The created document.
* - iframe: The host iframe element. Useful for e.g. resizing.
* - awaitEvent: A function that returns a promise for when the given custom
* event fired at least the given number of times.
* - errors: Array of console.error fired during page load.
*
* setTimeout inside the iframe will go 10x normal speed.
* TODO(@cramforce): Add support for a fake clock.
*
* @param {string} fixture The name of the fixture file.
* @param {number} initialIframeHeight in px.
* @param {function(!Window)} opt_beforeLoad Called just before any other JS
* executes in the window.
* @return {!Promise<{
* win: !Window,
* doc: !Document,
* iframe: !Element,
* awaitEvent: function(string, number):!Promise
* }>}
*/
export function createFixtureIframe(
fixture,
initialIframeHeight,
opt_beforeLoad
) {
dev().assertNumber(
initialIframeHeight,
'Attempted to create fixture iframe with non-numeric height'
);
return new Promise((resolve, reject) => {
// Counts the supported custom events.
const events = {
[AmpEvents_Enum.ATTACHED]: 0,
[AmpEvents_Enum.DOM_UPDATE]: 0,
[AmpEvents_Enum.ERROR]: 0,
[AmpEvents_Enum.LOAD_END]: 0,
[AmpEvents_Enum.LOAD_START]: 0,
[AmpEvents_Enum.STUBBED]: 0,
[AmpEvents_Enum.UNLOAD]: 0,
[BindEvents.INITIALIZE]: 0,
[BindEvents.SET_STATE]: 0,
[BindEvents.RESCAN_TEMPLATE]: 0,
[FormEvents.SERVICE_INIT]: 0,
};
let html = __html__[fixture] // eslint-disable-line no-undef
.replace(
/__TEST_SERVER_PORT__/g,
window.ampTestRuntimeConfig.testServerPort
);
if (!html) {
throw new Error('Cannot find fixture: ' + fixture);
}
html = maybeSwitchToMinifiedJs(html);
window.ENABLE_LOG = true;
// This global function will be called by the iframe immediately when it
// starts loading. This appears to be the only way to get the correct
// window object early enough to not miss any events that may get fired
// on that window.
window.beforeLoad = function (win) {
// Flag as being a test window.
win.__AMP_TEST_IFRAME = true;
win.__AMP_TEST = true;
// Set the testLocation on iframe to parent's location since location of
// the test iframe is about:srcdoc.
// Unfortunately location object is not configurable, so we have to define
// a new property.
win.testLocation = new FakeLocation(window.location.href, win);
win.ampTestRuntimeConfig = window.ampTestRuntimeConfig;
if (opt_beforeLoad) {
opt_beforeLoad(win);
}
const messages = new MessageReceiver(win);
// Function that returns a promise for when the given event fired at
// least count times.
const awaitEvent = (eventName, count) => {
if (!(eventName in events)) {
throw new Error('Unknown custom event ' + eventName);
}
return new Promise(function (resolve) {
if (events[eventName] >= count) {
resolve();
} else {
win.addEventListener(eventName, () => {
if (events[eventName] == count) {
resolve();
}
});
}
});
};
// Record firing of custom events.
for (const name in events) {
win.addEventListener(name, () => {
events[name]++;
});
}
win.onerror = function (message, file, line, col, error) {
reject(
new Error(
'Error in frame: ' +
message +
'\n' +
file +
':' +
line +
'\n' +
(error ? error.stack : 'no stack')
)
);
};
const errors = [];
win.console.error = function () {
errors.push('Error: ' + [].slice.call(arguments).join(' '));
console.error.apply(console, arguments);
};
// Make time go 10x as fast
const {setTimeout} = win;
win.setTimeout = function (fn, ms) {
ms = ms || 0;
setTimeout(fn, ms / 10);
};
setTimeout(function () {
reject(new Error('Timeout waiting for elements to start loading.'));
}, window.ampTestRuntimeConfig.mochaTimeout || 2000);
// Declare the test ready to run when the document was fully parsed.
window.afterLoad = function () {
resolve({
win,
doc: win.document,
iframe,
awaitEvent,
errors,
messages,
});
};
};
// Add before and after load callbacks to the document.
html = html.replace('>', '><script>parent.beforeLoad(window);</script>');
html += '<script>parent.afterLoad(window);</script>';
const iframe = document.createElement('iframe');
if (/iPhone|iPad|iPod/.test(navigator.userAgent)) {
iframe.setAttribute('scrolling', 'no');
}
iframe.name = 'test_' + fixture + iframeCount++;
iframe.onerror = function (event) {
reject(event.error);
};
iframe.height = initialIframeHeight;
iframe.width = 500;
if ('srcdoc' in iframe) {
iframe.srcdoc = html;
document.body.appendChild(iframe);
} else {
iframe.src = 'about:blank';
document.body.appendChild(iframe);
const idoc = iframe.contentWindow.document;
idoc.open();
idoc.write(html);
idoc.close();
}
});
}
/**
* Creates a super simple iframe. Use this in unit tests to register elements
* in a sandbox.
* Returns a promise for an object with:
* - win: The created window.
* - doc: The created document.
* - iframe: The host iframe element. Useful for e.g. resizing.
* - addElement: Adds an AMP element to the iframe and returns a promise for
* that element. When the promise is resolved we will have called the entire
* lifecycle including layoutCallback.
* @param {boolean=} opt_runtimeOff Whether runtime should be turned off.
* @param {function()=} opt_beforeLayoutCallback
* @return {!Promise<{
* win: !Window,
* doc: !Document,
* ampdoc: !../src/service/ampdoc-impl.AmpDoc,
* iframe: !Element,
* addElement: function(!Element):!Promise
* }>}
*/
export function createIframePromise(opt_runtimeOff, opt_beforeLayoutCallback) {
return new Promise(function (resolve, reject) {
const iframe = document.createElement('iframe');
iframe.name = 'test_' + iframeCount++;
iframe.srcdoc = '<!doctype><html><head><body><div id=parent></div>';
iframe.onload = function () {
// Flag as being a test window.
iframe.contentWindow.__AMP_TEST_IFRAME = true;
iframe.contentWindow.testLocation = new FakeLocation(
window.location.href,
iframe.contentWindow
);
if (opt_runtimeOff) {
iframe.contentWindow.name = '__AMP__off=1';
}
// Required for timer service, which now refers not to the global
// Promise but the passed in window Promise in it's constructor as
// it is an embedabble service. b\17733
iframe.contentWindow.Promise = window.Promise;
installDocService(iframe.contentWindow, /* isSingleDoc */ true);
const ampdoc = Services.ampdocServiceFor(
iframe.contentWindow
).getSingleDoc();
installExtensionsService(iframe.contentWindow);
installRuntimeServices(iframe.contentWindow);
// The anonymous class parameter allows us to detect native classes vs
// transpiled classes.
installCustomElements(iframe.contentWindow, class {});
installAmpdocServices(ampdoc);
Services.resourcesForDoc(ampdoc).ampInitComplete();
// Act like no other elements were loaded by default.
installStylesLegacy(
iframe.contentWindow.document,
ampDocCss + ampSharedCss,
() => {
resolve({
win: iframe.contentWindow,
doc: iframe.contentWindow.document,
ampdoc,
iframe,
addElement: function (element) {
const iWin = iframe.contentWindow;
const p = onInsert(iWin)
.then(() => {
return element.buildInternal();
})
.then(() => {
if (!element.getPlaceholder()) {
const placeholder = element.createPlaceholder();
if (placeholder) {
element.appendChild(placeholder);
}
}
const resources = Services.resourcesForDoc(ampdoc);
const resource =
resources.getResourceForElementOptional(element);
if (resource) {
resource.measure();
}
})
.then(() => {
if (element.layoutCount_ == 0) {
if (opt_beforeLayoutCallback) {
opt_beforeLayoutCallback(element);
}
return element.layoutCallback();
}
})
.then(() => element);
iWin.document.getElementById('parent').appendChild(element);
return p;
},
});
}
);
};
iframe.onerror = reject;
document.body.appendChild(iframe);
});
}
/**
* @param {!Document} doc
* @param {string} cssText
* @param {function()} cb
*/
function installStylesLegacy(doc, cssText, cb) {
const style = doc.createElement('style');
style.textContent = cssText;
doc.head.appendChild(style);
// Styles aren't always available synchronously. E.g. if there is a
// pending style download, it will have to finish before the new
// style is visible.
// For this reason we poll until the style becomes available.
// Sync case.
const styleLoaded = () => {
const sheets = doc.styleSheets;
for (let i = 0; i < sheets.length; i++) {
const sheet = sheets[i];
if (sheet.ownerNode == style) {
return true;
}
}
return false;
};
if (styleLoaded()) {
cb();
} else {
const interval = setInterval(() => {
if (styleLoaded()) {
clearInterval(interval);
cb();
}
}, 4);
}
}
export function createServedIframe(src) {
return new Promise(function (resolve, reject) {
const iframe = document.createElement('iframe');
iframe.name = 'test_' + iframeCount++;
iframe.src = src;
iframe.onload = function () {
const win = iframe.contentWindow;
win.__AMP_TEST_IFRAME = true;
win.__AMP_TEST = true;
installRuntimeServices(win);
resolve({
win,
doc: win.document,
iframe,
});
};
iframe.onerror = reject;
document.body.appendChild(iframe);
});
}
const IFRAME_STUB_URL =
'//ads.localhost:9876/test/fixtures/served/iframe-stub.html#';
/**
* Creates an iframe fixture in the given window that can be used for
* window.postMessage related tests.
*
* It provides functions like:
* - instruct the iframe to post a message to the parent window
* - verify the iframe has received a message from the parent window
*
* See /test/fixtures/served/iframe-stub.html for implementation.
*
* @param {!Window} win
* @return {!HTMLIFrameElement}
*/
export function createIframeWithMessageStub(win) {
const element = win.document.createElement('iframe');
element.src = IFRAME_STUB_URL;
/**
* Instructs the iframe to send a message to parent window.
* @param {!Object} msg
*/
element.postMessageToParent = (msg) => {
element.src = IFRAME_STUB_URL + encodeURIComponent(JSON.stringify(msg));
};
/**
* Returns a Promise that resolves when the iframe acknowledged the reception
* of the specified message.
* @param {function(?Object, !Object|string)|string} callbackOrType
* A callback that determines if this is the message we expected. If a
* string is passed, the determination is based on whether the message's
* type matches the string.
*/
element.expectMessageFromParent = (callbackOrType) => {
let filter;
if (typeof callbackOrType === 'string') {
filter = (data) => {
return 'type' in data && data.type == callbackOrType;
};
} else {
filter = callbackOrType;
}
return new Promise((resolve, reject) => {
function listener(event) {
if (event.source != element.contentWindow || !event.data.testStubEcho) {
return;
}
const message = event.data.receivedMessage;
const data = parseIfNeeded(message);
try {
if (filter(data, message)) {
win.removeEventListener('message', listener);
resolve(data || message);
}
} catch (e) {
win.removeEventListener('message', listener);
reject(e);
}
}
win.addEventListener('message', listener);
});
};
return element;
}
/**
* Returns a Promise that resolves when a post message is observed from the
* given source window to target window.
*
* @param {!Window} sourceWin
* @param {!Window} targetwin
* @param {!Object} msg
* @return {!Promise<!Object>}
*/
export function expectPostMessage(sourceWin, targetwin, msg) {
return new Promise((resolve) => {
const listener = (event) => {
if (
event.source == sourceWin &&
JSON.stringify(msg) == JSON.stringify(event.data)
) {
targetwin.removeEventListener('message', listener);
resolve(event.data);
}
};
targetwin.addEventListener('message', listener);
});
}
/**
* Returns a promise for when the condition becomes true.
* @param {string} description
* @param {fn():T} condition Should return a truthy value when the poll
* is done. The return value is then returned with the promise
* returned by this function.
* @param {fn():!Error=} opt_onError
* @param {number=} opt_timeout
* @return {!Promise<T>} The polled for value.
* @template T
*/
export function poll(description, condition, opt_onError, opt_timeout) {
return new Promise((resolve, reject) => {
const start = Date.now();
const end = opt_timeout || 1600;
function poll() {
const ret = condition();
if (ret) {
clearInterval(interval);
resolve(ret);
} else {
if (Date.now() - start > end) {
clearInterval(interval);
if (opt_onError) {
reject(opt_onError());
return;
}
reject(new Error('Timeout waiting for ' + description));
}
}
}
const interval = setInterval(poll, 8);
poll();
});
}
/**
* Polls for the given number of elements to have received layout or
* be in error state (Better to fail an assertion after this then just time
* out).
* @param {!Window} win
* @param {number} count
* @param {number=} opt_timeout
*
* @return {!Promise}
*/
export function pollForLayout(win, count, opt_timeout) {
const getCount = () => {
return win.document.querySelectorAll('.i-amphtml-layout,.i-amphtml-error')
.length;
};
return poll(
'Waiting for elements to layout: ' + count,
() => {
return getCount() >= count;
},
() => {
return new Error(
'Failed to find elements with layout.' +
' Current count: ' +
getCount() +
' HTML:\n' +
win.document.documentElement./*TEST*/ innerHTML
);
},
opt_timeout
);
}
/**
* @param {!Window} win
* @param {number=} opt_timeout
* @return {!Promise}
*/
export function expectBodyToBecomeVisible(win, opt_timeout) {
return poll(
'expect body to become visible',
() => {
return (
win &&
win.document &&
win.document.body &&
((win.document.body.style.visibility == 'visible' &&
win.document.body.style.opacity != '0') ||
win.document.body.style.opacity == '1')
);
},
undefined,
opt_timeout || 5000
);
}
/**
* For the given iframe, makes the creation of iframes and images
* create elements that do not actually load their underlying
* resources.
* Calling `triggerLoad` makes the respective resource appear loaded.
* Calling `triggerError` on the respective resources makes them
* appear in error state.
* @param {!Window} win
* @param {!Object} sandbox
*/
export function doNotLoadExternalResourcesInTest(win, sandbox) {
const {document} = win;
const {prototype} = win.Document;
const {createElement} = prototype;
sandbox.stub(prototype, 'createElement').callsFake(function (tagName) {
const element = createElement.apply(document, arguments);
tagName = tagName.toLowerCase();
if (tagName == 'iframe' || tagName == 'img') {
// Make get/set write to a fake property instead of
// triggering invocation.
element.fakeSrc = '';
Object.defineProperty(element, 'src', {
set: function (val) {
this.fakeSrc = val;
},
get: function () {
return this.fakeSrc;
},
});
// Triggers a load event on the element in the next micro task.
element.triggerLoad = function () {
const e = new Event('load');
Promise.resolve().then(() => {
this.dispatchEvent(e);
});
};
// Triggers an error event on the element in the next micro task.
element.triggerError = function () {
const e = new Event('error');
Promise.resolve().then(() => {
this.dispatchEvent(e);
});
};
if (tagName == 'iframe') {
element.srcdoc = '<h1>Fake iframe</h1>';
}
}
return element;
});
}
/**
* Returns a promise for when an element has been added to the given
* window. This is for use in tests to wait until after the
* attachment of an element to the DOM should have been registered.
* @param {!Window} win
* @return {!Promise<undefined>}
*/
function onInsert(win) {
return new Promise((resolve) => {
const observer = new win.MutationObserver(() => {
observer.disconnect();
resolve();
});
observer.observe(win.document.documentElement, {
childList: true,
subtree: true,
});
});
}
/**
* Takes a HTML document that is pointing to unminified JS and HTML binaries and
* massages the URLs to pointed to minified binaries instead.
* @param {string} html
* @return {string}
*/
export function maybeSwitchToMinifiedJs(html) {
if (window.ampTestRuntimeConfig.useMinifiedJs) {
return (
html
// Main JS
.replace(/\/dist\/amp\.js/g, '/dist/v0.js')
// Inabox
.replace(/\/dist\/amp-inabox/g, '/dist/amp4ads-v0')
// Extensions
.replace(/\.max\.js/g, '.js')
// 3p html binary
.replace(/\.max\.html/g, '.html')
// 3p path
.replace(/dist\.3p\/current\//g, 'dist.3p/current-min/')
);
}
return html;
}
class MessageReceiver {
/**
* @param {!Window} win
*/
constructor(win) {
this.events_ = [];
win.addEventListener('message', (event) => {
const parsedData = this.parseMessageData_(event.data);
if (
parsedData &&
// Either non-3P or 3P variant of the sentinel.
(/^amp/.test(parsedData.sentinel) ||
/^\d+-\d+$/.test(parsedData.sentinel))
) {
this.events_.push({
data: parsedData,
userActivation: event.userActivation,
});
}
});
}
/**
* @param {string} type
* @returns {?Event}
*/
getFirstMessageEventOfType(type) {
for (let i = 0; i < this.events_.length; ++i) {
if (this.events_[i].data.type === type) {
return this.events_[i];
}
}
return null;
}
/**
* @param {*} data
* @return {?}
* @private
*/
parseMessageData_(data) {
if (typeof data == 'string' && isAmpMessage(data)) {
return deserializeMessage(data);
}
return data;
}
}