| Hallvord R. M. Steen | cfc46b8 | 2013-05-14 17:51:51 | [diff] [blame] | 1 | <!doctype html> |
| 2 | <html> |
| 3 | <head> |
| 4 | <title>XMLHttpRequest: send() - "Basic" authenticated requests with user name and password passed to open()</title> |
| 5 | <script src="/resources/testharness.js"></script> |
| 6 | <script src="/resources/testharnessreport.js"></script> |
| James Graham | 234a672 | 2013-09-17 17:54:38 | [diff] [blame] | 7 | <script src="/common/utils.js"></script> |
| Ms2ger | 91fef14 | 2014-11-01 09:24:37 | [diff] [blame] | 8 | <link rel="help" href="https://xhr.spec.whatwg.org/#the-open()-method" data-tested-assertations="following::ol[1]/li[9]/ol[1]/li[1] following::ol[1]/li[9]/ol[1]/li[2]" /> |
| 9 | <link rel="help" href="https://xhr.spec.whatwg.org/#the-send()-method" data-tested-assertations="following::code[contains(@title,'http-authorization')]/.." /> |
| Hallvord R. M. Steen | cfc46b8 | 2013-05-14 17:51:51 | [diff] [blame] | 10 | </head> |
| 11 | <body> |
| 12 | <div id="log"></div> |
| 13 | <script> |
| 14 | test(function() { |
| 15 | var client = new XMLHttpRequest(), |
| James Graham | 234a672 | 2013-09-17 17:54:38 | [diff] [blame] | 16 | urlstart = location.host + location.pathname.replace(/\/[^\/]*$/, '/'), |
| 17 | user = token(); |
| 18 | client.open("GET", location.protocol+'//'+urlstart + "resources/auth1/auth.py", false, user, 'pass') |
| 19 | client.setRequestHeader("x-user", user) |
| Hallvord R. M. Steen | cfc46b8 | 2013-05-14 17:51:51 | [diff] [blame] | 20 | client.send(null) |
| James Graham | 234a672 | 2013-09-17 17:54:38 | [diff] [blame] | 21 | assert_equals(client.responseText, user + "\n" + 'pass') |
| Hallvord Reiar M. Steen | 237f53d | 2013-07-02 11:56:16 | [diff] [blame] | 22 | assert_equals(client.getResponseHeader('x-challenge'), 'DID') |
| Hallvord R. M. Steen | cfc46b8 | 2013-05-14 17:51:51 | [diff] [blame] | 23 | }, document.title) |
| 24 | </script> |
| Hallvord Reiar M. Steen | 237f53d | 2013-07-02 11:56:16 | [diff] [blame] | 25 | <p>Note: this test will only work as expected once per browsing session. Restart browser to re-test.</p> |
| Hallvord R. M. Steen | cfc46b8 | 2013-05-14 17:51:51 | [diff] [blame] | 26 | </body> |
| 27 | </html> |