mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-24 06:35:49 +03:00
913ad18b71
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.
103 lines
2.8 KiB
JavaScript
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);
|
|
});
|
|
});
|
|
});
|