diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
commit | 36d22d82aa202bb199967e9512281e9a53db42c9 (patch) | |
tree | 105e8c98ddea1c1e4784a60a5a6410fa416be2de /dom/encoding/test/unit/head.js | |
parent | Initial commit. (diff) | |
download | firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip |
Adding upstream version 115.7.0esr.upstream/115.7.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'dom/encoding/test/unit/head.js')
-rw-r--r-- | dom/encoding/test/unit/head.js | 136 |
1 files changed, 136 insertions, 0 deletions
diff --git a/dom/encoding/test/unit/head.js b/dom/encoding/test/unit/head.js new file mode 100644 index 0000000000..6608f000c9 --- /dev/null +++ b/dom/encoding/test/unit/head.js @@ -0,0 +1,136 @@ +/** + * Any copyright is dedicated to the Public Domain. + * http://creativecommons.org/publicdomain/zero/1.0/ + * + * This is a shim for the W3C testharness.js, mapping those of + * its functions that we need to the testing/xpcshell/head.js API. + * See <http://www.w3.org/2008/webapps/wiki/Harness> for documentation. + * This shim does some tests a little differently than the W3C test + * harness; equality comparisons, especially, are less precise. + * The difference does not presently affect any test results. + * + * We use the lower-level do_report_result throughout this file, + * rather than the high-level xpcshell/head.js API that has near + * equivalents for the W3C assert_* functions, because only + * do_report_result allows us to provide Components.stack.caller. + */ + +function assert_equals(a, b, msg) { + let text = + msg + + ": " + + _wrap_with_quotes_if_necessary(a) + + " == " + + _wrap_with_quotes_if_necessary(b); + do_report_result(a == b, text, Components.stack.caller, false); +} + +function assert_not_equals(a, b, msg) { + let text = + msg + + ": " + + _wrap_with_quotes_if_necessary(a) + + " != " + + _wrap_with_quotes_if_necessary(b); + do_report_result(a != b, text, Components.stack.caller, false); +} + +function assert_array_equals(a, b, msg) { + do_report_result( + a.length == b.length, + msg + ": (length) " + a.length + " == " + b.length, + Components.stack.caller, + false + ); + for (let i = 0; i < a.length; ++i) { + if (a[i] !== b[i]) { + do_report_result( + false, + msg + + ": [" + + i + + "] " + + _wrap_with_quotes_if_necessary(a[i]) + + " === " + + _wrap_with_quotes_if_necessary(b[i]), + Components.stack.caller, + false + ); + } + } + // If we get here, all array elements are equal. + do_report_result( + true, + msg + ": all array elements equal", + Components.stack.caller, + false + ); +} + +function assert_true(cond, msg) { + do_report_result( + !!cond, + msg + ": " + uneval(cond), + Components.stack.caller, + false + ); +} + +function assert_throws(ex, func) { + if (!("name" in ex)) { + do_throw( + "first argument to assert_throws must be of the form " + + "{'name': something}" + ); + } + + let msg = "expected to catch an exception named " + ex.name; + + try { + func(); + } catch (e) { + if ("name" in e) { + do_report_result( + e.name == ex.name, + msg + ", got " + e.name, + Components.stack.caller, + false + ); + } else { + do_report_result( + false, + msg + ", got " + legible_exception(ex), + Components.stack.caller, + false + ); + } + + return; + } + + // Call this here, not in the 'try' clause, so do_report_result's own + // throw doesn't get caught by our 'catch' clause. + do_report_result( + false, + msg + ", but returned normally", + Components.stack.caller, + false + ); +} + +var tests = []; + +function test(func, msg) { + tests.push({ + msg, + func, + filename: Components.stack.caller.filename, + }); +} + +function run_test() { + tests.forEach(function (t) { + info(`test group: ${t.msg}, {source_file: ${t.filename}}`); + t.func(); + }); +} |