test: use fixtures module in test-fs-realpath.js
PR-URL: https://github.com/nodejs/node/pull/15904 Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de>
This commit is contained in:
parent
50fe1a8409
commit
6ff2909ef6
@ -21,6 +21,8 @@
|
|||||||
|
|
||||||
'use strict';
|
'use strict';
|
||||||
const common = require('../common');
|
const common = require('../common');
|
||||||
|
const fixtures = require('../common/fixtures');
|
||||||
|
|
||||||
const assert = require('assert');
|
const assert = require('assert');
|
||||||
const fs = require('fs');
|
const fs = require('fs');
|
||||||
const path = require('path');
|
const path = require('path');
|
||||||
@ -133,7 +135,7 @@ function test_simple_absolute_symlink(callback) {
|
|||||||
console.log('using type=%s', type);
|
console.log('using type=%s', type);
|
||||||
|
|
||||||
const entry = `${tmpAbsDir}/symlink`;
|
const entry = `${tmpAbsDir}/symlink`;
|
||||||
const expected = `${common.fixturesDir}/nested-index/one`;
|
const expected = fixtures.path('nested-index', 'one');
|
||||||
[
|
[
|
||||||
[entry, expected]
|
[entry, expected]
|
||||||
].forEach(function(t) {
|
].forEach(function(t) {
|
||||||
@ -156,7 +158,7 @@ function test_deep_relative_file_symlink(callback) {
|
|||||||
return runNextTest();
|
return runNextTest();
|
||||||
}
|
}
|
||||||
|
|
||||||
const expected = path.join(common.fixturesDir, 'cycles', 'root.js');
|
const expected = fixtures.path('cycles', 'root.js');
|
||||||
const linkData1 = path
|
const linkData1 = path
|
||||||
.relative(path.join(targetsAbsDir, 'nested-index', 'one'),
|
.relative(path.join(targetsAbsDir, 'nested-index', 'one'),
|
||||||
expected);
|
expected);
|
||||||
@ -185,7 +187,7 @@ function test_deep_relative_dir_symlink(callback) {
|
|||||||
common.printSkipMessage('symlink test (no privs)');
|
common.printSkipMessage('symlink test (no privs)');
|
||||||
return runNextTest();
|
return runNextTest();
|
||||||
}
|
}
|
||||||
const expected = path.join(common.fixturesDir, 'cycles', 'folder');
|
const expected = fixtures.path('cycles', 'folder');
|
||||||
const path1b = path.join(targetsAbsDir, 'nested-index', 'one');
|
const path1b = path.join(targetsAbsDir, 'nested-index', 'one');
|
||||||
const linkPath1b = path.join(path1b, 'symlink1-dir');
|
const linkPath1b = path.join(path1b, 'symlink1-dir');
|
||||||
const linkData1b = path.relative(path1b, expected);
|
const linkData1b = path.relative(path1b, expected);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user