-
Notifications
You must be signed in to change notification settings - Fork 2.7k
/
Copy pathmutationResults.ts
583 lines (535 loc) · 14.2 KB
/
mutationResults.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
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
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
import { assert } from 'chai';
import mockNetworkInterface from './mocks/mockNetworkInterface';
import ApolloClient, { addTypename } from '../src';
import { MutationBehaviorReducerArgs, MutationBehavior, cleanArray } from '../src/data/mutationResults';
import { NormalizedCache, StoreObject } from '../src/data/store';
import assign = require('lodash.assign');
import gql from 'graphql-tag';
describe('mutation results', () => {
const query = gql`
query todoList {
__typename
todoList(id: 5) {
__typename
id
todos {
id
__typename
text
completed
}
filteredTodos: todos(completed: true) {
id
__typename
text
completed
}
}
noIdList: todoList(id: 6) {
__typename
id
todos {
__typename
text
completed
}
}
}
`;
const result = {
data: {
__typename: 'Query',
todoList: {
__typename: 'TodoList',
id: '5',
todos: [
{
__typename: 'Todo',
id: '3',
text: 'Hello world',
completed: false,
},
{
__typename: 'Todo',
id: '6',
text: 'Second task',
completed: false,
},
{
__typename: 'Todo',
id: '12',
text: 'Do other stuff',
completed: false,
},
],
filteredTodos: [],
},
noIdList: {
__typename: 'TodoList',
id: '7',
todos: [
{
__typename: 'Todo',
text: 'Hello world',
completed: false,
},
{
__typename: 'Todo',
text: 'Second task',
completed: false,
},
{
__typename: 'Todo',
text: 'Do other stuff',
completed: false,
},
],
},
},
};
let client: ApolloClient;
let networkInterface;
type CustomMutationBehavior = {
type: 'CUSTOM_MUTATION_RESULT',
dataId: string,
field: string,
value: any,
}
// This is an example of a basic mutation reducer that just sets a field in the store
function customMutationReducer(state: NormalizedCache, {
behavior,
}: MutationBehaviorReducerArgs): NormalizedCache {
const customBehavior = behavior as any as CustomMutationBehavior;
state[customBehavior.dataId] = assign({}, state[customBehavior.dataId], {
[customBehavior.field]: customBehavior.value,
}) as StoreObject;
return state;
}
function setup(...mockedResponses) {
networkInterface = mockNetworkInterface({
request: { query },
result,
}, ...mockedResponses);
client = new ApolloClient({
networkInterface,
queryTransformer: addTypename,
dataIdFromObject: (obj: any) => {
if (obj.id && obj.__typename) {
return obj.__typename + obj.id;
}
return null;
},
mutationBehaviorReducers: {
'CUSTOM_MUTATION_RESULT': customMutationReducer,
},
});
return client.query({
query,
});
};
it('correctly primes cache for tests', () => {
return setup()
.then(() => client.query({
query,
}));
});
it('correctly integrates field changes by default', () => {
const mutation = gql`
mutation setCompleted {
setCompleted(todoId: "3") {
id
completed
__typename
}
__typename
}
`;
const mutationResult = {
data: {
__typename: 'Mutation',
setCompleted: {
__typename: 'Todo',
id: '3',
completed: true,
},
},
};
return setup({
request: { query: mutation },
result: mutationResult,
})
.then(() => {
return client.mutate({ mutation });
})
.then(() => {
return client.query({ query });
})
.then((newResult: any) => {
assert.isTrue(newResult.data.todoList.todos[0].completed);
});
});
describe('ARRAY_INSERT', () => {
const mutation = gql`
mutation createTodo {
# skipping arguments in the test since they don't matter
createTodo {
id
text
completed
__typename
}
__typename
}
`;
const mutationResult = {
data: {
__typename: 'Mutation',
createTodo: {
__typename: 'Todo',
id: '99',
text: 'This one was created with a mutation.',
completed: true,
},
},
};
const mutationNoId = gql`
mutation createTodo {
# skipping arguments in the test since they don't matter
createTodo {
text
completed
__typename
}
__typename
}
`;
const mutationResultNoId = {
data: {
__typename: 'Mutation',
createTodo: {
__typename: 'Todo',
text: 'This one was created with a mutation.',
completed: true,
},
},
};
it('correctly integrates a basic object at the beginning', () => {
return setup({
request: { query: mutation },
result: mutationResult,
})
.then(() => {
const dataId = client.dataId({
__typename: 'TodoList',
id: '5',
});
return client.mutate({
mutation,
resultBehaviors: [
{
type: 'ARRAY_INSERT',
resultPath: [ 'createTodo' ],
storePath: [ dataId, 'todos' ],
where: 'PREPEND',
},
],
});
})
.then(() => {
return client.query({ query });
})
.then((newResult: any) => {
// There should be one more todo item than before
assert.equal(newResult.data.todoList.todos.length, 4);
// Since we used `prepend` it should be at the front
assert.equal(newResult.data.todoList.todos[0].text, 'This one was created with a mutation.');
});
});
it('correctly integrates a basic object at the end', () => {
return setup({
request: { query: mutation },
result: mutationResult,
})
.then(() => {
return client.mutate({
mutation,
resultBehaviors: [
{
type: 'ARRAY_INSERT',
resultPath: [ 'createTodo' ],
storePath: [ 'TodoList5', 'todos' ],
where: 'APPEND',
},
],
});
})
.then(() => {
return client.query({ query });
})
.then((newResult: any) => {
// There should be one more todo item than before
assert.equal(newResult.data.todoList.todos.length, 4);
// Since we used `APPEND` it should be at the end
assert.equal(newResult.data.todoList.todos[3].text, 'This one was created with a mutation.');
});
});
it('correctly integrates a basic object at the end with arguments', () => {
return setup({
request: { query: mutation },
result: mutationResult,
})
.then(() => {
return client.mutate({
mutation,
resultBehaviors: [
{
type: 'ARRAY_INSERT',
resultPath: [ 'createTodo' ],
storePath: [
'TodoList5',
client.fieldWithArgs('todos', {completed: true}),
],
where: 'APPEND',
},
],
});
})
.then(() => {
return client.query({ query });
})
.then((newResult: any) => {
// There should be one more todo item than before
assert.equal(newResult.data.todoList.filteredTodos.length, 1);
assert.equal(newResult.data.todoList.filteredTodos[0].text, 'This one was created with a mutation.');
});
});
it('correctly integrates a basic object at the end without id', () => {
return setup({
request: { query: mutationNoId },
result: mutationResultNoId,
})
.then(() => {
return client.mutate({
mutation: mutationNoId,
resultBehaviors: [
{
type: 'ARRAY_INSERT',
resultPath: [ 'createTodo' ],
storePath: [ 'TodoList7', 'todos' ],
where: 'APPEND',
},
],
});
})
.then(() => {
return client.query({ query });
})
.then((newResult: any) => {
// There should be one more todo item than before
assert.equal(newResult.data.noIdList.todos.length, 4);
// Since we used `APPEND` it should be at the end
assert.equal(newResult.data.noIdList.todos[3].text, 'This one was created with a mutation.');
});
});
it('accepts two operations', () => {
return setup({
request: { query: mutation },
result: mutationResult,
})
.then(() => {
return client.mutate({
mutation,
resultBehaviors: [
{
type: 'ARRAY_INSERT',
resultPath: [ 'createTodo' ],
storePath: [ 'TodoList5', 'todos' ],
where: 'PREPEND',
}, {
type: 'ARRAY_INSERT',
resultPath: [ 'createTodo' ],
storePath: [ 'TodoList5', 'todos' ],
where: 'APPEND',
},
],
});
})
.then(() => {
return client.query({ query });
})
.then((newResult: any) => {
// There should be one more todo item than before
assert.equal(newResult.data.todoList.todos.length, 5);
// There will be two copies
assert.equal(newResult.data.todoList.todos[0].text, 'This one was created with a mutation.');
assert.equal(newResult.data.todoList.todos[4].text, 'This one was created with a mutation.');
});
});
});
describe('DELETE', () => {
const mutation = gql`
mutation deleteTodo {
# skipping arguments in the test since they don't matter
deleteTodo {
id
__typename
}
__typename
}
`;
const mutationResult = {
data: {
__typename: 'Mutation',
deleteTodo: {
__typename: 'Todo',
id: '3',
},
},
};
it('deletes object from array and store', () => {
return setup({
request: { query: mutation },
result: mutationResult,
})
.then(() => {
return client.mutate({
mutation,
resultBehaviors: [
{
type: 'DELETE',
dataId: 'Todo3',
},
],
});
})
.then(() => {
return client.query({ query });
})
.then((newResult: any) => {
// There should be one fewer todo item than before
assert.equal(newResult.data.todoList.todos.length, 2);
// The item shouldn't be in the store anymore
assert.notProperty(client.queryManager.getApolloState().data, 'Todo3');
});
});
});
describe('ARRAY_DELETE', () => {
const mutation = gql`
mutation removeTodo {
# skipping arguments in the test since they don't matter
removeTodo {
id
__typename
}
__typename
}
`;
const mutationResult = {
data: {
__typename: 'Mutation',
removeTodo: {
__typename: 'Todo',
id: '3',
},
},
};
it('deletes an object from array but not store', () => {
return setup({
request: { query: mutation },
result: mutationResult,
})
.then(() => {
return client.mutate({
mutation,
resultBehaviors: [
{
type: 'ARRAY_DELETE',
dataId: 'Todo3',
storePath: ['TodoList5', 'todos'],
},
],
});
})
.then(() => {
return client.query({ query });
})
.then((newResult: any) => {
// There should be one fewer todo item than before
assert.equal(newResult.data.todoList.todos.length, 2);
// The item is still in the store
assert.property(client.queryManager.getApolloState().data, 'Todo3');
});
});
});
describe('CUSTOM_MUTATION_RESULT', () => {
const mutation = gql`
mutation setField {
# skipping arguments in the test since they don't matter
setSomething {
aValue
__typename
}
__typename
}
`;
const mutationResult = {
data: {
__typename: 'Mutation',
setSomething: {
__typename: 'Value',
aValue: 'rainbow',
},
},
};
it('runs the custom reducer', () => {
return setup({
request: { query: mutation },
result: mutationResult,
})
.then(() => {
return client.mutate({
mutation,
resultBehaviors: [
{
type: 'CUSTOM_MUTATION_RESULT',
dataId: 'Todo3',
field: 'text',
value: 'this is the new text',
} as any as MutationBehavior,
],
});
})
.then(() => {
return client.query({ query });
})
.then((newResult: any) => {
// Our custom reducer has indeed modified the state!
assert.equal(newResult.data.todoList.todos[0].text, 'this is the new text');
});
});
});
describe('array cleaning for ARRAY_DELETE', () => {
it('maintains reference on flat array', () => {
const array = [1, 2, 3, 4, 5];
assert.isTrue(cleanArray(array, 6) === array);
assert.isFalse(cleanArray(array, 3) === array);
});
it('works on nested array', () => {
const array = [
[1, 2, 3, 4, 5],
[6, 7, 8, 9, 10],
];
const cleaned = cleanArray(array, 5);
assert.equal(cleaned[0].length, 4);
assert.equal(cleaned[1].length, 5);
});
it('maintains reference on nested array', () => {
const array = [
[1, 2, 3, 4, 5],
[6, 7, 8, 9, 10],
];
assert.isTrue(cleanArray(array, 11) === array);
assert.isFalse(cleanArray(array, 5) === array);
});
});
});