Backed out changeset 998cc827bfb1 due to leaks found with the added tests.

This commit is contained in:
Shawn Wilsher 2008-06-16 15:00:06 -04:00
Родитель 99bc7d409b
Коммит 6ffb1b1549
5 изменённых файлов: 127 добавлений и 87 удалений

Просмотреть файл

@ -49,6 +49,7 @@ XPCSHELL_TESTS = \
unit \
$(NULL)
DIRS += browser
DIRS += chrome
include $(topsrcdir)/config/rules.mk

Просмотреть файл

@ -0,0 +1,54 @@
#
# ***** BEGIN LICENSE BLOCK *****
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
#
# The contents of this file are subject to the Mozilla Public License Version
# 1.1 (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
# http://www.mozilla.org/MPL/
#
# Software distributed under the License is distributed on an "AS IS" basis,
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
# for the specific language governing rights and limitations under the
# License.
#
# The Original Code is Mozilla code.
#
# The Initial Developer of the Original Code is
# Mozilla Corporation.
# Portions created by the Initial Developer are Copyright (C) 2008
# the Initial Developer. All Rights Reserved.
#
# Contributor(s):
# Shawn Wilsher <me@shawnwilsher.com> (Original Author)
#
# Alternatively, the contents of this file may be used under the terms of
# either the GNU General Public License Version 2 or later (the "GPL"), or
# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
# in which case the provisions of the GPL or the LGPL are applicable instead
# of those above. If you wish to allow use of your version of this file only
# under the terms of either the GPL or the LGPL, and not to allow others to
# use your version of this file under the terms of the MPL, indicate your
# decision by deleting the provisions above and replace them with the notice
# and other provisions required by the GPL or the LGPL. If you do not delete
# the provisions above, a recipient may use your version of this file under
# the terms of any one of the MPL, the GPL or the LGPL.
#
# ***** END LICENSE BLOCK *****
DEPTH = ../../../../..
topsrcdir = @top_srcdir@
srcdir = @srcdir@
VPATH = @srcdir@
relativesrcdir = toolkit/mozapps/downloads/tests/browser
include $(DEPTH)/config/autoconf.mk
include $(topsrcdir)/config/rules.mk
_BROWSER_FILES = \
browser_bug_406857.js \
browser_bug_412360.js \
$(NULL)
libs:: $(_BROWSER_FILES)
$(INSTALL) $(foreach f,$^,"$f") $(DEPTH)/_tests/testing/mochitest/browser/$(relativesrcdir)

Просмотреть файл

@ -39,12 +39,15 @@
* retrying the download.
*/
function run_test()
function test()
{
let dm = Cc["@mozilla.org/download-manager;1"].
getService(Ci.nsIDownloadManager);
let db = dm.DBConnection;
// Empty any old downloads
db.executeSimpleSQL("DELETE FROM moz_downloads");
let stmt = db.createStatement(
"INSERT INTO moz_downloads (source, target, state, referrer) " +
"VALUES (?1, ?2, ?3, ?4)");
@ -76,22 +79,46 @@ function run_test()
{
switch (aDownload.state) {
case dm.DOWNLOAD_DOWNLOADING:
do_check_eq(aDownload.referrer.spec, referrer);
ok(aDownload.referrer.spec == referrer, "Got referrer on download");
break;
case dm.DOWNLOAD_FINISHED:
do_check_eq(aDownload.referrer.spec, referrer);
ok(aDownload.referrer.spec == referrer, "Got referrer on finish");
dm.removeListener(listener);
obs.removeObserver(testObs, DLMGR_UI_DONE);
try { file.remove(false); } catch(e) { /* stupid windows box */ }
do_test_finished();
finish();
break;
}
}
};
dm.addListener(listener);
// Retry the download, and wait.
dm.retryDownload(1);
// Close the UI if necessary
let wm = Cc["@mozilla.org/appshell/window-mediator;1"].
getService(Ci.nsIWindowMediator);
let win = wm.getMostRecentWindow("Download:Manager");
if (win) win.close();
do_test_pending();
let obs = Cc["@mozilla.org/observer-service;1"].
getService(Ci.nsIObserverService);
const DLMGR_UI_DONE = "download-manager-ui-done";
let testObs = {
observe: function(aSubject, aTopic, aData) {
if (aTopic != DLMGR_UI_DONE)
return;
// Send the enter key to Download Manager to retry the download
let win = aSubject.QueryInterface(Ci.nsIDOMWindow);
EventUtils.synthesizeKey("VK_ENTER", {}, win);
}
};
obs.addObserver(testObs, DLMGR_UI_DONE, false);
// Show the Download Manager UI
Cc["@mozilla.org/download-manager-ui;1"].
getService(Ci.nsIDownloadManagerUI).show();
waitForExplicitFinish();
}

Просмотреть файл

