Skip to content

Commit

Permalink
fix(core): Initialize application only once
Browse files Browse the repository at this point in the history
Fixes #12006
  • Loading branch information
KKSzymanowski committed Jul 12, 2023
1 parent d8800d6 commit 334bb27
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 334bb27

Please sign in to comment.