Skip to content

Commit cdbc530

Browse files
stevenvachondavglass
authored andcommitted
Various changes (#48)
[fixes #45] [fixes #47] Added EEXIST and ENOTDIR to errors
1 parent 724900c commit cdbc530

File tree

5 files changed

+22
-4
lines changed

5 files changed

+22
-4
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,4 @@ CVS/
1212
.com.apple.timemachine.supported
1313
tests/out/
1414
.nyc_output
15+
package-lock.json

.travis.yml

+1
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ language: node_js
22
node_js:
33
- '4'
44
- '6'
5+
- '8'

lib/index.js

+15-3
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,13 @@ var createDirs = function(dirs, to, options, callback) {
113113
if (to && typeof to === 'string') {
114114
fs.stat(to, stack.add(function(err, s) {
115115
if (s && !s.isDirectory()) {
116-
options.errors.push(new Error(to + ' exists and is not a directory, can not create'));
116+
/*istanbul ignore next*/
117+
err = new Error(to + ' exists and is not a directory, can not create');
118+
/*istanbul ignore next*/
119+
err.code = 'ENOTDIR';
120+
/*istanbul ignore next*/
121+
err.errno = 27;
122+
options.errors.push(err);
117123
} else {
118124
mkdirp(to, stat.mode, stack.add(function(err) {
119125
/*istanbul ignore next*/
@@ -135,13 +141,19 @@ var copyFile = function(from, to, options, callback) {
135141
var dir = path.dirname(to);
136142
mkdirp(dir, function() {
137143
fs.stat(to, function(statError) {
144+
var err;
138145
if(!statError && options.overwrite !== true) {
139-
return callback(new Error('File '+to+' exists'));
146+
/*istanbul ignore next*/
147+
err = new Error('File '+to+' exists');
148+
/*istanbul ignore next*/
149+
err.code = 'EEXIST';
150+
/*istanbul ignore next*/
151+
err.errno = 47;
152+
return callback(err);
140153
}
141154

142155
var fromFile = fs.createReadStream(from),
143156
toFile = fs.createWriteStream(to),
144-
err,
145157
called = false,
146158
cb = function(e) {
147159
if (!called) {

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"github-changes": "^1.0.4",
1717
"jenkins-mocha": "^4.0.0",
1818
"jshint": "^2.9.2",
19-
"nyc": "^10.0.0",
19+
"nyc": "^11.0.2",
2020
"yui-lint": "~0.2.0"
2121
},
2222
"contributors": [

tests/full.js

+4
Original file line numberDiff line numberDiff line change
@@ -304,6 +304,8 @@ describe('cpr test suite', function() {
304304
assert.ok(errs.list);
305305
assert.ok(errs.list[0]);
306306
assert.ok(errs.list[0].message.match(/exists and is not a directory, can not create/));
307+
assert.equal(errs.list[0].code, 'ENOTDIR');
308+
assert.equal(errs.list[0].errno, 27);
307309
done();
308310
});
309311
});
@@ -371,6 +373,8 @@ describe('cpr test suite', function() {
371373
assert.equal(undefined, status);
372374
assert(err instanceof Error);
373375
assert.ok(/^File .* exists$/.test(err.message));
376+
assert.equal(err.code, 'EEXIST');
377+
assert.equal(err.errno, 47);
374378
done();
375379
});
376380
});

0 commit comments

Comments
 (0)