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 : redirect('301'); 7 : 1 : 8 [ + ]: 1 : function redirect(code){ 9 : 1 : 10 : 1 : let xhr = new XMLHttpRequest(); 11 : 1 : 12 : 1 : xhr.open('GET', `${activeURL}/infinite-redirects.py?type=${code}`, false); 13 : 1 : 14 : 1 : assert.throws( 15 [ + ]: 1 : () => { 16 : 1 : xhr.send(); 17 : 1 : }, 18 [ + ]: 1 : (err) => { 19 : 1 : assert(err instanceof DOMException, 'DOMException expected'); 20 : 1 : assert(err.name === 'NetworkError', 'NetworkError expected'); 21 : 1 : 22 : 1 : return true; 23 : 1 : } 24 : 1 : ); 25 : 1 : } 26 : 1 : } 27 : 2 : 28 : 2 : /* 29 : 2 : * send-redirect-infinite-sync.htm 30 : 2 : * 31 : 2 : 32 : 2 : <!doctype html> 33 : 2 : <html> 34 : 2 : <head> 35 : 2 : <title>XMLHttpRequest: send() - Redirects (infinite loop; sync)</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/#infrastructure-for-the-send()-method" data-tested-assertations="following::dl[1]/dt[2] following::dl[1]/dd[2]/p[1]" /> 39 : 2 : <link rel="help" href="https://xhr.spec.whatwg.org/#network-error" data-tested-assertations=".." /> 40 : 2 : <link rel="help" href="https://xhr.spec.whatwg.org/#request-error" data-tested-assertations="following::ol[1]/li[5]" /> 41 : 2 : </head> 42 : 2 : <body> 43 : 2 : <div id="log"></div> 44 : 2 : <script> 45 : 2 : function redirect(code) { 46 : 2 : test(function() { 47 : 2 : var client = new XMLHttpRequest() 48 : 2 : client.open("GET", "resources/infinite-redirects.py?type="+code, false) 49 : 2 : assert_throws_dom("NetworkError", function() { client.send(null) }) 50 : 2 : }, document.title + " (" + code + ")") 51 : 2 : } 52 : 2 : redirect("301") 53 : 2 : </script> 54 : 2 : </body> 55 : 2 : </html> 56 : 2 : 57 : 2 : * 58 : 2 : * send-redirect-infinite-sync.htm 59 : 2 : */