mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
105 lines
3.2 KiB
JavaScript
105 lines
3.2 KiB
JavaScript
'use strict';
|
|
|
|
const db = require('../database');
|
|
const {PREVIEW_MODE_SOURCE} = require('../previewModes');
|
|
|
|
function loadFixture (name) {
|
|
const fixtures = require(`../__fixtures__/${name}`);
|
|
const promises = [];
|
|
for (const type of Object.keys(fixtures)) {
|
|
for (const doc of fixtures[type]) {
|
|
promises.push(db.insert(Object.assign({}, doc, {type})));
|
|
}
|
|
}
|
|
}
|
|
|
|
describe('requestCreate()', () => {
|
|
beforeEach(() => {
|
|
return db.initDB({inMemoryOnly: true}, true);
|
|
});
|
|
|
|
it('creates a valid request', () => {
|
|
const now = Date.now();
|
|
|
|
const patch = {
|
|
name: 'My Request',
|
|
parentId: 'wrk_123'
|
|
};
|
|
|
|
return db.request.create(patch).then(r => {
|
|
expect(Object.keys(r).length).toBe(15);
|
|
|
|
expect(r._id).toMatch(/^req_[a-zA-Z0-9]{24}$/);
|
|
expect(r.created).toBeGreaterThanOrEqual(now);
|
|
expect(r.modified).toBeGreaterThanOrEqual(now);
|
|
expect(r.type).toBe('Request');
|
|
expect(r.name).toBe('My Request');
|
|
expect(r.url).toBe('');
|
|
expect(r.method).toBe('GET');
|
|
expect(r.body).toBe('');
|
|
expect(r.parameters).toEqual([]);
|
|
expect(r.headers).toEqual([]);
|
|
expect(r.authentication).toEqual({});
|
|
expect(r.metaSortKey).toBeLessThanOrEqual(-1 * now);
|
|
expect(r.metaPreviewMode).toEqual(PREVIEW_MODE_SOURCE);
|
|
expect(r.parentId).toBe('wrk_123');
|
|
});
|
|
});
|
|
|
|
it('throws when missing parentID', () => {
|
|
const fn = () => db.request.create({name: 'My Request'});
|
|
expect(fn).toThrowError('New Requests missing `parentId`');
|
|
});
|
|
});
|
|
|
|
describe('requestGroupDuplicate()', () => {
|
|
beforeEach(() => {
|
|
return Promise.all([
|
|
db.initDB({inMemoryOnly: true}, true),
|
|
loadFixture('nestedfolders')
|
|
]);
|
|
});
|
|
|
|
it('duplicates a RequestGroup', () => {
|
|
return new Promise((resolve, reject) => {
|
|
db.requestGroup.getById('fld_1').then(requestGroup => {
|
|
expect(requestGroup.name).toBe('Fld 1');
|
|
|
|
db.requestGroup.duplicate(requestGroup).then(newRequestGroup => {
|
|
expect(newRequestGroup._id).not.toBe(requestGroup._id);
|
|
expect(newRequestGroup.name).toBe('Fld 1 (Copy)');
|
|
|
|
Promise.all([
|
|
db.request.all(),
|
|
db.requestGroup.all(),
|
|
db.request.findByParentId(requestGroup._id),
|
|
db.requestGroup.findByParentId(requestGroup._id),
|
|
db.request.findByParentId(newRequestGroup._id),
|
|
db.requestGroup.findByParentId(newRequestGroup._id)
|
|
]).then(([
|
|
allRequests,
|
|
allRequestGroups,
|
|
childRequests,
|
|
childRequestGroups,
|
|
newChildRequests,
|
|
newChildRequestGroups
|
|
]) => {
|
|
// This asserting is pretty garbage but it at least checks
|
|
// to see that the recursion worked (for the most part)
|
|
expect(allRequests.length).toBe(8);
|
|
expect(allRequestGroups.length).toBe(5);
|
|
|
|
expect(childRequests.length).toBe(2);
|
|
expect(childRequestGroups.length).toBe(1);
|
|
|
|
expect(newChildRequests.length).toBe(2);
|
|
expect(newChildRequestGroups.length).toBe(1);
|
|
|
|
resolve();
|
|
}, reject);
|
|
}, reject)
|
|
}, reject);
|
|
})
|
|
})
|
|
});
|