Branch data Line data Source code
1 [ + ]: 2 : import assert from 'node:assert/strict'; 2 : 2 : import { XMLHttpRequest } from '../../../lib/whatwg-xhr.js'; 3 : 2 : 4 [ + ]: 2 : export default (activeURL) => { 5 : 1 : 6 : 1 : let xhr = new XMLHttpRequest(); 7 : 1 : 8 : 1 : let result = []; 9 : 1 : let expected = [1, 4]; 10 : 1 : 11 [ + ]: 1 : xhr.onreadystatechange = () => { 12 : 2 : result.push(xhr.readyState); 13 : 1 : }; 14 : 1 : 15 : 1 : xhr.open('GET', `${activeURL.replace('/resources', '') + '/folder.txt'}`); 16 : 1 : xhr.open('GET', `${activeURL.replace('/resources', '') + '/folder.txt'}`, false); 17 : 1 : 18 : 1 : xhr.send(); 19 : 1 : 20 : 1 : assert.strictEqual(xhr.responseText, 'top\n'); 21 : 1 : assert.deepStrictEqual(result, expected); 22 : 1 : 23 : 1 : xhr.onreadystatechange = null; 24 : 1 : } 25 : 2 : 26 : 2 : /* 27 : 2 : * open-open-sync-send.htm 28 : 2 : * 29 : 2 : 30 : 2 : <!DOCTYPE html> 31 : 2 : <html> 32 : 2 : <head> 33 : 2 : <title>XMLHttpRequest: open() - open() (sync) - send()</title> 34 : 2 : <script src="/resources/testharness.js"></script> 35 : 2 : <script src="/resources/testharnessreport.js"></script> 36 : 2 : <link rel="help" href="https://xhr.spec.whatwg.org/#the-open()-method" data-tested-assertations="following::ol/li[14]/ul/li[1] following::ol/li[14]/ul/li[2] following::ol/li[14]/ul/li[3] following::ol/li[15]/ol/li[1] following::ol/li[15]/ol/li[2]" /> 37 : 2 : </head> 38 : 2 : <body> 39 : 2 : <div id="log"></div> 40 : 2 : <script> 41 : 2 : var test = async_test() 42 : 2 : test.step(function() { 43 : 2 : var client = new XMLHttpRequest(), 44 : 2 : result = [], 45 : 2 : expected = [1,4] 46 : 2 : client.onreadystatechange = function() { 47 : 2 : test.step(function() { 48 : 2 : result.push(client.readyState) 49 : 2 : }) 50 : 2 : } 51 : 2 : client.open("GET", "folder.txt") 52 : 2 : client.open("GET", "folder.txt", false) 53 : 2 : client.send(null) 54 : 2 : assert_equals(client.responseText, 'top\n') 55 : 2 : assert_array_equals(result, expected) 56 : 2 : test.done() 57 : 2 : }) 58 : 2 : </script> 59 : 2 : </body> 60 : 2 : </html> 61 : 2 : 62 : 2 : * 63 : 2 : * open-open-sync-send.htm 64 : 2 : */