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 : 19 : 3 : assert(headers.indexOf('\r\n') !== -1, 'carriage return'); 20 : 3 : assert(headers.indexOf('content-type') !== -1, 'content-type'); 21 : 3 : assert(headers.indexOf('x-custom-header') !== -1, 'x-custom-header'); 22 : 3 : 23 : 3 : assert(headers.indexOf('set-cookie') === -1, 'set-cookie'); 24 : 3 : assert(headers.indexOf('set-cookie2') === -1, 'set-cookie2'); 25 : 3 : } 26 : 4 : 27 [ + ]: 4 : if(xhr.readyState === 4){ 28 : 1 : assert(true); 29 : 1 : } 30 : 1 : }; 31 : 1 : 32 : 1 : xhr.open('GET', `${activeURL}/headers.py`); 33 : 1 : xhr.send(); 34 : 1 : } 35 : 2 : 36 : 2 : /* 37 : 2 : * getallresponseheaders-cookies.htm 38 : 2 : * 39 : 2 : 40 : 2 : <!DOCTYPE html> 41 : 2 : <html> 42 : 2 : <head> 43 : 2 : <title>XMLHttpRequest: getAllResponseHeaders() excludes cookies</title> 44 : 2 : <script src="/resources/testharness.js"></script> 45 : 2 : <script src="/resources/testharnessreport.js"></script> 46 : 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]" /> 47 : 2 : </head> 48 : 2 : <body> 49 : 2 : <div id="log"></div> 50 : 2 : <script> 51 : 2 : var test = async_test() 52 : 2 : test.step(function() { 53 : 2 : var client = new XMLHttpRequest() 54 : 2 : assert_equals(client.getAllResponseHeaders(), "") 55 : 2 : client.onreadystatechange = function() { 56 : 2 : test.step(function() { 57 : 2 : var headers = client.getAllResponseHeaders().toLowerCase() 58 : 2 : if(client.readyState == 1) { 59 : 2 : assert_equals(headers, "") 60 : 2 : } 61 : 2 : if(client.readyState > 1) { 62 : 2 : assert_true(headers.indexOf("\r\n") != -1, "carriage return") 63 : 2 : assert_true(headers.indexOf("content-type") != -1, "content-type") 64 : 2 : assert_true(headers.indexOf("x-custom-header") != -1, "x-custom-header") 65 : 2 : assert_false(headers.indexOf("set-cookie") != -1, "set-cookie") 66 : 2 : assert_false(headers.indexOf("set-cookie2") != -1, "set-cookie2") 67 : 2 : } 68 : 2 : if(client.readyState == 4) 69 : 2 : test.done() 70 : 2 : }) 71 : 2 : } 72 : 2 : client.open("GET", "resources/headers.py") 73 : 2 : client.send(null) 74 : 2 : }) 75 : 2 : </script> 76 : 2 : </body> 77 : 2 : </html> 78 : 2 : 79 : 2 : * 80 : 2 : * getallresponseheaders-cookies.htm 81 : 2 : */