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 : assert.strictEqual(xhr.getAllResponseHeaders(), ''); 9 : 1 : 10 [ + ]: 1 : xhr.onreadystatechange = () => { 11 : 4 : let headers = xhr.getAllResponseHeaders().toLowerCase(); 12 : 4 : 13 [ + ]: 4 : if(xhr.readyState === 1){ 14 : 1 : assert.strictEqual(headers, ''); 15 : 1 : } 16 : 4 : 17 [ + ]: 4 : if(xhr.readyState > 1){ 18 : 3 : assert(headers.indexOf('200 ok') === -1); 19 : 3 : assert(headers.indexOf('http/1.') === -1); 20 : 3 : } 21 : 4 : 22 : 4 : if(xhr.readyState === 4) 23 [ + ]: 4 : assert(true); 24 : 1 : }; 25 : 1 : 26 : 1 : xhr.open('GET', `${activeURL}/headers.py`); 27 : 1 : xhr.send(); 28 : 1 : } 29 : 2 : 30 : 2 : /* 31 : 2 : * getallresponseheaders-status.htm 32 : 2 : * 33 : 2 : 34 : 2 : <!DOCTYPE html> 35 : 2 : <html> 36 : 2 : <head> 37 : 2 : <title>XMLHttpRequest: getAllResponseHeaders() excludes status</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/#dom-xmlhttprequest-getallresponseheaders" data-tested-assertations="/following::OL[1]/LI[1] /following::OL[1]/LI[3]" /> 41 : 2 : </head> 42 : 2 : <body> 43 : 2 : <div id="log"></div> 44 : 2 : <script> 45 : 2 : async_test(function() { 46 : 2 : var client = new XMLHttpRequest() 47 : 2 : assert_equals(client.getAllResponseHeaders(), "") 48 : 2 : 49 : 2 : client.onreadystatechange = this.step_func(function() { 50 : 2 : var headers = client.getAllResponseHeaders().toLowerCase() 51 : 2 : if(client.readyState == 1) { 52 : 2 : assert_equals(headers, "") 53 : 2 : } 54 : 2 : if(client.readyState > 1) { 55 : 2 : assert_false(headers.indexOf("200 ok") != -1) 56 : 2 : assert_false(headers.indexOf("http/1.") != -1) 57 : 2 : } 58 : 2 : if(client.readyState == 4) 59 : 2 : this.done() 60 : 2 : }) 61 : 2 : client.open("GET", "resources/headers.py") 62 : 2 : client.send(null) 63 : 2 : }) 64 : 2 : </script> 65 : 2 : </body> 66 : 2 : </html> 67 : 2 : 68 : 2 : * 69 : 2 : * getallresponseheaders-status.htm 70 : 2 : */