mirror of
https://github.com/nodejs/node.git
synced 2024-11-25 08:19:38 +01:00
3e1b1dd4a9
The copyright and license notice is already in the LICENSE file. There is no justifiable reason to also require that it be included in every file, since the individual files are not individually distributed except as part of the entire package.
48 lines
1.2 KiB
JavaScript
48 lines
1.2 KiB
JavaScript
// 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 completed = 0;
|
|
var expected_tests = 2;
|
|
|
|
var linkPath1 = path.join(common.tmpDir, 'junction1');
|
|
var linkPath2 = path.join(common.tmpDir, 'junction2');
|
|
var linkTarget = path.join(common.fixturesDir);
|
|
var linkData = '../fixtures';
|
|
|
|
// Prepare.
|
|
try { fs.mkdirSync(common.tmpDir); } catch (e) {}
|
|
try { fs.unlinkSync(linkPath1); } catch (e) {}
|
|
try { fs.unlinkSync(linkPath2); } catch (e) {}
|
|
|
|
// Test fs.symlink()
|
|
fs.symlink(linkData, linkPath1, 'junction', 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);
|
|
|
|
completed++;
|
|
}
|
|
|
|
process.on('exit', function() {
|
|
assert.equal(completed, expected_tests);
|
|
});
|
|
|