Files
nest/integration/websockets/e2e/ws-gateway.spec.ts
2018-05-25 12:48:38 +02:00

91 lines
2.6 KiB
TypeScript

import { INestApplication } from '@nestjs/common';
import { Test } from '@nestjs/testing';
import { WsAdapter } from '@nestjs/websockets/adapters/ws-adapter';
import { expect } from 'chai';
import * as WebSocket from 'ws';
import { ApplicationGateway } from '../src/app.gateway';
import { CoreGateway } from '../src/core.gateway';
import { ServerGateway } from '../src/server.gateway';
async function createNestApp(...gateways): Promise<INestApplication> {
const testingModule = await Test.createTestingModule({
providers: gateways,
}).compile();
const app = await testingModule.createNestApplication();
app.useWebSocketAdapter(new WsAdapter(app.getHttpServer()));
return app;
}
describe('WebSocketGateway (WsAdapter)', () => {
const event = 'push';
let ws, ws2, app;
it(`should handle message (2nd port)`, async () => {
app = await createNestApp(ApplicationGateway);
await app.listenAsync(3000);
ws = new WebSocket('ws://localhost:8080');
await new Promise(resolve => ws.on('open', resolve));
ws.send(JSON.stringify({ event: 'push', data: {
test: 'test',
}}));
await new Promise(resolve =>
ws.on('message', data => {
expect(JSON.parse(data).data.test).to.be.eql('test');
resolve();
}),
);
});
it(`should handle message (http)`, async () => {
app = await createNestApp(ServerGateway);
await app.listenAsync(3000);
ws = new WebSocket('ws://localhost:3000');
await new Promise(resolve => ws.on('open', resolve));
ws.send(JSON.stringify({ event: 'push', data: {
test: 'test',
}}));
await new Promise(resolve =>
ws.on('message', data => {
expect(JSON.parse(data).data.test).to.be.eql('test');
resolve();
}),
);
});
it(`should support 2 different gateways`, async () => {
app = await createNestApp(ApplicationGateway, CoreGateway);
await app.listenAsync(3000);
ws = new WebSocket('ws://localhost:8080');
ws2 = new WebSocket('ws://localhost:8090');
await new Promise(resolve => ws.on('open', resolve));
await new Promise(resolve => ws2.on('open', resolve));
ws.send(JSON.stringify({ event: 'push', data: {
test: 'test',
}}));
await new Promise(resolve =>
ws.on('message', data => {
expect(JSON.parse(data).data.test).to.be.eql('test');
resolve();
}),
);
ws2.send(JSON.stringify({ event: 'push', data: {
test: 'test',
}}));
await new Promise(resolve =>
ws2.on('message', data => {
expect(JSON.parse(data).data.test).to.be.eql('test');
resolve();
}),
);
});
afterEach(() => app.close());
});