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