mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-07 03:38:51 +02:00
# ignore-this-changeset Differential Revision: https://phabricator.services.mozilla.com/D36052 --HG-- extra : source : b5be5b4f4b47c256e28a29f665dc754f6407ee7f
46 lines
1.1 KiB
JavaScript
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);
|