This repository has been archived by the owner on Dec 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
test.js
302 lines (298 loc) · 9.87 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
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
const parapet = require('./index.js')
const boomerang = require('boomerang-http')
const EventSource = require('eventsource')
const fetch = require('node-fetch')
jest.mock('boomerang-http')
jest.mock('node-fetch')
jest.mock('eventsource')
let validInput
const resolvedHost1 = {
URL: 'https://bridgeport.com',
host: '121h7eKPgbFRTMdRpp8WpbaKjGLa978aqT'
}
const resolvedHost2 = {
URL: 'https://bridgeport.net',
host: '121h7eKPgbFRTMdRpp8WpbaKjGLa978aqT'
}
const resolvedHost3 = {
URL: 'https://bridgeport.org',
host: '121h7eKPgbFRTMdRpp8WpbaKjGLa978aqT'
}
describe('parapet', () => {
beforeEach(() => {
jest.clearAllMocks()
jest.resetModules()
validInput = {
bridge: '12kZWuCjz9Q9mKieojXZVxGf2UMikcbW2h',
request: {
type: 'streaming-query',
query: {
v: 3,
q: {
collection: 'users',
find: {}
}
}
},
resolverCache: false
}
})
it('is a function', () => {
expect(parapet).toEqual(expect.any(Function))
})
it('Calls boomerang with a query for the bridge from the first resolver', async () => {
boomerang.mockReturnValueOnce([resolvedHost1, resolvedHost2])
await parapet(validInput)
expect(boomerang).toHaveBeenCalledWith(
'GET',
expect.any(String),
{},
{ format: 'json' }
)
const expectedQuery = {
v: 3,
q: {
collection: 'bridges',
find: {
host: {
$in: [
'121h7eKPgbFRTMdRpp8WpbaKjGLa978aqT',
'1PgzD5r2Et6o3kv8nQSYBsVxDZCD8M4Rrf'
]
},
bridge: '12kZWuCjz9Q9mKieojXZVxGf2UMikcbW2h',
revoked: false,
expiryTime: { $gt: expect.any(String) }
},
limit: 4
}
}
const requestedURL = boomerang.mock.calls[0][1]
expect(requestedURL.startsWith(
'https://bridgeport.babbage.systems/1TW5ogeDZyvq5q7tEjpNcBmJWsmQk7AeQ/q'
)).toEqual(true)
expect(JSON.parse(
Buffer.from(requestedURL.split('/')[5], 'base64').toString()
)).toEqual(expectedQuery)
})
it('Falls back to second resolver if first resolver fails', async () => {
boomerang
.mockImplementationOnce(() => {
throw new Error('failed')
}).mockReturnValueOnce([resolvedHost1, resolvedHost2])
await parapet(validInput)
expect(boomerang).toHaveBeenCalledTimes(2)
const boomCalls = boomerang.mock.calls.map(call => call[1].split('/1')[0])
expect(boomCalls).toEqual([
'https://bridgeport.babbage.systems',
'https://bridgeport-failover.babbage.systems'
])
})
it('Uses a custom list of resolvers', async () => {
validInput.resolvers = [
'https://8.8.8.8'
]
boomerang
.mockReturnValueOnce([resolvedHost1, resolvedHost2])
await parapet(validInput)
expect(boomerang).toHaveBeenCalledTimes(1)
const boomCalls = boomerang.mock.calls.map(call => call[1].split('/1')[0])
expect(boomCalls).toEqual([
'https://8.8.8.8'
])
})
it('Throws an Error if the bridge is unresolvable', async () => {
boomerang
.mockImplementation(() => {
throw new Error('failed')
})
await expect(parapet(validInput)).rejects.toThrow(new Error(
`The bridge you are attempting to reach (${validInput.bridge}) is not resolvable by any of the BHRP resolvers (either the ones you provided or the default resolvers). Either no one is hosting this bridge right now (the most likely case), or all of the BHRP resolvers are having errors. For help, you may contact [email protected]`
))
expect(boomerang).toHaveBeenCalledTimes(3)
})
describe('When resolving the available hosts succeeds', () => {
beforeEach(() => {
boomerang
.mockReturnValueOnce([resolvedHost1, resolvedHost2, resolvedHost3])
})
it('Does not try to resolve a second time when caching is enabled', async () => {
validInput.resolverCache = true
await parapet(validInput)
await parapet(validInput)
await parapet(validInput)
await parapet(validInput)
await parapet(validInput)
expect(boomerang).toHaveBeenCalledTimes(1)
})
describe('When request type is socket', () => {
beforeEach(() => {
validInput.request = {
type: 'socket',
query: { v: 3, q: { find: {} } }
}
})
it('Calls EventSource with the provided query, returning the result', async () => {
const returnValue = await parapet(validInput)
expect(EventSource).toHaveBeenCalledWith(
`https://bridgeport.com/12kZWuCjz9Q9mKieojXZVxGf2UMikcbW2h/s/${
Buffer.from(JSON.stringify({ v: 3, q: { find: {} } }))
.toString('base64')}`
)
expect(returnValue.addEventListener).toEqual(expect.any(Function))
})
it('Uses an alternate host if the first host fails', async () => {
EventSource.mockImplementationOnce(() => {
throw new Error('error')
})
await parapet(validInput)
expect(EventSource).toHaveBeenCalledTimes(2)
expect(EventSource).toHaveBeenCalledWith(
`https://bridgeport.com/12kZWuCjz9Q9mKieojXZVxGf2UMikcbW2h/s/${
Buffer.from(JSON.stringify({ v: 3, q: { find: {} } }))
.toString('base64')}`
)
expect(EventSource).toHaveBeenLastCalledWith(
`https://bridgeport.net/12kZWuCjz9Q9mKieojXZVxGf2UMikcbW2h/s/${
Buffer.from(JSON.stringify({ v: 3, q: { find: {} } }))
.toString('base64')}`
)
})
})
describe('When request type is streaming-query', () => {
it('Calls fetch with the provided query, returning the result', async () => {
fetch.mockReturnValue('retval')
const returnValue = await parapet(validInput)
expect(fetch).toHaveBeenCalledWith(
`https://bridgeport.com/12kZWuCjz9Q9mKieojXZVxGf2UMikcbW2h/q/${
Buffer.from(JSON.stringify({
v: 3,
q: {
collection: 'users',
find: {}
}
})).toString('base64')}`
)
expect(returnValue).toEqual('retval')
})
it('Uses an alternate host if the first host fails', async () => {
fetch.mockImplementationOnce(() => {
throw new Error('error')
})
await parapet(validInput)
expect(fetch).toHaveBeenCalledTimes(2)
expect(fetch).toHaveBeenCalledWith(
`https://bridgeport.com/12kZWuCjz9Q9mKieojXZVxGf2UMikcbW2h/q/${
Buffer.from(JSON.stringify({
v: 3,
q: {
collection: 'users',
find: {}
}
})).toString('base64')}`
)
expect(fetch).toHaveBeenCalledWith(
`https://bridgeport.net/12kZWuCjz9Q9mKieojXZVxGf2UMikcbW2h/q/${
Buffer.from(JSON.stringify({
v: 3,
q: {
collection: 'users',
find: {}
}
})).toString('base64')}`
)
})
})
describe('When request type is json-query', () => {
beforeEach(() => {
validInput.request.type = 'json-query'
})
it('Calls boomerang with the provided query, returning the result', async () => {
boomerang.mockReturnValue('retval')
const returnValue = await parapet(validInput)
expect(boomerang).toHaveBeenCalledWith(
'GET',
`https://bridgeport.com/12kZWuCjz9Q9mKieojXZVxGf2UMikcbW2h/q/${
Buffer.from(JSON.stringify({
v: 3,
q: {
collection: 'users',
find: {}
}
})).toString('base64')}`,
{},
{ format: 'json' }
)
expect(returnValue).toEqual('retval')
})
it('Uses an alternate host if the first host fails', async () => {
boomerang.mockImplementationOnce(() => {
throw new Error('error')
})
await parapet(validInput)
expect(boomerang).toHaveBeenCalledTimes(3) // 1 for the initial resolve
expect(boomerang).toHaveBeenCalledWith(
'GET',
`https://bridgeport.com/12kZWuCjz9Q9mKieojXZVxGf2UMikcbW2h/q/${
Buffer.from(JSON.stringify({
v: 3,
q: {
collection: 'users',
find: {}
}
})).toString('base64')}`,
{},
{ format: 'json' }
)
expect(boomerang).toHaveBeenLastCalledWith(
'GET',
`https://bridgeport.net/12kZWuCjz9Q9mKieojXZVxGf2UMikcbW2h/q/${
Buffer.from(JSON.stringify({
v: 3,
q: {
collection: 'users',
find: {}
}
})).toString('base64')}`,
{},
{ format: 'json' }
)
})
})
describe('When request type is fetch', () => {
beforeEach(() => {
validInput.request = {
type: 'fetch',
path: '/foobar',
fetchConfig: {
method: 'post'
}
}
})
it('Calls fetch with the provided request, returning the result', async () => {
fetch.mockReturnValue('retval')
const returnValue = await parapet(validInput)
expect(fetch).toHaveBeenCalledWith(
'https://bridgeport.com/12kZWuCjz9Q9mKieojXZVxGf2UMikcbW2h/foobar',
{ method: 'post' }
)
expect(returnValue).toEqual('retval')
})
it('Uses an alternate host if the first host fails', async () => {
fetch.mockImplementationOnce(() => {
throw new Error('error')
})
await parapet(validInput)
expect(fetch).toHaveBeenCalledTimes(2)
expect(fetch).toHaveBeenCalledWith(
'https://bridgeport.com/12kZWuCjz9Q9mKieojXZVxGf2UMikcbW2h/foobar',
{ method: 'post' }
)
expect(fetch).toHaveBeenLastCalledWith(
'https://bridgeport.net/12kZWuCjz9Q9mKieojXZVxGf2UMikcbW2h/foobar',
{ method: 'post' }
)
})
})
})
})