summaryrefslogtreecommitdiffstats
path: root/toolkit/components/places/tests/bookmarks/test_1129529.js
blob: 8fa47318231a6484d68c77ee02f09fdbeba746ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Test that importing bookmark data where a bookmark has a tag longer than 100
// chars imports everything except the tags for that bookmark.
add_task(async function () {
  let bookmarksFile = PathUtils.join(
    do_get_cwd().path,
    "bookmarks_long_tag.json"
  );
  let bookmarksUrl = PathUtils.toFileURI(bookmarksFile);

  await BookmarkJSONUtils.importFromURL(bookmarksUrl);

  let [bookmarks] = await PlacesBackups.getBookmarksTree();
  let unsortedBookmarks = bookmarks.children[2].children;
  Assert.equal(unsortedBookmarks.length, 3);

  for (let i = 0; i < unsortedBookmarks.length; ++i) {
    let bookmark = unsortedBookmarks[i];
    Assert.equal(bookmark.charset, "UTF-16");
    Assert.equal(bookmark.dateAdded, 1554906792000);
    Assert.equal(bookmark.lastModified, 1554906792000);
    Assert.equal(bookmark.uri, `http://test${i}.com/`);
    Assert.equal(bookmark.tags, `tag${i}`);
  }
});