test: fix flaky unit test test-fs-realpath.js

The test was not performing proper cleanup and so it would
fail if run more than one time on the same machine.
This commit is contained in:
Alexis Campailla 2013-12-19 07:55:06 -08:00 committed by Fedor Indutny
parent ea18aecc82
commit f030d8426a

View File

@ -410,6 +410,17 @@ function test_up_multiple(cb) {
console.log('skipping symlink test (no privs)');
return runNextTest();
}
function cleanup() {
['a/b',
'a'
].forEach(function(folder) {
try {fs.rmdirSync(tmp(folder))} catch (ex) {}
});
}
function setup() {
cleanup();
}
setup();
fs.mkdirSync(tmp('a'), 0755);
fs.mkdirSync(tmp('a/b'), 0755);
fs.symlinkSync('..', tmp('a/d'), 'dir');
@ -432,6 +443,7 @@ function test_up_multiple(cb) {
if (er) throw er;
assert.equal(abedabed_real, real);
cb();
cleanup();
});
});
}