summaryrefslogtreecommitdiffstats
path: root/toolkit/components/url-classifier/tests/unit/test_addsub.js
blob: f58a02506f01638b3ce31cb822f29b086472c1e9 (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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
function doTest(updates, assertions) {
  doUpdateTest(updates, assertions, runNextTest, updateError);
}

// Test an add of two urls to a fresh database
function testSimpleAdds() {
  var addUrls = ["foo.com/a", "foo.com/b", "bar.com/c"];
  var update = buildPhishingUpdate([{ chunkNum: 1, urls: addUrls }]);

  var assertions = {
    tableData: "test-phish-simple;a:1",
    urlsExist: addUrls,
  };

  doTest([update], assertions);
}

// Same as testSimpleAdds, but make the same-domain URLs come from different
// chunks.
function testMultipleAdds() {
  var add1Urls = ["foo.com/a", "bar.com/c"];
  var add2Urls = ["foo.com/b"];

  var update = buildPhishingUpdate([
    { chunkNum: 1, urls: add1Urls },
    { chunkNum: 2, urls: add2Urls },
  ]);
  var assertions = {
    tableData: "test-phish-simple;a:1-2",
    urlsExist: add1Urls.concat(add2Urls),
  };

  doTest([update], assertions);
}

// Test that a sub will remove an existing add
function testSimpleSub() {
  var addUrls = ["foo.com/a", "bar.com/b"];
  var subUrls = ["1:foo.com/a"];

  var addUpdate = buildPhishingUpdate([
    {
      chunkNum: 1, // adds and subtracts don't share a chunk numbering space
      urls: addUrls,
    },
  ]);

  var subUpdate = buildPhishingUpdate([
    { chunkNum: 50, chunkType: "s", urls: subUrls },
  ]);

  var assertions = {
    tableData: "test-phish-simple;a:1:s:50",
    urlsExist: ["bar.com/b"],
    urlsDontExist: ["foo.com/a"],
    subsDontExist: ["foo.com/a"],
  };

  doTest([addUpdate, subUpdate], assertions);
}

// Same as testSimpleSub(), but the sub comes in before the add.
function testSubEmptiesAdd() {
  var subUrls = ["1:foo.com/a"];
  var addUrls = ["foo.com/a", "bar.com/b"];

  var subUpdate = buildPhishingUpdate([
    { chunkNum: 50, chunkType: "s", urls: subUrls },
  ]);

  var addUpdate = buildPhishingUpdate([{ chunkNum: 1, urls: addUrls }]);

  var assertions = {
    tableData: "test-phish-simple;a:1:s:50",
    urlsExist: ["bar.com/b"],
    urlsDontExist: ["foo.com/a"],
    subsDontExist: ["foo.com/a"], // this sub was found, it shouldn't exist anymore
  };

  doTest([subUpdate, addUpdate], assertions);
}

// Very similar to testSubEmptiesAdd, except that the domain entry will
// still have an item left over that needs to be synced.
function testSubPartiallyEmptiesAdd() {
  var subUrls = ["1:foo.com/a"];
  var addUrls = ["foo.com/a", "foo.com/b", "bar.com/b"];

  var subUpdate = buildPhishingUpdate([
    { chunkNum: 1, chunkType: "s", urls: subUrls },
  ]);

  var addUpdate = buildPhishingUpdate([
    {
      chunkNum: 1, // adds and subtracts don't share a chunk numbering space
      urls: addUrls,
    },
  ]);

  var assertions = {
    tableData: "test-phish-simple;a:1:s:1",
    urlsExist: ["foo.com/b", "bar.com/b"],
    urlsDontExist: ["foo.com/a"],
    subsDontExist: ["foo.com/a"], // this sub was found, it shouldn't exist anymore
  };

  doTest([subUpdate, addUpdate], assertions);
}

// We SHOULD be testing that pending subs are removed using
// subsDontExist assertions.  Since we don't have a good interface for getting
// at sub entries, we'll verify it by side-effect.  Subbing a url once
// then adding it twice should leave the url intact.
function testPendingSubRemoved() {
  var subUrls = ["1:foo.com/a", "2:foo.com/b"];
  var addUrls = ["foo.com/a", "foo.com/b"];

  var subUpdate = buildPhishingUpdate([
    { chunkNum: 1, chunkType: "s", urls: subUrls },
  ]);

  var addUpdate1 = buildPhishingUpdate([
    {
      chunkNum: 1, // adds and subtracts don't share a chunk numbering space
      urls: addUrls,
    },
  ]);

  var addUpdate2 = buildPhishingUpdate([{ chunkNum: 2, urls: addUrls }]);

  var assertions = {
    tableData: "test-phish-simple;a:1-2:s:1",
    urlsExist: ["foo.com/a", "foo.com/b"],
    subsDontExist: ["foo.com/a", "foo.com/b"], // this sub was found, it shouldn't exist anymore
  };

  doTest([subUpdate, addUpdate1, addUpdate2], assertions);
}

// Make sure that a saved sub is removed when the sub chunk is expired.
function testPendingSubExpire() {
  var subUrls = ["1:foo.com/a", "1:foo.com/b"];
  var addUrls = ["foo.com/a", "foo.com/b"];

  var subUpdate = buildPhishingUpdate([
    { chunkNum: 1, chunkType: "s", urls: subUrls },
  ]);

  var expireUpdate = buildPhishingUpdate([{ chunkNum: 1, chunkType: "sd" }]);

  var addUpdate = buildPhishingUpdate([
    {
      chunkNum: 1, // adds and subtracts don't share a chunk numbering space
      urls: addUrls,
    },
  ]);

  var assertions = {
    tableData: "test-phish-simple;a:1",
    urlsExist: ["foo.com/a", "foo.com/b"],
    subsDontExist: ["foo.com/a", "foo.com/b"], // this sub was expired
  };

  doTest([subUpdate, expireUpdate, addUpdate], assertions);
}

// Make sure that the sub url removes from only the chunk that it specifies
function testDuplicateAdds() {
  var urls = ["foo.com/a"];

  var addUpdate1 = buildPhishingUpdate([{ chunkNum: 1, urls }]);
  var addUpdate2 = buildPhishingUpdate([{ chunkNum: 2, urls }]);
  var subUpdate = buildPhishingUpdate([
    { chunkNum: 3, chunkType: "s", urls: ["2:foo.com/a"] },
  ]);

  var assertions = {
    tableData: "test-phish-simple;a:1-2:s:3",
    urlsExist: ["foo.com/a"],
    subsDontExist: ["foo.com/a"],
  };

  doTest([addUpdate1, addUpdate2, subUpdate], assertions);
}

// Tests a sub which matches some existing adds but leaves others.
function testSubPartiallyMatches() {
  var addUrls = ["1:foo.com/a", "2:foo.com/b"];

  var addUpdate = buildPhishingUpdate([{ chunkNum: 1, urls: addUrls }]);

  var subUpdate = buildPhishingUpdate([
    { chunkNum: 1, chunkType: "s", urls: addUrls },
  ]);

  var assertions = {
    tableData: "test-phish-simple;a:1:s:1",
    urlsDontExist: ["foo.com/a"],
    subsDontExist: ["foo.com/a"],
    subsExist: ["foo.com/b"],
  };

  doTest([addUpdate, subUpdate], assertions);
}

// XXX: because subsExist isn't actually implemented, this is the same
// test as above but with a second add chunk that should fail to be added
// because of a pending sub chunk.
function testSubPartiallyMatches2() {
  var addUrls = ["foo.com/a"];
  var subUrls = ["1:foo.com/a", "2:foo.com/b"];
  var addUrls2 = ["foo.com/b"];

  var addUpdate = buildPhishingUpdate([{ chunkNum: 1, urls: addUrls }]);

  var subUpdate = buildPhishingUpdate([
    { chunkNum: 1, chunkType: "s", urls: subUrls },
  ]);

  var addUpdate2 = buildPhishingUpdate([{ chunkNum: 2, urls: addUrls2 }]);

  var assertions = {
    tableData: "test-phish-simple;a:1-2:s:1",
    urlsDontExist: ["foo.com/a", "foo.com/b"],
    subsDontExist: ["foo.com/a", "foo.com/b"],
  };

  doTest([addUpdate, subUpdate, addUpdate2], assertions);
}

// Verify that two subs for the same domain but from different chunks
// match (tests that existing sub entries are properly updated)
function testSubsDifferentChunks() {
  var subUrls1 = ["3:foo.com/a"];
  var subUrls2 = ["3:foo.com/b"];

  var addUrls = ["foo.com/a", "foo.com/b", "foo.com/c"];

  var subUpdate1 = buildPhishingUpdate([
    { chunkNum: 1, chunkType: "s", urls: subUrls1 },
  ]);
  var subUpdate2 = buildPhishingUpdate([
    { chunkNum: 2, chunkType: "s", urls: subUrls2 },
  ]);
  var addUpdate = buildPhishingUpdate([{ chunkNum: 3, urls: addUrls }]);

  var assertions = {
    tableData: "test-phish-simple;a:3:s:1-2",
    urlsExist: ["foo.com/c"],
    urlsDontExist: ["foo.com/a", "foo.com/b"],
    subsDontExist: ["foo.com/a", "foo.com/b"],
  };

  doTest([subUpdate1, subUpdate2, addUpdate], assertions);
}

// for bug 534079
function testSubsDifferentChunksSameHostId() {
  var subUrls1 = ["1:foo.com/a"];
  var subUrls2 = ["1:foo.com/b", "2:foo.com/c"];

  var addUrls = ["foo.com/a", "foo.com/b"];
  var addUrls2 = ["foo.com/c"];

  var subUpdate1 = buildPhishingUpdate([
    { chunkNum: 1, chunkType: "s", urls: subUrls1 },
  ]);
  var subUpdate2 = buildPhishingUpdate([
    { chunkNum: 2, chunkType: "s", urls: subUrls2 },
  ]);

  var addUpdate = buildPhishingUpdate([{ chunkNum: 1, urls: addUrls }]);
  var addUpdate2 = buildPhishingUpdate([{ chunkNum: 2, urls: addUrls2 }]);

  var assertions = {
    tableData: "test-phish-simple;a:1-2:s:1-2",
    urlsDontExist: ["foo.com/c", "foo.com/b", "foo.com/a"],
  };

  doTest([addUpdate, addUpdate2, subUpdate1, subUpdate2], assertions);
}

// Test lists of expired chunks
function testExpireLists() {
  var addUpdate = buildPhishingUpdate([
    { chunkNum: 1, urls: ["foo.com/a"] },
    { chunkNum: 3, urls: ["bar.com/a"] },
    { chunkNum: 4, urls: ["baz.com/a"] },
    { chunkNum: 5, urls: ["blah.com/a"] },
  ]);
  var subUpdate = buildPhishingUpdate([
    { chunkNum: 1, chunkType: "s", urls: ["50:foo.com/1"] },
    { chunkNum: 2, chunkType: "s", urls: ["50:bar.com/1"] },
    { chunkNum: 3, chunkType: "s", urls: ["50:baz.com/1"] },
    { chunkNum: 5, chunkType: "s", urls: ["50:blah.com/1"] },
  ]);

  var expireUpdate = buildPhishingUpdate([
    { chunkType: "ad:1,3-5" },
    { chunkType: "sd:1-3,5" },
  ]);

  var assertions = {
    //    "tableData" : "test-phish-simple;"
    tableData: "",
  };

  doTest([addUpdate, subUpdate, expireUpdate], assertions);
}

function run_test() {
  runTests([
    testSimpleAdds,
    testMultipleAdds,
    testSimpleSub,
    testSubEmptiesAdd,
    testSubPartiallyEmptiesAdd,
    testPendingSubRemoved,
    testPendingSubExpire,
    testDuplicateAdds,
    testSubPartiallyMatches,
    testSubPartiallyMatches2,
    testSubsDifferentChunks,
    testSubsDifferentChunksSameHostId,
    testExpireLists,
  ]);
}

do_test_pending();