mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
5d5d6eecc4
* Basic import summary * Started (broken)
75 lines
2.1 KiB
JavaScript
75 lines
2.1 KiB
JavaScript
import * as harUtils from '../har';
|
|
import * as db from '../database';
|
|
import * as render from '../render';
|
|
import * as models from '../../models';
|
|
|
|
describe('exportHarWithRequest()', () => {
|
|
beforeEach(() => db.init(models.types(), {inMemoryOnly: true}, true));
|
|
it('renders does it correctly', async () => {
|
|
const workspace = await models.workspace.create();
|
|
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')
|
|
}];
|
|
|
|
await models.cookieJar.create({
|
|
parentId: workspace._id,
|
|
cookies
|
|
});
|
|
|
|
const request = Object.assign(models.request.init(), {
|
|
_id: 'req_123',
|
|
parentId: workspace._id,
|
|
headers: [{name: 'Content-Type', value: 'application/json'}],
|
|
parameters: [{name: 'foo bar', value: 'hello&world'}],
|
|
method: 'POST',
|
|
body: {
|
|
text: '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/'
|
|
});
|
|
});
|
|
});
|