62 lines
2.1 KiB
JavaScript
62 lines
2.1 KiB
JavaScript
import { expect } from '@open-wc/testing';
|
|
import {
|
|
createXSRFRequestInterceptor,
|
|
getCookie,
|
|
acceptLanguageRequestInterceptor,
|
|
} from '@lion/ajax';
|
|
|
|
describe('interceptors', () => {
|
|
describe('getCookie()', () => {
|
|
it('returns the cookie value', () => {
|
|
expect(getCookie('foo', { cookie: 'foo=bar' })).to.equal('bar');
|
|
});
|
|
|
|
it('returns the cookie value when there are multiple cookies', () => {
|
|
expect(getCookie('foo', { cookie: 'foo=bar; bar=foo;lorem=ipsum' })).to.equal('bar');
|
|
});
|
|
|
|
it('returns null when the cookie cannot be found', () => {
|
|
expect(getCookie('foo', { cookie: 'bar=foo;lorem=ipsum' })).to.equal(null);
|
|
});
|
|
|
|
it('decodes the cookie vaue', () => {
|
|
expect(getCookie('foo', { cookie: `foo=${decodeURIComponent('/foo/ bar "')}` })).to.equal(
|
|
'/foo/ bar "',
|
|
);
|
|
});
|
|
});
|
|
|
|
describe('acceptLanguageRequestInterceptor()', () => {
|
|
it('adds the locale as accept-language header', () => {
|
|
const request = new Request('/foo/');
|
|
acceptLanguageRequestInterceptor(request);
|
|
expect(request.headers.get('accept-language')).to.equal('en');
|
|
});
|
|
|
|
it('does not change an existing accept-language header', () => {
|
|
const request = new Request('/foo/', { headers: { 'accept-language': 'my-accept' } });
|
|
acceptLanguageRequestInterceptor(request);
|
|
expect(request.headers.get('accept-language')).to.equal('my-accept');
|
|
});
|
|
});
|
|
|
|
describe('createXSRFRequestInterceptor()', () => {
|
|
it('adds the xsrf token header to the request', () => {
|
|
const interceptor = createXSRFRequestInterceptor('XSRF-TOKEN', 'X-XSRF-TOKEN', {
|
|
cookie: 'XSRF-TOKEN=foo',
|
|
});
|
|
const request = new Request('/foo/');
|
|
interceptor(request);
|
|
expect(request.headers.get('X-XSRF-TOKEN')).to.equal('foo');
|
|
});
|
|
|
|
it('does not set anything if the cookie is not there', () => {
|
|
const interceptor = createXSRFRequestInterceptor('XSRF-TOKEN', 'X-XSRF-TOKEN', {
|
|
cookie: 'XXSRF-TOKEN=foo',
|
|
});
|
|
const request = new Request('/foo/');
|
|
interceptor(request);
|
|
expect(request.headers.get('X-XSRF-TOKEN')).to.equal(null);
|
|
});
|
|
});
|
|
});
|