mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
261 lines
9.5 KiB
JavaScript
261 lines
9.5 KiB
JavaScript
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* ***** 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 bug 464795 unit test.
|
|
*
|
|
* The Initial Developer of the Original Code is
|
|
* Ehsan Akhgari.
|
|
* Portions created by the Initial Developer are Copyright (C) 2009
|
|
* the Initial Developer. All Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
* Ehsan Akhgari <ehsan.akhgari@gmail.com>
|
|
*
|
|
* 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 ***** */
|
|
|
|
const Ci = Components.interfaces;
|
|
const Cc = Components.classes;
|
|
const Cu = Components.utils;
|
|
const Cr = Components.results;
|
|
const Cm = Components.manager.QueryInterface(Ci.nsIComponentRegistrar);
|
|
|
|
const FILE_PICKER_CID = "@mozilla.org/filepicker;1";
|
|
const FILE_PICKER_ID = Components.ID(Cc[FILE_PICKER_CID].number);
|
|
const FILE_PICKER_DESCRIPTION = "File Picker Test Service";
|
|
|
|
// Code borrowed from toolkit/components/downloadmgr/test/unit/head_download_manager.js
|
|
var dirSvc = Cc["@mozilla.org/file/directory_service;1"].
|
|
getService(Ci.nsIProperties);
|
|
var profileDir = null;
|
|
try {
|
|
profileDir = dirSvc.get("ProfD", Ci.nsIFile);
|
|
} catch (e) { }
|
|
if (!profileDir) {
|
|
// Register our own provider for the profile directory.
|
|
// It will simply return the current directory.
|
|
var provider = {
|
|
getFile: function(prop, persistent) {
|
|
persistent.value = true;
|
|
if (prop == "ProfD") {
|
|
return dirSvc.get("CurProcD", Ci.nsILocalFile);
|
|
} else if (prop == "DLoads") {
|
|
var file = dirSvc.get("CurProcD", Ci.nsILocalFile);
|
|
file.append("downloads.rdf");
|
|
return file;
|
|
}
|
|
print("*** Throwing trying to get " + prop);
|
|
throw Cr.NS_ERROR_FAILURE;
|
|
},
|
|
QueryInterface: function(iid) {
|
|
if (iid.equals(Ci.nsIDirectoryProvider) ||
|
|
iid.equals(Ci.nsISupports)) {
|
|
return this;
|
|
}
|
|
throw Cr.NS_ERROR_NO_INTERFACE;
|
|
}
|
|
};
|
|
dirSvc.QueryInterface(Ci.nsIDirectoryService).registerProvider(provider);
|
|
}
|
|
|
|
Cu.import("resource://gre/modules/XPCOMUtils.jsm");
|
|
Cu.import("resource://gre/modules/DownloadLastDir.jsm");
|
|
Cu.import("resource://gre/modules/XPCOMUtils.jsm");
|
|
|
|
let context = {
|
|
QueryInterface: XPCOMUtils.generateQI([Ci.nsIInterfaceRequestor]),
|
|
getInterface: XPCOMUtils.generateQI([Ci.nsIDOMWindowInternal])
|
|
};
|
|
|
|
function FilePickerService() {
|
|
}
|
|
|
|
FilePickerService.prototype = {
|
|
_obs: Cc["@mozilla.org/observer-service;1"].
|
|
getService(Ci.nsIObserverService),
|
|
QueryInterface: XPCOMUtils.generateQI([Ci.nsIFilePicker]),
|
|
|
|
// constants
|
|
modeOpen: 0,
|
|
modeSave: 1,
|
|
modeGetFolder: 2,
|
|
modeOpenMultiple: 3,
|
|
returnOK: 0,
|
|
returnCancel: 1,
|
|
returnReplace: 2,
|
|
filterAll: 1,
|
|
filterHTML: 2,
|
|
filterText: 4,
|
|
filterImages: 8,
|
|
filterXML: 16,
|
|
filterXUL: 32,
|
|
filterApps: 64,
|
|
|
|
// properties
|
|
defaultExtension: "",
|
|
defaultString: "",
|
|
get displayDirectory() { return null; },
|
|
set displayDirectory(val) {
|
|
this._obs.notifyObservers(val, "TEST_FILEPICKER_SETDISPLAYDIRECTORY", "");
|
|
},
|
|
file: null,
|
|
get files() { return null; },
|
|
get fileURL() { return null; },
|
|
filterIndex: 0,
|
|
|
|
// methods
|
|
appendFilter: function() {},
|
|
appendFilters: function() {},
|
|
init: function() {
|
|
var fileptr = Cc["@mozilla.org/supports-interface-pointer;1"].
|
|
createInstance(Ci.nsISupportsInterfacePointer);
|
|
this._obs.notifyObservers(fileptr, "TEST_FILEPICKER_GETFILE", "");
|
|
this.file = fileptr.data.QueryInterface(fileptr.dataIID);
|
|
},
|
|
show: function() {
|
|
return this.returnOK;
|
|
}
|
|
};
|
|
|
|
let factory = {
|
|
createInstance: function(aOuter, aIid) {
|
|
if (aOuter != null)
|
|
throw Cr.NS_ERROR_NO_AGGREGATION;
|
|
return new FilePickerService().QueryInterface(aIid);
|
|
}
|
|
};
|
|
|
|
function run_test()
|
|
{
|
|
let pb;
|
|
try {
|
|
pb = Cc["@mozilla.org/privatebrowsing;1"].
|
|
getService(Ci.nsIPrivateBrowsingService);
|
|
} catch (e) {
|
|
print("PB service is not available, bail out");
|
|
return;
|
|
}
|
|
|
|
//do_load_module("filepicker.js");
|
|
Cm.registerFactory(FILE_PICKER_ID,
|
|
FILE_PICKER_DESCRIPTION,
|
|
FILE_PICKER_CID,
|
|
factory);
|
|
|
|
let prefs = Cc["@mozilla.org/preferences-service;1"].
|
|
getService(Ci.nsIPrefService).
|
|
getBranch("browser.download.");
|
|
let obs = Cc["@mozilla.org/observer-service;1"].
|
|
getService(Ci.nsIObserverService);
|
|
let launcher = Cc["@mozilla.org/helperapplauncherdialog;1"].
|
|
getService(Ci.nsIHelperAppLauncherDialog);
|
|
let dirSvc = Cc["@mozilla.org/file/directory_service;1"].
|
|
getService(Ci.nsIProperties);
|
|
let tmpDir = dirSvc.get("TmpD", Ci.nsILocalFile);
|
|
function newDirectory() {
|
|
let dir = tmpDir.clone();
|
|
dir.append("testdir" + Math.floor(Math.random() * 10000));
|
|
dir.createUnique(Ci.nsIFile.DIRECTORY_TYPE, 0700);
|
|
return dir;
|
|
}
|
|
function newFileInDirectory(dir) {
|
|
let file = dir.clone();
|
|
file.append("testfile" + Math.floor(Math.random() * 10000));
|
|
file.createUnique(Ci.nsIFile.DIRECTORY_FILE, 0600);
|
|
return file;
|
|
}
|
|
let dir1 = newDirectory();
|
|
let dir2 = newDirectory();
|
|
let dir3 = newDirectory();
|
|
let file1 = newFileInDirectory(dir1);
|
|
let file2 = newFileInDirectory(dir2);
|
|
let file3 = newFileInDirectory(dir3);
|
|
|
|
let observer = {
|
|
observe: function(aSubject, aTopic, aData) {
|
|
switch (aTopic) {
|
|
case "TEST_FILEPICKER_GETFILE":
|
|
let fileptr = aSubject.QueryInterface(Ci.nsISupportsInterfacePointer);
|
|
fileptr.data = this.file;
|
|
fileptr.dataIID = Ci.nsILocalFile;
|
|
break;
|
|
case "TEST_FILEPICKER_SETDISPLAYDIRECTORY":
|
|
this.displayDirectory = aSubject.QueryInterface(Ci.nsILocalFile);
|
|
break;
|
|
}
|
|
},
|
|
file: null,
|
|
displayDirectory: null
|
|
};
|
|
obs.addObserver(observer, "TEST_FILEPICKER_GETFILE", false);
|
|
obs.addObserver(observer, "TEST_FILEPICKER_SETDISPLAYDIRECTORY", false);
|
|
|
|
prefs.setComplexValue("lastDir", Ci.nsILocalFile, tmpDir);
|
|
|
|
observer.file = file1;
|
|
let file = launcher.promptForSaveToFile(null, context, null, null, null);
|
|
do_check_true(!!file);
|
|
// file picker should start with browser.download.lastDir
|
|
do_check_eq(observer.displayDirectory.path, tmpDir.path);
|
|
// browser.download.lastDir should be modified before entering the private browsing mode
|
|
do_check_eq(prefs.getComplexValue("lastDir", Ci.nsILocalFile).path, dir1.path);
|
|
// gDownloadLastDir should be usable outside of the private browsing mode
|
|
do_check_eq(gDownloadLastDir.file.path, dir1.path);
|
|
|
|
pb.privateBrowsingEnabled = true;
|
|
do_check_eq(prefs.getComplexValue("lastDir", Ci.nsILocalFile).path, dir1.path);
|
|
observer.file = file2;
|
|
observer.displayDirectory = null;
|
|
file = launcher.promptForSaveToFile(null, context, null, null, null);
|
|
do_check_true(!!file);
|
|
// file picker should start with browser.download.lastDir as set before entering the private browsing mode
|
|
do_check_eq(observer.displayDirectory.path, dir1.path);
|
|
// browser.download.lastDir should not be modified inside the private browsing mode
|
|
do_check_eq(prefs.getComplexValue("lastDir", Ci.nsILocalFile).path, dir1.path);
|
|
// but gDownloadLastDir should be modified
|
|
do_check_eq(gDownloadLastDir.file.path, dir2.path);
|
|
|
|
pb.privateBrowsingEnabled = false;
|
|
// gDownloadLastDir should be cleared after leaving the private browsing mode
|
|
do_check_eq(gDownloadLastDir.file.path, dir1.path);
|
|
observer.file = file3;
|
|
observer.displayDirectory = null;
|
|
file = launcher.promptForSaveToFile(null, context, null, null, null);
|
|
do_check_true(!!file);
|
|
// file picker should start with browser.download.lastDir as set before entering the private browsing mode
|
|
do_check_eq(observer.displayDirectory.path, dir1.path);
|
|
// browser.download.lastDir should be modified after leaving the private browsing mode
|
|
do_check_eq(prefs.getComplexValue("lastDir", Ci.nsILocalFile).path, dir3.path);
|
|
// gDownloadLastDir should be usable after leaving the private browsing mode
|
|
do_check_eq(gDownloadLastDir.file.path, dir3.path);
|
|
|
|
// cleanup
|
|
[dir1, dir2, dir3].forEach(function(dir) dir.remove(true));
|
|
dirSvc.QueryInterface(Ci.nsIDirectoryService).unregisterProvider(provider);
|
|
obs.removeObserver(observer, "TEST_FILEPICKER_GETFILE", false);
|
|
obs.removeObserver(observer, "TEST_FILEPICKER_SETDISPLAYDIRECTORY", false);
|
|
Cm.unregisterFactory(FILE_PICKER_ID, factory);
|
|
}
|