fune/remote/test/browser/browser_page_runtime_events.js
Victor Porof 991b3c93c6 Bug 1561435 - Format remote/, a=automatic-formatting
# ignore-this-changeset

Differential Revision: https://phabricator.services.mozilla.com/D35925

--HG--
extra : source : b793788d0f38244b33eb59ea36e2c6624dbd12c5
2019-07-05 10:56:48 +02:00

131 lines
4.2 KiB
JavaScript

/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
/* global getCDP */
// Assert the order of Runtime.executionContextDestroyed, Page.frameNavigated and Runtime.executionContextCreated
const TEST_URI = "data:text/html;charset=utf-8,default-test-page";
add_task(async function testCDP() {
const { client } = await setupTestForUri(TEST_URI);
const { Page, Runtime } = client;
const events = [];
function assertReceivedEvents(expected, message) {
Assert.deepEqual(events, expected, message);
// Empty the list of received events
events.splice(0);
}
Page.frameNavigated(() => {
events.push("frameNavigated");
});
Runtime.executionContextCreated(() => {
events.push("executionContextCreated");
});
Runtime.executionContextDestroyed(() => {
events.push("executionContextDestroyed");
});
// turn on navigation related events, such as DOMContentLoaded et al.
await Page.enable();
ok(true, "Page domain has been enabled");
const onExecutionContextCreated = Runtime.executionContextCreated();
await Runtime.enable();
ok(true, "Runtime domain has been enabled");
// Runtime.enable will dispatch `executionContextCreated` for the existing document
let { context } = await onExecutionContextCreated;
ok(!!context.id, "The execution context has an id");
ok(context.auxData.isDefault, "The execution context is the default one");
ok(!!context.auxData.frameId, "The execution context has a frame id set");
assertReceivedEvents(
["executionContextCreated"],
"Received only executionContextCreated event after Runtime.enable call"
);
const { frameTree } = await Page.getFrameTree();
ok(!!frameTree.frame, "getFrameTree exposes one frame");
is(frameTree.childFrames.length, 0, "getFrameTree reports no child frame");
ok(!!frameTree.frame.id, "getFrameTree's frame has an id");
is(frameTree.frame.url, TEST_URI, "getFrameTree's frame has the right url");
is(
frameTree.frame.id,
context.auxData.frameId,
"getFrameTree and executionContextCreated refers about the same frame Id"
);
const onFrameNavigated = Page.frameNavigated();
const onExecutionContextDestroyed = Runtime.executionContextDestroyed();
const onExecutionContextCreated2 = Runtime.executionContextCreated();
const url = "data:text/html;charset=utf-8,test-page";
const { frameId } = await Page.navigate({ url });
ok(true, "A new page has been loaded");
ok(frameId, "Page.navigate returned a frameId");
is(
frameId,
frameTree.frame.id,
"The Page.navigate's frameId is the same than " + "getFrameTree's one"
);
const frameNavigated = await onFrameNavigated;
ok(
!frameNavigated.frame.parentId,
"frameNavigated is for the top level document and" + " has a null parentId"
);
is(
frameNavigated.frame.id,
frameId,
"frameNavigated id is the same than the one " + "returned by Page.navigate"
);
is(
frameNavigated.frame.name,
undefined,
"frameNavigated name isn't implemented yet"
);
is(
frameNavigated.frame.url,
url,
"frameNavigated url is the same being given to " + "Page.navigate"
);
const { executionContextId } = await onExecutionContextDestroyed;
ok(executionContextId, "The destroyed event reports an id");
is(
executionContextId,
context.id,
"The destroyed event is for the first reported execution context"
);
({ context } = await onExecutionContextCreated2);
ok(!!context.id, "The execution context has an id");
ok(context.auxData.isDefault, "The execution context is the default one");
is(
context.auxData.frameId,
frameId,
"The execution context frame id is the same " +
"the one returned by Page.navigate"
);
isnot(
executionContextId,
context.id,
"The destroyed id is different from the " + "created one"
);
assertReceivedEvents(
["executionContextDestroyed", "frameNavigated", "executionContextCreated"],
"Received frameNavigated between the two execution context events during navigation to another URL"
);
await client.close();
ok(true, "The client is closed");
BrowserTestUtils.removeTab(gBrowser.selectedTab);
await RemoteAgent.close();
});