summaryrefslogtreecommitdiffstats
path: root/browser/components/places/tests/browser/browser_library_downloads.js
blob: 3aa37b1fed3a836a90697d0b899a19ab7118a97e (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
/* 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/. */

/*
 * Tests bug 564900: Add folder specifically for downloads to Library left pane.
 * https://bugzilla.mozilla.org/show_bug.cgi?id=564900
 * This test visits various pages then opens the Library and ensures
 * that both the Downloads folder shows up and that the correct visits
 * are shown in it.
 */

add_task(async function test() {
  // Add visits.
  await PlacesTestUtils.addVisits([
    {
      uri: "http://mozilla.org",
      transition: PlacesUtils.history.TRANSITION_TYPED,
    },
    {
      uri: "http://google.com",
      transition: PlacesUtils.history.TRANSITION_DOWNLOAD,
    },
    {
      uri: "http://en.wikipedia.org",
      transition: PlacesUtils.history.TRANSITION_TYPED,
    },
    {
      uri: "http://ubuntu.org",
      transition: PlacesUtils.history.TRANSITION_DOWNLOAD,
    },
  ]);

  let library = await promiseLibrary("Downloads");

  registerCleanupFunction(async () => {
    await library.close();
    await PlacesUtils.history.clear();
  });

  // Make sure Downloads is present.
  Assert.notEqual(
    library.PlacesOrganizer._places.selectedNode,
    null,
    "Downloads is present and selected"
  );

  // Check results.
  let testURIs = ["http://ubuntu.org/", "http://google.com/"];

  await TestUtils.waitForCondition(
    () =>
      library.ContentArea.currentView.associatedElement.itemChildren.length ==
      testURIs.length
  );

  for (let element of library.ContentArea.currentView.associatedElement
    .itemChildren) {
    Assert.equal(
      element._shell.download.source.url,
      testURIs.shift(),
      "URI matches"
    );
  }
});