1
0
Fork 0
firefox/devtools/shared/webconsole/test/chrome/test_console_assert.html
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

106 lines
2.7 KiB
HTML

<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Test for console.group styling with %c</title>
<script src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>
<script type="text/javascript" src="common.js"></script>
<!-- Any copyright is dedicated to the Public Domain.
- http://creativecommons.org/publicdomain/zero/1.0/ -->
<script>
"use strict";
window.onload = async function () {
SimpleTest.waitForExplicitFinish();
let state;
try {
state = (await attachConsole(["ConsoleAPI"])).state;
const {webConsoleFront} = state;
await testFalseAssert(webConsoleFront);
await testFalsyAssert(webConsoleFront);
await testUndefinedAssert(webConsoleFront);
await testNullAssert(webConsoleFront);
await testTrueAssert(webConsoleFront);
} catch (e) {
ok(false, `Error thrown: ${e.message}`);
}
await closeDebugger(state);
SimpleTest.finish();
};
async function testFalseAssert(consoleFront) {
info(`Testing console.assert(false)`);
const packet = await consoleAPICall(
consoleFront,
() => top.console.assert(false, "assertion is false")
);
checkConsoleAPICall(packet.message, {
arguments: ["assertion is false"]
});
}
async function testFalsyAssert(consoleFront) {
info(`Testing console.assert(0")`);
const packet = await consoleAPICall(
consoleFront,
() => top.console.assert(0, "assertion is false")
);
checkConsoleAPICall(packet.message, {
arguments: ["assertion is false"]
});
}
async function testUndefinedAssert(consoleFront) {
info(`Testing console.assert(undefined)`);
const packet = await consoleAPICall(
consoleFront,
() => top.console.assert(undefined, "assertion is false")
);
checkConsoleAPICall(packet.message, {
arguments: ["assertion is false"]
});
}
async function testNullAssert(consoleFront) {
info(`Testing console.assert(null)`);
const packet = await consoleAPICall(
consoleFront,
() => top.console.assert(null, "assertion is false")
);
checkConsoleAPICall(packet.message, {
arguments: ["assertion is false"]
});
}
async function testTrueAssert(consoleFront) {
info(`Testing console.assert(true)`);
const onConsoleApiCall = consoleAPICall(
consoleFront,
() => top.console.assert(true, "assertion is false")
);
const TIMEOUT = Symbol();
const onTimeout = new Promise(resolve => setTimeout(() => resolve(TIMEOUT), 1000));
const res = await Promise.race([onConsoleApiCall, onTimeout]);
is(res, TIMEOUT,
"There was no consoleAPICall event in response to a truthy console.assert");
}
</script>
</head>
<body>
<p id="display"></p>
<div id="content" style="display: none">
</div>
<pre id="test">
</pre>
</body>
</html>