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 : xhr.open('GET', `${activeURL}/header-user-agent.py`); 9 : 1 : 10 : 1 : xhr.setRequestHeader('x-test', 'foobar'); 11 : 1 : 12 : 1 : xhr.onerror = () => { 13 : 0 : assert(false, 'Unexpected error'); 14 : 1 : }; 15 : 1 : 16 [ + ]: 1 : xhr.onload = () => { 17 : 1 : assert.strictEqual(xhr.responseText, 'PASS'); 18 : 1 : }; 19 : 1 : 20 : 1 : xhr.send(); 21 : 1 : } 22 : 2 : 23 : 2 : /* 24 : 2 : * header-user-agent-async.htm 25 : 2 : * 26 : 2 : 27 : 2 : <!DOCTYPE html> 28 : 2 : <html> 29 : 2 : <head> 30 : 2 : <title>Test that async requests (both OPTIONS preflight and regular) are sent with the User-Agent header</title> 31 : 2 : <script src="/resources/testharness.js"></script> 32 : 2 : <script src="/resources/testharnessreport.js"></script> 33 : 2 : <script src="/common/get-host-info.sub.js"></script> 34 : 2 : </head> 35 : 2 : <body> 36 : 2 : <script type="text/javascript"> 37 : 2 : async_test((test) => { 38 : 2 : let xhr = new XMLHttpRequest; 39 : 2 : xhr.open("GET", get_host_info().HTTP_REMOTE_ORIGIN + "/xhr/resources/header-user-agent.py"); 40 : 2 : xhr.setRequestHeader("x-test", "foobar"); 41 : 2 : 42 : 2 : xhr.onerror = test.unreached_func("Unexpected error"); 43 : 2 : 44 : 2 : xhr.onload = test.step_func_done(() => { 45 : 2 : assert_equals(xhr.responseText, "PASS"); 46 : 2 : }); 47 : 2 : 48 : 2 : xhr.send(); 49 : 2 : }, "Async request has User-Agent header"); 50 : 2 : </script> 51 : 2 : </body> 52 : 2 : </html> 53 : 2 : 54 : 2 : * 55 : 2 : * header-user-agent-async.htm 56 : 2 : */