summaryrefslogtreecommitdiffstats
path: root/toolkit/components/places/tests/legacy/test_protectRoots.js
blob: f6a7fd0fe89df93ec728611bd0b28f0121b7ef56 (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 PlacesTestUtils.promiseItemId(guid);

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