mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-10-29 20:24:53 +01:00
44 lines
1.6 KiB
JavaScript
44 lines
1.6 KiB
JavaScript
/* eslint-disable global-require */
|
|
import {
|
|
generateRes,
|
|
generateReq,
|
|
generateNext,
|
|
} from '../../../helpers/api-unit.helper';
|
|
import cors from '../../../../website/server/middlewares/cors';
|
|
|
|
describe('cors middleware', () => {
|
|
let res; let req; let
|
|
next;
|
|
|
|
beforeEach(() => {
|
|
req = generateReq();
|
|
res = generateRes();
|
|
next = generateNext();
|
|
});
|
|
|
|
it('sets the correct headers', () => {
|
|
cors(req, res, next);
|
|
expect(res.set).to.have.been.calledWith({
|
|
'Access-Control-Allow-Origin': '*',
|
|
'Access-Control-Allow-Methods': 'OPTIONS,GET,POST,PUT,HEAD,DELETE',
|
|
'Access-Control-Allow-Headers': 'Authorization,Content-Type,Accept,Content-Encoding,X-Requested-With,x-api-user,x-api-key,x-client',
|
|
'Access-Control-Expose-Headers': 'X-RateLimit-Limit,X-RateLimit-Remaining,X-RateLimit-Reset,Retry-After',
|
|
});
|
|
expect(res.sendStatus).to.not.have.been.called;
|
|
expect(next).to.have.been.calledOnce;
|
|
});
|
|
|
|
it('responds immediately if method is OPTIONS', () => {
|
|
req.method = 'OPTIONS';
|
|
cors(req, res, next);
|
|
expect(res.set).to.have.been.calledWith({
|
|
'Access-Control-Allow-Origin': '*',
|
|
'Access-Control-Allow-Methods': 'OPTIONS,GET,POST,PUT,HEAD,DELETE',
|
|
'Access-Control-Allow-Headers': 'Authorization,Content-Type,Accept,Content-Encoding,X-Requested-With,x-api-user,x-api-key,x-client',
|
|
'Access-Control-Expose-Headers': 'X-RateLimit-Limit,X-RateLimit-Remaining,X-RateLimit-Reset,Retry-After',
|
|
});
|
|
expect(res.sendStatus).to.have.been.calledWith(200);
|
|
expect(next).to.not.have.been.called;
|
|
});
|
|
});
|