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 : 0 : 6 : 0 : // method('XUNICORN'); 7 : 0 : method('xUNIcorn'); 8 : 0 : // method('chiCKEN'); 9 : 0 : // method('PATCH'); 10 : 0 : // method('patCH'); 11 : 0 : // method('copy'); 12 : 0 : // method('COpy'); 13 : 0 : // method('inDEX'); 14 : 0 : // method('movE'); 15 : 0 : 16 : 0 : function method(method){ 17 : 0 : 18 : 0 : let xhr = new XMLHttpRequest(); 19 : 0 : 20 : 0 : xhr.open(method, `${activeURL}/content.py`, false); 21 : 0 : xhr.send(); 22 : 0 : 23 : 0 : assert.strictEqual(xhr.getResponseHeader('x-request-method'), method); 24 : 0 : } 25 : 0 : } 26 : 2 : 27 : 2 : /* 28 : 2 : * open-method-case-sensitive.htm 29 : 2 : * 30 : 2 : 31 : 2 : <!DOCTYPE html> 32 : 2 : <html> 33 : 2 : <head> 34 : 2 : <title>XMLHttpRequest: open() - case-sensitive methods test</title> 35 : 2 : <script src="/resources/testharness.js"></script> 36 : 2 : <script src="/resources/testharnessreport.js"></script> 37 : 2 : <link rel="help" href="https://xhr.spec.whatwg.org/#the-open()-method" data-tested-assertations="following::ol/li[5]" /> 38 : 2 : </head> 39 : 2 : <body> 40 : 2 : <div id="log"></div> 41 : 2 : <script> 42 : 2 : function method(method) { 43 : 2 : test(function() { 44 : 2 : var client = new XMLHttpRequest() 45 : 2 : client.open(method, "resources/content.py", false) 46 : 2 : client.send(null) 47 : 2 : assert_equals(client.getResponseHeader("x-request-method"), method) 48 : 2 : }, document.title + " (" + method + ")") 49 : 2 : } 50 : 2 : method("XUNICORN") 51 : 2 : method("xUNIcorn") 52 : 2 : method("chiCKEN") 53 : 2 : method("PATCH") 54 : 2 : method("patCH") 55 : 2 : method("copy") 56 : 2 : method("COpy") 57 : 2 : method("inDEX") 58 : 2 : method("movE") 59 : 2 : </script> 60 : 2 : </body> 61 : 2 : </html> 62 : 2 : 63 : 2 : * 64 : 2 : * open-method-case-sensitive.htm 65 : 2 : */