-
Notifications
You must be signed in to change notification settings - Fork 514
/
Copy pathabuse.test.js
201 lines (175 loc) · 6.21 KB
/
abuse.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
/**
* Copyright (c) 2019-present, GraphQL Foundation
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @flow
*/
const DataLoader = require('..');
describe('Provides descriptive error messages for API abuse', () => {
it('Loader creation requires a function', () => {
expect(() => {
// $FlowExpectedError[incompatible-call]
new DataLoader(); // eslint-disable-line no-new
}).toThrow(
'DataLoader must be constructed with a function which accepts ' +
'Array<key> and returns Promise<Array<value>>, but got: undefined.'
);
expect(() => {
// $FlowExpectedError[prop-missing]
new DataLoader({}); // eslint-disable-line no-new
}).toThrow(
'DataLoader must be constructed with a function which accepts ' +
'Array<key> and returns Promise<Array<value>>, but got: [object Object].'
);
});
it('Load function requires an key', () => {
const idLoader = new DataLoader<number, number>(async keys => keys);
expect(() => {
// $FlowExpectedError[incompatible-call]
idLoader.load();
}).toThrow(
'The loader.load() function must be called with a value, ' +
'but got: undefined.'
);
expect(() => {
// $FlowExpectedError[incompatible-call]
idLoader.load(null);
}).toThrow(
'The loader.load() function must be called with a value, ' +
'but got: null.'
);
// Falsey values like the number 0 is acceptable
expect(() => {
idLoader.load(0);
}).not.toThrow();
});
it('LoadMany function requires a list of key', () => {
const idLoader = new DataLoader<number, number>(async keys => keys);
expect(() => {
// $FlowExpectedError[incompatible-call]
idLoader.loadMany();
}).toThrow(
'The loader.loadMany() function must be called with Array<key> ' +
'but got: undefined.'
);
expect(() => {
// $FlowExpectedError[incompatible-call]
// $FlowExpectedError[extra-arg]
idLoader.loadMany(1, 2, 3);
}).toThrow(
'The loader.loadMany() function must be called with Array<key> ' +
'but got: 1.'
);
// Empty array is acceptable
expect(() => {
idLoader.loadMany([]);
}).not.toThrow();
});
it('Batch function must return a Promise, not null', async () => {
// $FlowExpectedError[incompatible-call]
const badLoader = new DataLoader<number, number>(() => null);
let caughtError;
try {
await badLoader.load(1);
} catch (error) {
caughtError = error;
}
expect(caughtError).toBeInstanceOf(Error);
expect((caughtError: any).message).toBe(
'DataLoader must be constructed with a function which accepts ' +
'Array<key> and returns Promise<Array<value>>, but the function did ' +
'not return a Promise: null.'
);
});
it('Batch function must return a Promise, not a value', async () => {
// Note: this is returning the keys directly, rather than a promise to keys.
// $FlowExpectedError[incompatible-call]
const badLoader = new DataLoader<number, number>(keys => keys);
let caughtError;
try {
await badLoader.load(1);
} catch (error) {
caughtError = error;
}
expect(caughtError).toBeInstanceOf(Error);
expect((caughtError: any).message).toBe(
'DataLoader must be constructed with a function which accepts ' +
'Array<key> and returns Promise<Array<value>>, but the function did ' +
'not return a Promise: 1.'
);
});
it('Batch function must return a Promise of an Array, not null', async () => {
// Note: this resolves to undefined
// $FlowExpectedError[incompatible-call]
const badLoader = new DataLoader<number, number>(async () => null);
let caughtError;
try {
await badLoader.load(1);
} catch (error) {
caughtError = error;
}
expect(caughtError).toBeInstanceOf(Error);
expect((caughtError: any).message).toBe(
'DataLoader must be constructed with a function which accepts ' +
'Array<key> and returns Promise<Array<value>>, but the function did ' +
'not return a Promise of an Array: null.'
);
});
it('Batch function must promise an Array of correct length', async () => {
// Note: this resolves to empty array
const badLoader = new DataLoader<number, number>(async () => []);
let caughtError;
try {
await badLoader.load(1);
} catch (error) {
caughtError = error;
}
expect(caughtError).toBeInstanceOf(Error);
expect((caughtError: any).message).toBe(
'DataLoader must be constructed with a function which accepts ' +
'Array<key> and returns Promise<Array<value>>, but the function did ' +
'not return a Promise of an Array of the same length as the Array ' +
'of keys.' +
'\n\nKeys:\n1' +
'\n\nValues:\n'
);
});
it('Cache should have get, set, delete, and clear methods', async () => {
class IncompleteMap {
get() {}
}
expect(() => {
const incompleteMap = new IncompleteMap();
const options = { cacheMap: incompleteMap };
// $FlowExpectedError[incompatible-call]
new DataLoader(async keys => keys, options); // eslint-disable-line no-new
}).toThrow(
'Custom cacheMap missing methods: set, delete, clear'
);
});
it('Requires a number for maxBatchSize', () => {
expect(() =>
// $FlowExpectedError[incompatible-call]
new DataLoader(async keys => keys, { maxBatchSize: null })
).toThrow('maxBatchSize must be a positive number: null');
});
it('Requires a positive number for maxBatchSize', () => {
expect(() =>
new DataLoader(async keys => keys, { maxBatchSize: 0 })
).toThrow('maxBatchSize must be a positive number: 0');
});
it('Requires a function for cacheKeyFn', () => {
expect(() =>
// $FlowExpectedError[incompatible-call]
new DataLoader(async keys => keys, { cacheKeyFn: null })
).toThrow('cacheKeyFn must be a function: null');
});
it('Requires a function for batchScheduleFn', () => {
expect(() =>
// $FlowExpectedError[incompatible-call]
new DataLoader(async keys => keys, { batchScheduleFn: null })
).toThrow('batchScheduleFn must be a function: null');
});
});