insomnia/plugins/insomnia-plugin-cookie-jar/__tests__/index.js

116 lines
3.5 KiB
JavaScript
Raw Normal View History

const { jarFromCookies, cookiesFromJar } = require('insomnia-cookies');
const tag = require('..').templateTags[0];
describe('plugin', () => {
2019-05-08 17:59:16 +00:00
describe('CookieJarPlugin: no cookies for url', () => {
it('should get cookie by name', async () => {
const jar = jarFromCookies([]);
jar.setCookieSync(
[
'foo=bar',
'path=/',
'domain=.insomnia.rest',
'HttpOnly Cache-Control: public, no-cache',
].join('; '),
'https://insomnia.rest',
);
const cookies = await cookiesFromJar(jar);
2018-10-17 16:42:33 +00:00
const requests = [{ _id: 'req_1', parameters: [], url: 'https://insomnia.rest/foo/bar' }];
const jars = [{ _id: 'jar_1', parentId: 'wrk_1', cookies }];
const context = _getTestContext([{ _id: 'wrk_1' }], requests, jars);
try {
2019-05-08 17:59:16 +00:00
await tag.run(context, 'https://google.com/', '');
2018-10-17 16:42:33 +00:00
} catch (err) {
expect(err.message).toContain('No cookies in store for url "https://google.com/');
}
});
});
2019-05-08 17:59:16 +00:00
describe('CookieJarPlugin: cookie not found', () => {
it('should get cookie by name', async () => {
const jar = jarFromCookies([]);
jar.setCookieSync(
[
'foo=bar',
'path=/',
'domain=.insomnia.rest',
'HttpOnly Cache-Control: public, no-cache',
].join('; '),
'https://insomnia.rest',
);
const cookies = await cookiesFromJar(jar);
2018-10-17 16:42:33 +00:00
const requests = [{ _id: 'req_1', parameters: [], url: 'https://insomnia.rest/foo/bar' }];
const jars = [{ _id: 'jar_1', parentId: 'wrk_1', cookies }];
const context = _getTestContext([{ _id: 'wrk_1' }], requests, jars);
try {
2019-05-08 17:59:16 +00:00
await tag.run(context, 'https://insomnia.rest', 'bar');
2018-10-17 16:42:33 +00:00
} catch (err) {
expect(err.message).toContain('No cookie with name "bar"');
expect(err.message).toContain('"foo"');
}
});
});
2019-05-08 17:59:16 +00:00
describe('CookieJarPlugin: cookie name found', () => {
it('should get cookie by name', async () => {
const jar = jarFromCookies([]);
jar.setCookieSync(
[
'foo=bar',
'path=/',
'domain=.insomnia.rest',
'HttpOnly Cache-Control: public, no-cache',
].join('; '),
'https://insomnia.rest',
);
const cookies = await cookiesFromJar(jar);
2018-10-17 16:42:33 +00:00
const requests = [{ _id: 'req_1', parameters: [], url: 'https://insomnia.rest/foo/bar' }];
const jars = [{ _id: 'jar_1', parentId: 'wrk_1', cookies }];
const context = _getTestContext([{ _id: 'wrk_1' }], requests, jars);
const result = await tag.run(context, 'https://insomnia.rest', 'foo');
expect(result).toBe('bar');
});
});
});
function _getTestContext(workspaces, requests, jars) {
jars = jars || [];
return {
meta: {
requestId: requests[0]._id,
workspaceId: workspaces[0]._id,
},
util: {
render(str) {
return str.replace(/{{ foo }}/g, 'bar');
},
models: {
request: {
getById(id) {
return requests.find(r => r._id === id);
},
},
workspace: {
getById(id) {
return workspaces.find(w => w._id === id);
},
},
cookieJar: {
getOrCreateForWorkspace(workspace) {
return (
jars.find(j => j.parentId === workspace._id) || {
parentId: workspace._id,
cookies: [],
}
);
},
},
},
},
};
}