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
|
/* -*- 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/. */
/**
* Check for correct functionality of PlacesUtils.setAnnotationsForItem/URI
*/
var hs = PlacesUtils.history;
var bs = PlacesUtils.bookmarks;
var as = PlacesUtils.annotations;
const TEST_URL = "http://test.mozilla.org/";
function run_test() {
var testURI = uri(TEST_URL);
// add a bookmark
var itemId = bs.insertBookmark(bs.unfiledBookmarksFolder, testURI,
bs.DEFAULT_INDEX, "test");
// create annotations array
var testAnnos = [{ name: "testAnno/test0",
flags: 0,
value: "test0",
expires: Ci.nsIAnnotationService.EXPIRE_NEVER },
{ name: "testAnno/test1",
flags: 0,
value: "test1",
expires: Ci.nsIAnnotationService.EXPIRE_NEVER },
{ name: "testAnno/test2",
flags: 0,
value: "test2",
expires: Ci.nsIAnnotationService.EXPIRE_NEVER },
{ name: "testAnno/test3",
flags: 0,
value: 0,
expires: Ci.nsIAnnotationService.EXPIRE_NEVER }];
// Add item annotations
PlacesUtils.setAnnotationsForItem(itemId, testAnnos);
// Check for correct addition
testAnnos.forEach(function(anno) {
do_check_true(as.itemHasAnnotation(itemId, anno.name));
do_check_eq(as.getItemAnnotation(itemId, anno.name), anno.value);
});
// Add page annotations
PlacesUtils.setAnnotationsForURI(testURI, testAnnos);
// Check for correct addition
testAnnos.forEach(function(anno) {
do_check_true(as.pageHasAnnotation(testURI, anno.name));
do_check_eq(as.getPageAnnotation(testURI, anno.name), anno.value);
});
// To unset annotations we unset their values or set them to
// null/undefined
testAnnos[0].value = null;
testAnnos[1].value = undefined;
delete testAnnos[2].value;
delete testAnnos[3].value;
// Unset all item annotations
PlacesUtils.setAnnotationsForItem(itemId, testAnnos);
// Check for correct removal
testAnnos.forEach(function(anno) {
do_check_false(as.itemHasAnnotation(itemId, anno.name));
// sanity: page annotations should not be removed here
do_check_true(as.pageHasAnnotation(testURI, anno.name));
});
// Unset all page annotations
PlacesUtils.setAnnotationsForURI(testURI, testAnnos);
// Check for correct removal
testAnnos.forEach(function(anno) {
do_check_false(as.pageHasAnnotation(testURI, anno.name));
});
}
|