Files
nest/packages/microservices/test/client/client-nats.spec.ts
2018-08-16 14:07:37 +02:00

246 lines
7.1 KiB
TypeScript

import { expect } from 'chai';
import * as sinon from 'sinon';
import { ClientNats } from '../../client/client-nats';
import { ERROR_EVENT } from '../../constants';
// tslint:disable:no-string-literal
describe('ClientNats', () => {
const client = new ClientNats({});
describe('publish', () => {
const pattern = 'test';
const msg = { pattern, data: 'data' };
const id = 3;
const subscriptionId = 10;
let subscribeSpy: sinon.SinonSpy,
publishSpy: sinon.SinonSpy,
onSpy: sinon.SinonSpy,
removeListenerSpy: sinon.SinonSpy,
requestSpy: sinon.SinonSpy,
unsubscribeSpy: sinon.SinonSpy,
connectSpy: sinon.SinonStub,
natsClient,
createClient: sinon.SinonStub;
beforeEach(() => {
subscribeSpy = sinon.spy(() => subscriptionId);
publishSpy = sinon.spy();
onSpy = sinon.spy();
removeListenerSpy = sinon.spy();
unsubscribeSpy = sinon.spy();
requestSpy = sinon.spy(() => subscriptionId);
natsClient = {
subscribe: subscribeSpy,
on: (type, handler) => (type === 'subscribe' ? handler() : onSpy()),
removeListener: removeListenerSpy,
unsubscribe: unsubscribeSpy,
addListener: () => ({}),
publish: publishSpy,
request: requestSpy,
};
(client as any).natsClient = natsClient;
connectSpy = sinon.stub(client, 'connect').callsFake(() => {
(client as any).natsClient = natsClient;
});
createClient = sinon.stub(client, 'createClient').callsFake(() => client);
});
afterEach(() => {
connectSpy.restore();
createClient.restore();
});
it('should publish stringified message to pattern name', async () => {
await client['publish'](msg, () => {});
expect(requestSpy.getCall(0).args[0]).to.be.eql(pattern);
});
describe('on error', () => {
let assignPacketIdStub: sinon.SinonStub;
beforeEach(() => {
assignPacketIdStub = sinon
.stub(client, 'assignPacketId')
.callsFake(() => {
throw new Error();
});
});
afterEach(() => {
assignPacketIdStub.restore();
});
it('should call callback', () => {
const callback = sinon.spy();
client['publish'](msg, callback);
expect(callback.called).to.be.true;
expect(callback.getCall(0).args[0].err).to.be.instanceof(Error);
});
});
describe('dispose callback', () => {
let assignStub: sinon.SinonStub;
let callback: sinon.SinonSpy, subscription;
beforeEach(async () => {
callback = sinon.spy();
assignStub = sinon
.stub(client, 'assignPacketId')
.callsFake(packet => Object.assign(packet, { id }));
subscription = await client['publish'](msg, callback);
subscription();
});
afterEach(() => {
assignStub.restore();
});
it('should unsubscribe', () => {
expect(unsubscribeSpy.calledWith(subscriptionId)).to.be.true;
});
});
});
describe('createSubscriptionHandler', () => {
const pattern = 'test';
const msg = { pattern, data: 'data', id: '1' };
let callback: sinon.SinonSpy, subscription;
const responseMessage = {
err: null,
response: 'test',
id: '1',
};
describe('not completed', () => {
beforeEach(async () => {
callback = sinon.spy();
subscription = client.createSubscriptionHandler(msg, callback);
subscription(responseMessage);
});
it('should call callback with expected arguments', () => {
expect(
callback.calledWith({
err: null,
response: responseMessage.response,
}),
).to.be.true;
});
});
describe('disposed and "id" is correct', () => {
beforeEach(async () => {
callback = sinon.spy();
subscription = client.createSubscriptionHandler(msg, callback);
subscription({
...responseMessage,
isDisposed: true,
});
});
it('should call callback with dispose param', () => {
expect(callback.called).to.be.true;
expect(
callback.calledWith({
isDisposed: true,
response: null,
err: null,
}),
).to.be.true;
});
});
describe('disposed and "id" is incorrect', () => {
beforeEach(async () => {
callback = sinon.spy();
subscription = client.createSubscriptionHandler(
{
...msg,
id: '2',
},
callback,
);
subscription(responseMessage);
});
it('should not call callback', () => {
expect(callback.called).to.be.false;
});
});
});
describe('close', () => {
let natsClose: sinon.SinonSpy;
let natsClient;
beforeEach(() => {
natsClose = sinon.spy();
natsClient = { close: natsClose };
(client as any).natsClient = natsClient;
});
it('should close "natsClient" when it is not null', () => {
client.close();
expect(natsClose.called).to.be.true;
});
});
describe('connect', () => {
let createClientSpy: sinon.SinonSpy;
let handleErrorsSpy: sinon.SinonSpy;
let connect$Spy: sinon.SinonSpy;
const natsClient = {
addListener: sinon.spy(),
on: (ev, fn) => (ev === 'connect' ? fn() : null),
removeListener: sinon.spy(),
off: sinon.spy(),
};
beforeEach(async () => {
createClientSpy = sinon
.stub(client, 'createClient')
.callsFake(() => natsClient);
handleErrorsSpy = sinon.spy(client, 'handleError');
connect$Spy = sinon.spy(client, 'connect$');
await client.connect();
});
afterEach(() => {
createClientSpy.restore();
handleErrorsSpy.restore();
connect$Spy.restore();
});
describe('when is not connected', () => {
beforeEach(async () => {
client['natsClient'] = null;
await client.connect();
});
it('should call "handleError" once', async () => {
expect(handleErrorsSpy.called).to.be.true;
});
it('should call "createClient" once', async () => {
expect(createClientSpy.called).to.be.true;
});
it('should call "connect$" once', async () => {
expect(connect$Spy.called).to.be.true;
});
});
describe('when is connected', () => {
beforeEach(() => {
client['natsClient'] = { test: true } as any;
});
it('should not call "createClient"', () => {
expect(createClientSpy.called).to.be.false;
});
it('should not call "handleError"', () => {
expect(handleErrorsSpy.called).to.be.false;
});
it('should not call "connect$"', () => {
expect(connect$Spy.called).to.be.false;
});
});
});
describe('handleError', () => {
it('should bind error event handler', () => {
const callback = sinon.stub().callsFake((_, fn) => fn({ code: 'test' }));
const emitter = {
addListener: callback,
};
client.handleError(emitter as any);
expect(callback.getCall(0).args[0]).to.be.eql(ERROR_EVENT);
});
});
});