insomnia/app/common/__tests__/har.test.js

71 lines
2.1 KiB
JavaScript
Raw Normal View History

2016-11-10 05:56:23 +00:00
import * as harUtils from '../../export/har';
2016-10-05 16:34:13 +00:00
import * as db from '../database';
import * as render from '../render';
2016-11-10 05:56:23 +00:00
import * as models from '../../models';
2016-10-05 16:34:13 +00:00
describe('exportHarWithRequest()', () => {
2016-11-10 01:15:27 +00:00
beforeEach(() => db.initDB(models.types(), {inMemoryOnly: true}, true));
2016-10-05 16:34:13 +00:00
it('renders does it correctly', async () => {
2016-11-10 01:15:27 +00:00
const workspace = await models.workspace.create();
2016-10-05 16:34:13 +00:00
const cookies = [{
creation: new Date('2016-10-05T04:40:49.505Z'),
key: 'foo',
value: 'barrrrr',
expires: new Date('2096-10-12T04:40:49.000Z'),
domain: 'google.com',
path: '/',
hostOnly: true,
lastAccessed: new Date('2096-10-05T04:40:49.505Z')
}];
2016-11-10 01:15:27 +00:00
await models.cookieJar.create({
2016-10-05 16:34:13 +00:00
parentId: workspace._id,
cookies
});
2016-11-10 01:15:27 +00:00
const request = Object.assign(models.request.init(), {
2016-10-05 16:34:13 +00:00
_id: 'req_123',
parentId: workspace._id,
headers: [{name: 'Content-Type', value: 'application/json'}],
parameters: [{name: 'foo bar', value: 'hello&world'}],
method: 'POST',
body: 'foo bar',
url: 'http://google.com',
authentication: {
username: 'user',
password: 'pass'
}
});
const renderedRequest = await render.getRenderedRequest(request);
const har = harUtils.exportHarWithRequest(renderedRequest);
expect(har.cookies.length).toBe(1);
expect(har).toEqual({
bodySize: -1,
cookies: [{
creation: '2016-10-05T04:40:49.505Z',
domain: 'google.com',
expires: '2096-10-12T04:40:49.000Z',
hostOnly: true,
key: 'foo',
name: 'foo',
path: '/',
value: 'barrrrr',
// lastAccessed is updated, so lets hack the assertion
lastAccessed: har.cookies[0].lastAccessed
}],
headers: [
{name: 'Content-Type', value: 'application/json'},
{name: 'Authorization', value: 'Basic dXNlcjpwYXNz'}
],
headersSize: -1,
httpVersion: 'HTTP/1.1',
method: 'POST',
postData: {text: 'foo bar'},
queryString: [{name: 'foo bar', value: 'hello&world'}],
url: 'http://google.com/'
});
});
});