File size: 3,602 Bytes
d4b85c0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
import { test } from 'tap'
import TextLineStream from '../dist/textlinestream.es.mjs'

function concatArray() {
  const chunks = []
  
  return new TransformStream({
    transform(chunk) {
      chunks.push(chunk)
    },
    flush(controller) {
      controller.enqueue(chunks)
    }
  });
}

test('split two lines on end', async function (t) {
  const {readable, writable} =  new TextLineStream()
    
  const readStream = readable
    .pipeThrough(concatArray())      

  const writer = writable.getWriter();
  writer.write('hello\nworld');
  writer.close();
  
  for await (const list of readStream) {
    t.same(list, ['hello', 'world']);
    t.end();
  } 
})

test('split two lines on two writes', async function (t) {
  const {readable, writable} =  new TextLineStream()
    
  const readStream = readable
    .pipeThrough(concatArray())      

  const writer = writable.getWriter();
  writer.write('hello');
  writer.write('\nworld');
  writer.close();
  
  for await (const list of readStream) {
    t.same(list, ['hello', 'world']);
    t.end();
  } 
})

test('split four lines on three writes', async function (t) {
  const {readable, writable} =  new TextLineStream()
    
  const readStream = readable
    .pipeThrough(concatArray())      

  const writer = writable.getWriter();
  writer.write('hello\nwor');
  writer.write('ld\nbye\nwo');
  writer.write('rld');
  writer.close();
  
  for await (const list of readStream) {
    t.same(list, ['hello', 'world', 'bye', 'world']);
    t.end();
  } 
})

test('accumulate multiple writes', async function (t) {
  const {readable, writable} =  new TextLineStream()
    
  const readStream = readable
    .pipeThrough(concatArray())      

  const writer = writable.getWriter();
  writer.write('hello');
  writer.write('world');
  writer.close();
  
  for await (const list of readStream) {
    t.same(list, ['helloworld']);
    t.end();
  } 
})

test('support a mapper function', async function (t) {
  const {readable, writable} =  new TextLineStream({
    mapperFun: JSON.parse
  })
    
  const readStream = readable
    .pipeThrough(concatArray())      
    
  const a = { a: '42' }
  const b = { b: '24' }

  const writer = writable.getWriter();
  writer.write(JSON.stringify(a));
  writer.write('\n');
  writer.write(JSON.stringify(b));
  writer.close();
  
  for await (const list of readStream) {
    t.same(list, [a,b]);
    t.end();
  } 
})

test('split lines windows-style', async function (t) {
  const {readable, writable} =  new TextLineStream()
    
  const readStream = readable
    .pipeThrough(concatArray())      

  const writer = writable.getWriter();
  writer.write('hello\r\nworld');
  writer.close();
  
  for await (const list of readStream) {
    t.same(list, ['hello', 'world']);
    t.end();
  } 
})

test('do not return empty lines (default)', async function (t) {
  const {readable, writable} =  new TextLineStream()
    
  const readStream = readable
    .pipeThrough(concatArray())      

  const writer = writable.getWriter();
  writer.write('hello\n\nworld');
  writer.close();
  
  for await (const list of readStream) {
    t.same(list, ['hello', 'world']);
    t.end();
  }
})

test('return empty lines - returnEmptyLines option', async function (t) {
  const {readable, writable} =  new TextLineStream({
    returnEmptyLines: true
  })
    
  const readStream = readable
    .pipeThrough(concatArray())      

  const writer = writable.getWriter();
  writer.write('hello\n\nworld');
  writer.close();
  
  for await (const list of readStream) {
    t.same(list, ['hello', '', 'world']);
    t.end();
  }
})