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, 'a', 'b', 'c']; 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 : result.push('a'); 17 : 1 : 18 : 1 : xhr.send(); 19 : 1 : result.push('b'); 20 : 1 : 21 : 1 : xhr.open('GET', `${activeURL.replace('/resources', '') + '/folder.txt'}`); 22 : 1 : result.push('c'); 23 : 1 : 24 : 1 : assert.deepStrictEqual(result, expected); 25 : 1 : } 26 : 2 : 27 : 2 : /* 28 : 2 : * open-send-open.htm 29 : 2 : * 30 : 2 : 31 : 2 : <!DOCTYPE html> 32 : 2 : <html> 33 : 2 : <head> 34 : 2 : <title>XMLHttpRequest: open() - send() - open()</title> 35 : 2 : <script src="/resources/testharness.js"></script> 36 : 2 : <script src="/resources/testharnessreport.js"></script> 37 : 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[15]/ol/li[1] following::ol/li[15]/ol/li[2]" /> 38 : 2 : </head> 39 : 2 : <body> 40 : 2 : <div id="log"></div> 41 : 2 : <script> 42 : 2 : var test = async_test() 43 : 2 : test.step(function() { 44 : 2 : var client = new XMLHttpRequest(), 45 : 2 : result = [], 46 : 2 : expected = [1, 'a', 'b', 'c'] 47 : 2 : client.onreadystatechange = function() { 48 : 2 : test.step(function() { 49 : 2 : result.push(client.readyState) 50 : 2 : }) 51 : 2 : } 52 : 2 : client.open("GET", "folder.txt") 53 : 2 : result.push('a') 54 : 2 : client.send() 55 : 2 : result.push('b') 56 : 2 : client.open("GET", "folder.txt") 57 : 2 : result.push('c') 58 : 2 : assert_array_equals(result, expected) 59 : 2 : test.done() 60 : 2 : }) 61 : 2 : </script> 62 : 2 : </body> 63 : 2 : </html> 64 : 2 : 65 : 2 : * 66 : 2 : * open-send-open.htm 67 : 2 : */