summaryrefslogtreecommitdiffstats
path: root/toolkit/components/places/tests/unit/test_536081.js
blob: 4105b09d1b424282e052f35537a1b30e97d98696 (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
/* -*- 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/. */

const TEST_URL = {
  u: "http://www.google.com/search?q=testing%3Bthis&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:en-US:unofficial&client=firefox-a",
  s: "goog",
};

add_task(async function () {
  print("Testing url: " + TEST_URL.u);
  await PlacesTestUtils.addVisits(uri(TEST_URL.u));

  let query = PlacesUtils.history.getNewQuery();
  query.searchTerms = TEST_URL.s;
  let options = PlacesUtils.history.getNewQueryOptions();

  let root = PlacesUtils.history.executeQuery(query, options).root;
  root.containerOpen = true;
  let cc = root.childCount;
  Assert.equal(cc, 1);

  print("Checking url is in the query.");
  let node = root.getChild(0);
  print("Found " + node.uri);

  Assert.ok(await PlacesTestUtils.isPageInDB(TEST_URL.u));

  root.containerOpen = false;
  await PlacesUtils.history.remove(node.uri);

  Assert.equal(false, await PlacesTestUtils.isPageInDB(TEST_URL.u));
});