summaryrefslogtreecommitdiffstats
path: root/toolkit/components/places/tests/legacy/test_protectRoots.js
blob: 7c3c9d31dc807a304681532f73a2eae8925190b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */

add_task(async () => {
  const ROOTS = [
    PlacesUtils.bookmarks.rootGuid,
    ...PlacesUtils.bookmarks.userContentRoots,
    PlacesUtils.bookmarks.tagsGuid,
  ];

  for (let guid of ROOTS) {
    Assert.ok(PlacesUtils.isRootItem(guid));

    let id = await PlacesUtils.promiseItemId(guid);

    try {
      PlacesUtils.bookmarks.removeItem(id);
      do_throw("Trying to remove a root should throw");
    } catch (ex) {}
  }
});