mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-11-01 06:06:32 +00:00
25 lines
766 B
JavaScript
25 lines
766 B
JavaScript
var Ci = Components.interfaces;
|
|
var Cc = Components.classes;
|
|
|
|
const CWD = do_get_cwd();
|
|
function checkOS(os) {
|
|
const nsILocalFile_ = "nsILocalFile" + os;
|
|
return nsILocalFile_ in Components.interfaces &&
|
|
CWD instanceof Components.interfaces[nsILocalFile_];
|
|
}
|
|
|
|
const isWin = checkOS("Win");
|
|
|
|
function run_test() {
|
|
var envVar = isWin ? "USERPROFILE" : "HOME";
|
|
|
|
var dirSvc = Cc["@mozilla.org/file/directory_service;1"].getService(Ci.nsIProperties);
|
|
var homeDir = dirSvc.get("Home", Ci.nsIFile);
|
|
|
|
var env = Cc["@mozilla.org/process/environment;1"].getService(Ci.nsIEnvironment);
|
|
var expected = Cc["@mozilla.org/file/local;1"].createInstance(Ci.nsILocalFile);
|
|
expected.initWithPath(env.get(envVar));
|
|
|
|
do_check_eq(homeDir.path, expected.path);
|
|
}
|