summaryrefslogtreecommitdiff
path: root/cli/tests/unit/read_dir_test.ts
diff options
context:
space:
mode:
authorFeng Yu <F3n67u@outlook.com>2021-10-11 21:21:18 +0800
committerGitHub <noreply@github.com>2021-10-11 15:21:18 +0200
commit668b400ff2fa5634f575e54f40ab1f0b78fcdf16 (patch)
treea5eacaf3e9f4822ea9ace0bc117ebcfd09fc8922 /cli/tests/unit/read_dir_test.ts
parent423b02d8891c73f1b2864271796b067c81007f50 (diff)
feat(runtime): improve error messages of runtime fs (#11984)
This commit annotates errors returned from FS Deno APIs to include paths that were passed to the API calls. Co-authored-by: Bartek IwaƄczuk <biwanczuk@gmail.com>
Diffstat (limited to 'cli/tests/unit/read_dir_test.ts')
-rw-r--r--cli/tests/unit/read_dir_test.ts30
1 files changed, 24 insertions, 6 deletions
diff --git a/cli/tests/unit/read_dir_test.ts b/cli/tests/unit/read_dir_test.ts
index ca900153a..686c38af3 100644
--- a/cli/tests/unit/read_dir_test.ts
+++ b/cli/tests/unit/read_dir_test.ts
@@ -40,15 +40,23 @@ unitTest({ permissions: { read: false } }, function readDirSyncPerm() {
});
unitTest({ permissions: { read: true } }, function readDirSyncNotDir() {
- assertThrows(() => {
- Deno.readDirSync("cli/tests/testdata/fixture.json");
- }, Error);
+ assertThrows(
+ () => {
+ Deno.readDirSync("cli/tests/testdata/fixture.json");
+ },
+ Error,
+ `readdir 'cli/tests/testdata/fixture.json'`,
+ );
});
unitTest({ permissions: { read: true } }, function readDirSyncNotFound() {
- assertThrows(() => {
- Deno.readDirSync("bad_dir_name");
- }, Deno.errors.NotFound);
+ assertThrows(
+ () => {
+ Deno.readDirSync("bad_dir_name");
+ },
+ Deno.errors.NotFound,
+ `readdir 'bad_dir_name'`,
+ );
});
unitTest({ permissions: { read: true } }, async function readDirSuccess() {
@@ -94,3 +102,13 @@ unitTest(
}
},
);
+
+unitTest({ permissions: { read: true } }, async function readDirNotFound() {
+ await assertRejects(
+ async () => {
+ await Deno.readDir("bad_dir_name")[Symbol.asyncIterator]().next();
+ },
+ Deno.errors.NotFound,
+ `readdir 'bad_dir_name'`,
+ );
+});