зеркало из https://github.com/mozilla/gecko-dev.git
Bug 573679 - Fix tests to pass on trunk
Create a bookmark so that the url will exist when setting annotations.
This commit is contained in:
Родитель
666b6ac9de
Коммит
8239271894
|
@ -6,17 +6,22 @@ function run_test() {
|
||||||
Utils.anno(1, "anno", "hi");
|
Utils.anno(1, "anno", "hi");
|
||||||
do_check_eq(Utils.anno(1, "anno"), "hi");
|
do_check_eq(Utils.anno(1, "anno"), "hi");
|
||||||
|
|
||||||
|
_("create a bookmark to a url so it exists");
|
||||||
|
let url = "about:";
|
||||||
|
let bmkid = Svc.Bookmark.insertBookmark(Svc.Bookmark.unfiledBookmarksFolder,
|
||||||
|
Utils.makeURI(url), -1, "");
|
||||||
|
|
||||||
_("set an anno on a url");
|
_("set an anno on a url");
|
||||||
Utils.anno("about:", "tation", "hello");
|
Utils.anno(url, "tation", "hello");
|
||||||
do_check_eq(Utils.anno("about:", "tation"), "hello");
|
do_check_eq(Utils.anno(url, "tation"), "hello");
|
||||||
|
|
||||||
_("make sure getting it also works with a nsIURI");
|
_("make sure getting it also works with a nsIURI");
|
||||||
let uri = Utils.makeURI("about:");
|
let uri = Utils.makeURI(url);
|
||||||
do_check_eq(Utils.anno(uri, "tation"), "hello");
|
do_check_eq(Utils.anno(uri, "tation"), "hello");
|
||||||
|
|
||||||
_("make sure annotations get updated");
|
_("make sure annotations get updated");
|
||||||
Utils.anno(uri, "tation", "bye!");
|
Utils.anno(uri, "tation", "bye!");
|
||||||
do_check_eq(Utils.anno("about:", "tation"), "bye!");
|
do_check_eq(Utils.anno(url, "tation"), "bye!");
|
||||||
|
|
||||||
_("sanity check that the item anno is still there");
|
_("sanity check that the item anno is still there");
|
||||||
do_check_eq(Utils.anno(1, "anno"), "hi");
|
do_check_eq(Utils.anno(1, "anno"), "hi");
|
||||||
|
@ -30,4 +35,7 @@ function run_test() {
|
||||||
didThrow = true;
|
didThrow = true;
|
||||||
}
|
}
|
||||||
do_check_true(didThrow);
|
do_check_true(didThrow);
|
||||||
|
|
||||||
|
_("cleaning up the bookmark we created");
|
||||||
|
Svc.Bookmark.removeItem(bmkid);
|
||||||
}
|
}
|
||||||
|
|
Загрузка…
Ссылка в новой задаче