1
0
Fork 0
firefox/devtools/client/debugger/test/mochitest/browser_dbg-overrides.js
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

147 lines
4.1 KiB
JavaScript

/* 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/>. */
/**
* Testing the script overrides feature
*/
"use strict";
const httpServer = createTestHTTPServer();
const BASE_URL = `http://localhost:${httpServer.identity.primaryPort}/`;
httpServer.registerContentType("html", "text/html");
httpServer.registerContentType("js", "application/javascript");
const testSourceContent = `function foo() {
console.log("original test script");
}`;
const testOverrideSourceContent = `function foo() {
console.log("overriden test script");
}
foo();
`;
httpServer.registerPathHandler("/index.html", (request, response) => {
response.setStatusLine(request.httpVersion, 200, "OK");
response.write(`<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="/test.js"></script>
</head>
<body>
</body>
</html>
`);
});
httpServer.registerPathHandler("/test.js", (request, response) => {
response.setHeader("Content-Type", "application/javascript");
response.write(testSourceContent);
});
add_task(async function () {
const dbg = await initDebuggerWithAbsoluteURL(
BASE_URL + "index.html",
"test.js"
);
await waitForSourcesInSourceTree(dbg, ["test.js"], {
noExpand: false,
});
let overrides = [
...findAllElementsWithSelector(dbg, ".has-network-override"),
];
is(overrides.length, 0, "No override is displayed in the debugger");
info("Load and assert the content of the test.js script");
await selectSourceFromSourceTree(dbg, "test.js");
is(
getEditorContent(dbg),
testSourceContent,
"The test.js is the original source content"
);
info("Add a breakpoint");
await addBreakpoint(dbg, "test.js", 2);
info("Select test.js tree node, and add override");
const MockFilePicker = SpecialPowers.MockFilePicker;
MockFilePicker.init(window.browsingContext);
const nsiFile = new FileUtils.File(
PathUtils.join(PathUtils.tempDir, "test.js")
);
MockFilePicker.setFiles([nsiFile]);
const path = nsiFile.path;
await triggerSourceTreeContextMenu(
dbg,
findSourceNodeWithText(dbg, "test.js"),
"#node-menu-overrides"
);
info("Wait for `test.js` to be saved to disk and re-write it");
await BrowserTestUtils.waitForCondition(() => IOUtils.exists(path));
await BrowserTestUtils.waitForCondition(async () => {
const { size } = await IOUtils.stat(path);
return size > 0;
});
await IOUtils.write(
path,
new TextEncoder().encode(testOverrideSourceContent)
);
info("Reload and assert `test.js` pause and it overriden source content");
const onReloaded = reload(dbg, "test.js");
await waitForPaused(dbg);
await assertPausedAtSourceAndLine(dbg, findSource(dbg, "test.js").id, 2);
is(
getEditorContent(dbg),
testOverrideSourceContent,
"The test.js is the overridden source content"
);
await resume(dbg);
await onReloaded;
info("Check that an override icon is displayed in the source tree");
overrides = [...findAllElementsWithSelector(dbg, ".has-network-override")];
is(overrides.length, 1, "One override should be displayed in the debugger");
const otherDebugger = await initDebuggerWithAbsoluteURL(
BASE_URL + "index.html",
"test.js"
);
await waitForSourcesInSourceTree(otherDebugger, ["test.js"], {
noExpand: false,
});
overrides = [
...findAllElementsWithSelector(otherDebugger, ".has-network-override"),
];
is(overrides.length, 0, "No override is displayed in the other debugger");
await closeToolboxAndTab(otherDebugger.toolbox);
info("Remove override and test");
const removed = waitForDispatch(dbg.toolbox.store, "REMOVE_NETWORK_OVERRIDE");
await triggerSourceTreeContextMenu(
dbg,
findSourceNodeWithText(dbg, "test.js"),
"#node-menu-overrides"
);
await removed;
info("Reload and assert `test.js`'s original source content");
await reload(dbg, "test.js");
await waitForSelectedSource(dbg, "test.js");
is(
getEditorContent(dbg),
testSourceContent,
"The test.js is the original source content"
);
});