forked from nestjs/nest
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
21 changed files
with
619 additions
and
149 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,177 @@ | ||
import { NestFastifyApplication } from '@nestjs/platform-fastify'; | ||
import { Test } from '@nestjs/testing'; | ||
import * as request from 'supertest'; | ||
import { AppModule } from '../src/app.module'; | ||
|
||
describe('Express Cors', () => { | ||
let app: NestFastifyApplication; | ||
const configs = [ | ||
{ | ||
origin: 'example.com', | ||
methods: 'GET', | ||
credentials: true, | ||
exposedHeaders: ['foo', 'bar'], | ||
allowedHeaders: ['baz', 'woo'], | ||
maxAge: 123, | ||
}, | ||
{ | ||
origin: 'sample.com', | ||
methods: 'GET', | ||
credentials: true, | ||
exposedHeaders: ['zoo', 'bar'], | ||
allowedHeaders: ['baz', 'foo'], | ||
maxAge: 321, | ||
}, | ||
]; | ||
describe('Dynamic config', () => { | ||
describe('enableCors', () => { | ||
before(async () => { | ||
const module = await Test.createTestingModule({ | ||
imports: [AppModule], | ||
}).compile(); | ||
|
||
app = module.createNestApplication<NestFastifyApplication>(); | ||
|
||
let requestId = 0; | ||
const configDelegation = function (req, cb) { | ||
const config = configs[requestId]; | ||
requestId++; | ||
cb(null, config); | ||
}; | ||
app.enableCors(configDelegation); | ||
|
||
await app.init(); | ||
}); | ||
|
||
it(`Should add cors headers based on the first config`, async () => { | ||
return request(app.getHttpServer()) | ||
.get('/') | ||
.expect('access-control-allow-origin', 'example.com') | ||
.expect('vary', 'Origin') | ||
.expect('access-control-allow-credentials', 'true') | ||
.expect('access-control-expose-headers', 'foo,bar') | ||
.expect('content-length', '0'); | ||
}); | ||
|
||
it(`Should add cors headers based on the second config`, async () => { | ||
return request(app.getHttpServer()) | ||
.options('/') | ||
.expect('access-control-allow-origin', 'sample.com') | ||
.expect('vary', 'Origin') | ||
.expect('access-control-allow-credentials', 'true') | ||
.expect('access-control-expose-headers', 'zoo,bar') | ||
.expect('access-control-allow-methods', 'GET') | ||
.expect('access-control-allow-headers', 'baz,foo') | ||
.expect('access-control-max-age', '321') | ||
.expect('content-length', '0'); | ||
}); | ||
|
||
after(async () => { | ||
await app.close(); | ||
}); | ||
}); | ||
|
||
describe('Application Options', () => { | ||
before(async () => { | ||
const module = await Test.createTestingModule({ | ||
imports: [AppModule], | ||
}).compile(); | ||
|
||
let requestId = 0; | ||
const configDelegation = function (req, cb) { | ||
const config = configs[requestId]; | ||
requestId++; | ||
cb(null, config); | ||
}; | ||
|
||
app = module.createNestApplication<NestFastifyApplication>(null, { | ||
cors: configDelegation, | ||
}); | ||
|
||
await app.init(); | ||
}); | ||
|
||
it(`Should add cors headers based on the first config`, async () => { | ||
return request(app.getHttpServer()) | ||
.get('/') | ||
.expect('access-control-allow-origin', 'example.com') | ||
.expect('vary', 'Origin') | ||
.expect('access-control-allow-credentials', 'true') | ||
.expect('access-control-expose-headers', 'foo,bar') | ||
.expect('content-length', '0'); | ||
}); | ||
|
||
it(`Should add cors headers based on the second config`, async () => { | ||
return request(app.getHttpServer()) | ||
.options('/') | ||
.expect('access-control-allow-origin', 'sample.com') | ||
.expect('vary', 'Origin') | ||
.expect('access-control-allow-credentials', 'true') | ||
.expect('access-control-expose-headers', 'zoo,bar') | ||
.expect('access-control-allow-methods', 'GET') | ||
.expect('access-control-allow-headers', 'baz,foo') | ||
.expect('access-control-max-age', '321') | ||
.expect('content-length', '0'); | ||
}); | ||
|
||
after(async () => { | ||
await app.close(); | ||
}); | ||
}); | ||
}); | ||
describe('Static config', () => { | ||
describe('enableCors', () => { | ||
before(async () => { | ||
const module = await Test.createTestingModule({ | ||
imports: [AppModule], | ||
}).compile(); | ||
|
||
app = module.createNestApplication<NestFastifyApplication>(); | ||
app.enableCors(configs[0]); | ||
|
||
await app.init(); | ||
}); | ||
|
||
it(`CORS headers`, async () => { | ||
return request(app.getHttpServer()) | ||
.get('/') | ||
.expect('access-control-allow-origin', 'example.com') | ||
.expect('vary', 'Origin') | ||
.expect('access-control-allow-credentials', 'true') | ||
.expect('access-control-expose-headers', 'foo,bar') | ||
.expect('content-length', '0'); | ||
}); | ||
}); | ||
|
||
after(async () => { | ||
await app.close(); | ||
}); | ||
|
||
describe('Application Options', () => { | ||
before(async () => { | ||
const module = await Test.createTestingModule({ | ||
imports: [AppModule], | ||
}).compile(); | ||
|
||
app = module.createNestApplication<NestFastifyApplication>(null, { | ||
cors: configs[0], | ||
}); | ||
await app.init(); | ||
}); | ||
|
||
it(`CORS headers`, async () => { | ||
return request(app.getHttpServer()) | ||
.get('/') | ||
.expect('access-control-allow-origin', 'example.com') | ||
.expect('vary', 'Origin') | ||
.expect('access-control-allow-credentials', 'true') | ||
.expect('access-control-expose-headers', 'foo,bar') | ||
.expect('content-length', '0'); | ||
}); | ||
|
||
after(async () => { | ||
await app.close(); | ||
}); | ||
}); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,177 @@ | ||
import { NestFastifyApplication } from '@nestjs/platform-fastify'; | ||
import { Test } from '@nestjs/testing'; | ||
import * as request from 'supertest'; | ||
import { AppModule } from '../src/app.module'; | ||
|
||
describe('Fastify Cors', () => { | ||
let app: NestFastifyApplication; | ||
const configs = [ | ||
{ | ||
origin: 'example.com', | ||
methods: 'GET', | ||
credentials: true, | ||
exposedHeaders: ['foo', 'bar'], | ||
allowedHeaders: ['baz', 'woo'], | ||
maxAge: 123, | ||
}, | ||
{ | ||
origin: 'sample.com', | ||
methods: 'GET', | ||
credentials: true, | ||
exposedHeaders: ['zoo', 'bar'], | ||
allowedHeaders: ['baz', 'foo'], | ||
maxAge: 321, | ||
}, | ||
]; | ||
describe('Dynamic config', () => { | ||
describe('enableCors', () => { | ||
before(async () => { | ||
const module = await Test.createTestingModule({ | ||
imports: [AppModule], | ||
}).compile(); | ||
|
||
app = module.createNestApplication<NestFastifyApplication>(); | ||
|
||
let requestId = 0; | ||
const configDelegation = function (req, cb) { | ||
const config = configs[requestId]; | ||
requestId++; | ||
cb(null, config); | ||
}; | ||
app.enableCors(configDelegation); | ||
|
||
await app.init(); | ||
}); | ||
|
||
it(`Should add cors headers based on the first config`, async () => { | ||
return request(app.getHttpServer()) | ||
.get('/') | ||
.expect('access-control-allow-origin', 'example.com') | ||
.expect('vary', 'Origin') | ||
.expect('access-control-allow-credentials', 'true') | ||
.expect('access-control-expose-headers', 'foo,bar') | ||
.expect('content-length', '0'); | ||
}); | ||
|
||
it(`Should add cors headers based on the second config`, async () => { | ||
return request(app.getHttpServer()) | ||
.options('/') | ||
.expect('access-control-allow-origin', 'sample.com') | ||
.expect('vary', 'Origin') | ||
.expect('access-control-allow-credentials', 'true') | ||
.expect('access-control-expose-headers', 'zoo,bar') | ||
.expect('access-control-allow-methods', 'GET') | ||
.expect('access-control-allow-headers', 'baz,foo') | ||
.expect('access-control-max-age', '321') | ||
.expect('content-length', '0'); | ||
}); | ||
|
||
after(async () => { | ||
await app.close(); | ||
}); | ||
}); | ||
|
||
describe('Application Options', () => { | ||
before(async () => { | ||
const module = await Test.createTestingModule({ | ||
imports: [AppModule], | ||
}).compile(); | ||
|
||
let requestId = 0; | ||
const configDelegation = function (req, cb) { | ||
const config = configs[requestId]; | ||
requestId++; | ||
cb(null, config); | ||
}; | ||
|
||
app = module.createNestApplication<NestFastifyApplication>(null, { | ||
cors: configDelegation, | ||
}); | ||
|
||
await app.init(); | ||
}); | ||
|
||
it(`Should add cors headers based on the first config`, async () => { | ||
return request(app.getHttpServer()) | ||
.get('/') | ||
.expect('access-control-allow-origin', 'example.com') | ||
.expect('vary', 'Origin') | ||
.expect('access-control-allow-credentials', 'true') | ||
.expect('access-control-expose-headers', 'foo,bar') | ||
.expect('content-length', '0'); | ||
}); | ||
|
||
it(`Should add cors headers based on the second config`, async () => { | ||
return request(app.getHttpServer()) | ||
.options('/') | ||
.expect('access-control-allow-origin', 'sample.com') | ||
.expect('vary', 'Origin') | ||
.expect('access-control-allow-credentials', 'true') | ||
.expect('access-control-expose-headers', 'zoo,bar') | ||
.expect('access-control-allow-methods', 'GET') | ||
.expect('access-control-allow-headers', 'baz,foo') | ||
.expect('access-control-max-age', '321') | ||
.expect('content-length', '0'); | ||
}); | ||
|
||
after(async () => { | ||
await app.close(); | ||
}); | ||
}); | ||
}); | ||
|
||
describe('Static config', () => { | ||
describe('enableCors', () => { | ||
before(async () => { | ||
const module = await Test.createTestingModule({ | ||
imports: [AppModule], | ||
}).compile(); | ||
|
||
app = module.createNestApplication<NestFastifyApplication>(); | ||
app.enableCors(configs[0]); | ||
|
||
await app.init(); | ||
}); | ||
|
||
it(`CORS headers`, async () => { | ||
return request(app.getHttpServer()) | ||
.get('/') | ||
.expect('access-control-allow-origin', 'example.com') | ||
.expect('vary', 'Origin') | ||
.expect('access-control-allow-credentials', 'true') | ||
.expect('access-control-expose-headers', 'foo,bar') | ||
.expect('content-length', '0'); | ||
}); | ||
}); | ||
|
||
after(async () => { | ||
await app.close(); | ||
}); | ||
describe('Application Options', () => { | ||
before(async () => { | ||
const module = await Test.createTestingModule({ | ||
imports: [AppModule], | ||
}).compile(); | ||
|
||
app = module.createNestApplication<NestFastifyApplication>(null, { | ||
cors: configs[0], | ||
}); | ||
await app.init(); | ||
}); | ||
|
||
it(`CORS headers`, async () => { | ||
return request(app.getHttpServer()) | ||
.get('/') | ||
.expect('access-control-allow-origin', 'example.com') | ||
.expect('vary', 'Origin') | ||
.expect('access-control-allow-credentials', 'true') | ||
.expect('access-control-expose-headers', 'foo,bar') | ||
.expect('content-length', '0'); | ||
}); | ||
}); | ||
|
||
after(async () => { | ||
await app.close(); | ||
}); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import { Controller, Get } from '@nestjs/common'; | ||
|
||
@Controller() | ||
export class AppController { | ||
@Get() | ||
getGlobals() { | ||
return ''; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import { Module } from '@nestjs/common'; | ||
import { AppController } from './app.controller'; | ||
|
||
@Module({ | ||
controllers: [AppController], | ||
}) | ||
export class AppModule {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"compilerOptions": { | ||
"module": "commonjs", | ||
"declaration": false, | ||
"noImplicitAny": false, | ||
"removeComments": true, | ||
"noLib": false, | ||
"emitDecoratorMetadata": true, | ||
"experimentalDecorators": true, | ||
"target": "es6", | ||
"sourceMap": true, | ||
"allowJs": true, | ||
"outDir": "./dist" | ||
}, | ||
"include": [ | ||
"src/**/*", | ||
"e2e/**/*" | ||
], | ||
"exclude": [ | ||
"node_modules", | ||
] | ||
} |
Oops, something went wrong.