-
Notifications
You must be signed in to change notification settings - Fork 54
/
test_1085291.js
47 lines (40 loc) · 1.34 KB
/
test_1085291.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
add_task(async function() {
// test that nodes inserted by incremental update for bookmarks of all types
// have the extra bookmark properties (bookmarkGuid, dateAdded, lastModified).
// getFolderContents opens the root node.
let root = PlacesUtils.getFolderContents(PlacesUtils.bookmarks.toolbarGuid)
.root;
async function insertAndTest(bmInfo) {
bmInfo = await PlacesUtils.bookmarks.insert(bmInfo);
let node = root.getChild(root.childCount - 1);
Assert.equal(node.bookmarkGuid, bmInfo.guid);
Assert.equal(node.dateAdded, bmInfo.dateAdded * 1000);
Assert.equal(node.lastModified, bmInfo.lastModified * 1000);
}
// Normal bookmark.
await insertAndTest({
parentGuid: root.bookmarkGuid,
type: PlacesUtils.bookmarks.TYPE_BOOKMARK,
title: "Test Bookmark",
url: "http://test.url.tld",
});
// place: query
await insertAndTest({
parentGuid: root.bookmarkGuid,
type: PlacesUtils.bookmarks.TYPE_BOOKMARK,
title: "Test Query",
url: `place:parent=${PlacesUtils.bookmarks.menuGuid}`,
});
// folder
await insertAndTest({
parentGuid: root.bookmarkGuid,
type: PlacesUtils.bookmarks.TYPE_FOLDER,
title: "Test Folder",
});
// separator
await insertAndTest({
parentGuid: root.bookmarkGuid,
type: PlacesUtils.bookmarks.TYPE_SEPARATOR,
});
root.containerOpen = false;
});