blob: 61fa5b344a9396c735613f128ad3650d1b798519 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
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);
}
|