57 lines
1.3 KiB
JavaScript
57 lines
1.3 KiB
JavaScript
import { setHTMLFixture } from 'helpers/fixtures';
|
|
import csrf from '~/lib/utils/csrf';
|
|
|
|
describe('csrf', () => {
|
|
let testContext;
|
|
|
|
beforeEach(() => {
|
|
testContext = {};
|
|
});
|
|
|
|
beforeEach(() => {
|
|
testContext.tokenKey = 'X-CSRF-Token';
|
|
testContext.token =
|
|
'pH1cvjnP9grx2oKlhWEDvUZnJ8x2eXsIs1qzyHkF3DugSG5yTxR76CWeEZRhML2D1IeVB7NEW0t5l/axE4iJpQ==';
|
|
});
|
|
|
|
it('returns the correct headerKey', () => {
|
|
expect(csrf.headerKey).toBe(testContext.tokenKey);
|
|
});
|
|
|
|
describe('when csrf token is in the DOM', () => {
|
|
beforeEach(() => {
|
|
setHTMLFixture(`
|
|
<meta name="csrf-token" content="${testContext.token}">
|
|
`);
|
|
|
|
csrf.init();
|
|
});
|
|
|
|
it('returns the csrf token', () => {
|
|
expect(csrf.token).toBe(testContext.token);
|
|
});
|
|
|
|
it('returns the csrf headers object', () => {
|
|
expect(csrf.headers[testContext.tokenKey]).toBe(testContext.token);
|
|
});
|
|
});
|
|
|
|
describe('when csrf token is not in the DOM', () => {
|
|
beforeEach(() => {
|
|
setHTMLFixture(`
|
|
<meta name="some-other-token">
|
|
`);
|
|
|
|
csrf.init();
|
|
});
|
|
|
|
it('returns null for token', () => {
|
|
expect(csrf.token).toBeNull();
|
|
});
|
|
|
|
it('returns empty object for headers', () => {
|
|
expect(typeof csrf.headers).toBe('object');
|
|
expect(Object.keys(csrf.headers).length).toBe(0);
|
|
});
|
|
});
|
|
});
|