gecko-dev/toolkit/components/osfile/tests/xpcshell/test_osfile_closed.js
Victor Porof 4a06c925ac Bug 1561435 - Format toolkit/components/, a=automatic-formatting
# ignore-this-changeset

Differential Revision: https://phabricator.services.mozilla.com/D36052

--HG--
extra : source : b5be5b4f4b47c256e28a29f665dc754f6407ee7f
2019-07-05 11:14:05 +02:00

46 lines
1.1 KiB
JavaScript

"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);