Ghost/ghost/webmentions/test/InMemoryMentionRepository.test.js
Fabien "egg" O'Carroll 1babf6126a Added initial basic Mentions implementation
refs https://github.com/TryGhost/Team/issues/2416

This extends the mock API to use a more formal pattern of moving our
entity code into a separate package, and use the service/repository
patterns we've been work toward.

The repository is currently in memory, this allows us to start using
the API without having to make commitments to the database structure.

We've also injected a single fake webmention for testing. I'd expect
the Mention object to change a lot from this initial definition as we
gain more information about the type of data we expect to see.
2023-01-17 17:01:20 +07:00

80 lines
2.6 KiB
JavaScript

const assert = require('assert');
const ObjectID = require('bson-objectid');
const InMemoryMentionRepository = require('../lib/InMemoryMentionRepository');
const Mention = require('../lib/Mention');
describe('InMemoryMentionRepository', function () {
it('Can handle filtering on resourceId', async function () {
const resourceId = new ObjectID();
const repository = new InMemoryMentionRepository();
const validInput = {
source: 'https://source.com',
target: 'https://target.com',
sourceTitle: 'Title!',
sourceExcerpt: 'Excerpt!'
};
const mentions = await Promise.all([
Mention.create(validInput),
Mention.create({
...validInput,
resourceId
}),
Mention.create({
...validInput,
resourceId
}),
Mention.create(validInput),
Mention.create({
...validInput,
resourceId
}),
Mention.create({
...validInput,
resourceId
}),
Mention.create(validInput),
Mention.create({
...validInput,
resourceId
}),
Mention.create(validInput)
]);
for (const mention of mentions) {
await repository.save(mention);
}
const pageOne = await repository.getPage({
filter: `resource_id:${resourceId.toHexString()}`,
limit: 2,
page: 1
});
assert(pageOne.meta.pagination.total === 5);
assert(pageOne.meta.pagination.pages === 3);
assert(pageOne.meta.pagination.prev === null);
assert(pageOne.meta.pagination.next === 2);
const pageTwo = await repository.getPage({
filter: `resource_id:${resourceId.toHexString()}`,
limit: 2,
page: 2
});
assert(pageTwo.meta.pagination.total === 5);
assert(pageTwo.meta.pagination.pages === 3);
assert(pageTwo.meta.pagination.prev === 1);
assert(pageTwo.meta.pagination.next === 3);
const pageThree = await repository.getPage({
filter: `resource_id:${resourceId.toHexString()}`,
limit: 2,
page: 3
});
assert(pageThree.meta.pagination.total === 5);
assert(pageThree.meta.pagination.pages === 3);
assert(pageThree.meta.pagination.prev === 2);
assert(pageThree.meta.pagination.next === null);
});
});