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 : xhr.open('GET', `${activeURL}/infinite-redirects.py?`, false); 8 : 1 : 9 : 1 : assert.throws( 10 [ + ]: 1 : () => { 11 : 1 : xhr.send(); 12 : 1 : }, 13 [ + ]: 1 : (err) => { 14 : 1 : assert(err instanceof DOMException, 'DOMException expected'); 15 : 1 : assert(err.name === 'NetworkError', 'NetworkError expected'); 16 : 1 : 17 : 1 : return true; 18 : 1 : } 19 : 1 : ); 20 : 1 : 21 : 1 : assert.strictEqual(xhr.status, 0, 'status'); 22 : 1 : assert.strictEqual(xhr.statusText, '', 'statusText'); 23 : 1 : assert.strictEqual(xhr.getAllResponseHeaders(), '', 'getAllResponseHeaders'); 24 : 1 : assert.strictEqual(xhr.getResponseHeader('content-type'), null, 'getResponseHeader'); 25 : 1 : assert.strictEqual(xhr.responseText, '', 'responseText'); 26 : 1 : assert.strictEqual(xhr.responseXML, null, 'responseXML'); 27 : 1 : assert.strictEqual(xhr.readyState, xhr.DONE, 'readyState'); 28 : 1 : } 29 : 2 : 30 : 2 : /* 31 : 2 : * xmlhttprequest-network-error-sync.htm 32 : 2 : * 33 : 2 : 34 : 2 : <!doctype html> 35 : 2 : <html> 36 : 2 : <head> 37 : 2 : <title>XMLHttpRequest: members during network errors (sync)</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/#infrastructure-for-the-send()-method" data-tested-assertations="following::dl[1]/dt[2] following::dl[1]/dd[2]/p[1]" /> 41 : 2 : <link rel="help" href="https://xhr.spec.whatwg.org/#network-error" data-tested-assertations=".." /> 42 : 2 : <link rel="help" href="https://xhr.spec.whatwg.org/#request-error" data-tested-assertations="following::ol[1]/li[5]" /> 43 : 2 : <link rel="help" href="https://xhr.spec.whatwg.org/#the-status-attribute" data-tested-assertations="following::ol[1]/li[1] following::ol[1]/li[2]" /> 44 : 2 : <link rel="help" href="https://xhr.spec.whatwg.org/#the-statustext-attribute" data-tested-assertations="following::ol[1]/li[1] following::ol[1]/li[2]" /> 45 : 2 : <link rel="help" href="https://xhr.spec.whatwg.org/#the-getresponseheader()-method" data-tested-assertations="following::ol[1]/li[1] following::ol[1]/li[2]" /> 46 : 2 : <link rel="help" href="https://xhr.spec.whatwg.org/#the-getallresponseheaders()-method" data-tested-assertations="following::ol[1]/li[1] following::ol[1]/li[2]" /> 47 : 2 : <link rel="help" href="https://xhr.spec.whatwg.org/#the-responsetext-attribute" data-tested-assertations="following::ol[1]/li[2] following::ol[1]/li[3]" /> 48 : 2 : <link rel="help" href="https://xhr.spec.whatwg.org/#the-responsexml-attribute" data-tested-assertations="following::ol[1]/li[2] following::ol[1]/li[3]" /> 49 : 2 : </head> 50 : 2 : <body> 51 : 2 : <div id="log"></div> 52 : 2 : <script> 53 : 2 : test(function() { 54 : 2 : var client = new XMLHttpRequest() 55 : 2 : client.open("GET", "resources/infinite-redirects.py", false) 56 : 2 : assert_throws_dom("NetworkError", function() { client.send(null) }, "send") 57 : 2 : assert_equals(client.status, 0, "status") 58 : 2 : assert_equals(client.statusText, "", "statusText") 59 : 2 : assert_equals(client.getAllResponseHeaders(), "", "getAllResponseHeaders") 60 : 2 : assert_equals(client.getResponseHeader("content-type"), null, "getResponseHeader") 61 : 2 : assert_equals(client.responseText, "", "responseText") 62 : 2 : assert_equals(client.responseXML, null, "responseXML") 63 : 2 : assert_equals(client.readyState, client.DONE, "readyState") 64 : 2 : }) 65 : 2 : </script> 66 : 2 : </body> 67 : 2 : </html> 68 : 2 : 69 : 2 : * 70 : 2 : * xmlhttprequest-network-error-sync.htm 71 : 2 : */