summaryrefslogtreecommitdiffstats
path: root/browser/components/privatebrowsing/test/browser/browser_privatebrowsing_certexceptionsui.js
blob: 9b796613a91dc0111568d97416d33ea06cf51883 (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
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

// This test makes sure that certificate exceptions UI behaves correctly
// in private browsing windows, based on whether it's opened from the prefs
// window or from the SSL error page (see bug 461627).

function test() {
  const EXCEPTIONS_DLG_URL = "chrome://pippki/content/exceptionDialog.xhtml";
  const EXCEPTIONS_DLG_FEATURES = "chrome,centerscreen";
  const INVALID_CERT_LOCATION = "https://nocert.example.com/";
  waitForExplicitFinish();

  // open a private browsing window
  var pbWin = OpenBrowserWindow({ private: true });
  pbWin.addEventListener(
    "load",
    function () {
      doTest();
    },
    { once: true }
  );

  // Test the certificate exceptions dialog
  function doTest() {
    let params = {
      exceptionAdded: false,
      location: INVALID_CERT_LOCATION,
      prefetchCert: true,
    };
    function testCheckbox() {
      win.removeEventListener("load", testCheckbox);
      Services.obs.addObserver(function onCertUI(aSubject, aTopic, aData) {
        Services.obs.removeObserver(onCertUI, "cert-exception-ui-ready");
        ok(win.gCert, "The certificate information should be available now");

        let checkbox = win.document.getElementById("permanent");
        ok(
          checkbox.hasAttribute("disabled"),
          "the permanent checkbox should be disabled when handling the private browsing mode"
        );
        ok(
          !checkbox.hasAttribute("checked"),
          "the permanent checkbox should not be checked when handling the private browsing mode"
        );
        win.close();
        cleanup();
      }, "cert-exception-ui-ready");
    }
    var win = pbWin.openDialog(
      EXCEPTIONS_DLG_URL,
      "",
      EXCEPTIONS_DLG_FEATURES,
      params
    );
    win.addEventListener("load", testCheckbox);
  }

  function cleanup() {
    // close the private browsing window
    pbWin.close();
    finish();
  }
}