summaryrefslogtreecommitdiff
path: root/js/read_dir_test.ts
blob: 43430ed00b747fe24e3d8602eaea6d24d4cb167c (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
// Copyright 2018 the Deno authors. All rights reserved. MIT license.
import { test, testPerm, assert, assertEqual } from "./test_util.ts";
import * as deno from "deno";
import { FileInfo } from "deno";

function assertSameContent(files: FileInfo[]) {
  let counter = 0;

  for (const file of files) {
    if (file.name == "subdir") {
      assert(file.isDirectory());
      counter++;
    }

    if (file.name === "002_hello.ts") {
      assertEqual(file.path, `tests/${file.name}`);
      counter++;
    }
  }

  assertEqual(counter, 2);
}

testPerm({ write: true }, function readDirSyncSuccess() {
  const files = deno.readDirSync("tests/");
  assertSameContent(files);
});

test(function readDirSyncNotDir() {
  let caughtError = false;
  let src;

  try {
    src = deno.readDirSync("package.json");
  } catch (err) {
    caughtError = true;
    assertEqual(err.kind, deno.ErrorKind.Other);
  }
  assert(caughtError);
  assertEqual(src, undefined);
});

test(function readDirSyncNotFound() {
  let caughtError = false;
  let src;

  try {
    src = deno.readDirSync("bad_dir_name");
  } catch (err) {
    caughtError = true;
    assertEqual(err.kind, deno.ErrorKind.NotFound);
  }
  assert(caughtError);
  assertEqual(src, undefined);
});

testPerm({ write: true }, async function readDirSuccess() {
  const files = await deno.readDir("tests/");
  assertSameContent(files);
});