Skip to content

Commit

Permalink
Merge pull request #12009 from KKSzymanowski/master
Browse files Browse the repository at this point in the history
fix(core): Initialize application only once
  • Loading branch information
kamilmysliwiec authored Jul 12, 2023
2 parents d8800d6 + 334bb27 commit b6eec5e
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/core/nest-application.ts
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,10 @@ export class NestApplication
}

public async init(): Promise<this> {
if (this.isInitialized) {
return this;
}

this.applyOptions();
await this.httpAdapter?.init();

Expand Down
25 changes: 25 additions & 0 deletions packages/core/test/nest-application.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import { NestApplication } from '../nest-application';
import { mapToExcludeRoute } from './../middleware/utils';
import { NoopHttpAdapter } from './utils/noop-adapter.spec';
import { MicroserviceOptions } from '@nestjs/microservices';
import * as sinon from 'sinon';

describe('NestApplication', () => {
describe('Hybrid Application', () => {
Expand Down Expand Up @@ -79,4 +80,28 @@ describe('NestApplication', () => {
});
});
});
describe('Double initialization', () => {
it('should initialize application only once', async () => {
const noopHttpAdapter = new NoopHttpAdapter({});
const httpAdapterSpy = sinon.spy(noopHttpAdapter);

const applicationConfig = new ApplicationConfig();

const container = new NestContainer(applicationConfig);
container.setHttpAdapter(noopHttpAdapter);

const instance = new NestApplication(
container,
noopHttpAdapter,
applicationConfig,
new GraphInspector(container),
{},
);

await instance.init();
await instance.init();

expect(httpAdapterSpy.init.calledOnce).to.be.true;
});
});
});

0 comments on commit b6eec5e

Please sign in to comment.