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]; 10 : 1 : 11 [ + ]: 1 : xhr.onreadystatechange = () => { 12 : 1 : result.push(xhr.readyState); 13 : 1 : }; 14 : 1 : 15 : 1 : xhr.open('GET', `${activeURL.replace('/resources', '') + '/folder.txt'}`); 16 : 1 : xhr.send(); 17 : 1 : xhr.open('GET', `${activeURL.replace('/resources', '') + '/folder.txt'}`, false); 18 : 1 : 19 : 1 : assert.deepStrictEqual(result, expected); 20 : 1 : 21 : 1 : assert.strictEqual(xhr.responseXML, null); 22 : 1 : assert.strictEqual(xhr.responseText, ''); 23 : 1 : assert.strictEqual(xhr.status, 0); 24 : 1 : assert.strictEqual(xhr.statusText, ''); 25 : 1 : assert.strictEqual(xhr.getAllResponseHeaders(), ''); 26 : 1 : 27 : 1 : xhr.onreadystatechange = null; 28 : 1 : } 29 : 2 : 30 : 2 : /* 31 : 2 : * open-sync-open-send.htm 32 : 2 : * 33 : 2 : 34 : 2 : <!DOCTYPE html> 35 : 2 : <html> 36 : 2 : <head> 37 : 2 : <title>XMLHttpRequest: open() (sync) - send() - open()</title> 38 : 2 : <script src="/resources/testharness.js"></script> 39 : 2 : <script src="/resources/testharnessreport.js"></script> 40 : 2 : <link rel="help" href="https://xhr.spec.whatwg.org/#the-open()-method" data-tested-assertations="following::ol[1]/li[14]/ul/li[1] following::ol[1]/li[14]/ul/li[2] following::ol[1]/li[14]/ul/li[3] following::ol[1]/li[15]/ol/li[1] following::ol[1]/li[15]/ol/li[2]" /> 41 : 2 : <link rel="help" href="https://xhr.spec.whatwg.org/#the-responsexml-attribute" data-tested-assertations="following::ol[1]/li[2]" /> 42 : 2 : <link rel="help" href="https://xhr.spec.whatwg.org/#the-responsetext-attribute" data-tested-assertations="following::ol[1]/li[2]" /> 43 : 2 : <link rel="help" href="https://xhr.spec.whatwg.org/#the-status-attribute" data-tested-assertations="following::ol[1]/li[1]" /> 44 : 2 : <link rel="help" href="https://xhr.spec.whatwg.org/#the-statustext-attribute" data-tested-assertations="following::ol[1]/li[1]" /> 45 : 2 : <link rel="help" href="https://xhr.spec.whatwg.org/#the-getallresponseheaders()-method" data-tested-assertations="following::ol[1]/li[1]" /> 46 : 2 : 47 : 2 : </head> 48 : 2 : <body> 49 : 2 : <div id="log"></div> 50 : 2 : <script> 51 : 2 : var test = async_test() 52 : 2 : test.step(function() { 53 : 2 : var client = new XMLHttpRequest(), 54 : 2 : result = [], 55 : 2 : expected = [1] 56 : 2 : client.onreadystatechange = function() { 57 : 2 : test.step(function() { 58 : 2 : result.push(client.readyState) 59 : 2 : }) 60 : 2 : } 61 : 2 : client.open("GET", "folder.txt") 62 : 2 : client.send(null) 63 : 2 : client.open("GET", "folder.txt", false) 64 : 2 : assert_array_equals(result, expected) 65 : 2 : assert_equals(client.responseXML, null) 66 : 2 : assert_equals(client.responseText, "") 67 : 2 : assert_equals(client.status, 0) 68 : 2 : assert_equals(client.statusText, "") 69 : 2 : assert_equals(client.getAllResponseHeaders(), "") 70 : 2 : test.done() 71 : 2 : }) 72 : 2 : </script> 73 : 2 : </body> 74 : 2 : </html> 75 : 2 : 76 : 2 : * 77 : 2 : * open-sync-open-send.htm 78 : 2 : */