-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtest.js
77 lines (68 loc) · 1.67 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
const tape = require('tape')
const ram = require('random-access-memory')
const createStream = require('./')
tape('small buf', function (t) {
const buf = Buffer.alloc(1000).fill('abc')
const st = ram(buf)
const output = []
createStream(st)
.on('data', function (data) {
output.push(data)
})
.on('end', function () {
t.same(buf, Buffer.concat(output))
t.end()
})
})
tape('empty buf', function (t) {
const buf = Buffer.alloc(0)
const st = ram(buf)
const output = []
createStream(st)
.on('data', function (data) {
output.push(data)
})
.on('end', function () {
t.same(buf, Buffer.concat(output))
t.end()
})
})
tape('bigger buf', function (t) {
const buf = Buffer.alloc(20 * 65536).fill('abc')
const st = ram(buf)
const output = []
createStream(st)
.on('data', function (data) {
output.push(data)
})
.on('end', function () {
t.same(buf, Buffer.concat(output))
t.end()
})
})
tape('bigger buf and start', function (t) {
const buf = Buffer.alloc(20 * 65536).fill('abc')
const st = ram(buf)
const output = []
createStream(st, {start: 5555})
.on('data', function (data) {
output.push(data)
})
.on('end', function () {
t.same(buf.slice(5555), Buffer.concat(output))
t.end()
})
})
tape('bigger buf and start and end', function (t) {
const buf = Buffer.alloc(20 * 65536).fill('abc')
const st = ram(buf)
const output = []
createStream(st, {start: 5555, end: 6666})
.on('data', function (data) {
output.push(data)
})
.on('end', function () {
t.same(buf.slice(5555, 6666), Buffer.concat(output))
t.end()
})
})