summaryrefslogtreecommitdiffstats
path: root/browser/components/places/tests/browser/browser_library_downloads.js
diff options
context:
space:
mode:
Diffstat (limited to 'browser/components/places/tests/browser/browser_library_downloads.js')
-rw-r--r--browser/components/places/tests/browser/browser_library_downloads.js65
1 files changed, 65 insertions, 0 deletions
diff --git a/browser/components/places/tests/browser/browser_library_downloads.js b/browser/components/places/tests/browser/browser_library_downloads.js
new file mode 100644
index 0000000000..3aa37b1fed
--- /dev/null
+++ b/browser/components/places/tests/browser/browser_library_downloads.js
@@ -0,0 +1,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"
+ );
+ }
+});