summaryrefslogtreecommitdiffstats
path: root/toolkit/components/places/tests/unit/test_broken_folderShortcut_result.js
blob: b67e141e660db41e87ba8ffab9d4da5305f67985 (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
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
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */

function run_test()
{
  run_next_test();
}

add_task(function* test_execute()
{
  PlacesUtils.bookmarks.insertBookmark(
    PlacesUtils.unfiledBookmarksFolderId, NetUtil.newURI("http://1.moz.org/"),
    PlacesUtils.bookmarks.DEFAULT_INDEX, "Bookmark 1"
  );
  let id1 = PlacesUtils.bookmarks.insertBookmark(
    PlacesUtils.unfiledBookmarksFolderId, NetUtil.newURI("place:folder=1234"),
    PlacesUtils.bookmarks.DEFAULT_INDEX, "Shortcut 1"
  );
  let id2 = PlacesUtils.bookmarks.insertBookmark(
    PlacesUtils.unfiledBookmarksFolderId, NetUtil.newURI("place:folder=-1"),
    PlacesUtils.bookmarks.DEFAULT_INDEX, "Shortcut 2"
  );
  PlacesUtils.bookmarks.insertBookmark(
    PlacesUtils.unfiledBookmarksFolderId, NetUtil.newURI("http://2.moz.org/"),
    PlacesUtils.bookmarks.DEFAULT_INDEX, "Bookmark 2"
  );

  // Add also a simple visit.
  yield PlacesTestUtils.addVisits(uri(("http://3.moz.org/")));

  // Query containing a broken folder shortcuts among results.
  let query = PlacesUtils.history.getNewQuery();
  query.setFolders([PlacesUtils.unfiledBookmarksFolderId], 1);
  let options = PlacesUtils.history.getNewQueryOptions();
  let root = PlacesUtils.history.executeQuery(query, options).root;
  root.containerOpen = true;

  do_check_eq(root.childCount, 4);

  let shortcut = root.getChild(1);
  do_check_eq(shortcut.uri, "place:folder=1234");
  PlacesUtils.asContainer(shortcut);
  shortcut.containerOpen = true;
  do_check_eq(shortcut.childCount, 0);
  shortcut.containerOpen = false;
  // Remove the broken shortcut while the containing result is open.
  PlacesUtils.bookmarks.removeItem(id1);
  do_check_eq(root.childCount, 3);

  shortcut = root.getChild(1);
  do_check_eq(shortcut.uri, "place:folder=-1");
  PlacesUtils.asContainer(shortcut);
  shortcut.containerOpen = true;
  do_check_eq(shortcut.childCount, 0);
  shortcut.containerOpen = false;
  // Remove the broken shortcut while the containing result is open.
  PlacesUtils.bookmarks.removeItem(id2);
  do_check_eq(root.childCount, 2);

  root.containerOpen = false;

  // Broken folder shortcut as root node.
  query = PlacesUtils.history.getNewQuery();
  query.setFolders([1234], 1);
  options = PlacesUtils.history.getNewQueryOptions();
  root = PlacesUtils.history.executeQuery(query, options).root;
  root.containerOpen = true;
  do_check_eq(root.childCount, 0);
  root.containerOpen = false;

  // Broken folder shortcut as root node with folder=-1.
  query = PlacesUtils.history.getNewQuery();
  query.setFolders([-1], 1);
  options = PlacesUtils.history.getNewQueryOptions();
  root = PlacesUtils.history.executeQuery(query, options).root;
  root.containerOpen = true;
  do_check_eq(root.childCount, 0);
  root.containerOpen = false;
});