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

function run_test()
{
  run_next_test();
}

add_task(function* test_execute()
{
  var referrer = uri("about:blank");

  // add a http:// uri
  var uri1 = uri("http://mozilla.com");
  yield PlacesTestUtils.addVisits({uri: uri1, referrer: referrer});
  do_check_guid_for_uri(uri1);
  do_check_true(yield promiseIsURIVisited(uri1));

  // add a https:// uri
  var uri2 = uri("https://etrade.com");
  yield PlacesTestUtils.addVisits({uri: uri2, referrer: referrer});
  do_check_guid_for_uri(uri2);
  do_check_true(yield promiseIsURIVisited(uri2));

  // add a ftp:// uri
  var uri3 = uri("ftp://ftp.mozilla.org");
  yield PlacesTestUtils.addVisits({uri: uri3, referrer: referrer});
  do_check_guid_for_uri(uri3);
  do_check_true(yield promiseIsURIVisited(uri3));

  // check if a nonexistent uri is visited
  var uri4 = uri("http://foobarcheese.com");
  do_check_false(yield promiseIsURIVisited(uri4));

  // check that certain schemes never show up as visited
  // even if we attempt to add them to history
  // see CanAddURI() in nsNavHistory.cpp
  const URLS = [
    "about:config",
    "imap://cyrus.andrew.cmu.edu/archive.imap",
    "news://new.mozilla.org/mozilla.dev.apps.firefox",
    "mailbox:Inbox",
    "moz-anno:favicon:http://mozilla.org/made-up-favicon",
    "view-source:http://mozilla.org",
    "chrome://browser/content/browser.xul",
    "resource://gre-resources/hiddenWindow.html",
    "data:,Hello%2C%20World!",
    "wyciwyg:/0/http://mozilla.org",
    "javascript:alert('hello wolrd!');",
    "http://localhost/" + "a".repeat(1984),
  ];
  for (let currentURL of URLS) {
    try {
      var cantAddUri = uri(currentURL);
    }
    catch (e) {
      // nsIIOService.newURI() can throw if e.g. our app knows about imap://
      // but the account is not set up and so the URL is invalid for us.
      // Note this in the log but ignore as it's not the subject of this test.
      do_print("Could not construct URI for '" + currentURL + "'; ignoring");
    }
    if (cantAddUri) {
      PlacesTestUtils.addVisits({uri: cantAddUri, referrer: referrer}).then(() => {
        do_throw("Should not have added history for invalid URI.");
      }, error => {
        do_check_true(error.message.includes("No items were added to history"));
      });
      do_check_false(yield promiseIsURIVisited(cantAddUri));
    }
  }
});