-
Notifications
You must be signed in to change notification settings - Fork 9
/
index.tsx
396 lines (321 loc) · 10.1 KB
/
index.tsx
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
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
import createClient from "@grafoo/core";
import graphql from "@grafoo/core/tag";
import createTrasport from "@grafoo/http-transport";
import { mockQueryRequest } from "@grafoo/test-utils";
import { GrafooClient } from "@grafoo/types";
import * as React from "react";
import * as TestRenderer from "react-test-renderer";
import { Consumer, Provider } from "../src";
interface Post {
title: string;
content: string;
id: string;
__typename: string;
author: Author;
}
interface Author {
name: string;
id: string;
__typename: string;
posts?: Array<Post>;
}
interface Authors {
authors: Author[];
}
const AUTHORS = graphql`
{
authors {
name
posts {
title
body
}
}
}
`;
const AUTHOR = graphql`
query($id: ID!) {
author(id: $id) {
name
}
}
`;
const CREATE_AUTHOR = graphql`
mutation($name: String!) {
createAuthor(name: $name) {
name
}
}
`;
const POSTS_AND_AUTHORS = graphql`
{
posts {
title
body
author {
name
}
}
authors {
name
posts {
title
body
}
}
}
`;
describe("@grafoo/react", () => {
let client: GrafooClient;
beforeEach(() => {
jest.resetAllMocks();
const transport = createTrasport("https://some.graphql.api/");
client = createClient(transport, { idFields: ["id"] });
});
it("should not crash if a query is not given as prop", () => {
expect(() =>
TestRenderer.create(
<Provider client={client}>
<Consumer>{() => null}</Consumer>
</Provider>
)
).not.toThrow();
});
it("should not fetch a query if skip prop is set to true", async () => {
await mockQueryRequest(AUTHORS);
const spy = jest.spyOn(window, "fetch");
TestRenderer.create(
<Provider client={client}>
<Consumer query={AUTHORS} skip>
{() => null}
</Consumer>
</Provider>
);
expect(spy).not.toHaveBeenCalled();
});
it("should trigger listen on client instance", async () => {
await mockQueryRequest(AUTHORS);
const spy = jest.spyOn(client, "listen");
TestRenderer.create(
<Provider client={client}>
<Consumer query={AUTHORS} skip>
{() => null}
</Consumer>
</Provider>
);
expect(spy).toHaveBeenCalled();
});
it("should not crash on unmount", () => {
const testRenderer = TestRenderer.create(
<Provider client={client}>
<Consumer query={AUTHORS} skip>
{() => null}
</Consumer>
</Provider>
);
expect(() => testRenderer.unmount()).not.toThrow();
});
it("should execute render with default render argument", () => {
const mockRender = jest.fn().mockReturnValue(null);
TestRenderer.create(
<Provider client={client}>
<Consumer query={AUTHORS} skip>
{mockRender}
</Consumer>
</Provider>
);
const [[call]] = mockRender.mock.calls;
expect(call).toMatchObject({ loading: false, loaded: false });
expect(typeof call.load).toBe("function");
});
it("should execute render with the right data if a query is specified", async done => {
const { data } = await mockQueryRequest(AUTHORS);
const mockRender = createMockRenderFn(done, [
props => expect(props).toMatchObject({ loading: true, loaded: false }),
props => expect(props).toMatchObject({ loading: false, loaded: true, ...data })
]);
TestRenderer.create(
<Provider client={client}>
<Consumer query={AUTHORS}>{mockRender}</Consumer>
</Provider>
);
});
it("should render if skip changed value to true", async done => {
const { data } = await mockQueryRequest(AUTHORS);
const mockRender = createMockRenderFn(done, [
props => expect(props).toMatchObject({ loading: false, loaded: false }),
props => expect(props).toMatchObject({ loading: true, loaded: false }),
props => expect(props).toMatchObject({ loading: false, loaded: true, ...data })
]);
const App: React.SFC<{ skip?: boolean }> = ({ skip = false }) => (
<Provider client={client}>
<Consumer query={AUTHORS} skip={skip}>
{mockRender}
</Consumer>
</Provider>
);
const ctx = TestRenderer.create(<App skip />);
ctx.update(<App />);
await new Promise(resolve => setTimeout(resolve, 10));
ctx.update(<App />);
});
it("should rerender if variables prop has changed", async done => {
const { data } = await mockQueryRequest<Authors>(AUTHORS);
const mock = async variables => {
return (await mockQueryRequest<{ author: Author }>({
query: AUTHOR.query,
variables
})).data.author;
};
const firstVariables = { id: data.authors[0].id };
const secondVariables = { id: data.authors[1].id };
const firstAuthor = await mock(firstVariables);
let secondAuthor;
const mockRender = createMockRenderFn(done, [
props => expect(props).toMatchObject({ loading: true, loaded: false }),
props => expect(props.author).toMatchObject(firstAuthor),
props => expect(props).toMatchObject({ loading: true, loaded: true, author: firstAuthor }),
props => expect(props.author).toMatchObject(secondAuthor)
]);
class AuthorComponent extends React.Component {
constructor(props, context) {
super(props, context);
this.state = firstVariables;
setTimeout(async () => {
secondAuthor = await mock(secondVariables);
this.setState(secondVariables);
}, 100);
}
render() {
return (
<Consumer query={AUTHOR} variables={this.state}>
{mockRender}
</Consumer>
);
}
}
TestRenderer.create(
<Provider client={client}>
<AuthorComponent />
</Provider>
);
});
it("should not trigger a network request if the query is already cached", async done => {
const { data } = await mockQueryRequest(AUTHORS);
client.write(AUTHORS, data);
jest.resetAllMocks();
const spy = jest.spyOn(client, "execute");
const mockRender = createMockRenderFn(done, [
props => expect(props).toMatchObject({ loading: false, loaded: true, ...data })
]);
TestRenderer.create(
<Provider client={client}>
<Consumer query={AUTHORS}>{mockRender}</Consumer>
</Provider>
);
expect(spy).not.toHaveBeenCalled();
});
it("should handle simple mutations", async done => {
const variables = { name: "Bart" };
const data = await mockQueryRequest({ query: CREATE_AUTHOR.query, variables });
const mockRender = createMockRenderFn(done, [
props => {
props.createAuthor(variables).then(res => {
expect(res).toEqual(data);
});
}
]);
const mutations = { createAuthor: { query: CREATE_AUTHOR } };
TestRenderer.create(
<Provider client={client}>
<Consumer mutations={mutations}>{mockRender}</Consumer>
</Provider>
);
});
it("should handle mutations with cache update", async done => {
const { data } = await mockQueryRequest<Authors>(AUTHORS);
const mockRender = createMockRenderFn(done, [
props => {
expect(props).toMatchObject({ loading: true, loaded: false });
expect(typeof props.createAuthor).toBe("function");
},
props => {
expect(props).toMatchObject({ loading: false, loaded: true, ...data });
const variables = { name: "Homer" };
mockQueryRequest({ query: CREATE_AUTHOR.query, variables }).then(() => {
props.createAuthor(variables);
});
},
props => {
expect(props.authors.length).toBe(data.authors.length + 1);
const newAuthor = props.authors.find(a => a.id === "tempID");
expect(newAuthor).toMatchObject({ name: "Homer", id: "tempID" });
},
props => {
expect(props.authors.find(a => a.id === "tempID")).toBeUndefined();
expect(props.authors.find(a => a.name === "Homer")).toBeTruthy();
}
]);
TestRenderer.create(
<Provider client={client}>
<Consumer
query={AUTHORS}
mutations={{
createAuthor: {
query: CREATE_AUTHOR,
optimisticUpdate: ({ authors }, variables) => ({
authors: [...authors, { ...variables, id: "tempID" }]
}),
update: ({ authors }, data) => ({
authors: authors.map(a => (a.id === "tempID" ? data.createAuthor : a))
})
}
}}
>
{mockRender}
</Consumer>
</Provider>
);
});
it("should reflect updates that happen outside of the component", async done => {
const { data } = await mockQueryRequest<Authors>(AUTHORS);
client.write(AUTHORS, data);
const mockRender = createMockRenderFn(done, [
props => expect(props).toMatchObject({ loading: false, loaded: true, ...data }),
props => expect(props.authors[0].name).toBe("Homer")
]);
TestRenderer.create(
<Provider client={client}>
<Consumer query={AUTHORS}>{mockRender}</Consumer>
</Provider>
);
client.write(AUTHORS, {
authors: data.authors.map((a, i) => (!i ? { ...a, name: "Homer" } : a))
});
});
it("should not trigger a network request if a query field is cached", async done => {
const { data } = await mockQueryRequest<Authors>(POSTS_AND_AUTHORS);
client.write(POSTS_AND_AUTHORS, data);
const spy = jest.spyOn(client, "execute");
const mockRender = createMockRenderFn(done, [
props => {
expect(props).toMatchObject({ authors: data.authors, loading: false, loaded: true });
expect(spy).not.toHaveBeenCalled();
}
]);
TestRenderer.create(
<Provider client={client}>
<Consumer query={AUTHORS}>{mockRender}</Consumer>
</Provider>
);
});
});
function createMockRenderFn(done, assertionsFns) {
let currentRender = 0;
return props => {
const assert = assertionsFns[currentRender];
if (assert) assertionsFns[currentRender](props);
if (currentRender++ === assertionsFns.length - 1) done();
return null;
};
}