diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
commit | 43a97878ce14b72f0981164f87f2e35e14151312 (patch) | |
tree | 620249daf56c0258faa40cbdcf9cfba06de2a846 /toolkit/components/osfile/tests/xpcshell/test_osfile_closed.js | |
parent | Initial commit. (diff) | |
download | firefox-43a97878ce14b72f0981164f87f2e35e14151312.tar.xz firefox-43a97878ce14b72f0981164f87f2e35e14151312.zip |
Adding upstream version 110.0.1.upstream/110.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'toolkit/components/osfile/tests/xpcshell/test_osfile_closed.js')
-rw-r--r-- | toolkit/components/osfile/tests/xpcshell/test_osfile_closed.js | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/toolkit/components/osfile/tests/xpcshell/test_osfile_closed.js b/toolkit/components/osfile/tests/xpcshell/test_osfile_closed.js new file mode 100644 index 0000000000..f4a1fe8455 --- /dev/null +++ b/toolkit/components/osfile/tests/xpcshell/test_osfile_closed.js @@ -0,0 +1,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); |