Enable linting for the test directory. A number of changes was made so all tests conform the current rules used by lib and src directories. The only exception for tests is that unreachable (dead) code is allowed. test-fs-non-number-arguments-throw had to be excluded from the changes because of a weird issue on Windows CI. PR-URL: https://github.com/nodejs/io.js/pull/1721 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
48 lines
1.2 KiB
JavaScript
48 lines
1.2 KiB
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 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);
|
|
});
|
|
|