summaryrefslogtreecommitdiffstats
path: root/browser/components/enterprisepolicies/tests/browser/browser_policy_display_bookmarks.js
blob: 8c43cbc8e18f834c23bb0162261db865f7b47b2a (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
/* Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

// Since testing will apply the policy after the browser has already started,
// we will need to open a new window to actually see the toolbar

add_task(async function test_personaltoolbar_shown_old() {
  await setupPolicyEngineWithJson({
    policies: {
      DisplayBookmarksToolbar: true,
    },
  });
  let newWin = await BrowserTestUtils.openNewBrowserWindow();
  let menuBar = newWin.document.getElementById("PersonalToolbar");
  is(
    menuBar.getAttribute("collapsed"),
    "false",
    "The bookmarks toolbar should not be hidden"
  );

  await BrowserTestUtils.closeWindow(newWin);
});

add_task(async function test_personaltoolbar_shown() {
  await setupPolicyEngineWithJson({
    policies: {
      DisplayBookmarksToolbar: "always",
    },
  });

  let newWin = await BrowserTestUtils.openNewBrowserWindow();
  let menuBar = newWin.document.getElementById("PersonalToolbar");
  is(
    menuBar.getAttribute("collapsed"),
    "false",
    "The bookmarks toolbar should not be hidden"
  );

  await BrowserTestUtils.closeWindow(newWin);
});

add_task(async function test_personaltoolbar_hidden() {
  await setupPolicyEngineWithJson({
    policies: {
      DisplayBookmarksToolbar: "never",
    },
  });

  let newWin = await BrowserTestUtils.openNewBrowserWindow();
  let menuBar = newWin.document.getElementById("PersonalToolbar");
  is(
    menuBar.getAttribute("collapsed"),
    "true",
    "The bookmarks toolbar should be hidden"
  );

  await BrowserTestUtils.closeWindow(newWin);
});

add_task(async function test_personaltoolbar_newtabonly() {
  await setupPolicyEngineWithJson({
    policies: {
      DisplayBookmarksToolbar: "newtab",
    },
  });

  let newWin = await BrowserTestUtils.openNewBrowserWindow();
  let menuBar = newWin.document.getElementById("PersonalToolbar");
  is(
    menuBar.getAttribute("collapsed"),
    "true",
    "The bookmarks toolbar should be hidden"
  );

  await BrowserTestUtils.openNewForegroundTab(newWin.gBrowser, "about:newtab");
  menuBar = newWin.document.getElementById("PersonalToolbar");
  is(
    menuBar.getAttribute("collapsed"),
    "false",
    "The bookmarks toolbar should not be hidden"
  );

  await BrowserTestUtils.closeWindow(newWin);
});