node/test/parallel/test-regress-GH-3542.js
Jeremiah Senkpiel 4067cde7ee test: abstract skip functionality to common
The tap skipping output is so prevalent yet obscure in nature that we
ought to move it into it's own function in test/common.js

Re-do of 52bae222a3 for v4.x

Ref: https://github.com/nodejs/node/pull/6697
PR-URL: https://github.com/nodejs/node/pull/7114
Reviewed-By: Myles Borins <myles.borins@gmail.com>
2016-06-23 17:25:10 -07:00

35 lines
771 B
JavaScript

'use strict';
const common = require('../common');
const assert = require('assert');
const fs = require('fs');
const path = require('path');
let succeeded = 0;
// This test is only relevant on Windows.
if (!common.isWindows) {
common.skip('Windows specific test.');
return;
}
function test(p) {
var result = fs.realpathSync(p);
assert.strictEqual(result, path.resolve(p));
fs.realpath(p, function(err, result) {
assert.ok(!err);
assert.strictEqual(result, path.resolve(p));
succeeded++;
});
}
test('//localhost/c$/windows/system32');
test('//localhost/c$/windows');
test('//localhost/c$/');
test('\\\\localhost\\c$');
test('c:\\');
test('c:');
test(process.env.windir);
process.on('exit', function() {
assert.strictEqual(succeeded, 7);
});