mirror of
https://github.com/laurent22/joplin.git
synced 2024-11-24 08:12:24 +02:00
32 lines
692 B
TypeScript
32 lines
692 B
TypeScript
import BaseModel from './BaseModel';
|
|
|
|
describe('BaseModel', () => {
|
|
test.each([
|
|
[0, 0],
|
|
[4, 10],
|
|
[10, 4],
|
|
[5, 5],
|
|
])('should filter items by IDs (itemCount: %d, idCount: %d)', (itemCount, idCount) => {
|
|
const items = [];
|
|
const ids = [];
|
|
|
|
const expectedMatchingItems = [];
|
|
for (let i = 0; i < idCount; i++) {
|
|
const id = `matching-${i}`;
|
|
ids.push(id);
|
|
|
|
if (items.length < itemCount) {
|
|
const item = { id };
|
|
items.push(item);
|
|
expectedMatchingItems.push(item);
|
|
}
|
|
}
|
|
|
|
while (items.length < itemCount) {
|
|
items.push({ id: `non-matching-${items.length}` });
|
|
}
|
|
|
|
expect(BaseModel.modelsByIds(items, ids)).toMatchObject(expectedMatchingItems);
|
|
});
|
|
});
|