summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/xhr/access-control-and-redirects.any.js
blob: 815d345c0f095e51cc1d612dc6d1647d6fc29ad9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
// META: title=Tests that redirects between origins are allowed when access control is involved.
// META: script=/common/get-host-info.sub.js

    function runSync(test, url)
    {
      const xhr = new XMLHttpRequest();
      xhr.open("GET", url, false);
      xhr.send();
      assert_equals(xhr.responseText, "PASS: Cross-domain access allowed.");
      test.done();
    }
    function runAsync(test, url)
    {
      const xhr = new XMLHttpRequest();
      xhr.open("GET", url, true);
      xhr.onload = test.step_func_done(function() {
        assert_equals(xhr.responseText, "PASS: Cross-domain access allowed.");
      });
      xhr.onerror = test.unreached_func("Network error");
      xhr.send();
      test.done();
    }
    test(t => {
      runSync(t, "resources/redirect-cors.py?location=" + get_host_info().HTTP_REMOTE_ORIGIN +
          "/xhr/resources/access-control-basic-allow.py")
    }, "Local sync redirect to remote origin");
    async_test(t => {
      runAsync(t, "resources/redirect-cors.py?location=" + get_host_info().HTTP_REMOTE_ORIGIN +
          "/xhr/resources/access-control-basic-allow.py")
    }, "Local async redirect to remote origin");
    test(t => {
      runSync(t, get_host_info().HTTP_REMOTE_ORIGIN +
          "/xhr/resources/redirect-cors.py?location=" + get_host_info().HTTP_ORIGIN +
          "/xhr/resources/access-control-basic-allow.py&allow_origin=true")
    }, "Remote sync redirect to local origin");
    async_test(t => {
      runAsync(t, get_host_info().HTTP_REMOTE_ORIGIN +
          "/xhr/resources/redirect-cors.py?location=" + get_host_info().HTTP_ORIGIN +
          "/xhr/resources/access-control-basic-allow.py&allow_origin=true")
    }, "Remote async redirect to local origin");
    test(t => {
      runSync(t, get_host_info().HTTP_REMOTE_ORIGIN +
          "/xhr/resources/redirect-cors.py?location=" + get_host_info().HTTP_REMOTE_ORIGIN +
          "/xhr/resources/access-control-basic-allow.py&allow_origin=true")
    }, "Remote sync redirect to same remote origin");
    async_test(t => {
      runAsync(t, get_host_info().HTTP_REMOTE_ORIGIN +
          "/xhr/resources/redirect-cors.py?location=" + get_host_info().HTTP_REMOTE_ORIGIN +
          "/xhr/resources/access-control-basic-allow.py&allow_origin=true")
    }, "Remote async redirect to same remote origin");