Ghost/ghost/domain-events/test/DomainEvents.test.js
Simon Backx 913ad18b71
Added DomainEvents.allSettled utility method (#16075)
no issue

With the increased usage of DomainEvents, it gets harder to build
reliable tests without having to resort to timeouts. This utility method
allows us to wait for all events to be processed before continuing with
the test.

This change should speed up tests and make them more reliable.

It only adds extra code when running tests and shouldn't impact
production.
2023-01-04 14:30:35 +01:00

103 lines
2.8 KiB
JavaScript

const DomainEvents = require('../');
const assert = require('assert');
const sinon = require('sinon');
const logging = require('@tryghost/logging');
class TestEvent {
/**
* @param {string} message
*/
constructor(message) {
this.timestamp = new Date();
this.data = {
message
};
}
}
const sleep = ms => new Promise((resolve) => {
setTimeout(resolve, ms);
});
describe('DomainEvents', function () {
afterEach(function () {
sinon.restore();
DomainEvents.ee.removeAllListeners();
});
it('Will call multiple subscribers with the event when it is dispatched', async function () {
const event = new TestEvent('Hello, world!');
let events = [];
/**
* @param {TestEvent} receivedEvent
*/
function handler1(receivedEvent) {
// Do not add assertions here, they are caught by DomainEvents
events.push(receivedEvent);
}
/**
* @param {TestEvent} receivedEvent
*/
function handler2(receivedEvent) {
// Do not add assertions here, they are caught by DomainEvents
events.push(receivedEvent);
}
DomainEvents.subscribe(TestEvent, handler1);
DomainEvents.subscribe(TestEvent, handler2);
DomainEvents.dispatch(event);
await DomainEvents.allSettled();
assert.equal(events.length, 2);
assert.equal(events[0], event);
assert.equal(events[1], event);
});
it('Catches async errors in handlers', async function () {
const event = new TestEvent('Hello, world!');
const stub = sinon.stub(logging, 'error').returns();
/**
* @param {TestEvent} receivedEvent
*/
async function handler1() {
await sleep(10);
throw new Error('Test error');
}
DomainEvents.subscribe(TestEvent, handler1);
DomainEvents.dispatch(event);
await DomainEvents.allSettled();
assert.equal(stub.calledTwice, true);
});
describe('allSettled', function () {
it('Resolves when there are no events', async function () {
await DomainEvents.allSettled();
assert(true);
});
it('Waits for all listeners', async function () {
let counter = 0;
DomainEvents.subscribe(TestEvent, async () => {
await sleep(20);
counter += 1;
});
DomainEvents.subscribe(TestEvent, async () => {
await sleep(40);
counter += 1;
});
DomainEvents.dispatch(new TestEvent('Hello, world!'));
await DomainEvents.allSettled();
assert.equal(counter, 2);
});
});
});