mirror of
https://github.com/nestjs/nest.git
synced 2026-02-21 15:08:37 +00:00
128 lines
3.2 KiB
TypeScript
128 lines
3.2 KiB
TypeScript
import { INestApplication } from '@nestjs/common';
|
|
import { MicroserviceOptions, Transport } from '@nestjs/microservices';
|
|
import { Test } from '@nestjs/testing';
|
|
import { expect } from 'chai';
|
|
import * as request from 'supertest';
|
|
import { AppController } from '../src/app.controller';
|
|
import { AppModule } from '../src/app.module';
|
|
|
|
describe('RPC transport', () => {
|
|
let server;
|
|
let app: INestApplication;
|
|
|
|
beforeEach(async () => {
|
|
const module = await Test.createTestingModule({
|
|
imports: [AppModule],
|
|
}).compile();
|
|
|
|
app = module.createNestApplication();
|
|
server = app.getHttpAdapter().getInstance();
|
|
|
|
app.connectMicroservice<MicroserviceOptions>({
|
|
transport: Transport.TCP,
|
|
options: {
|
|
host: '0.0.0.0',
|
|
},
|
|
});
|
|
await app.startAllMicroservices();
|
|
await app.init();
|
|
});
|
|
|
|
it(`/POST`, () => {
|
|
return request(server)
|
|
.post('/?command=sum')
|
|
.send([1, 2, 3, 4, 5])
|
|
.expect(200, '15');
|
|
});
|
|
|
|
it(`/POST (Promise/async)`, () => {
|
|
return request(server)
|
|
.post('/?command=asyncSum')
|
|
.send([1, 2, 3, 4, 5])
|
|
.expect(200)
|
|
.expect(200, '15');
|
|
});
|
|
|
|
it(`/POST (Observable stream)`, () => {
|
|
return request(server)
|
|
.post('/?command=streamSum')
|
|
.send([1, 2, 3, 4, 5])
|
|
.expect(200, '15');
|
|
});
|
|
|
|
it(`/POST (useFactory client)`, () => {
|
|
return request(server)
|
|
.post('/useFactory?command=sum')
|
|
.send([1, 2, 3, 4, 5])
|
|
.expect(200, '15');
|
|
});
|
|
|
|
it(`/POST (useClass client)`, () => {
|
|
return request(server)
|
|
.post('/useClass?command=sum')
|
|
.send([1, 2, 3, 4, 5])
|
|
.expect(200, '15');
|
|
});
|
|
|
|
it(`/POST (concurrent)`, () => {
|
|
return request(server)
|
|
.post('/concurrent')
|
|
.send([
|
|
Array.from({ length: 10 }, (v, k) => k + 1),
|
|
Array.from({ length: 10 }, (v, k) => k + 11),
|
|
Array.from({ length: 10 }, (v, k) => k + 21),
|
|
Array.from({ length: 10 }, (v, k) => k + 31),
|
|
Array.from({ length: 10 }, (v, k) => k + 41),
|
|
Array.from({ length: 10 }, (v, k) => k + 51),
|
|
Array.from({ length: 10 }, (v, k) => k + 61),
|
|
Array.from({ length: 10 }, (v, k) => k + 71),
|
|
Array.from({ length: 10 }, (v, k) => k + 81),
|
|
Array.from({ length: 10 }, (v, k) => k + 91),
|
|
])
|
|
.expect(200, 'true');
|
|
});
|
|
|
|
it(`/POST (streaming)`, () => {
|
|
return request(server)
|
|
.post('/stream')
|
|
.send([1, 2, 3, 4, 5])
|
|
.expect(200, '15');
|
|
});
|
|
|
|
it(`/POST (pattern not found)`, () => {
|
|
return request(server).post('/?command=test').expect(500);
|
|
});
|
|
|
|
it(`/POST (event notification)`, done => {
|
|
return request(server)
|
|
.post('/notify')
|
|
.send([1, 2, 3, 4, 5])
|
|
.end(() => {
|
|
setTimeout(() => {
|
|
expect(AppController.IS_NOTIFIED).to.be.true;
|
|
done();
|
|
}, 1000);
|
|
});
|
|
});
|
|
|
|
it('/POST (custom client)', () => {
|
|
return request(server)
|
|
.post('/error?client=custom')
|
|
.send({})
|
|
.expect(200)
|
|
.expect('true');
|
|
});
|
|
|
|
it('/POST (standard client)', () => {
|
|
return request(server)
|
|
.post('/error?client=standard')
|
|
.send({})
|
|
.expect(200)
|
|
.expect('false');
|
|
});
|
|
|
|
afterEach(async () => {
|
|
await app.close();
|
|
});
|
|
});
|