summaryrefslogtreecommitdiffstats
path: root/toolkit/components/places/tests/queries/test_results-as-visit.js
blob: 256e756c9827d4d9f9475294c68c06bd1dc14bca (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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
/* vim:set ts=2 sw=2 sts=2 et: */
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
var testData = [];
var timeInMicroseconds = PlacesUtils.toPRTime(Date.now() - 10000);

function newTimeInMicroseconds() {
  timeInMicroseconds = timeInMicroseconds + 1000;
  return timeInMicroseconds;
}

function createTestData() {
  function generateVisits(aPage) {
    for (var i = 0; i < aPage.visitCount; i++) {
      testData.push({
        isInQuery: aPage.inQuery,
        isVisit: true,
        title: aPage.title,
        uri: aPage.uri,
        lastVisit: newTimeInMicroseconds(),
        isTag: aPage.tags && !!aPage.tags.length,
        tagArray: aPage.tags,
      });
    }
  }

  var pages = [
    {
      uri: "http://foo.com/",
      title: "amo",
      tags: ["moz"],
      visitCount: 3,
      inQuery: false,
    },
    {
      uri: "http://moilla.com/",
      title: "bMoz",
      tags: ["bugzilla"],
      visitCount: 5,
      inQuery: true,
    },
    {
      uri: "http://foo.mail.com/changeme1.html",
      title: "c Moz",
      visitCount: 7,
      inQuery: true,
    },
    {
      uri: "http://foo.mail.com/changeme2.html",
      tags: ["moz"],
      title: "",
      visitCount: 1,
      inQuery: false,
    },
    {
      uri: "http://foo.mail.com/changeme3.html",
      title: "zydeco",
      visitCount: 5,
      inQuery: false,
    },
  ];
  pages.forEach(generateVisits);
}

/**
 * This test will test Queries that use relative search terms and URI options
 */
add_task(async function test_results_as_visit() {
  createTestData();
  await task_populateDB(testData);
  var query = PlacesUtils.history.getNewQuery();
  query.searchTerms = "moz";
  query.minVisits = 2;

  // Options
  var options = PlacesUtils.history.getNewQueryOptions();
  options.sortingMode = options.SORT_BY_VISITCOUNT_ASCENDING;
  options.resultType = options.RESULTS_AS_VISIT;

  // Results
  var result = PlacesUtils.history.executeQuery(query, options);
  var root = result.root;
  root.containerOpen = true;

  info("Number of items in result set: " + root.childCount);
  for (let i = 0; i < root.childCount; ++i) {
    info(
      "result: " + root.getChild(i).uri + " Title: " + root.getChild(i).title
    );
  }

  // Check our inital result set
  compareArrayToResult(testData, root);

  // If that passes, check liveupdate
  // Add to the query set
  info("Adding item to query");
  var tmp = [];
  for (let i = 0; i < 2; i++) {
    tmp.push({
      isVisit: true,
      uri: "http://foo.com/added.html",
      title: "ab moz",
    });
  }
  await task_populateDB(tmp);
  for (let i = 0; i < 2; i++) {
    Assert.equal(root.getChild(i).title, "ab moz");
  }

  // Update an existing URI
  info("Updating Item");
  var change2 = [
    { isVisit: true, title: "moz", uri: "http://foo.mail.com/changeme2.html" },
  ];
  await task_populateDB(change2);
  Assert.ok(nodeInResult(change2, root));

  // Update some visits - add one and take one out of query set, and simply
  // change one so that it still applies to the query.
  info("Updating More Items");
  var change3 = [
    {
      isVisit: true,
      lastVisit: newTimeInMicroseconds(),
      uri: "http://foo.mail.com/changeme1.html",
      title: "foo",
    },
    {
      isVisit: true,
      lastVisit: newTimeInMicroseconds(),
      uri: "http://foo.mail.com/changeme3.html",
      title: "moz",
      isTag: true,
      tagArray: ["foo", "moz"],
    },
  ];
  await task_populateDB(change3);
  Assert.ok(!nodeInResult({ uri: "http://foo.mail.com/changeme1.html" }, root));
  Assert.ok(nodeInResult({ uri: "http://foo.mail.com/changeme3.html" }, root));

  // And now, delete one
  info("Delete item outside of batch");
  var change4 = [
    {
      isVisit: true,
      lastVisit: newTimeInMicroseconds(),
      uri: "http://moilla.com/",
      title: "mo,z",
    },
  ];
  await task_populateDB(change4);
  Assert.ok(!nodeInResult(change4, root));

  root.containerOpen = false;
});