mirror of https://github.com/nodejs/node.git
test: convert readdir test to use test runner
Signed-off-by: tchetwin <tchetwin@bloomberg.net> PR-URL: https://github.com/nodejs/node/pull/55750 Reviewed-By: Pietro Marchini <pietro.marchini94@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>pull/55973/head
parent
d0d52092cf
commit
e92499c963
|
@ -1,14 +1,18 @@
|
|||
'use strict';
|
||||
const common = require('../common');
|
||||
const fs = require('fs');
|
||||
const net = require('net');
|
||||
|
||||
const { PIPE, mustCall } = require('../common');
|
||||
const tmpdir = require('../common/tmpdir');
|
||||
tmpdir.refresh();
|
||||
const { test } = require('node:test');
|
||||
const fs = require('node:fs');
|
||||
const net = require('node:net');
|
||||
|
||||
const server = net.createServer().listen(common.PIPE, common.mustCall(() => {
|
||||
// The process should not crash
|
||||
// See https://github.com/nodejs/node/issues/52159
|
||||
fs.readdirSync(tmpdir.path, { recursive: true });
|
||||
server.close();
|
||||
}));
|
||||
test('readdir should not recurse into Unix domain sockets', (t, done) => {
|
||||
tmpdir.refresh();
|
||||
const server = net.createServer().listen(PIPE, mustCall(() => {
|
||||
// The process should not crash
|
||||
// See https://github.com/nodejs/node/issues/52159
|
||||
fs.readdirSync(tmpdir.path, { recursive: true });
|
||||
server.close();
|
||||
done();
|
||||
}));
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue