forked from sindresorhus/gulp-chown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.js
40 lines (34 loc) · 836 Bytes
/
test.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
'use strict';
var assert = require('assert');
var gutil = require('gulp-util');
var chown = require('./');
it('should chown files', function (cb) {
var stream = chown(501, 20);
stream.on('data', function (file) {
assert.strictEqual(file.stat.uid, 501);
assert.strictEqual(file.stat.gid, 20);
cb();
});
stream.write(new gutil.File({
stat: {
uid: 400,
gid: 10
},
contents: new Buffer('')
}));
});
it('should chown files using a username', function (cb) {
var stream = chown(process.env.TRAVIS ? 'travis' : 'root');
stream.on('data', function (file) {
assert.strictEqual(file.stat.uid, process.env.TRAVIS ? 1000 : 0);
assert.strictEqual(file.stat.gid, process.env.TRAVIS ? 1000 : 0);
cb();
});
stream.write(new gutil.File({
stat: {
uid: 400,
gid: 10
},
contents: new Buffer('')
}));
});