Bug 431729: make it clearer that in Clear Private Data, 'Browsing History' deletes 'Download History' too, patch by Shawn Wilsher <sdwilsh@forerunnerdesigns.com>, r=me, a=vlad

This commit is contained in:
gavin@gavinsharp.com 2008-05-05 12:54:29 -07:00
parent b95c56d9ff
commit 0c12f1b939
3 changed files with 201 additions and 3 deletions

View File

@ -112,7 +112,18 @@
}
catch (e) { }
return undefined;
}
},
updateDownloadHistory: function ()
{
// When toggling history, we automatically clear download history too,
// so we disable that control.
let downloads = document.getElementById("downloads-checkbox");
let history = document.getElementById("history-checkbox");
let s = new Sanitizer();
downloads.disabled = history.checked ||
!s.canClearItem("downloads");
},
};
]]>
</script>
@ -130,11 +141,15 @@
<description>&sanitizeItems.label;</description>
<checkbox label="&itemHistory.label;"
<checkbox id="history-checkbox"
label="&itemHistory.label;"
accesskey="&itemHistory.accesskey;"
preference="privacy.item.history"
oncommand="gSanitizePromptDialog.updateDownloadHistory();"
onsyncfrompreference="return gSanitizePromptDialog.onReadGeneric();"/>
<checkbox label="&itemDownloads.label;"
<checkbox id="downloads-checkbox"
class="indent"
label="&itemDownloads.label;"
accesskey="&itemDownloads.accesskey;"
preference="privacy.item.downloads"
onsyncfrompreference="return gSanitizePromptDialog.onReadGeneric();"/>

View File

@ -58,6 +58,7 @@ _BROWSER_FILES = browser_bug321000.js \
autodiscovery.html \
moz.png \
browser_getshortcutoruri.js \
browser_sanitize-download-history.js \
$(NULL)
ifneq (,$(filter mac cocoa,$(MOZ_WIDGET_TOOLKIT)))

View File

@ -0,0 +1,182 @@
/* ***** 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.org Test 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 ***** */
function test()
{
//////////////////////////////////////////////////////////////////////////////
//// Tests (defined locally for scope's sake)
function test_checkedAndDisabledAtStart(aWin)
{
let doc = aWin.document;
let downloads = doc.getElementById("downloads-checkbox");
let history = doc.getElementById("history-checkbox");
ok(history.checked, "history checkbox is checked");
ok(downloads.disabled, "downloads checkbox is disabled");
ok(downloads.checked, "downloads checkbox is checked");
}
function test_checkedAndDisabledOnHistoryToggle(aWin)
{
let doc = aWin.document;
let downloads = doc.getElementById("downloads-checkbox");
let history = doc.getElementById("history-checkbox");
EventUtils.synthesizeMouse(history, 0, 0, {}, aWin);
ok(!history.checked, "history checkbox is not checked");
ok(downloads.disabled, "downloads checkbox is disabled");
ok(downloads.checked, "downloads checkbox is checked");
}
function test_checkedAfterAddingDownload(aWin)
{
let doc = aWin.document;
let downloads = doc.getElementById("downloads-checkbox");
let history = doc.getElementById("history-checkbox");
// Add download to DB
let ios = Cc["@mozilla.org/network/io-service;1"].
getService(Ci.nsIIOService);
let file = Cc["@mozilla.org/file/directory_service;1"].
getService(Ci.nsIProperties).get("TmpD", Ci.nsIFile);
file.append("satitize-dm-test.file");
file.createUnique(Ci.nsIFile.NORMAL_FILE_TYPE, 0666);
let testPath = ios.newFileURI(file).spec;
let data = {
name: "381603.patch",
source: "https://bugzilla.mozilla.org/attachment.cgi?id=266520",
target: testPath,
startTime: 1180493839859230,
endTime: 1180493839859239,
state: Ci.nsIDownloadManager.DOWNLOAD_FINISHED,
currBytes: 0, maxBytes: -1, preferredAction: 0, autoResume: 0
};
let db = Cc["@mozilla.org/download-manager;1"].
getService(Ci.nsIDownloadManager).DBConnection;
let rawStmt = db.createStatement(
"INSERT INTO moz_downloads (name, source, target, startTime, endTime, " +
"state, currBytes, maxBytes, preferredAction, autoResume) " +
"VALUES (:name, :source, :target, :startTime, :endTime, :state, " +
":currBytes, :maxBytes, :preferredAction, :autoResume)");
let stmt = Cc["@mozilla.org/storage/statement-wrapper;1"].
createInstance(Ci.mozIStorageStatementWrapper);
stmt.initialize(rawStmt);
try {
for (let prop in data)
stmt.params[prop] = data[prop];
stmt.execute();
}
finally {
stmt.statement.finalize();
}
// Toggle history to get everything to update
EventUtils.synthesizeMouse(history, 0, 0, {}, aWin);
EventUtils.synthesizeMouse(history, 0, 0, {}, aWin);
ok(!history.checked, "history checkbox is not checked");
ok(!downloads.disabled, "downloads checkbox is not disabled");
ok(downloads.checked, "downloads checkbox is checked");
}
function test_checkedAndDisabledWithHistoryChecked(aWin)
{
let doc = aWin.document;
let downloads = doc.getElementById("downloads-checkbox");
let history = doc.getElementById("history-checkbox");
EventUtils.synthesizeMouse(history, 0, 0, {}, aWin);
ok(history.checked, "history checkbox is checked");
ok(downloads.disabled, "downloads checkbox is disabled");
ok(downloads.checked, "downloads checkbox is checked");
}
let tests = [
test_checkedAndDisabledAtStart,
test_checkedAndDisabledOnHistoryToggle,
test_checkedAfterAddingDownload,
test_checkedAndDisabledWithHistoryChecked,
];
//////////////////////////////////////////////////////////////////////////////
//// Run the tests
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");
// Close the UI if necessary
let ww = Cc["@mozilla.org/embedcomp/window-watcher;1"].
getService(Ci.nsIWindowWatcher);
let win = ww.getWindowByName("Sanatize", null);
if (win && (win instanceof Ci.nsIDOMWindowInternal)) win.close();
// Start the test when the sanitize window loads
ww.registerNotification({
observe: function(aSubject, aTopic, aData) {
ww.unregisterNotification(this);
aSubject.QueryInterface(Ci.nsIDOMEventTarget).
addEventListener("DOMContentLoaded", doTest, false);
}
});
// Let the methods that run onload finish before we test
let doTest = function() setTimeout(function() {
let win = ww.getWindowByName("Sanitize", null)
.QueryInterface(Ci.nsIDOMWindowInternal);
for (let i = 0; i < tests.length; i++)
tests[i](win);
win.close();
finish();
}, 0);
// Show the UI
ww.openWindow(window,
"chrome://browser/content/sanitize.xul",
"Sanitize",
"chrome,titlebar,centerscreen",
null);
waitForExplicitFinish();
}