@ -1,5 +1,3 @@
<?xml version="1.0"?>
<!--
/* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
*
@ -36,31 +34,6 @@
*
* ***** END LICENSE BLOCK ***** */
/**
* This tests bug 412360, which caused problems when trying to save javascript
* URIs. This is not an xpcshell unit test because it triggers an assertion,
* which causes xpcshell test cases to fail.
*/
-->
<window title="Download Manager Test"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
onload="test();">
<script type="application/javascript"
src="chrome://mochikit/content/MochiKit/packed.js"/>
<script type="application/javascript"
src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"/>
<script type="application/javascript"
src="chrome://mochikit/content/tests/SimpleTest/EventUtils.js"/>
<script type="application/javascript">
<![CDATA[
const Cc = Components.classes;
const Ci = Components.interfaces;
const Cr = Components.results;
Components.utils.import("resource://gre/modules/XPCOMUtils.jsm");
let didFail = false;
@ -71,7 +44,7 @@ let promptService = {
alert: function() {
ok(didFail, "javascript: uri failed and showed a message");
file.remove(false);
SimpleTest.finish();
finish();
}
};
@ -96,32 +69,26 @@ function test()
db.executeSimpleSQL("DELETE FROM moz_downloads");
let stmt = db.createStatement(
"INSERT INTO moz_downloads (source, target, state, endTime) " +
"VALUES (?1, ?2, ?3, ?4)");
"INSERT INTO moz_downloads (source, target, state) " +
"VALUES (?1, ?2, ?3)");
try {
// Saving javascript URIs doesn't work
stmt.bindStringParameter(0, "javascript:5");
// Saving javascript URIs doesn't work
stmt.bindStringParameter(0, "javascript:5");
// Download to a temp local file
file = Cc["@mozilla.org/file/directory_service;1"].
getService(Ci.nsIProperties).get("TmpD", Ci.nsIFile);
file.append("javascriptURI");
file.createUnique(Ci.nsIFile.NORMAL_FILE_TYPE, 0666);
stmt.bindStringParameter(1, Cc["@mozilla.org/network/io-service;1"].
getService(Ci.nsIIOService).newFileURI(file).spec);
// Download to a temp local file
file = Cc["@mozilla.org/file/directory_service;1"].
getService(Ci.nsIProperties).get("TmpD", Ci.nsIFile);
file.append("javascriptURI");
file.createUnique(Ci.nsIFile.NORMAL_FILE_TYPE, 0666);
stmt.bindStringParameter(1, Cc["@mozilla.org/network/io-service;1"].
getService(Ci.nsIIOService).newFileURI(file).spec);
// Start it as canceled
stmt.bindInt32Parameter(2, dm.DOWNLOAD_CANCELED);
// Start it as canceled
stmt.bindInt32Parameter(2, dm.DOWNLOAD_CANCELED);
stmt.bindInt32Parameter(3, Date.now() * 1000);
// Add it!
stmt.execute();
}
finally {
stmt.finalize();
}
// Add it!
stmt.execute();
stmt.finalize();
let listener = {
onDownloadStateChange: function(aState, aDownload)
@ -145,40 +112,32 @@ function test()
let win = wm.getMostRecentWindow("Download:Manager");
if (win) win.close();
let os = Cc["@mozilla.org/observer-service;1"].
getService(Ci.nsIObserverService);
const DLMGR_UI_DONE = "download-manager-ui-done";
let testObs = {
observe: function(aSubject, aTopic, aData)
{
if (aTopic != DLMGR_UI_DONE)
return;
let win = aSubject.QueryInterface(Ci.nsIDOMWindow);
// Send the enter key to Download Manager to retry the download
synthesizeKey("VK_ENTER", {}, win);
os.removeObserver(testObs, DLMGR_UI_DONE);
// Start the test when the download manager window loads
let ww = Cc["@mozilla.org/embedcomp/window-watcher;1"].
getService(Ci.nsIWindowWatcher);
ww.registerNotification({
observe: function(aSubject, aTopic, aData) {
ww.unregisterNotification(this);
aSubject.QueryInterface(Ci.nsIDOMEventTarget).
addEventListener("DOMContentLoaded", doTest, false);
}
};
});
// Register with the observer service
os.addObserver(testObs, DLMGR_UI_DONE, false);
// Let the Startup method of the download manager UI finish before we test
let doTest = function() setTimeout(function() {
win = wm.getMostRecentWindow("Download:Manager");
// Try again if selectedIndex is -1
if (win.document.getElementById("downloadView").selectedIndex)
return doTest();
// Send the enter key to Download Manager to retry the download
EventUtils.synthesizeKey("VK_ENTER", {}, win);
}, 0);
// Show the Download Manager UI
Cc["@mozilla.org/download-manager-ui;1"].
getService(Ci.nsIDownloadManagerUI).show();
SimpleTest.waitForExplicitFinish();
waitForExplicitFinish();
}
]]>
</script>
<body xmlns="http://www.w3.org/1999/xhtml">
<p id="display"></p>
<div id="content" style="display:none;"></div>
<pre id="test"></pre>
</body>
</window>

Просмотреть файл

@ -60,7 +60,6 @@ _CHROME_FILES = \
test_select_all.xul \
test_space_key_pauses_resumes.xul \
test_ui_stays_open_on_alert_clickback.xul \
test_bug_412360.xul \
test_bug_429247.xul \
$(NULL)