Bug 1572484 - Add a mochitest for expanding content-originated logged object in browser console. r=Honza.

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

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Nicolas Chevobbe 2019-08-29 15:33:31 +00:00
Родитель 56033d41ed
Коммит 2f132ce44f
2 изменённых файлов: 82 добавлений и 0 удалений

Просмотреть файл

@ -162,6 +162,7 @@ skip-if = !e10s # This test is only valid in e10s
[browser_console_clear_method.js]
skip-if = true # Bug XXX # Bug 1437843
[browser_console_consolejsm_output.js]
[browser_console_content_object.js]
[browser_console_context_menu_entries.js]
skip-if = os == "linux" # Bug 1440059, disabled for all build types
[browser_console_dead_objects.js]

Просмотреть файл

@ -0,0 +1,81 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
// Test that console API calls in the content page appear in the browser console.
"use strict";
const TEST_URI = `data:text/html,<meta charset=utf8>console API calls<script>
console.log({ contentObject: "YAY!", deep: ["yes!"] });
</script>`;
add_task(async function() {
// Show the content messages
await pushPref("devtools.browserconsole.contentMessages", true);
// Enable Fission browser console to see the logged content object
await pushPref("devtools.browsertoolbox.fission", true);
await addTab(TEST_URI);
info("Open the Browser Console");
let hud = await BrowserConsoleManager.toggleBrowserConsole();
info("Wait until the content object is displayed");
let objectMessage = await waitFor(() =>
findMessage(hud, `Object { contentObject: "YAY!", deep: (1) […] }`)
);
ok(true, "Content object is displayed in the Browser Console");
await testExpandObject(objectMessage);
info("Restart the Browser Console");
await BrowserConsoleManager.toggleBrowserConsole();
hud = await BrowserConsoleManager.toggleBrowserConsole();
info("Wait until the content object is displayed");
objectMessage = await waitFor(() =>
findMessage(hud, `Object { contentObject: "YAY!", deep: (1) […] }`)
);
ok(true, "Content object is displayed in the Browser Console after restart");
await testExpandObject(objectMessage);
info("Close the browser console");
await BrowserConsoleManager.toggleBrowserConsole();
});
async function testExpandObject(objectMessage) {
info("Check that the logged content object can be expanded");
const oi = objectMessage.querySelector(".tree");
ok(oi, "There's an object inspector component for the content object");
oi.querySelector(".arrow").click();
// The object inspector now looks like:
// ▼ {…}
// | contentObject: "YAY!"
// | ▶︎ deep: Array [ "yes!" ]
// | ▶︎ <prototype>
await waitFor(() => oi.querySelectorAll(".node").length === 4);
ok(true, "The ObjectInspector was expanded");
const [root, contentObjectProp, deepProp, prototypeProp] = [
...oi.querySelectorAll(".node"),
];
ok(root.textContent.includes(`{…}`));
ok(contentObjectProp.textContent.includes(`contentObject: "YAY!"`));
ok(deepProp.textContent.includes(`deep: Array [ "yes!" ]`));
ok(prototypeProp.textContent.includes(`<prototype>`));
// The object inspector now looks like:
// ▼ {…}
// | contentObject: "YAY!"
// | ▼︎ deep: (1) […]
// | | 0: "yes!"
// | | length: 1
// | | ▶︎ <prototype>
// | ▶︎ <prototype>
deepProp.querySelector(".arrow").click();
await waitFor(() => oi.querySelectorAll(".node").length === 7);
ok(true, "The nested array was expanded");
}