insomnia/app/models/__tests__/request.test.js
Gregory Schier 5d5d6eecc4 Switch Request body to be object instead of string (#47)
* Basic import summary

* Started (broken)
2016-11-22 11:42:10 -08:00

250 lines
6.9 KiB
JavaScript

import * as db from '../../common/database';
import * as requestModel from '../../models/request';
import {types as allModelTypes} from '../../models';
describe('init()', () => {
beforeEach(() => {
return db.init(allModelTypes(), {inMemoryOnly: true}, true);
});
it('contains all required fields', async () => {
Date.now = jest.genMockFunction().mockReturnValue(1478795580200);
expect(requestModel.init()).toEqual({
_schema: 1,
authentication: {},
body: {},
headers: [],
metaSortKey: -1478795580200,
method: 'GET',
name: 'New Request',
parameters: [],
url: ''
});
});
});
describe('create()', async () => {
beforeEach(() => {
return db.init(allModelTypes(), {inMemoryOnly: true}, true);
});
it('creates a valid request', async () => {
Date.now = jest.genMockFunction().mockReturnValue(1478795580200);
const request = await requestModel.create({name: 'Test Request', parentId: 'fld_124'});
const expected = {
_id: 'req_dd2ccc1a2745477a881a9e8ef9d42403',
_schema: 1,
created: 1478795580200,
modified: 1478795580200,
parentId: 'fld_124',
type: 'Request',
authentication: {},
body: {},
headers: [],
metaSortKey: -1478795580200,
method: 'GET',
name: 'Test Request',
parameters: [],
url: ''
};
expect(request).toEqual(expected);
expect(await requestModel.getById(expected._id)).toEqual(expected);
});
it('fails when missing parentId', async () => {
Date.now = jest.genMockFunction().mockReturnValue(1478795580200);
expect(() => requestModel.create({name: 'Test Request'})).toThrow('New Requests missing `parentId`')
});
});
describe('updateMimeType()', async () => {
beforeEach(() => {
return db.init(allModelTypes(), {inMemoryOnly: true}, true);
});
it('adds header when does not exist', async () => {
const request = await requestModel.create({name: 'My Request', parentId: 'fld_1'});
expect(request).not.toBeNull();
const newRequest = await requestModel.updateMimeType(request, 'text/html');
expect(newRequest.headers).toEqual([{name: 'Content-Type', value: 'text/html'}]);
});
it('replaces header when exists', async () => {
const request = await requestModel.create({
name: 'My Request',
parentId: 'fld_1',
headers: [
{name: 'content-tYPE', value: 'application/json'},
{name: 'foo', value: 'bar'},
{bad: true},
null
]
});
expect(request).not.toBeNull();
const newRequest = await requestModel.updateMimeType(request, 'text/html');
expect(newRequest.headers).toEqual([
{name: 'content-tYPE', value: 'text/html'},
{name: 'foo', value: 'bar'},
{bad: true},
null
]);
});
it('replaces header when exists', async () => {
const request = await requestModel.create({
name: 'My Request',
parentId: 'fld_1',
headers: [{name: 'content-tYPE', value: 'application/json'}]
});
expect(request).not.toBeNull();
const newRequest = await requestModel.updateMimeType(request, 'text/html');
expect(newRequest.headers).toEqual([{name: 'content-tYPE', value: 'text/html'}]);
});
it('removes content-type', async () => {
const request = await requestModel.create({
name: 'My Request',
parentId: 'fld_1',
headers: [{name: 'content-tYPE', value: 'application/json'}]
});
expect(request).not.toBeNull();
const newRequest = await requestModel.updateMimeType(request, null);
expect(newRequest.headers).toEqual([]);
});
});
describe('migrate()', () => {
it('migrates basic case', () => {
const original = {
headers: [],
body: 'hello world!'
};
const expected = {
_schema: 1,
headers: [],
body: {text: 'hello world!'}
};
expect(requestModel.migrate(original)).toEqual(expected);
});
it('migrates form-urlencoded', () => {
const original = {
headers: [{name: 'content-type', value: 'application/x-www-form-urlencoded'}],
body: 'foo=bar&baz={{ hello }}'
};
const expected = {
_schema: 1,
headers: [{name: 'content-type', value: 'application/x-www-form-urlencoded'}],
body: {
mimeType: 'application/x-www-form-urlencoded',
params: [
{name: 'foo', value: 'bar'},
{name: 'baz', value: '{{ hello }}'}
]
}
};
expect(requestModel.migrate(original)).toEqual(expected);
});
it('migrates form-urlencoded with charset', () => {
const original = {
headers: [{name: 'content-type', value: 'application/x-www-form-urlencoded; charset=utf-8'}],
body: 'foo=bar&baz={{ hello }}'
};
const expected = {
_schema: 1,
headers: [{name: 'content-type', value: 'application/x-www-form-urlencoded; charset=utf-8'}],
body: {
mimeType: 'application/x-www-form-urlencoded',
params: [
{name: 'foo', value: 'bar'},
{name: 'baz', value: '{{ hello }}'}
]
}
};
expect(requestModel.migrate(original)).toEqual(expected);
});
it('migrates form-urlencoded malformed', () => {
const original = {
headers: [{name: 'content-type', value: 'application/x-www-form-urlencoded'}],
body: '{"foo": "bar"}'
};
const expected = {
_schema: 1,
headers: [{name: 'content-type', value: 'application/x-www-form-urlencoded'}],
body: {
mimeType: 'application/x-www-form-urlencoded',
params: [
{name: '{"foo": "bar"}', value: ''}
]
}
};
expect(requestModel.migrate(original)).toEqual(expected);
});
it('migrates mime-type', () => {
const contentToMimeMap = {
'application/json; charset=utf-8': 'application/json',
'text/plain': 'text/plain',
'malformed': 'malformed'
};
for (const contentType of Object.keys(contentToMimeMap)) {
const original = {
headers: [{name: 'content-type', value: contentType}],
body: ''
};
const expected = {
_schema: 1,
headers: [{name: 'content-type', value: contentType}],
body: {mimeType: contentToMimeMap[contentType], text: ''}
};
expect(requestModel.migrate(original)).toEqual(expected);
}
});
it('skips migrate for schema 1', () => {
const original = {
_schema: 1,
body: {mimeType: 'text/plain', text: 'foo'}
};
expect(requestModel.migrate(original)).toBe(original);
});
it('migrates with no schema and schema < 1', () => {
const withoutSchema = {body: 'foo bar!'};
const withSchema = {_schema: 0, body: 'foo bar!'};
const withWeirdSchema = {_schema: -4, body: 'foo bar!'};
const expected = {
_schema: 1,
body: {
text: 'foo bar!'
}
};
expect(requestModel.migrate(withSchema)).toEqual(expected);
expect(requestModel.migrate(withoutSchema)).toEqual(expected);
expect(requestModel.migrate(withWeirdSchema)).toEqual(expected);
});
});