Skip to content

Commit c56aa82

Browse files
thefourtheyervagg
authored andcommittedAug 28, 2015
test: use tmpDir instead of fixturesDir
This test was using fixturesDir to create temp files to test. This patch replaces that with tmpDir and uses `assert` module to test. Also, this test has been moved to `parallel`, from `sequential` mode. PR-URL: #2583 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Rich Trott <rtrott@gmail.com>
1 parent 8936302 commit c56aa82

File tree

2 files changed

+31
-46
lines changed

2 files changed

+31
-46
lines changed
 

‎test/parallel/test-regress-GH-3739.js

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
'use strict';
2+
3+
const common = require('../common');
4+
const assert = require('assert');
5+
const fs = require('fs');
6+
const path = require('path');
7+
8+
var dir = path.resolve(common.tmpDir);
9+
10+
// Make sure that the tmp directory is clean
11+
common.refreshTmpDir();
12+
13+
// Make a long path.
14+
for (var i = 0; i < 50; i++) {
15+
dir = dir + '/1234567890';
16+
try {
17+
fs.mkdirSync(dir, '0777');
18+
} catch (e) {
19+
if (e.code !== 'EEXIST') {
20+
throw e;
21+
}
22+
}
23+
}
24+
25+
// Test if file exists synchronously
26+
assert(common.fileExists(dir), 'Directory is not accessible');
27+
28+
// Test if file exists asynchronously
29+
fs.access(dir, function(err) {
30+
assert(!err, 'Directory is not accessible');
31+
});

‎test/sequential/test-regress-GH-3739.js

-46
This file was deleted.

0 commit comments

Comments
 (0)
Please sign in to comment.