tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

send-authentication-basic-repeat-no-args.htm (1631B)


      1 <!doctype html>
      2 <html>
      3  <head>
      4    <title>XMLHttpRequest: send() - "Basic" authenticated requests with user name and password passed to open() in first request, without in second</title>
      5    <script src="/resources/testharness.js"></script>
      6    <script src="/resources/testharnessreport.js"></script>
      7    <script src="/common/utils.js"></script>
      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')]/.." />
     10  </head>
     11  <body>
     12    <div id="log"></div>
     13    <script>
     14      test(function() {
     15        var client = new XMLHttpRequest(),
     16          urlstart = location.host + location.pathname.replace(/\/[^\/]*$/, '/'),
     17          user = token()
     18        client.open("GET", location.protocol+'//'+urlstart + "resources/auth11/auth.py", false, user, 'pass')
     19        client.setRequestHeader("x-user", user)
     20        client.send(null)
     21        // Repeat request but *without* credentials in the open() call.
     22        // Is the UA supposed to cache credentials from above request and use them? Yes.
     23        client.open("GET", location.protocol+'//'+urlstart + "resources/auth11/auth.py", false)
     24        client.setRequestHeader("x-user", user)
     25        client.send(null)
     26 
     27        assert_equals(client.responseText, user + "\n" + 'pass')
     28        //assert_equals(client.getResponseHeader('x-challenge'), 'DID-NOT')
     29 
     30      }, document.title)
     31    </script>
     32  </body>
     33 </html>