-
Notifications
You must be signed in to change notification settings - Fork 1
/
test.js
46 lines (42 loc) · 1.12 KB
/
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
41
42
43
44
45
46
var test = require('tape');
var fs = require('fs');
var slice = require('./index').slice;
var bufferReady = fs.readFileSync('./README.md');
test('normal test', function(t) {
var chunks = [];
fs.createReadStream('./README.md')
.pipe(slice(0, 10))
.on('data', chunks.push.bind(chunks))
.on('end', function() {
var res = Buffer.concat(chunks);
t.equal(res.length, 10);
t.equal(bufferEq(res, bufferReady.slice(0, 10)), true);
t.end();
});
});
test('normal test', function(t) {
var chunks = [];
fs.createReadStream('./README.md')
.pipe(slice(10, 20))
.on('data', chunks.push.bind(chunks))
.on('end', function() {
var res = Buffer.concat(chunks);
t.equal(res.length, 10);
t.equal(bufferEq(res, bufferReady.slice(10, 20)), true);
t.end();
});
});
function bufferEq(foo, bar) {
if (!Buffer.isBuffer(foo) || !Buffer.isBuffer(bar)) {
throw new TypeError('Arguments must be a buffer');
}
if (foo.length !== bar.length) {
return false;
}
for (var i = 0; i < foo.length; i++) {
if (foo[i] !== bar[i]) {
return false;
}
}
return true;
}