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 : request('GET'); 7 : 1 : request('HEAD'); 8 : 1 : 9 [ + ]: 1 : function request(method){ 10 : 2 : 11 : 2 : let events = []; 12 : 2 : let logEvt = (e) => { 13 : 0 : events.push(e.type); 14 : 2 : }; 15 : 2 : 16 : 2 : let xhr = new XMLHttpRequest(); 17 : 2 : 18 : 2 : xhr.open(method, `${activeURL}/content.py`, false); 19 : 2 : xhr.send('TEST'); 20 : 2 : 21 : 2 : xhr.upload.onprogress = logEvt; 22 : 2 : xhr.upload.onloadstart = logEvt; 23 : 2 : xhr.upload.onloadend = logEvt; 24 : 2 : 25 : 2 : assert.strictEqual(xhr.getResponseHeader('x-request-content-length'), 'NO'); 26 : 2 : assert.strictEqual(xhr.getResponseHeader('x-request-method'), method); 27 : 2 : assert.strictEqual(xhr.responseText, ''); 28 : 2 : 29 : 2 : assert.deepStrictEqual(events, []); 30 : 2 : } 31 : 1 : } 32 : 2 : 33 : 2 : /* 34 : 2 : * send-entity-body-get-head.htm 35 : 2 : * 36 : 2 : 37 : 2 : <!doctype html> 38 : 2 : <html> 39 : 2 : <head> 40 : 2 : <title>XMLHttpRequest: send() - non-empty data argument and GET/HEAD</title> 41 : 2 : <script src="/resources/testharness.js"></script> 42 : 2 : <script src="/resources/testharnessreport.js"></script> 43 : 2 : <link rel="help" href="https://xhr.spec.whatwg.org/#the-send()-method" data-tested-assertations="following::OL[1]/LI[3] following::OL[1]/LI[7]" /> 44 : 2 : 45 : 2 : </head> 46 : 2 : <body> 47 : 2 : <div id="log"></div> 48 : 2 : <script> 49 : 2 : function request(method) { 50 : 2 : test(function() { 51 : 2 : var events=[] 52 : 2 : var logEvt = function (e) { 53 : 2 : events.push(e.type) 54 : 2 : } 55 : 2 : var client = new XMLHttpRequest() 56 : 2 : client.open(method, "resources/content.py", false) 57 : 2 : client.send("TEST") 58 : 2 : client.upload.addEventListener('progress', logEvt) 59 : 2 : client.upload.addEventListener('loadend', logEvt) 60 : 2 : client.upload.addEventListener('loadstart', logEvt) 61 : 2 : 62 : 2 : assert_equals(client.getResponseHeader("x-request-content-length"), "NO") 63 : 2 : assert_equals(client.getResponseHeader("x-request-method"), method) 64 : 2 : assert_equals(client.responseText, "") 65 : 2 : assert_array_equals(events, []) 66 : 2 : }, document.title + " (" + method + ")") 67 : 2 : } 68 : 2 : request("GET") 69 : 2 : request("HEAD") 70 : 2 : </script> 71 : 2 : </body> 72 : 2 : </html> 73 : 2 : 74 : 2 : * 75 : 2 : * send-entity-body-get-head.htm 76 : 2 : */