forked from meilisearch/meilisearch-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.test.ts
560 lines (455 loc) · 20 KB
/
index.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
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
import { ErrorStatusCode } from '../src/types';
import {
clearAllIndexes,
config,
BAD_HOST,
MeiliSearch,
getClient,
} from './utils/meilisearch-test-utils';
const indexNoPk = {
uid: 'movies_test',
};
const indexPk = {
uid: 'movies_test2',
primaryKey: 'id',
};
afterAll(async () => {
return clearAllIndexes(config);
});
describe.each([{ permission: 'Master' }, { permission: 'Admin' }])(
'Test on indexes w/ master and admin key',
({ permission }) => {
beforeEach(() => {
return clearAllIndexes(config);
});
test(`${permission} key: create index with NO primary key`, async () => {
const client = await getClient(permission);
const { taskUid } = await client.createIndex(indexNoPk.uid);
await client.waitForTask(taskUid);
const newIndex = await client.getIndex(indexNoPk.uid);
expect(newIndex).toHaveProperty('uid', indexNoPk.uid);
expect(newIndex).toHaveProperty('primaryKey', null);
const rawIndex = await client.index(indexNoPk.uid).getRawInfo();
expect(rawIndex).toHaveProperty('uid', indexNoPk.uid);
expect(rawIndex).toHaveProperty('primaryKey', null);
expect(rawIndex).toHaveProperty('createdAt', expect.any(String));
expect(rawIndex).toHaveProperty('updatedAt', expect.any(String));
});
test(`${permission} key: create index with primary key`, async () => {
const client = await getClient(permission);
const { taskUid } = await client.createIndex(indexPk.uid, {
primaryKey: indexPk.primaryKey,
});
await client.waitForTask(taskUid);
const newIndex = await client.getIndex(indexPk.uid);
expect(newIndex).toHaveProperty('uid', indexPk.uid);
expect(newIndex).toHaveProperty('primaryKey', indexPk.primaryKey);
const rawIndex = await client.index(indexPk.uid).getRawInfo();
expect(rawIndex).toHaveProperty('uid', indexPk.uid);
expect(rawIndex).toHaveProperty('primaryKey', indexPk.primaryKey);
expect(rawIndex).toHaveProperty('createdAt', expect.any(String));
expect(rawIndex).toHaveProperty('updatedAt', expect.any(String));
});
test(`${permission} key: Get raw index that exists`, async () => {
const client = await getClient(permission);
const { taskUid } = await client.createIndex(indexPk.uid);
await client.waitForTask(taskUid);
const response = await client.getRawIndex(indexPk.uid);
expect(response).toHaveProperty('uid', indexPk.uid);
});
test(`${permission} key: Get all indexes in Index instances`, async () => {
const client = await getClient(permission);
const { taskUid } = await client.createIndex(indexPk.uid);
await client.waitForTask(taskUid);
const { results } = await client.getRawIndexes();
expect(results.length).toEqual(1);
expect(results[0].uid).toEqual(indexPk.uid);
});
test(`${permission} key: Get index that does not exist`, async () => {
const client = await getClient(permission);
await expect(client.getIndex('does_not_exist')).rejects.toHaveProperty(
'cause.code',
ErrorStatusCode.INDEX_NOT_FOUND,
);
});
test(`${permission} key: Get raw index that does not exist`, async () => {
const client = await getClient(permission);
await expect(client.getRawIndex('does_not_exist')).rejects.toHaveProperty(
'cause.code',
ErrorStatusCode.INDEX_NOT_FOUND,
);
});
test(`${permission} key: Get raw index info through client with primary key`, async () => {
const client = await getClient(permission);
const { taskUid } = await client.createIndex(indexPk.uid, {
primaryKey: indexPk.primaryKey,
});
await client.waitForTask(taskUid);
const response = await client.getRawIndex(indexPk.uid);
expect(response).toHaveProperty('uid', indexPk.uid);
expect(response).toHaveProperty('primaryKey', indexPk.primaryKey);
});
test(`${permission} key: Get raw index info through client with NO primary key`, async () => {
const client = await getClient(permission);
const { taskUid } = await client.createIndex(indexNoPk.uid);
await client.waitForTask(taskUid);
const response = await client.getRawIndex(indexNoPk.uid);
expect(response).toHaveProperty('uid', indexNoPk.uid);
expect(response).toHaveProperty('primaryKey', null);
});
test(`${permission} key: Get raw index info with primary key`, async () => {
const client = await getClient(permission);
const { taskUid } = await client.createIndex(indexPk.uid, {
primaryKey: indexPk.primaryKey,
});
await client.waitForTask(taskUid);
const response = await client.index(indexPk.uid).getRawInfo();
expect(response).toHaveProperty('uid', indexPk.uid);
expect(response).toHaveProperty('primaryKey', indexPk.primaryKey);
});
test(`${permission} key: Get raw index info with NO primary key`, async () => {
const client = await getClient(permission);
const { taskUid } = await client.createIndex(indexNoPk.uid);
await client.waitForTask(taskUid);
const response = await client.index(indexNoPk.uid).getRawInfo();
expect(response).toHaveProperty('uid', indexNoPk.uid);
expect(response).toHaveProperty('primaryKey', null);
});
test(`${permission} key: fetch index with primary key`, async () => {
const client = await getClient(permission);
const { taskUid } = await client.createIndex(indexPk.uid, {
primaryKey: indexPk.primaryKey,
});
await client.waitForTask(taskUid);
const index = client.index(indexPk.uid);
const response = await index.fetchInfo();
expect(response).toHaveProperty('uid', indexPk.uid);
expect(response).toHaveProperty('primaryKey', indexPk.primaryKey);
});
test(`${permission} key: fetch primary key on an index with primary key`, async () => {
const client = await getClient(permission);
const { taskUid } = await client.createIndex(indexPk.uid, {
primaryKey: indexPk.primaryKey,
});
await client.waitForTask(taskUid);
const index = client.index(indexPk.uid);
const response: string | undefined = await index.fetchPrimaryKey();
expect(response).toBe(indexPk.primaryKey);
});
test(`${permission} key: fetch primary key on an index with NO primary key`, async () => {
const client = await getClient(permission);
const { taskUid } = await client.createIndex(indexNoPk.uid);
await client.waitForTask(taskUid);
const index = client.index(indexNoPk.uid);
const response: string | undefined = await index.fetchPrimaryKey();
expect(response).toBe(null);
});
test(`${permission} key: fetch index with primary key`, async () => {
const client = await getClient(permission);
const { taskUid } = await client.createIndex(indexPk.uid, {
primaryKey: indexPk.primaryKey,
});
await client.waitForTask(taskUid);
const index = client.index(indexPk.uid);
const response = await index.fetchInfo();
expect(response).toHaveProperty('uid', indexPk.uid);
expect(response).toHaveProperty('primaryKey', indexPk.primaryKey);
});
test(`${permission} key: fetch index with NO primary key`, async () => {
const client = await getClient(permission);
const { taskUid } = await client.createIndex(indexNoPk.uid);
await client.waitForTask(taskUid);
const index = client.index(indexNoPk.uid);
const response = await index.fetchInfo();
expect(response).toHaveProperty('uid', indexNoPk.uid);
expect(response).toHaveProperty('primaryKey', null);
});
test(`${permission} key: get all indexes`, async () => {
const client = await getClient(permission);
const task1 = await client.createIndex(indexNoPk.uid);
const task2 = await client.createIndex(indexPk.uid);
await client.waitForTask(task1.taskUid);
await client.waitForTask(task2.taskUid);
const indexes = await client.getIndexes();
expect(indexes.results.length).toEqual(2);
});
test(`${permission} key: get all indexes with filters`, async () => {
const client = await getClient(permission);
const task1 = await client.createIndex(indexNoPk.uid);
const task2 = await client.createIndex(indexPk.uid);
await client.waitForTask(task1.taskUid);
await client.waitForTask(task2.taskUid);
const indexes = await client.getIndexes({ limit: 1, offset: 1 });
expect(indexes.results.length).toEqual(1);
expect(indexes.results[0].uid).toEqual(indexPk.uid);
});
test(`${permission} key: update primary key on an index that has no primary key already`, async () => {
const client = await getClient(permission);
const { taskUid: createTask } = await client.createIndex(indexNoPk.uid);
const { taskUid: updateTask } = await client.index(indexNoPk.uid).update({
primaryKey: 'newPrimaryKey',
});
await client.waitForTask(createTask);
await client.waitForTask(updateTask);
const index = await client.getIndex(indexNoPk.uid);
expect(index).toHaveProperty('uid', indexNoPk.uid);
expect(index).toHaveProperty('primaryKey', 'newPrimaryKey');
});
test(`${permission} key: update primary key on an index that has NO primary key already through client`, async () => {
const client = await getClient(permission);
const { taskUid: createTask } = await client.createIndex(indexNoPk.uid);
const { taskUid: updateTask } = await client.updateIndex(indexNoPk.uid, {
primaryKey: indexPk.primaryKey,
});
await client.waitForTask(createTask);
await client.waitForTask(updateTask);
const index = await client.getIndex(indexNoPk.uid);
expect(index).toHaveProperty('uid', indexNoPk.uid);
expect(index).toHaveProperty('primaryKey', indexPk.primaryKey);
});
test(`${permission} key: update primary key on an index that has already a primary key and fail through client`, async () => {
const client = await getClient(permission);
const { taskUid: createTask } = await client.createIndex(indexPk.uid, {
primaryKey: indexPk.primaryKey,
});
const { taskUid: updateTask } = await client.updateIndex(indexPk.uid, {
primaryKey: 'newPrimaryKey',
});
await client.waitForTask(createTask);
await client.waitForTask(updateTask);
const index = await client.getIndex(indexPk.uid);
expect(index).toHaveProperty('uid', indexPk.uid);
expect(index).toHaveProperty('primaryKey', 'newPrimaryKey');
});
test(`${permission} key: update primary key on an index that has already a primary key and fail`, async () => {
const client = await getClient(permission);
const { taskUid: createTask } = await client.createIndex(indexPk.uid, {
primaryKey: indexPk.primaryKey,
});
const { taskUid: updateTask } = await client.index(indexPk.uid).update({
primaryKey: 'newPrimaryKey',
});
await client.waitForTask(createTask);
await client.waitForTask(updateTask);
const index = await client.getIndex(indexPk.uid);
expect(index).toHaveProperty('uid', indexPk.uid);
expect(index).toHaveProperty('primaryKey', 'newPrimaryKey');
});
test(`${permission} key: delete index`, async () => {
const client = await getClient(permission);
const { taskUid: createTask } = await client.createIndex(indexNoPk.uid);
const { taskUid: deleteTask } = await client
.index(indexNoPk.uid)
.delete();
await client.waitForTask(createTask);
await client.waitForTask(deleteTask);
const { results } = await client.getIndexes();
expect(results).toHaveLength(0);
});
test(`${permission} key: delete index using client`, async () => {
const client = await getClient(permission);
await client.createIndex(indexPk.uid);
const { taskUid } = await client.deleteIndex(indexPk.uid);
await client.waitForTask(taskUid);
const { results } = await client.getIndexes();
expect(results).toHaveLength(0);
});
test(`${permission} key: fetch deleted index should fail`, async () => {
const client = await getClient(permission);
const index = client.index(indexNoPk.uid);
await expect(index.getRawInfo()).rejects.toHaveProperty(
'cause.code',
ErrorStatusCode.INDEX_NOT_FOUND,
);
});
test(`${permission} key: get deleted raw index should fail through client`, async () => {
const client = await getClient(permission);
await expect(client.getRawIndex(indexNoPk.uid)).rejects.toHaveProperty(
'cause.code',
ErrorStatusCode.INDEX_NOT_FOUND,
);
});
test(`${permission} key: delete index with uid that does not exist should fail`, async () => {
const client = await getClient(permission);
const index = client.index(indexNoPk.uid);
const { taskUid } = await index.delete();
const task = await client.waitForTask(taskUid);
expect(task.status).toBe('failed');
});
test(`${permission} key: get stats of an index`, async () => {
const client = await getClient(permission);
const { taskUid } = await client.createIndex(indexNoPk.uid);
await client.waitForTask(taskUid);
const response = await client.index(indexNoPk.uid).getStats();
expect(response).toHaveProperty('numberOfDocuments', 0);
expect(response).toHaveProperty('isIndexing', false);
expect(response).toHaveProperty('fieldDistribution', {});
});
test(`${permission} key: Get updatedAt and createdAt through fetch info`, async () => {
const client = await getClient(permission);
const { taskUid } = await client.createIndex(indexPk.uid);
await client.waitForTask(taskUid);
const index = await client.index(indexPk.uid).fetchInfo();
expect(index.createdAt).toBeInstanceOf(Date);
expect(index.updatedAt).toBeInstanceOf(Date);
});
test(`${permission} key: Get updatedAt and createdAt index through getRawInfo`, async () => {
const client = await getClient(permission);
const { taskUid } = await client.createIndex(indexPk.uid);
await client.waitForTask(taskUid);
const index = client.index(indexPk.uid);
expect(index.createdAt).toBe(undefined);
expect(index.updatedAt).toBe(undefined);
await index.getRawInfo();
expect(index.createdAt).toBeInstanceOf(Date);
expect(index.updatedAt).toBeInstanceOf(Date);
});
},
);
describe.each([{ permission: 'Search' }])(
'Test on routes with search key',
({ permission }) => {
beforeEach(() => {
return clearAllIndexes(config);
});
test(`${permission} key: try to get index info and be denied`, async () => {
const client = await getClient(permission);
await expect(
client.index(indexNoPk.uid).getRawInfo(),
).rejects.toHaveProperty('cause.code', ErrorStatusCode.INVALID_API_KEY);
});
test(`${permission} key: try to get raw index and be denied`, async () => {
const client = await getClient(permission);
await expect(client.getRawIndex(indexNoPk.uid)).rejects.toHaveProperty(
'cause.code',
ErrorStatusCode.INVALID_API_KEY,
);
});
test(`${permission} key: try to delete index and be denied`, async () => {
const client = await getClient(permission);
await expect(client.index(indexPk.uid).delete()).rejects.toHaveProperty(
'cause.code',
ErrorStatusCode.INVALID_API_KEY,
);
});
test(`${permission} key: try to update index and be denied`, async () => {
const client = await getClient(permission);
await expect(
client.index(indexPk.uid).update({ primaryKey: indexPk.primaryKey }),
).rejects.toHaveProperty('cause.code', ErrorStatusCode.INVALID_API_KEY);
});
test(`${permission} key: try to get stats and be denied`, async () => {
const client = await getClient(permission);
await expect(client.index(indexPk.uid).getStats()).rejects.toHaveProperty(
'cause.code',
ErrorStatusCode.INVALID_API_KEY,
);
});
},
);
describe.each([{ permission: 'No' }])(
'Test on routes without an API key',
({ permission }) => {
beforeEach(() => {
return clearAllIndexes(config);
});
test(`${permission} key: try to get all indexes and be denied`, async () => {
const client = await getClient(permission);
await expect(client.getIndexes()).rejects.toHaveProperty(
'cause.code',
ErrorStatusCode.MISSING_AUTHORIZATION_HEADER,
);
});
test(`${permission} key: try to get index info and be denied`, async () => {
const client = await getClient(permission);
await expect(
client.index(indexNoPk.uid).getRawInfo(),
).rejects.toHaveProperty(
'cause.code',
ErrorStatusCode.MISSING_AUTHORIZATION_HEADER,
);
});
test(`${permission} key: try to get raw index and be denied`, async () => {
const client = await getClient(permission);
await expect(client.getRawIndex(indexNoPk.uid)).rejects.toHaveProperty(
'cause.code',
ErrorStatusCode.MISSING_AUTHORIZATION_HEADER,
);
});
test(`${permission} key: try to delete index and be denied`, async () => {
const client = await getClient(permission);
await expect(client.index(indexPk.uid).delete()).rejects.toHaveProperty(
'cause.code',
ErrorStatusCode.MISSING_AUTHORIZATION_HEADER,
);
});
test(`${permission} key: try to update index and be denied`, async () => {
const client = await getClient(permission);
await expect(
client.index(indexPk.uid).update({ primaryKey: indexPk.primaryKey }),
).rejects.toHaveProperty(
'cause.code',
ErrorStatusCode.MISSING_AUTHORIZATION_HEADER,
);
});
},
);
describe.each([
{ host: BAD_HOST, trailing: false },
{ host: `${BAD_HOST}/api`, trailing: false },
{ host: `${BAD_HOST}/trailing/`, trailing: true },
])('Tests on url construction', ({ host, trailing }) => {
test(`Test getStats route`, async () => {
const route = `indexes/${indexPk.uid}/stats`;
const client = new MeiliSearch({ host });
const strippedHost = trailing ? host.slice(0, -1) : host;
await expect(client.index(indexPk.uid).getStats()).rejects.toHaveProperty(
'message',
`Request to ${strippedHost}/${route} has failed`,
);
});
test(`Test getRawInfo route`, async () => {
const route = `indexes/${indexPk.uid}`;
const client = new MeiliSearch({ host });
const strippedHost = trailing ? host.slice(0, -1) : host;
await expect(client.index(indexPk.uid).getRawInfo()).rejects.toHaveProperty(
'message',
`Request to ${strippedHost}/${route} has failed`,
);
await expect(client.index(indexPk.uid).getRawInfo()).rejects.toHaveProperty(
'name',
'MeiliSearchRequestError',
);
});
test(`Test getRawIndex route`, async () => {
const route = `indexes/${indexPk.uid}`;
const client = new MeiliSearch({ host });
const strippedHost = trailing ? host.slice(0, -1) : host;
await expect(client.getRawIndex(indexPk.uid)).rejects.toHaveProperty(
'message',
`Request to ${strippedHost}/${route} has failed`,
);
await expect(client.getRawIndex(indexPk.uid)).rejects.toHaveProperty(
'name',
'MeiliSearchRequestError',
);
});
test(`Test updateIndex route`, async () => {
const route = `indexes/${indexPk.uid}`;
const client = new MeiliSearch({ host });
const strippedHost = trailing ? host.slice(0, -1) : host;
await expect(client.index(indexPk.uid).getRawInfo()).rejects.toHaveProperty(
'message',
`Request to ${strippedHost}/${route} has failed`,
);
});
test(`Test delete index route`, async () => {
const route = `indexes/${indexPk.uid}`;
const client = new MeiliSearch({ host });
const strippedHost = trailing ? host.slice(0, -1) : host;
await expect(client.index(indexPk.uid).getRawInfo()).rejects.toHaveProperty(
'message',
`Request to ${strippedHost}/${route} has failed`,
);
});
});