Skip to content

Commit

Permalink
test: move socket from CWD to temporary directory
Browse files Browse the repository at this point in the history
PR-URL: #46863
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
  • Loading branch information
LiviaMedeiros authored and danielleadams committed Apr 11, 2023
1 parent b25ee52 commit b344e74
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions test/parallel/test-fs-cp.mjs
Expand Up @@ -275,8 +275,10 @@ function nextdir() {

// It throws an error if attempt is made to copy socket.
if (!isWindows) {
const src = nextdir();
mkdirSync(src);
const dest = nextdir();
const sock = `${process.pid}.sock`;
const sock = join(src, `${process.pid}.sock`);
const server = net.createServer();
server.listen(sock);
assert.throws(
Expand Down Expand Up @@ -596,8 +598,10 @@ if (!isWindows) {

// It returns an error if attempt is made to copy socket.
if (!isWindows) {
const src = nextdir();
mkdirSync(src);
const dest = nextdir();
const sock = `${process.pid}.sock`;
const sock = join(src, `${process.pid}.sock`);
const server = net.createServer();
server.listen(sock);
cp(sock, dest, mustCall((err) => {
Expand Down

0 comments on commit b344e74

Please sign in to comment.