insomnia/packages/insomnia-app/app/common/send-request.ts
Eric Reynolds d0fac873d0
Update types in networking layer for response times in testing (#3466)
plugin calls do not use curl, so set this instance to zero

Co-authored-by: Eric Reynolds <eric.reynolds@konghq.com>
2021-06-14 15:50:47 -07:00

64 lines
1.7 KiB
TypeScript

import { database as db } from './database';
import { types as modelTypes, stats, BaseModel } from '../models';
import { send } from '../network/network';
import { getBodyBuffer } from '../models/response';
import * as plugins from '../plugins';
export async function getSendRequestCallbackMemDb(environmentId, memDB) {
// Initialize the DB in-memory and fill it with data if we're given one
await db.init(
modelTypes(),
{
inMemoryOnly: true,
},
true,
() => {},
);
const docs: BaseModel[] = [];
for (const type of Object.keys(memDB)) {
for (const doc of memDB[type]) {
docs.push(doc);
}
}
await db.batchModifyDocs({
upsert: docs,
remove: [],
});
// Return callback helper to send requests
return async function sendRequest(requestId) {
return sendAndTransform(requestId, environmentId);
};
}
export function getSendRequestCallback(environmentId) {
return async function sendRequest(requestId) {
stats.incrementExecutedRequests();
return sendAndTransform(requestId, environmentId);
};
}
async function sendAndTransform(requestId, environmentId) {
try {
plugins.ignorePlugin('insomnia-plugin-kong-bundle');
const res = await send(requestId, environmentId);
const headersObj = {};
for (const h of res.headers || []) {
const name = h.name || '';
headersObj[name.toLowerCase()] = h.value || '';
}
const bodyBuffer = await getBodyBuffer(res) as Buffer;
return {
status: res.statusCode,
statusMessage: res.statusMessage,
data: bodyBuffer ? bodyBuffer.toString('utf8') : undefined,
headers: headersObj,
responseTime: res.elapsedTime,
};
} finally {
plugins.clearIgnores();
}
}