deno.land / std@0.166.0 / node / _tools / test / parallel / test-fs-readdir.js

test-fs-readdir.js
نووسراو ببینە
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
61
// deno-fmt-ignore-file// deno-lint-ignore-file
// Copyright Joyent and Node contributors. All rights reserved. MIT license.// Taken from Node 18.12.0// This file is automatically generated by "node/_tools/setup.ts". Do not modify this file manually
'use strict';
const common = require('../common');const assert = require('assert');const fs = require('fs');
const tmpdir = require('../common/tmpdir');
const readdirDir = tmpdir.path;const files = ['empty', 'files', 'for', 'just', 'testing'];
// Make sure tmp directory is cleantmpdir.refresh();
// Create the necessary filesfiles.forEach(function(currentFile) { fs.closeSync(fs.openSync(`${readdirDir}/${currentFile}`, 'w'));});
// Check the readdir Sync versionassert.deepStrictEqual(files, fs.readdirSync(readdirDir).sort());
// Check the readdir async versionfs.readdir(readdirDir, common.mustSucceed((f) => { assert.deepStrictEqual(files, f.sort());}));
// readdir() on file should throw ENOTDIR// https://github.com/joyent/node/issues/1869assert.throws(function() { fs.readdirSync(__filename);}, /Error: ENOTDIR: not a directory/);
fs.readdir(__filename, common.mustCall(function(e) { assert.strictEqual(e.code, 'ENOTDIR');}));
[false, 1, [], {}, null, undefined].forEach((i) => { assert.throws( () => fs.readdir(i, common.mustNotCall()), { code: 'ERR_INVALID_ARG_TYPE', name: 'TypeError' } ); assert.throws( () => fs.readdirSync(i), { code: 'ERR_INVALID_ARG_TYPE', name: 'TypeError' } );});
std

Version Info

Tagged at
a year ago