mirror of
https://github.com/nodejs/node.git
synced 2024-11-30 23:43:09 +01:00
80a1cf7425
This is a followup of https://github.com/nodejs/io.js/pull/2109. The tests which didn't make it in #2109, are included in this patch. The skip messages are supposed to follow the format 1..0 # Skipped: [Actual reason why the test is skipped] and the tests should be skipped with the return statement. PR-URL: https://github.com/nodejs/io.js/pull/2290 Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com> Reviewed-By: Johan Bergström <bugs@bergstroem.nu>
36 lines
779 B
JavaScript
36 lines
779 B
JavaScript
'use strict';
|
|
var common = require('../common'),
|
|
assert = require('assert'),
|
|
fs = require('fs'),
|
|
path = require('path'),
|
|
succeeded = 0;
|
|
|
|
// This test is only relevant on Windows.
|
|
if (!common.isWindows) {
|
|
console.log('1..0 # Skipped: 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);
|
|
});
|