summaryrefslogtreecommitdiffstats
path: root/docshell/test/chrome/test_docRedirect.xhtml
blob: 7cb61cc464d8b6632014060aa3c5d5fb221ce83d (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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="chrome://global/skin"?>
<?xml-stylesheet type="text/css" href="/tests/SimpleTest/test.css"?>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=1342989
-->
<window title="Mozilla Bug 1342989"
        xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">

  <script src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"/>

  <script type="application/javascript">
  <![CDATA[
  SimpleTest.waitForExplicitFinish();

  const WEB_PROGRESS_LISTENER_FLAGS =
      Object.keys(Ci.nsIWebProgressListener).filter(
    propName => propName.startsWith("STATE_")
  );

  function bitFlagsToNames(flags, knownNames, intf) {
    return knownNames.map( (F) => {
      return (flags & intf[F]) ? F : undefined;
    }).filter( (s) => !!s );
  }

  var progressListener = {
    add(docShell, callback) {
      this.callback = callback;
      this.docShell = docShell;
      docShell.
            QueryInterface(Ci.nsIInterfaceRequestor).
            getInterface(Ci.nsIWebProgress).
            addProgressListener(this, Ci.nsIWebProgress.NOTIFY_STATE_ALL);
    },

    finish(success) {
      this.docShell.
            QueryInterface(Ci.nsIInterfaceRequestor).
            getInterface(Ci.nsIWebProgress).
            removeProgressListener(this);
      this.callback(success);
    },

    onStateChange (webProgress, req, flags) {
      if (!(flags & Ci.nsIWebProgressListener.STATE_IS_DOCUMENT) &&
          !(flags & Ci.nsIWebProgressListener.STATE_IS_REDIRECTED_DOCUMENT))
        return;

      var channel = req.QueryInterface(Ci.nsIChannel);

      if (flags & Ci.nsIWebProgressListener.STATE_IS_REDIRECTED_DOCUMENT) {
        SimpleTest.is(channel.URI.host, "example.org",
            "Should be redirected to example.org (see test_docRedirect.sjs)");
        this.finish(true);
      }

      // Fail in case we didn't receive document redirection event.
      if (flags & Ci.nsIWebProgressListener.STATE_STOP)
        this.finish(false);
    },

    QueryInterface: ChromeUtils.generateQI([
      "nsIWebProgressListener",
      "nsISupportsWeakReference",
    ]),
  }

  var webNav = SpecialPowers.Services.appShell.createWindowlessBrowser(true);
  let docShell = webNav.docShell;
  let system = Cc["@mozilla.org/systemprincipal;1"].getService(Ci.nsIPrincipal);
  docShell.createAboutBlankDocumentViewer(system, system);

  progressListener.add(docShell, function(success) {
    webNav.close();
    SimpleTest.is(success, true, "Received document redirect event");
    SimpleTest.finish();
  });

  var win = docShell.docViewer.DOMDocument.defaultView;
  // eslint-disable-next-line @microsoft/sdl/no-insecure-url
  win.location = "http://example.com/chrome/docshell/test/chrome/test_docRedirect.sjs"

  ]]>
  </script>

  <body xmlns="http://www.w3.org/1999/xhtml">
  <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=1342989"
     target="_blank">Mozilla Bug 1342989</a>
  </body>
</window>