-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtest.js
229 lines (214 loc) · 5.33 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
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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
'use strict'
const { isWindows } = require('which-runtime')
const test = require('brittle')
const streamx = require('streamx')
const { Server, Client } = require('.')
const socketPath = isWindows ? '\\\\.\\pipe\\pear-ipc-test-pipe' : 'test.sock'
test('ipc request', async (t) => {
t.plan(1)
const server = new Server({
socketPath,
handlers: { start: (params) => params.result }
})
t.teardown(() => server.close())
const client = new Client({
socketPath,
connect: true
})
await server.ready()
await client.ready()
t.is(await client.start({ result: 'good' }), 'good')
})
test('ipc request api wrapped', async (t) => {
t.plan(1)
const api = {
start (method) {
return async (params) => {
const result = await method.request(params)
return 'very ' + result
}
}
}
const server = new Server({
socketPath,
handlers: { start: (params) => params.result }
})
t.teardown(() => server.close())
const client = new Client({
socketPath,
api,
connect: true
})
t.teardown(() => server.close())
await server.ready()
await client.ready()
t.is(await client.start({ result: 'good' }), 'very good')
})
test('ipc stream', async (t) => {
t.plan(4)
const server = new Server({
socketPath,
handlers: {
messages: (params) => {
t.is(params.result, 'good')
const stream = new streamx.PassThrough()
stream.push('ex')
setImmediate(() => {
stream.push('streamly')
setImmediate(() => {
stream.push(params.result)
stream.end()
})
})
return stream
}
}
})
t.teardown(() => server.close())
const client = new Client({
socketPath,
connect: true
})
await server.ready()
await client.ready()
const stream = client.messages({ result: 'good' })
let count = 0
for await (const data of stream) {
count += 1
if (count === 1) t.is(data, 'ex')
if (count === 2) t.is(data, 'streamly')
if (count === 3) {
t.is(data, 'good')
break
}
}
})
test('ipc stream api wrapped', async (t) => {
t.plan(4)
const server = new Server({
socketPath,
handlers: {
messages: (params) => {
t.is(params.result, 'very good')
const stream = new streamx.PassThrough()
stream.push('ex')
setImmediate(() => {
stream.push('streamly')
setImmediate(() => {
stream.push(params.result)
})
})
return stream
}
}
})
t.teardown(() => server.close())
const client = new Client({
socketPath,
connect: true,
api: {
messages (method) {
return (params) => {
const stream = method.createRequestStream()
stream.write({ result: 'very ' + params.result })
return stream
}
}
}
})
await server.ready()
await client.ready()
const stream = client.messages({ result: 'good' })
let count = 0
for await (const data of stream) {
count += 1
if (count === 1) t.is(data, 'ex')
if (count === 2) t.is(data, 'streamly')
if (count === 3) {
t.is(data, 'very good')
break
}
}
})
test('ipc stream w/ opts.onpipeline', async (t) => {
t.plan(6)
let serverStream = null
const server = new Server({
socketPath,
onpipeline (src, dst) {
t.is(src, serverStream)
t.is(src._readableState.pipeTo, dst)
},
handlers: {
messages: (params) => {
t.is(params.result, 'good')
const stream = new streamx.PassThrough()
serverStream = stream
stream.name = 'boobyjoew'
stream.push('ex')
setImmediate(() => {
stream.push('streamly')
setImmediate(() => {
stream.push(params.result)
stream.end()
})
})
return stream
}
}
})
t.teardown(() => server.close())
const client = new Client({
socketPath,
connect: true
})
await server.ready()
await client.ready()
const stream = client.messages({ result: 'good' })
let count = 0
for await (const data of stream) {
count += 1
if (count === 1) t.is(data, 'ex')
if (count === 2) t.is(data, 'streamly')
if (count === 3) {
t.is(data, 'good')
break
}
}
})
test('ipc client close when heartbeat fails', async (t) => {
t.plan(2)
const server = new Server({
socketPath,
handlers: { start: (params) => params.result }
})
t.teardown(() => server.close())
const client = new Client({
socketPath,
connect: true
})
let pinged = false
const serverRegister = Server.prototype._register
const clientRegister = Client.prototype._register
Server.prototype._register = function (...args) {
if (this._server === null && this.id > -1) {
const { _ping } = this._internalHandlers
this._internalHandlers._ping = (params, client) => {
pinged = true
Server.prototype._register = serverRegister
return _ping(params, client)
}
return serverRegister.apply(this, args)
}
}
Client.prototype._register = function (...args) {
return clientRegister.apply(this, args)
}
client.once('close', () => {
t.pass('client closed by server when heartbeat fails')
t.is(pinged, true)
})
await server.ready()
await client.ready()
client._beat = () => {} // simulate heartbeat failure
})