mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-30 05:35:31 +00:00
be2b50a7f8
Be warned. Do not attemp to change the .js "test" source code in ./js They are meant to check - the outdated 0666 octal constant is still parsed correctly, - the outdated 0666 octal constant raises syntax error flag in strict mode, etc. So leave them alone.
30 lines
993 B
JavaScript
30 lines
993 B
JavaScript
var { classes: Cc, interfaces: Ci, utils: Cu } = Components;
|
|
Cu.importGlobalProperties(["File"]);
|
|
|
|
var fileNum = 1;
|
|
|
|
function createFileWithData(fileData) {
|
|
var willDelete = fileData === null;
|
|
var dirSvc = Cc["@mozilla.org/file/directory_service;1"].getService(Ci.nsIProperties);
|
|
var testFile = dirSvc.get("ProfD", Ci.nsIFile);
|
|
testFile.append("fileAPItestfile" + fileNum);
|
|
fileNum++;
|
|
var outStream = Cc["@mozilla.org/network/file-output-stream;1"].createInstance(Ci.nsIFileOutputStream);
|
|
outStream.init(testFile, 0x02 | 0x08 | 0x20, // write, create, truncate
|
|
0o666, 0);
|
|
if (willDelete) {
|
|
fileData = "some irrelevant test data\n";
|
|
}
|
|
outStream.write(fileData, fileData.length);
|
|
outStream.close();
|
|
var domFile = new File(testFile);
|
|
if (willDelete) {
|
|
testFile.remove(/* recursive: */ false);
|
|
}
|
|
return domFile;
|
|
}
|
|
|
|
addMessageListener("files.open", function (message) {
|
|
sendAsyncMessage("files.opened", message.map(createFileWithData));
|
|
});
|