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
|
/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*-
* vim: sw=2 ts=2 et lcs=trail\:.,tab\:>~ :
* 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/. */
/**
* What this is aimed to test:
*
* History.clear() should expire everything but bookmarked pages and valid
* annos.
*/
add_task(async function test_historyClear() {
// Set interval to a large value so we don't expire on it.
setInterval(3600); // 1h
// Expire all expirable pages.
setMaxPages(0);
// Add some bookmarked page with visit and annotations.
for (let i = 0; i < 5; i++) {
let pageURI = uri("http://item_anno." + i + ".mozilla.org/");
// This visit will be expired.
await PlacesTestUtils.addVisits({ uri: pageURI });
await PlacesUtils.bookmarks.insert({
parentGuid: PlacesUtils.bookmarks.unfiledGuid,
url: pageURI,
title: null,
});
// Will persist because the page is bookmarked.
await PlacesUtils.history.update({
url: pageURI,
annotations: new Map([["persist", "test"]]),
});
}
// Add some visited page and annotations for each.
for (let i = 0; i < 5; i++) {
// All page annotations related to these expired pages are expected to
// expire as well.
let pageURI = uri("http://page_anno." + i + ".mozilla.org/");
await PlacesTestUtils.addVisits({ uri: pageURI });
await PlacesUtils.history.update({
url: pageURI,
annotations: new Map([["expire", "test"]]),
});
}
// Expire all visits for the bookmarks
await PlacesUtils.history.clear();
Assert.equal((await getPagesWithAnnotation("expire")).length, 0);
let pages = await getPagesWithAnnotation("persist");
Assert.equal(pages.length, 5);
});
|