-
-
Notifications
You must be signed in to change notification settings - Fork 98
Expand file tree
/
Copy pathAll.test.ts
More file actions
365 lines (340 loc) · 10.6 KB
/
All.test.ts
File metadata and controls
365 lines (340 loc) · 10.6 KB
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
// eslint-env jest
import { initialState, State, Controller } from '@data-client/core';
import {
normalize,
MemoCache,
denormalize,
INVALID,
BaseDelegate,
} from '@data-client/normalizr';
import { DelegateImmutable } from '@data-client/normalizr/immutable';
import { IDEntity } from '__tests__/new';
import { schema } from '../..';
import { fromJSState } from './denormalize';
let dateSpy: jest.SpyInstance<number, []>;
beforeAll(() => {
dateSpy = jest
.spyOn(global.Date, 'now')
.mockImplementation(() => new Date('2019-05-14T11:01:58.135Z').valueOf());
});
afterAll(() => {
dateSpy.mockRestore();
});
describe.each([[]])(`${schema.All.name} normalization (%s)`, () => {
test('should throw a custom error if data loads with string unexpected value', () => {
class User extends IDEntity {}
const sch = new schema.All(User);
function normalizeBad() {
normalize(sch, 'abc');
}
expect(normalizeBad).toThrowErrorMatchingSnapshot();
});
test('should throw a custom error if data loads with json string unexpected value', () => {
class User extends IDEntity {}
const sch = new schema.All(User);
function normalizeBad() {
normalize(sch, '[{"id":5}]');
}
expect(normalizeBad).toThrowErrorMatchingSnapshot();
});
test('normalizes Objects using their values', () => {
class User extends IDEntity {}
const { result, entities } = normalize(new schema.All(User), {
foo: { id: '1' },
bar: { id: '2' },
});
expect(result).toBeUndefined();
expect(entities).toMatchSnapshot();
});
describe('Class', () => {
class Cats extends IDEntity {}
test('normalizes a single entity', () => {
const listSchema = new schema.All(Cats);
expect(
normalize(listSchema, [{ id: '1' }, { id: '2' }]).entities,
).toMatchSnapshot();
});
test('normalizes multiple entities', () => {
const inferSchemaFn = jest.fn(input => input.type || 'dogs');
class Person extends IDEntity {}
const listSchema = new schema.All(
{
Cat: Cats,
people: Person,
},
inferSchemaFn,
);
const { result, entities } = normalize(listSchema, [
{ type: 'Cat', id: '123' },
{ type: 'people', id: '123' },
{ id: '789', name: 'fido' },
{ type: 'Cat', id: '456' },
]);
expect(result).toBeUndefined();
expect(entities).toMatchSnapshot();
expect(inferSchemaFn.mock.calls).toMatchSnapshot();
});
test('normalizes Objects using their values', () => {
class User extends IDEntity {}
const users = new schema.All(User);
expect(
normalize(users, { foo: { id: '1' }, bar: { id: '2' } }).entities,
).toMatchSnapshot();
});
test('filters out undefined and null normalized values', () => {
class User extends IDEntity {}
const users = new schema.All(User);
expect(
normalize(users, [undefined, { id: '123' }, null]).entities,
).toMatchSnapshot();
});
});
});
describe.each([
['direct', <T>(data: T) => data, <T>(data: T) => data, BaseDelegate],
[
'immutable',
fromJSState,
(v: any) => (typeof v?.toJS === 'function' ? v.toJS() : v),
DelegateImmutable,
],
])(
`${schema.Array.name} denormalization (%s)`,
(_, createInput, createOutput, Delegate) => {
test('denormalizes a single entity', () => {
class Cat extends IDEntity {}
const state: State<unknown> = createInput({
...initialState,
entities: {
Cat: {
1: { id: '1', name: 'Milo' },
2: { id: '2', name: 'Jake' },
},
},
indexes: {},
}) as any;
const sch = new schema.All(Cat);
expect(
new Controller({ memo: new MemoCache(Delegate) }).get(sch, state),
).toMatchSnapshot();
});
test('denormalizes nested in object', () => {
class Cat extends IDEntity {}
const catSchema = { results: new schema.All(Cat) };
const state = createInput({
entities: {
Cat: {
1: { id: '1', name: 'Milo' },
2: { id: '2', name: 'Jake' },
},
},
indexes: {},
});
// use memocache because we don't support 'object' schemas in controller yet
expect(
new MemoCache(Delegate).query(catSchema, [], state).data,
).toMatchSnapshot();
});
test('denormalizes nested in object with primitive', () => {
class Cat extends IDEntity {}
const catSchema = { results: new schema.All(Cat), nextPage: '' };
const state = createInput({
entities: {
Cat: {
1: { id: '1', name: 'Milo' },
2: { id: '2', name: 'Jake' },
},
},
indexes: {},
});
const value = new MemoCache(Delegate).query(catSchema, [], state).data;
expect(value).not.toEqual(expect.any(Symbol));
if (typeof value === 'symbol' || value === undefined) return;
expect(createOutput(value.results)).toMatchSnapshot();
expect(createOutput(value)).toMatchSnapshot();
});
test('denormalizes removes undefined or INVALID entities', () => {
class Cat extends IDEntity {}
const catSchema = { results: new schema.All(Cat), nextPage: '' };
const state = createInput({
entities: {
Cat: {
1: { id: '1', name: 'Milo' },
2: { id: '2', name: 'Jake' },
3: undefined,
4: INVALID,
},
},
indexes: {},
});
const value = new MemoCache(Delegate).query(catSchema, [], state).data;
expect(value).not.toEqual(expect.any(Symbol));
if (typeof value === 'symbol' || value === undefined) return;
expect(createOutput(value.results).length).toBe(2);
expect(createOutput(value.results)).toMatchSnapshot();
expect(createOutput(value)).toMatchSnapshot();
});
test('denormalize maintains referential equality until entities are added', () => {
class Cat extends IDEntity {}
(Cat as any).defaults;
const catSchema = { results: new schema.All(Cat), nextPage: '' };
let state: State<unknown> = {
...initialState,
entities: {
Cat: {
1: { id: '1', name: 'Milo' },
2: { id: '2', name: 'Jake' },
},
},
indexes: {},
};
const memo = new MemoCache();
const value = memo.query(catSchema, [], state).data;
expect(createOutput(value).results?.length).toBe(2);
expect(createOutput(value).results).toMatchSnapshot();
const value2 = memo.query(catSchema, [], state).data;
expect(createOutput(value).results[0]).toBe(
createOutput(value2).results[0],
);
expect(value).toBe(value2);
state = {
...state,
entities: {
...state.entities,
Cat: {
...state.entities.Cat,
3: { id: '3', name: 'Jelico' },
},
},
};
const value3 = memo.query(catSchema, [], state).data;
expect(createOutput(value3).results?.length).toBe(3);
expect(createOutput(value3).results).toMatchSnapshot();
expect(createOutput(value).results[0]).toBe(
createOutput(value3).results[0],
);
expect(createOutput(value).results[2]).not.toBe(
createOutput(value3).results[2],
);
expect(value).not.toBe(value3);
});
test('denormalizes should be invalid when no entities are present', () => {
class Cat extends IDEntity {}
const catSchema = { results: new schema.All(Cat) };
const state = createInput({
entities: {
DOG: {
1: { id: '1', name: 'Milo' },
2: { id: '2', name: 'Jake' },
},
},
indexes: {},
});
const value = new MemoCache(Delegate).query(catSchema, [], state).data;
expect(createOutput(value)).toEqual(expect.any(Symbol));
});
test('denormalizes should not be found when no entities are present (polymorphic)', () => {
class Cat extends IDEntity {
readonly type = 'Cat';
}
class Dog extends IDEntity {
readonly type = 'dogs';
}
class Person extends IDEntity {
readonly type = 'people';
}
const listSchema = new schema.All(
{
Cat: Cat,
dogs: Dog,
people: Person,
},
input => input.type || 'dogs',
);
const state = createInput({
entities: {
DOG: {
1: { id: '1', name: 'Milo' },
2: { id: '2', name: 'Jake' },
},
},
indexes: {},
});
const value = new MemoCache(Delegate).query(listSchema, [], state).data;
expect(createOutput(value)).toEqual(expect.any(Symbol));
});
test('returns the input value if is null', () => {
class Filling extends IDEntity {}
class Taco extends IDEntity {
static schema = { fillings: new schema.All(Filling) };
}
const state = createInput({
...initialState,
entities: {
Taco: {
123: {
id: '123',
fillings: null,
},
},
},
});
expect(denormalize(Taco, '123', state.entities)).toMatchSnapshot();
});
test('denormalizes multiple entities', () => {
class Cat extends IDEntity {
readonly type = 'Cat';
}
class Dog extends IDEntity {
readonly type = 'dogs';
}
class Person extends IDEntity {
readonly type = 'people';
}
const listSchema = new schema.All(
{
Cat: Cat,
dogs: Dog,
people: Person,
},
input => input.type || 'dogs',
);
const state = createInput({
entities: {
Cat: {
123: {
id: '123',
type: 'Cat',
},
456: {
id: '456',
type: 'Cat',
},
},
Person: {
123: {
id: '123',
type: 'people',
},
},
},
indexes: {},
});
const value = new MemoCache(Delegate).query(listSchema, [], state).data;
expect(value).not.toEqual(expect.any(Symbol));
if (typeof value === 'symbol') return;
expect(value).toMatchSnapshot();
const first = value && value[0];
// type check to ensure correct inference
first?.type;
});
test('does not allow initializing with non-entities', () => {
class Cat extends IDEntity {}
const catRecord = new schema.Object({
cat: Cat,
});
// @ts-expect-error
const catList = new schema.All(catRecord);
});
},
);