summaryrefslogtreecommitdiffstats
path: root/toolkit/components/osfile/tests/xpcshell/test_osfile_closed.js
blob: f4a1fe8455942c1b4624714ef2504459fe5f5ce2 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
"use strict";

const { OS } = ChromeUtils.import("resource://gre/modules/osfile.jsm");

function run_test() {
  do_test_pending();
  run_next_test();
}

add_task(async function test_closed() {
  OS.Shared.DEBUG = true;
  let currentDir = await OS.File.getCurrentDirectory();
  info("Open a file, ensure that we can call stat()");
  let path = OS.Path.join(currentDir, "test_osfile_closed.js");
  let file = await OS.File.open(path);
  await file.stat();
  Assert.ok(true);

  await file.close();

  info("Ensure that we cannot stat() on closed file");
  let exn;
  try {
    await file.stat();
  } catch (ex) {
    exn = ex;
  }
  info("Ensure that this raises the correct error");
  Assert.ok(!!exn);
  Assert.ok(exn instanceof OS.File.Error);
  Assert.ok(exn.becauseClosed);

  info("Ensure that we cannot read() on closed file");
  exn = null;
  try {
    await file.read();
  } catch (ex) {
    exn = ex;
  }
  info("Ensure that this raises the correct error");
  Assert.ok(!!exn);
  Assert.ok(exn instanceof OS.File.Error);
  Assert.ok(exn.becauseClosed);
});

add_task(do_test_finished);