Skip to content

Commit e391f4b

Browse files
LiviaMedeirosUlisesGascon
authored andcommitted
test: use tmpdir.resolve()
PR-URL: #49136 Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
1 parent 1704f24 commit e391f4b

File tree

49 files changed

+97
-118
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+97
-118
lines changed

test/addons/symlinked-module/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const tmpdir = require('../../common/tmpdir');
1616
tmpdir.refresh();
1717

1818
const addonPath = path.join(__dirname, 'build', common.buildType);
19-
const addonLink = path.join(tmpdir.path, 'addon');
19+
const addonLink = tmpdir.resolve('addon');
2020

2121
try {
2222
fs.symlinkSync(addonPath, addonLink, 'dir');

test/async-hooks/test-statwatcher.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,14 @@ const assert = require('assert');
66
const initHooks = require('./init-hooks');
77
const { checkInvocations } = require('./hook-checks');
88
const fs = require('fs');
9-
const path = require('path');
109

1110
if (!common.isMainThread)
1211
common.skip('Worker bootstrapping works differently -> different async IDs');
1312

1413
tmpdir.refresh();
1514

16-
const file1 = path.join(tmpdir.path, 'file1');
17-
const file2 = path.join(tmpdir.path, 'file2');
15+
const file1 = tmpdir.resolve('file1');
16+
const file2 = tmpdir.resolve('file2');
1817

1918
const onchangex = (x) => (curr, prev) => {
2019
console.log(`Watcher: ${x}`);

test/common/snapshot.js

+3-4
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,13 @@
22

33
const tmpdir = require('../common/tmpdir');
44
const { spawnSync } = require('child_process');
5-
const path = require('path');
65
const fs = require('fs');
76
const assert = require('assert');
87

98
function buildSnapshot(entry, env) {
109
const child = spawnSync(process.execPath, [
1110
'--snapshot-blob',
12-
path.join(tmpdir.path, 'snapshot.blob'),
11+
tmpdir.resolve('snapshot.blob'),
1312
'--build-snapshot',
1413
entry,
1514
], {
@@ -29,14 +28,14 @@ function buildSnapshot(entry, env) {
2928

3029
assert.strictEqual(child.status, 0);
3130

32-
const stats = fs.statSync(path.join(tmpdir.path, 'snapshot.blob'));
31+
const stats = fs.statSync(tmpdir.resolve('snapshot.blob'));
3332
assert(stats.isFile());
3433

3534
return { child, stderr, stdout };
3635
}
3736

3837
function runWithSnapshot(entry, env) {
39-
const args = ['--snapshot-blob', path.join(tmpdir.path, 'snapshot.blob')];
38+
const args = ['--snapshot-blob', tmpdir.resolve('snapshot.blob')];
4039
if (entry !== undefined) {
4140
args.push(entry);
4241
}

test/doctool/test-apilinks.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ fs.readdirSync(apilinks).forEach((fixture) => {
1919
const input = path.join(apilinks, fixture);
2020

2121
const expectedContent = fs.readFileSync(`${input}on`, 'utf8');
22-
const outputPath = path.join(tmpdir.path, `${fixture}on`);
22+
const outputPath = tmpdir.resolve(`${fixture}on`);
2323
execFileSync(
2424
process.execPath,
2525
[script, outputPath, input],

test/doctool/test-doctool-versions.mjs

+1-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import tmpdir from '../common/tmpdir.js';
44
import assert from 'assert';
55
import { spawnSync } from 'child_process';
66
import fs from 'fs';
7-
import path from 'path';
87
import { fileURLToPath } from 'url';
98
import util from 'util';
109

@@ -29,7 +28,7 @@ const expected = [
2928
];
3029

3130
tmpdir.refresh();
32-
const versionsFile = path.join(tmpdir.path, 'versions.json');
31+
const versionsFile = tmpdir.resolve('versions.json');
3332
debuglog(`${process.execPath} ${versionsTool} ${versionsFile}`);
3433
const opts = { cwd: tmpdir.path, encoding: 'utf8' };
3534
const cp = spawnSync(process.execPath, [ versionsTool, versionsFile ], opts);

test/embedding/test-embedding.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ function getReadFileCodeForPath(path) {
6363
for (const extraSnapshotArgs of [[], ['--embedder-snapshot-as-file']]) {
6464
// readSync + eval since snapshots don't support userland require() (yet)
6565
const snapshotFixture = fixtures.path('snapshot', 'echo-args.js');
66-
const blobPath = path.join(tmpdir.path, 'embedder-snapshot.blob');
66+
const blobPath = tmpdir.resolve('embedder-snapshot.blob');
6767
const buildSnapshotArgs = [
6868
`eval(${getReadFileCodeForPath(snapshotFixture)})`, 'arg1', 'arg2',
6969
'--embedder-snapshot-blob', blobPath, '--embedder-snapshot-create',
@@ -94,7 +94,7 @@ for (const extraSnapshotArgs of [[], ['--embedder-snapshot-as-file']]) {
9494
// Create workers and vm contexts after deserialization
9595
{
9696
const snapshotFixture = fixtures.path('snapshot', 'create-worker-and-vm.js');
97-
const blobPath = path.join(tmpdir.path, 'embedder-snapshot.blob');
97+
const blobPath = tmpdir.resolve('embedder-snapshot.blob');
9898
const buildSnapshotArgs = [
9999
`eval(${getReadFileCodeForPath(snapshotFixture)})`,
100100
'--embedder-snapshot-blob', blobPath, '--embedder-snapshot-create',

test/es-module/test-esm-extension-lookup-deprecation.mjs

+6-6
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ describe('ESM in main field', { concurrency: true }, () => {
1111
before(() => tmpdir.refresh());
1212

1313
it('should handle fully-specified relative path without any warning', async () => {
14-
const cwd = path.join(tmpdir.path, Math.random().toString());
14+
const cwd = tmpdir.resolve(Math.random().toString());
1515
const pkgPath = path.join(cwd, './node_modules/pkg/');
1616
await mkdir(pkgPath, { recursive: true });
1717
await writeFile(path.join(pkgPath, './index.js'), 'console.log("Hello World!")');
@@ -29,7 +29,7 @@ describe('ESM in main field', { concurrency: true }, () => {
2929
assert.strictEqual(code, 0);
3030
});
3131
it('should handle fully-specified absolute path without any warning', async () => {
32-
const cwd = path.join(tmpdir.path, Math.random().toString());
32+
const cwd = tmpdir.resolve(Math.random().toString());
3333
const pkgPath = path.join(cwd, './node_modules/pkg/');
3434
await mkdir(pkgPath, { recursive: true });
3535
await writeFile(path.join(pkgPath, './index.js'), 'console.log("Hello World!")');
@@ -48,7 +48,7 @@ describe('ESM in main field', { concurrency: true }, () => {
4848
});
4949

5050
it('should emit warning when "main" and "exports" are missing', async () => {
51-
const cwd = path.join(tmpdir.path, Math.random().toString());
51+
const cwd = tmpdir.resolve(Math.random().toString());
5252
const pkgPath = path.join(cwd, './node_modules/pkg/');
5353
await mkdir(pkgPath, { recursive: true });
5454
await writeFile(path.join(pkgPath, './index.js'), 'console.log("Hello World!")');
@@ -65,7 +65,7 @@ describe('ESM in main field', { concurrency: true }, () => {
6565
assert.strictEqual(code, 0);
6666
});
6767
it('should emit warning when "main" is falsy', async () => {
68-
const cwd = path.join(tmpdir.path, Math.random().toString());
68+
const cwd = tmpdir.resolve(Math.random().toString());
6969
const pkgPath = path.join(cwd, './node_modules/pkg/');
7070
await mkdir(pkgPath, { recursive: true });
7171
await writeFile(path.join(pkgPath, './index.js'), 'console.log("Hello World!")');
@@ -83,7 +83,7 @@ describe('ESM in main field', { concurrency: true }, () => {
8383
assert.strictEqual(code, 0);
8484
});
8585
it('should emit warning when "main" is a relative path without extension', async () => {
86-
const cwd = path.join(tmpdir.path, Math.random().toString());
86+
const cwd = tmpdir.resolve(Math.random().toString());
8787
const pkgPath = path.join(cwd, './node_modules/pkg/');
8888
await mkdir(pkgPath, { recursive: true });
8989
await writeFile(path.join(pkgPath, './index.js'), 'console.log("Hello World!")');
@@ -101,7 +101,7 @@ describe('ESM in main field', { concurrency: true }, () => {
101101
assert.strictEqual(code, 0);
102102
});
103103
it('should emit warning when "main" is an absolute path without extension', async () => {
104-
const cwd = path.join(tmpdir.path, Math.random().toString());
104+
const cwd = tmpdir.resolve(Math.random().toString());
105105
const pkgPath = path.join(cwd, './node_modules/pkg/');
106106
await mkdir(pkgPath, { recursive: true });
107107
await writeFile(path.join(pkgPath, './index.js'), 'console.log("Hello World!")');

test/es-module/test-esm-resolve-type.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const {
2626
defaultResolve: resolve
2727
} = internalResolve;
2828

29-
const rel = (file) => path.join(tmpdir.path, file);
29+
const rel = (file) => tmpdir.resolve(file);
3030
const previousCwd = process.cwd();
3131
const nmDir = rel('node_modules');
3232

test/es-module/test-esm-symlink-main.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const fs = require('fs');
99
tmpdir.refresh();
1010

1111
const realPath = path.resolve(__dirname, '../fixtures/es-modules/symlink.mjs');
12-
const symlinkPath = path.resolve(tmpdir.path, 'symlink.mjs');
12+
const symlinkPath = tmpdir.resolve('symlink.mjs');
1313

1414
try {
1515
fs.symlinkSync(realPath, symlinkPath);

test/es-module/test-esm-windows.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const imp = (file) => {
1515

1616
(async () => {
1717
tmpdir.refresh();
18-
const rel = (file) => path.join(tmpdir.path, file);
18+
const rel = (file) => tmpdir.resolve(file);
1919

2020
{ // Load a single script
2121
const file = rel('con.mjs');

test/fixtures/test-runner/concurrency/a.mjs

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ import { setTimeout } from 'node:timers/promises';
33
import fs from 'node:fs/promises';
44
import path from 'node:path';
55

6-
await fs.writeFile(path.resolve(tmpdir.path, 'test-runner-concurrency'), 'a.mjs');
6+
await fs.writeFile(tmpdir.resolve('test-runner-concurrency'), 'a.mjs');
77
while (true) {
8-
const file = await fs.readFile(path.resolve(tmpdir.path, 'test-runner-concurrency'), 'utf8');
8+
const file = await fs.readFile(tmpdir.resolve('test-runner-concurrency'), 'utf8');
99
if (file === 'b.mjs') {
1010
break;
1111
}

test/fixtures/test-runner/concurrency/b.mjs

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ import fs from 'node:fs/promises';
44
import path from 'node:path';
55

66
while (true) {
7-
const file = await fs.readFile(path.resolve(tmpdir.path, 'test-runner-concurrency'), 'utf8');
7+
const file = await fs.readFile(tmpdir.resolve('test-runner-concurrency'), 'utf8');
88
if (file === 'a.mjs') {
9-
await fs.writeFile(path.resolve(tmpdir.path, 'test-runner-concurrency'), 'b.mjs');
9+
await fs.writeFile(tmpdir.resolve('test-runner-concurrency'), 'b.mjs');
1010
break;
1111
}
1212
await setTimeout(10);

test/fixtures/watch-mode/ipc.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ const url = require('node:url');
33
const fs = require('node:fs');
44
const tmpdir = require('../../common/tmpdir');
55

6-
const tmpfile = path.join(tmpdir.path, 'file');
6+
const tmpfile = tmpdir.resolve('file');
77
fs.writeFileSync(tmpfile, '');
88

99
process.send({ 'watch:require': [path.resolve(__filename)] });

test/internet/test-corepack-yarn-install.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ const fixtures = require('../common/fixtures');
1111

1212
const tmpdir = require('../common/tmpdir');
1313
tmpdir.refresh();
14-
const npmSandbox = path.join(tmpdir.path, 'npm-sandbox');
14+
const npmSandbox = tmpdir.resolve('npm-sandbox');
1515
fs.mkdirSync(npmSandbox);
16-
const homeDir = path.join(tmpdir.path, 'home');
16+
const homeDir = tmpdir.resolve('home');
1717
fs.mkdirSync(homeDir);
18-
const installDir = path.join(tmpdir.path, 'install-dir');
18+
const installDir = tmpdir.resolve('install-dir');
1919
fs.mkdirSync(installDir);
2020

2121
const corepackYarnPath = path.join(

test/internet/test-trace-events-dns.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
const common = require('../common');
33
const assert = require('assert');
44
const cp = require('child_process');
5-
const path = require('path');
65
const tmpdir = require('../common/tmpdir');
76
const fs = require('fs');
87
const util = require('util');
@@ -57,7 +56,7 @@ for (const tr in tests) {
5756
throw new Error(`${tr}:\n${util.inspect(proc)}`);
5857
}
5958

60-
const file = path.join(tmpdir.path, traceFile);
59+
const file = tmpdir.resolve(traceFile);
6160

6261
const data = fs.readFileSync(file);
6362
const traces = JSON.parse(data.toString()).traceEvents

test/node-api/test_general/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ tmpdir.refresh();
1919
}
2020

2121
{
22-
const urlTestDir = path.join(tmpdir.path, 'foo%#bar');
22+
const urlTestDir = tmpdir.resolve('foo%#bar');
2323
const urlTestFile = path.join(urlTestDir, path.basename(filename));
2424
fs.mkdirSync(urlTestDir, { recursive: true });
2525
fs.copyFileSync(filename, urlTestFile);

test/node-api/test_policy/test_policy.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ const tmpdir = require('../../common/tmpdir');
88
const { spawnSync } = require('child_process');
99
const crypto = require('crypto');
1010
const fs = require('fs');
11-
const path = require('path');
1211
const { pathToFileURL } = require('url');
1312

1413
tmpdir.refresh();
@@ -19,7 +18,7 @@ function hash(algo, body) {
1918
return h.digest('base64');
2019
}
2120

22-
const policyFilepath = path.join(tmpdir.path, 'policy');
21+
const policyFilepath = tmpdir.resolve('policy');
2322

2423
const depFilepath = require.resolve(`./build/${common.buildType}/binding.node`);
2524
const depURL = pathToFileURL(depFilepath);

test/pummel/test-fs-largefile.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,13 @@ const common = require('../common');
2424

2525
const assert = require('assert');
2626
const fs = require('fs');
27-
const path = require('path');
2827

2928
const tmpdir = require('../common/tmpdir');
3029
tmpdir.refresh();
3130

3231
try {
3332

34-
const filepath = path.join(tmpdir.path, 'large.txt');
33+
const filepath = tmpdir.resolve('large.txt');
3534
const fd = fs.openSync(filepath, 'w+');
3635
const offset = 5 * 1024 * 1024 * 1024; // 5GB
3736
const message = 'Large File';

test/pummel/test-fs-readfile-tostring-fail.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ if (!common.enoughTestMem)
77

88
const assert = require('assert');
99
const fs = require('fs');
10-
const path = require('path');
1110
const cp = require('child_process');
1211
const kStringMaxLength = require('buffer').constants.MAX_STRING_LENGTH;
1312
if (common.isAIX && (Number(cp.execSync('ulimit -f')) * 512) < kStringMaxLength)
@@ -20,7 +19,7 @@ if (!tmpdir.hasEnoughSpace(kStringMaxLength)) {
2019
common.skip(`Not enough space in ${tmpdir.path}`);
2120
}
2221

23-
const file = path.join(tmpdir.path, 'toobig.txt');
22+
const file = tmpdir.resolve('toobig.txt');
2423
const stream = fs.createWriteStream(file, {
2524
flags: 'a',
2625
});

test/pummel/test-fs-watch-file-slow.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,12 @@
2222
'use strict';
2323
require('../common');
2424
const assert = require('assert');
25-
const path = require('path');
2625
const fs = require('fs');
2726

2827
const tmpdir = require('../common/tmpdir');
2928

3029
tmpdir.refresh();
31-
const FILENAME = path.join(tmpdir.path, 'watch-me');
30+
const FILENAME = tmpdir.resolve('watch-me');
3231
const TIMEOUT = 1300;
3332

3433
let nevents = 0;

test/pummel/test-policy-integrity-dep.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ function drainQueue() {
194194
assert.notStrictEqual(status, 0, 'Should not allow multiple policies');
195195
}
196196
{
197-
const enoentFilepath = path.join(tmpdir.path, 'enoent');
197+
const enoentFilepath = tmpdir.resolve('enoent');
198198
try {
199199
fs.unlinkSync(enoentFilepath);
200200
} catch {

test/pummel/test-policy-integrity-parent-commonjs.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ function drainQueue() {
194194
assert.notStrictEqual(status, 0, 'Should not allow multiple policies');
195195
}
196196
{
197-
const enoentFilepath = path.join(tmpdir.path, 'enoent');
197+
const enoentFilepath = tmpdir.resolve('enoent');
198198
try {
199199
fs.unlinkSync(enoentFilepath);
200200
} catch {

test/pummel/test-policy-integrity-parent-module.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ function drainQueue() {
194194
assert.notStrictEqual(status, 0, 'Should not allow multiple policies');
195195
}
196196
{
197-
const enoentFilepath = path.join(tmpdir.path, 'enoent');
197+
const enoentFilepath = tmpdir.resolve('enoent');
198198
try {
199199
fs.unlinkSync(enoentFilepath);
200200
} catch {

test/pummel/test-policy-integrity-parent-no-package-json.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ function drainQueue() {
194194
assert.notStrictEqual(status, 0, 'Should not allow multiple policies');
195195
}
196196
{
197-
const enoentFilepath = path.join(tmpdir.path, 'enoent');
197+
const enoentFilepath = tmpdir.resolve('enoent');
198198
try {
199199
fs.unlinkSync(enoentFilepath);
200200
} catch {

test/pummel/test-policy-integrity-worker-commonjs.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ function drainQueue() {
211211
assert.notStrictEqual(status, 0, 'Should not allow multiple policies');
212212
}
213213
{
214-
const enoentFilepath = path.join(tmpdir.path, 'enoent');
214+
const enoentFilepath = tmpdir.resolve('enoent');
215215
try {
216216
fs.unlinkSync(enoentFilepath);
217217
} catch {

test/pummel/test-policy-integrity-worker-module.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ function drainQueue() {
211211
assert.notStrictEqual(status, 0, 'Should not allow multiple policies');
212212
}
213213
{
214-
const enoentFilepath = path.join(tmpdir.path, 'enoent');
214+
const enoentFilepath = tmpdir.resolve('enoent');
215215
try {
216216
fs.unlinkSync(enoentFilepath);
217217
} catch {

test/pummel/test-policy-integrity-worker-no-package-json.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ function drainQueue() {
211211
assert.notStrictEqual(status, 0, 'Should not allow multiple policies');
212212
}
213213
{
214-
const enoentFilepath = path.join(tmpdir.path, 'enoent');
214+
const enoentFilepath = tmpdir.resolve('enoent');
215215
try {
216216
fs.unlinkSync(enoentFilepath);
217217
} catch {

test/pummel/test-watch-file.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,10 @@
2424
require('../common');
2525
const assert = require('assert');
2626
const fs = require('fs');
27-
const path = require('path');
2827
const tmpdir = require('../common/tmpdir');
2928

3029
tmpdir.refresh();
31-
const f = path.join(tmpdir.path, 'x.txt');
30+
const f = tmpdir.resolve('x.txt');
3231
fs.closeSync(fs.openSync(f, 'w'));
3332

3433
let changes = 0;

0 commit comments

Comments
 (0)