-
Notifications
You must be signed in to change notification settings - Fork 54
/
test_412132.js
139 lines (108 loc) · 4.15 KB
/
test_412132.js
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
/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
/* vim:set ts=2 sw=2 sts=2 et: */
/* 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/. */
/*
* TEST DESCRIPTION:
*
* Tests patch to Bug 412132:
* https://bugzilla.mozilla.org/show_bug.cgi?id=412132
*/
const TEST_URL0 = "http://example.com/";
const TEST_URL1 = "http://example.com/1";
const TEST_URL2 = "http://example.com/2";
add_task(async function changeuri_unvisited_bookmark() {
info("After changing URI of bookmark, frecency of bookmark's " +
"original URI should be zero if original URI is unvisited and " +
"no longer bookmarked.");
let bookmark = await PlacesUtils.bookmarks.insert({
parentGuid: PlacesUtils.bookmarks.unfiledGuid,
title: "bookmark title",
url: TEST_URL1,
});
await PlacesTestUtils.promiseAsyncUpdates();
Assert.notEqual(frecencyForUrl(TEST_URL1), 0,
"Bookmarked => frecency of URI should be != 0");
await PlacesUtils.bookmarks.update({
guid: bookmark.guid,
url: TEST_URL2,
});
await PlacesTestUtils.promiseAsyncUpdates();
Assert.equal(frecencyForUrl(TEST_URL1), 0,
"Unvisited URI no longer bookmarked => frecency should = 0");
await PlacesUtils.bookmarks.eraseEverything();
await PlacesUtils.history.clear();
});
add_task(async function changeuri_visited_bookmark() {
info("After changing URI of bookmark, frecency of bookmark's " +
"original URI should not be zero if original URI is visited.");
let bookmark = await PlacesUtils.bookmarks.insert({
parentGuid: PlacesUtils.bookmarks.unfiledGuid,
title: "bookmark title",
url: TEST_URL1,
});
await PlacesTestUtils.promiseAsyncUpdates();
Assert.notEqual(frecencyForUrl(TEST_URL1), 0,
"Bookmarked => frecency of URI should be != 0");
await PlacesTestUtils.addVisits(TEST_URL1);
await PlacesTestUtils.promiseAsyncUpdates();
await PlacesUtils.bookmarks.update({
guid: bookmark.guid,
url: TEST_URL2,
});
await PlacesTestUtils.promiseAsyncUpdates();
Assert.notEqual(frecencyForUrl(TEST_URL1), 0,
"*Visited* URI no longer bookmarked => frecency should != 0");
await PlacesUtils.bookmarks.eraseEverything();
await PlacesUtils.history.clear();
});
add_task(async function changeuri_bookmark_still_bookmarked() {
info("After changing URI of bookmark, frecency of bookmark's " +
"original URI should not be zero if original URI is still " +
"bookmarked.");
let bookmark = await PlacesUtils.bookmarks.insert({
parentGuid: PlacesUtils.bookmarks.unfiledGuid,
title: "bookmark 1 title",
url: TEST_URL1,
});
await PlacesUtils.bookmarks.insert({
parentGuid: PlacesUtils.bookmarks.unfiledGuid,
title: "bookmark 2 title",
url: TEST_URL1,
});
await PlacesTestUtils.promiseAsyncUpdates();
Assert.notEqual(frecencyForUrl(TEST_URL1), 0,
"Bookmarked => frecency of URI should be != 0");
await PlacesUtils.bookmarks.update({
guid: bookmark.guid,
url: TEST_URL2,
});
await PlacesTestUtils.promiseAsyncUpdates();
info("URI still bookmarked => frecency should != 0");
Assert.notEqual(frecencyForUrl(TEST_URL2), 0);
await PlacesUtils.bookmarks.eraseEverything();
await PlacesUtils.history.clear();
});
add_task(async function changeuri_nonexistent_bookmark() {
// Try a bogus guid.
await Assert.rejects(PlacesUtils.bookmarks.update({
guid: "ABCDEDFGHIJK",
url: TEST_URL2,
}), /No bookmarks found for the provided GUID/,
"Changing the URI of a non-existent bookmark should fail.");
// Now add a bookmark, delete it, and check.
let bookmark = await PlacesUtils.bookmarks.insert({
parentGuid: PlacesUtils.bookmarks.unfiledGuid,
title: "bookmark title",
url: TEST_URL0,
});
await PlacesUtils.bookmarks.remove(bookmark.guid);
await Assert.rejects(PlacesUtils.bookmarks.update({
guid: bookmark.guid,
url: TEST_URL2,
}), /No bookmarks found for the provided GUID/,
"Changing the URI of a non-existent bookmark should fail.");
await PlacesUtils.bookmarks.eraseEverything();
await PlacesUtils.history.clear();
});