-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathlaika.test.ts
314 lines (270 loc) · 10 KB
/
laika.test.ts
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
303
304
305
306
307
308
309
310
311
312
313
314
import gql from 'graphql-tag'
import waitFor from 'wait-for-observables'
import {
ApolloLink,
execute,
fromError,
Observable,
Observer,
Operation,
} from '@apollo/client/core'
import { DEFAULT_GLOBAL_PROPERTY_NAME } from './constants'
import { Laika } from './laika'
import { onNextTick, WaitForResult } from './testUtils'
const query = gql`
query helloQuery {
sample {
id
}
}
`
const goodbyeQuery = gql`
query goodbyeQuery {
sample {
id
}
}
`
const subscription = gql`
subscription helloSubscription {
sample {
id
}
}
`
const standardError = new Error('I never work')
const data = { data: { hello: 'world' } }
const mockData = { data: { goodbye: 'world' } }
const mockDataImmediate = { data: { so: 'fast' } }
describe('Laika', () => {
it('returns passthrough data from the following link', async () => {
const laika = new Laika({
referenceName: DEFAULT_GLOBAL_PROPERTY_NAME,
})
const interceptionLink = laika.createLink()
const backendStub = jest.fn(() =>
Observable.of(data),
) as unknown as ApolloLink
const link = ApolloLink.from([interceptionLink, backendStub])
const [result] = (await waitFor(execute(link, { query }))) as WaitForResult<
typeof data
>
const { values } = result!
expect(values).toEqual([data])
expect(backendStub).toHaveBeenCalledTimes(1)
})
describe('Intercept API', () => {
it('returns mocked data and does not connect to the following link', async () => {
const laika = new Laika({
referenceName: DEFAULT_GLOBAL_PROPERTY_NAME,
})
const interceptionLink = laika.createLink()
const backendStub = jest.fn(() => Observable.of(data))
const link = ApolloLink.from([interceptionLink, backendStub as any])
const interceptor = laika.intercept()
interceptor.mockResultOnce({
result: mockData,
})
const [result] = (await waitFor(
execute(link, { query }),
)) as WaitForResult<unknown>
const { values } = result!
expect(values).toEqual([mockData])
expect(backendStub).toHaveBeenCalledTimes(0)
})
it('returns mock once and then falls back to the following link - twice in a row', async () => {
const laika = new Laika({
referenceName: DEFAULT_GLOBAL_PROPERTY_NAME,
})
const interceptionLink = laika.createLink()
const backendStub = jest.fn(() => Observable.of(data))
const link = ApolloLink.from([interceptionLink, backendStub as any])
const interceptor = laika.intercept()
let triedCount = 0
while (++triedCount <= 2) {
interceptor.mockResultOnce({
result: mockData,
})
// eslint-disable-next-line no-await-in-loop
const [result1, result2] = (await waitFor(
execute(link, { query }),
execute(link, { query }),
)) as WaitForResult<unknown>
const { values: mockValues } = result1!
const { values: remoteValues } = result2!
expect(mockValues).toEqual([mockData])
expect(remoteValues).toEqual([data])
expect(backendStub).toHaveBeenCalledTimes(triedCount)
}
})
it('connects to a mocked subscription without connecting to the following link and immediately fires mocked data', async () => {
const laika = new Laika({
referenceName: DEFAULT_GLOBAL_PROPERTY_NAME,
})
const interceptionLink = laika.createLink()
const mockedResultFn = jest.fn(() => ({ result: mockDataImmediate }))
const backendStub = jest.fn(() => Observable.of(data))
const link = ApolloLink.from([interceptionLink, backendStub as any])
const interceptor = laika.intercept()
// testing that this will get pushed immediately
interceptor.mockResultOnce(mockedResultFn)
const observer = {
next: jest.fn(),
complete: jest.fn(),
error: jest.fn(),
}
const sub = execute(link, { query: subscription }).subscribe(observer)
expect.assertions(7)
await onNextTick(() => {
expect(mockedResultFn).toHaveBeenCalledTimes(1)
expect(observer.next).toHaveBeenCalledTimes(1)
expect(observer.next).toHaveBeenCalledWith(mockDataImmediate)
expect(observer.complete).not.toHaveBeenCalled()
expect(backendStub).toHaveBeenCalledTimes(0)
sub.unsubscribe()
expect(observer.complete).not.toHaveBeenCalled()
expect(observer.error).not.toHaveBeenCalled()
})
})
it('connects to a mocked subscription without connecting to the following link, then fires a mock update', async () => {
const laika = new Laika({
referenceName: DEFAULT_GLOBAL_PROPERTY_NAME,
})
const interceptionLink = laika.createLink()
const backendStub = jest.fn(() => Observable.of(data))
const link = ApolloLink.from([interceptionLink, backendStub as any])
const interceptor = laika.intercept()
const observer = {
next: jest.fn(),
complete: jest.fn(),
error: jest.fn(),
}
expect.assertions(7)
const sub = execute(link, { query: subscription }).subscribe(observer)
await onNextTick(() => {
expect(observer.next).not.toHaveBeenCalled()
interceptor.fireSubscriptionUpdate({ result: mockData })
expect(observer.next).toHaveBeenCalledTimes(1)
expect(observer.next).toHaveBeenCalledWith(mockData)
expect(observer.complete).not.toHaveBeenCalled()
expect(backendStub).toHaveBeenCalledTimes(0)
sub.unsubscribe()
expect(observer.complete).not.toHaveBeenCalled()
expect(observer.error).not.toHaveBeenCalled()
})
})
it('waitForActiveSubscription generates a Promise when no current active subscription, which resolves once one is made', async () => {
const laika = new Laika({
referenceName: DEFAULT_GLOBAL_PROPERTY_NAME,
})
const interceptionLink = laika.createLink()
const backendStub = jest.fn(() => Observable.of(data))
const link = ApolloLink.from([interceptionLink, backendStub as any])
const interceptor = laika.intercept()
const observer = {
next: jest.fn(),
complete: jest.fn(),
error: jest.fn(),
}
expect.assertions(3)
const hasSettled = jest.fn()
const waitPromise = interceptor.waitForActiveSubscription()
expect(waitPromise).toBeInstanceOf(Promise)
void waitPromise!.then(hasSettled)
await onNextTick(() => {
expect(hasSettled).not.toHaveBeenCalled()
})
const sub = execute(link, { query: subscription }).subscribe(observer)
await onNextTick(() => {
expect(hasSettled).toHaveBeenCalled()
sub.unsubscribe()
})
})
describe('intercept with a matcher', () => {
it.each([
['MatcherObject (operationName)', { operationName: 'goodbyeQuery' }],
['MatcherObject (variables)', { variables: { type: 'goodbye' } }],
[
'MatcherFn',
(operation: Operation) => operation.operationName === 'goodbyeQuery',
],
])(
'correctly intercepts only operations matched by %s and leaves other alone',
async (_, matcher) => {
const laika = new Laika({
referenceName: DEFAULT_GLOBAL_PROPERTY_NAME,
})
const interceptionLink = laika.createLink()
const backendStub = jest.fn(() => Observable.of(data))
const link = ApolloLink.from([interceptionLink, backendStub as any])
const interceptor = laika.intercept(matcher)
interceptor.mockResultOnce({
result: mockData,
})
const [result1, result2] = (await waitFor(
execute(link, { query }),
execute(link, {
query: goodbyeQuery,
variables: { type: 'goodbye' },
}),
)) as WaitForResult<unknown>
const { values } = result1!
const { values: goodbyeValues } = result2!
expect(values).toEqual([data])
expect(goodbyeValues).toEqual([mockData])
expect(backendStub).toHaveBeenCalledTimes(1)
},
)
})
})
it('calls unsubscribe on the appropriate downstream observable', async () => {
const laika = new Laika({
referenceName: DEFAULT_GLOBAL_PROPERTY_NAME,
})
const interceptionLink = laika.createLink()
const unsubscribeStub = jest.fn()
// Hold the test hostage until we're hit
let underlyingObservable: any
const untilSubscribed = new Promise((resolve) => {
underlyingObservable = {
subscribe(observer: Observer<typeof data>) {
resolve(undefined) // Release hold on test.
void Promise.resolve().then(() => {
observer.next!(data)
observer.complete!()
})
return { unsubscribe: unsubscribeStub, closed: false }
},
}
})
const backendStub = jest.fn()
backendStub.mockReturnValueOnce(underlyingObservable!)
const link = ApolloLink.from([interceptionLink, backendStub as any])
// eslint-disable-next-line @typescript-eslint/no-shadow
const subscription = execute(link, { query }).subscribe({})
await untilSubscribed
subscription.unsubscribe()
expect(unsubscribeStub).toHaveBeenCalledTimes(1)
})
it('supports multiple subscribers to the same request', async () => {
const laika = new Laika({
referenceName: DEFAULT_GLOBAL_PROPERTY_NAME,
})
const interceptionLink = laika.createLink()
const stub = jest.fn()
stub.mockReturnValueOnce(fromError(standardError))
stub.mockReturnValueOnce(fromError(standardError))
stub.mockReturnValueOnce(Observable.of(data))
const link = ApolloLink.from([interceptionLink, stub as any])
const observable = execute(link, { query })
const [result1, result2, result3] = (await waitFor(
observable,
observable,
observable,
)) as any
expect(result1).toEqual({ error: standardError })
expect(result2).toEqual({ error: standardError })
expect(result3.values).toEqual([data])
expect(stub).toHaveBeenCalledTimes(3)
})
})