summaryrefslogtreecommitdiffstats
path: root/toolkit/mozapps/downloads/tests/browser/browser_unknownContentType_policy.js
blob: ccb0d957bb1f1c90c601569228736c65f3db37eb (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
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

const { EnterprisePolicyTesting } = ChromeUtils.importESModule(
  "resource://testing-common/EnterprisePolicyTesting.sys.mjs"
);

const TEST_PATH = getRootDirectory(gTestPath).replace(
  "chrome://mochitests/content",
  "http://example.com"
);

/**
 * Check that policy allows certain extensions to be launched.
 */
add_task(async function test_download_jnlp_policy() {
  forcePromptForFiles("application/x-java-jnlp-file", "jnlp");
  let windowObserver = BrowserTestUtils.domWindowOpenedAndLoaded();

  let tab = await BrowserTestUtils.openNewForegroundTab({
    gBrowser,
    opening: TEST_PATH + "example.jnlp",
    waitForLoad: false,
  });
  let win = await windowObserver;

  let dialog = win.document.querySelector("dialog");
  let normalBox = win.document.getElementById("normalBox");
  let basicBox = win.document.getElementById("basicBox");
  is(normalBox.collapsed, !AppConstants.IS_ESR);
  is(basicBox.collapsed, AppConstants.IS_ESR);
  dialog.cancelDialog();
  BrowserTestUtils.removeTab(tab);

  await EnterprisePolicyTesting.setupPolicyEngineWithJson({
    policies: {
      ExemptDomainFileTypePairsFromFileTypeDownloadWarnings: [
        {
          file_extension: "jnlp",
          domains: ["example.com"],
        },
      ],
    },
  });

  windowObserver = BrowserTestUtils.domWindowOpenedAndLoaded();

  tab = await BrowserTestUtils.openNewForegroundTab({
    gBrowser,
    opening: TEST_PATH + "example.jnlp",
    waitForLoad: false,
  });
  win = await windowObserver;

  dialog = win.document.querySelector("dialog");
  normalBox = win.document.getElementById("normalBox");
  basicBox = win.document.getElementById("basicBox");
  is(normalBox.collapsed, false);
  is(basicBox.collapsed, true);
  dialog.cancelDialog();
  BrowserTestUtils.removeTab(tab);

  await EnterprisePolicyTesting.setupPolicyEngineWithJson({
    policies: {},
  });
});