mirror of
https://github.com/nodejs/node.git
synced 2025-05-05 15:32:15 +00:00

Many of the tests use variables to track when callback functions are invoked or events are emitted. These variables are then asserted on process exit. This commit replaces this pattern in straightforward cases with common.mustCall(). This makes the tests easier to reason about, leads to a net reduction in lines of code, and uncovered a few bugs in tests. This commit also replaces some callbacks that should never be called with common.fail(). PR-URL: https://github.com/nodejs/node/pull/7753 Reviewed-By: Wyatt Preul <wpreul@gmail.com> Reviewed-By: Minwoo Jung <jmwsoft@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
37 lines
992 B
JavaScript
37 lines
992 B
JavaScript
'use strict';
|
|
// Test creating and resolving relative junction or symbolic link
|
|
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
var path = require('path');
|
|
var fs = require('fs');
|
|
|
|
var linkPath1 = path.join(common.tmpDir, 'junction1');
|
|
var linkPath2 = path.join(common.tmpDir, 'junction2');
|
|
var linkTarget = path.join(common.fixturesDir);
|
|
var linkData = path.join(common.fixturesDir);
|
|
|
|
common.refreshTmpDir();
|
|
|
|
// Test fs.symlink()
|
|
fs.symlink(linkData, linkPath1, 'junction', common.mustCall(function(err) {
|
|
if (err) throw err;
|
|
verifyLink(linkPath1);
|
|
}));
|
|
|
|
// Test fs.symlinkSync()
|
|
fs.symlinkSync(linkData, linkPath2, 'junction');
|
|
verifyLink(linkPath2);
|
|
|
|
function verifyLink(linkPath) {
|
|
var stats = fs.lstatSync(linkPath);
|
|
assert.ok(stats.isSymbolicLink());
|
|
|
|
var data1 = fs.readFileSync(linkPath + '/x.txt', 'ascii');
|
|
var data2 = fs.readFileSync(linkTarget + '/x.txt', 'ascii');
|
|
assert.strictEqual(data1, data2);
|
|
|
|
// Clean up.
|
|
fs.unlinkSync(linkPath);
|
|
}
|