wpt: replace cbk_res with null

This commit is contained in:
Pierre Tachoire
2023-10-17 11:24:35 +02:00
parent 6370b2d7a7
commit 0d6c319f1b

View File

@@ -180,11 +180,6 @@ fn runWPT(arena: *std.heap.ArenaAllocator, f: []const u8, loader: *FileLoader) !
try js_env.attachObject(try js_env.getGlobal(), "window", null); try js_env.attachObject(try js_env.getGlobal(), "window", null);
var res = jsruntime.JSResult{}; var res = jsruntime.JSResult{};
var cbk_res = jsruntime.JSResult{
.success = true,
// assume that the return value of the successfull callback is "undefined"
.result = "undefined",
};
const init = const init =
\\window.listeners = []; \\window.listeners = [];
@@ -204,17 +199,17 @@ fn runWPT(arena: *std.heap.ArenaAllocator, f: []const u8, loader: *FileLoader) !
\\}; \\};
\\window.removeEventListener = function () {}; \\window.removeEventListener = function () {};
; ;
try js_env.run(alloc, init, "init", &res, &cbk_res); try js_env.run(alloc, init, "init", &res, null);
if (!res.success) { if (!res.success) {
return res; return res;
} }
// TODO load <script src> attributes instead of the static list. // TODO load <script src> attributes instead of the static list.
try js_env.run(alloc, try loader.get("/resources/testharness.js"), "testharness.js", &res, &cbk_res); try js_env.run(alloc, try loader.get("/resources/testharness.js"), "testharness.js", &res, null);
if (!res.success) { if (!res.success) {
return res; return res;
} }
try js_env.run(alloc, try loader.get("/resources/testharnessreport.js"), "testharnessreport.js", &res, &cbk_res); try js_env.run(alloc, try loader.get("/resources/testharnessreport.js"), "testharnessreport.js", &res, null);
if (!res.success) { if (!res.success) {
return res; return res;
} }
@@ -226,7 +221,7 @@ fn runWPT(arena: *std.heap.ArenaAllocator, f: []const u8, loader: *FileLoader) !
const s = parser.nodeListItem(scripts, @intCast(i)).?; const s = parser.nodeListItem(scripts, @intCast(i)).?;
const src = parser.nodeTextContent(s).?; const src = parser.nodeTextContent(s).?;
try js_env.run(alloc, src, "", &res, &cbk_res); try js_env.run(alloc, src, "", &res, null);
// return the first failure. // return the first failure.
if (!res.success) { if (!res.success) {
@@ -235,20 +230,20 @@ fn runWPT(arena: *std.heap.ArenaAllocator, f: []const u8, loader: *FileLoader) !
} }
// Mark tests as ready to run. // Mark tests as ready to run.
try js_env.run(alloc, "window.dispatchEvent({target: 'load'});", "ready", &res, &cbk_res); try js_env.run(alloc, "window.dispatchEvent({target: 'load'});", "ready", &res, null);
if (!res.success) { if (!res.success) {
return res; return res;
} }
// Check the final test status. // Check the final test status.
try js_env.run(alloc, "report.status;", "teststatus", &res, &cbk_res); try js_env.run(alloc, "report.status;", "teststatus", &res, null);
if (!res.success) { if (!res.success) {
return res; return res;
} }
// If the test failed, return detailed logs intead of the simple status. // If the test failed, return detailed logs intead of the simple status.
if (!std.mem.eql(u8, res.result, "Pass")) { if (!std.mem.eql(u8, res.result, "Pass")) {
try js_env.run(alloc, "report.log", "teststatus", &res, &cbk_res); try js_env.run(alloc, "report.log", "teststatus", &res, null);
} }
// return the final result. // return the final result.