summaryrefslogtreecommitdiffstats
path: root/toolkit/mozapps/extensions/test/xpcshell/test_overrideblocklist.js
blob: 8a6bedea162af3328a18304c9e7df6eea2a586ba (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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
/* Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/
 */

const KEY_PROFILEDIR                  = "ProfD";
const KEY_APPDIR                      = "XCurProcD";
const FILE_BLOCKLIST                  = "blocklist.xml";

const PREF_BLOCKLIST_ENABLED          = "extensions.blocklist.enabled";

const OLD = do_get_file("data/test_overrideblocklist/old.xml");
const NEW = do_get_file("data/test_overrideblocklist/new.xml");
const ANCIENT = do_get_file("data/test_overrideblocklist/ancient.xml");
const OLD_TSTAMP = 1296046918000;
const NEW_TSTAMP = 1396046918000;

const gAppDir = FileUtils.getFile(KEY_APPDIR, []);

let oldAddon = {
  id: "old@tests.mozilla.org",
  version: 1
}
let newAddon = {
  id: "new@tests.mozilla.org",
  version: 1
}
let ancientAddon = {
  id: "ancient@tests.mozilla.org",
  version: 1
}
let invalidAddon = {
  id: "invalid@tests.mozilla.org",
  version: 1
}

function incrementAppVersion() {
  gAppInfo.version = "" + (parseInt(gAppInfo.version) + 1);
}

function clearBlocklists() {
  let blocklist = FileUtils.getFile(KEY_APPDIR, [FILE_BLOCKLIST]);
  if (blocklist.exists())
    blocklist.remove(true);

  blocklist = FileUtils.getFile(KEY_PROFILEDIR, [FILE_BLOCKLIST]);
  if (blocklist.exists())
    blocklist.remove(true);
}

function reloadBlocklist() {
  Services.prefs.setBoolPref(PREF_BLOCKLIST_ENABLED, false);
  Services.prefs.setBoolPref(PREF_BLOCKLIST_ENABLED, true);
}

function copyToApp(file) {
  file.clone().copyTo(gAppDir, FILE_BLOCKLIST);
}

function copyToProfile(file, tstamp) {
  file = file.clone();
  file.copyTo(gProfD, FILE_BLOCKLIST);
  file = gProfD.clone();
  file.append(FILE_BLOCKLIST);
  file.lastModifiedTime = tstamp;
}

function run_test() {
  createAppInfo("xpcshell@tests.mozilla.org", "XPCShell", "1", "1");

  let appBlocklist = FileUtils.getFile(KEY_APPDIR, [FILE_BLOCKLIST]);
  if (appBlocklist.exists()) {
    try {
      appBlocklist.moveTo(gAppDir, "blocklist.old");
    }
    catch (e) {
      todo(false, "Aborting test due to unmovable blocklist file: " + e);
      return;
    }
    do_register_cleanup(function() {
      clearBlocklists();
      appBlocklist.moveTo(gAppDir, FILE_BLOCKLIST);
    });
  }

  run_next_test();
}

// On first run whataver is in the app dir should get copied to the profile
add_test(function test_copy() {
  clearBlocklists();
  copyToApp(OLD);

  incrementAppVersion();
  startupManager();

  reloadBlocklist();
  let blocklist = AM_Cc["@mozilla.org/extensions/blocklist;1"].
                  getService(AM_Ci.nsIBlocklistService);
  do_check_false(blocklist.isAddonBlocklisted(invalidAddon));
  do_check_false(blocklist.isAddonBlocklisted(ancientAddon));
  do_check_true(blocklist.isAddonBlocklisted(oldAddon));
  do_check_false(blocklist.isAddonBlocklisted(newAddon));

  shutdownManager();

  run_next_test();
});

// An ancient blocklist should be ignored
add_test(function test_ancient() {
  clearBlocklists();
  copyToApp(ANCIENT);
  copyToProfile(OLD, OLD_TSTAMP);

  incrementAppVersion();
  startupManager();

  reloadBlocklist();
  let blocklist = AM_Cc["@mozilla.org/extensions/blocklist;1"].
                  getService(AM_Ci.nsIBlocklistService);
  do_check_false(blocklist.isAddonBlocklisted(invalidAddon));
  do_check_false(blocklist.isAddonBlocklisted(ancientAddon));
  do_check_true(blocklist.isAddonBlocklisted(oldAddon));
  do_check_false(blocklist.isAddonBlocklisted(newAddon));

  shutdownManager();

  run_next_test();
});

// A new blocklist should override an old blocklist
add_test(function test_override() {
  clearBlocklists();
  copyToApp(NEW);
  copyToProfile(OLD, OLD_TSTAMP);

  incrementAppVersion();
  startupManager();

  reloadBlocklist();
  let blocklist = AM_Cc["@mozilla.org/extensions/blocklist;1"].
                  getService(AM_Ci.nsIBlocklistService);
  do_check_false(blocklist.isAddonBlocklisted(invalidAddon));
  do_check_false(blocklist.isAddonBlocklisted(ancientAddon));
  do_check_false(blocklist.isAddonBlocklisted(oldAddon));
  do_check_true(blocklist.isAddonBlocklisted(newAddon));

  shutdownManager();

  run_next_test();
});

// An old blocklist shouldn't override a new blocklist
add_test(function test_retain() {
  clearBlocklists();
  copyToApp(OLD);
  copyToProfile(NEW, NEW_TSTAMP);

  incrementAppVersion();
  startupManager();

  reloadBlocklist();
  let blocklist = AM_Cc["@mozilla.org/extensions/blocklist;1"].
                  getService(AM_Ci.nsIBlocklistService);
  do_check_false(blocklist.isAddonBlocklisted(invalidAddon));
  do_check_false(blocklist.isAddonBlocklisted(ancientAddon));
  do_check_false(blocklist.isAddonBlocklisted(oldAddon));
  do_check_true(blocklist.isAddonBlocklisted(newAddon));

  shutdownManager();

  run_next_test();
});

// A missing blocklist in the profile should still load an app-shipped blocklist
add_test(function test_missing() {
  clearBlocklists();
  copyToApp(OLD);
  copyToProfile(NEW, NEW_TSTAMP);

  incrementAppVersion();
  startupManager();
  shutdownManager();

  let blocklist = FileUtils.getFile(KEY_PROFILEDIR, [FILE_BLOCKLIST]);
  blocklist.remove(true);
  startupManager(false);

  reloadBlocklist();
  blocklist = AM_Cc["@mozilla.org/extensions/blocklist;1"].
              getService(AM_Ci.nsIBlocklistService);
  do_check_false(blocklist.isAddonBlocklisted(invalidAddon));
  do_check_false(blocklist.isAddonBlocklisted(ancientAddon));
  do_check_true(blocklist.isAddonBlocklisted(oldAddon));
  do_check_false(blocklist.isAddonBlocklisted(newAddon));

  shutdownManager();

  run_next_test();
});