summaryrefslogtreecommitdiffstats
path: root/dom/base/test/fileapi_chromeScript.js
blob: 614b556edbd97639c97625939fa0dcdd95c5dc16 (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
25
26
27
28
29
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 = File.createFromNsIFile(testFile);
  if (willDelete) {
    testFile.remove(/* recursive: */ false);
  }
  return domFile;
}

addMessageListener("files.open", function (message) {
  sendAsyncMessage("files.opened", message.map(createFileWithData));
});