mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.3 KiB
51 lines
1.3 KiB
'use strict';
|
|
|
|
const common = require('../common');
|
|
if (!common.isWindows)
|
|
common.skip('Test for Windows only');
|
|
|
|
const assert = require('assert');
|
|
const fs = require('fs');
|
|
const spawnSync = require('child_process').spawnSync;
|
|
|
|
let result;
|
|
|
|
// create a subst drive
|
|
const driveLetters = 'ABCDEFGHIJKLMNOPQRSTUWXYZ';
|
|
let drive;
|
|
let i;
|
|
for (i = 0; i < driveLetters.length; ++i) {
|
|
drive = `${driveLetters[i]}:`;
|
|
result = spawnSync('subst', [drive, common.fixturesDir]);
|
|
if (result.status === 0)
|
|
break;
|
|
}
|
|
if (i === driveLetters.length)
|
|
common.skip('Cannot create subst drive');
|
|
|
|
// schedule cleanup (and check if all callbacks where called)
|
|
process.on('exit', function() {
|
|
spawnSync('subst', ['/d', drive]);
|
|
});
|
|
|
|
// test:
|
|
const filename = `${drive}\\empty.js`;
|
|
const filenameBuffer = Buffer.from(filename);
|
|
|
|
result = fs.realpathSync(filename);
|
|
assert.strictEqual(result, filename);
|
|
|
|
result = fs.realpathSync(filename, 'buffer');
|
|
assert(Buffer.isBuffer(result));
|
|
assert(result.equals(filenameBuffer));
|
|
|
|
fs.realpath(filename, common.mustCall(function(err, result) {
|
|
assert.ifError(err);
|
|
assert.strictEqual(result, filename);
|
|
}));
|
|
|
|
fs.realpath(filename, 'buffer', common.mustCall(function(err, result) {
|
|
assert.ifError(err);
|
|
assert(Buffer.isBuffer(result));
|
|
assert(result.equals(filenameBuffer));
|
|
}));
|
|
|