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