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 : const xhr = new XMLHttpRequest(); 7 : 1 : 8 : 1 : assert.throws( 9 [ + ]: 1 : () => { 10 : 1 : xhr.setRequestHeader('x-test', 'test'); 11 : 1 : }, 12 [ + ]: 1 : (err) => { 13 : 1 : assert(err instanceof DOMException, 'DOMException expected'); 14 : 1 : assert(err.name === 'InvalidStateError', 'InvalidStateError expected'); 15 : 1 : 16 : 1 : return true; 17 : 1 : } 18 : 1 : ); 19 : 1 : 20 : 1 : assert.throws( 21 [ + ]: 1 : () => { 22 : 1 : xhr.send(); 23 : 1 : }, 24 [ + ]: 1 : (err) => { 25 : 1 : assert(err instanceof DOMException, 'DOMException expected'); 26 : 1 : assert(err.name === 'InvalidStateError', 'InvalidStateError expected'); 27 : 1 : 28 : 1 : return true; 29 : 1 : } 30 : 1 : ); 31 : 1 : 32 : 1 : assert.strictEqual(xhr.status, 0, 'status'); 33 : 1 : assert.strictEqual(xhr.statusText, '', 'statusText'); 34 : 1 : assert.strictEqual(xhr.getAllResponseHeaders(), '', 'getAllResponseHeaders'); 35 : 1 : assert.strictEqual(xhr.getResponseHeader('x-test'), null, 'getResponseHeader'); 36 : 1 : assert.strictEqual(xhr.responseText, '', 'responseText'); 37 : 1 : assert.strictEqual(xhr.responseXML, null, 'responseXML'); 38 : 1 : assert.strictEqual(xhr.readyState, xhr.UNSENT, 'readyState'); 39 : 1 : } 40 : 2 : 41 : 2 : /* 42 : 2 : * xmlhttprequest-unsent.htm 43 : 2 : * 44 : 2 : 45 : 2 : <!doctype html> 46 : 2 : <html> 47 : 2 : <head> 48 : 2 : <title>XMLHttpRequest: members during UNSENT</title> 49 : 2 : <script src="/resources/testharness.js"></script> 50 : 2 : <script src="/resources/testharnessreport.js"></script> 51 : 2 : <link rel="help" href="https://xhr.spec.whatwg.org/#dom-xmlhttprequest-unsent" data-tested-assertations=".. following::dd" /> 52 : 2 : <link rel="help" href="https://xhr.spec.whatwg.org/#dom-xmlhttprequest-setrequestheader" data-tested-assertations="following::ol/li[1]" /> 53 : 2 : <link rel="help" href="https://xhr.spec.whatwg.org/#the-send()-method" data-tested-assertations="following::ol/li[1]" /> 54 : 2 : <link rel="help" href="https://xhr.spec.whatwg.org/#the-status-attribute" data-tested-assertations="following::ol/li[1]" /> 55 : 2 : <link rel="help" href="https://xhr.spec.whatwg.org/#the-statustext-attribute" data-tested-assertations="following::ol/li[1]" /> 56 : 2 : <link rel="help" href="https://xhr.spec.whatwg.org/#the-getresponseheader()-method" data-tested-assertations="following::ol/li[1]" /> 57 : 2 : <link rel="help" href="https://xhr.spec.whatwg.org/#the-getallresponseheaders()-method" data-tested-assertations="following::ol/li[1]" /> 58 : 2 : <link rel="help" href="https://xhr.spec.whatwg.org/#the-responsetext-attribute" data-tested-assertations="following::ol/li[2]" /> 59 : 2 : <link rel="help" href="https://xhr.spec.whatwg.org/#the-responsexml-attribute" data-tested-assertations="following::ol/li[2]" /> 60 : 2 : 61 : 2 : </head> 62 : 2 : <body> 63 : 2 : <div id="log"></div> 64 : 2 : <script> 65 : 2 : test(function() { 66 : 2 : var client = new XMLHttpRequest() 67 : 2 : assert_throws_dom("InvalidStateError", function() { client.setRequestHeader("x-test", "test") }, "setRequestHeader") 68 : 2 : assert_throws_dom("InvalidStateError", function() { client.send(null) }, "send") 69 : 2 : assert_equals(client.status, 0, "status") 70 : 2 : assert_equals(client.statusText, "", "statusText") 71 : 2 : assert_equals(client.getAllResponseHeaders(), "", "getAllResponseHeaders") 72 : 2 : assert_equals(client.getResponseHeader("x-test"), null, "getResponseHeader") 73 : 2 : assert_equals(client.responseText, "", "responseText") 74 : 2 : assert_equals(client.responseXML, null, "responseXML") 75 : 2 : 76 : 2 : assert_equals(client.readyState, client.UNSENT, "readyState") 77 : 2 : }) 78 : 2 : </script> 79 : 2 : </body> 80 : 2 : </html> 81 : 2 : 82 : 2 : * 83 : 2 : * xmlhttprequest-unsent.htm 84 : 2 : */