diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-21 20:56:19 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-21 20:56:19 +0000 |
commit | 0b6210cd37b68b94252cb798598b12974a20e1c1 (patch) | |
tree | e371686554a877842d95aa94f100bee552ff2a8e /test/wpt/tests/xhr/open-after-stop.window.js | |
parent | Initial commit. (diff) | |
download | node-undici-0b6210cd37b68b94252cb798598b12974a20e1c1.tar.xz node-undici-0b6210cd37b68b94252cb798598b12974a20e1c1.zip |
Adding upstream version 5.28.2+dfsg1+~cs23.11.12.3.upstream/5.28.2+dfsg1+_cs23.11.12.3upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'test/wpt/tests/xhr/open-after-stop.window.js')
-rw-r--r-- | test/wpt/tests/xhr/open-after-stop.window.js | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/test/wpt/tests/xhr/open-after-stop.window.js b/test/wpt/tests/xhr/open-after-stop.window.js new file mode 100644 index 0000000..e836a52 --- /dev/null +++ b/test/wpt/tests/xhr/open-after-stop.window.js @@ -0,0 +1,43 @@ +// window.stop() below prevents the load event from firing, so wait until it is +// fired to start the test. +setup({explicit_done: true }); + +onload = () => { + async_test(function(t) { + const client = new XMLHttpRequest(); + + const result = []; + const expected = [ + 'readystatechange', 0, 1, // open() + ]; + + let state = 0; + + client.onreadystatechange = t.step_func(() => { + result.push('readystatechange', state, client.readyState); + }); + client.onabort = t.unreached_func("abort should not be fired after window.stop() and open()"); + client.onloadend = t.unreached_func("loadend should not be fired after window.stop() and open()"); + + client.open("GET", "resources/well-formed.xml"); + assert_equals(client.readyState, 1); + + state = 1; + client.send(null); + state = 2; + window.stop(); + // Unlike client.abort(), window.stop() does not change readyState + // immediately, rather through a task... + assert_equals(client.readyState, 1); + state = 3; + // ... which is then canceled when we open a new request anyway. + client.open("GET", "resources/well-formed.xml"); + assert_equals(client.readyState, 1); + assert_array_equals(result, expected); + + // Give the abort and loadend events a chance to fire (erroneously) before + // calling this a success. + t.step_timeout(t.step_func_done(), 1000); + }, "open() after window.stop()"); + done(); +}; |