insomnia/packages/insomnia-app/app/models/index.js
Gregory Schier 3883dc6feb
POC for Unit Test UI (#2315)
* Start working on insomnia-testing package to generate Mocha code

* Moved some things around

* Integration tests and ability to run multiple files

* Fix integration tests

* Rename runSuite to runMochaTests

* Add types for test results

* Fix lint errors

* Play with Chia assertions

* insomnia and chai globals, plus a bunch of improvements

* Stub chai and axios Flow types

* Ability to reference requests by ID

* Fix chai flow-typed location

* Address PR comments (small tweaks)

* Basic UI going

* Lots and lots and lots

* Pretty-much done with the unit test UI

* Minor CSS tweak

* Activity bar triple toggle and more

* Minor tweak

* Unit Test and Suite deletion

* Bump Designer version

* Fix eslint stuff

* Fix insomnia-testing tests

* Fix tests

* lib@2.2.9

* Remove tests tab from response pane

* Hook up Insomnia networking

* Fix linting

* Bump version for alpha

* Remove extra ActivityToggleSwitch

* Remove unused import

* Add test:pre-release script that excludes CLI tests

* Less repetition

* Clean some things up

* Tweaks after self-cr

* Undo request ID tag

* Swap out switch for new activity toggle component

* Extra check

* Remove dead code

* Delete dead test

* Oops, revert example code

* PR feedback

* More PR comment addresses
2020-07-01 14:17:14 -07:00

172 lines
4.4 KiB
JavaScript

// @flow
import * as _apiSpec from './api-spec';
import * as _clientCertificate from './client-certificate';
import * as _cookieJar from './cookie-jar';
import * as _environment from './environment';
import * as _gitRepository from './git-repository';
import * as _oAuth2Token from './o-auth-2-token';
import * as _pluginData from './plugin-data';
import * as _request from './request';
import * as _requestGroup from './request-group';
import * as _requestGroupMeta from './request-group-meta';
import * as _requestMeta from './request-meta';
import * as _requestVersion from './request-version';
import * as _response from './response';
import * as _settings from './settings';
import * as _stats from './stats';
import * as _unitTest from './unit-test';
import * as _unitTestResult from './unit-test-result';
import * as _unitTestSuite from './unit-test-suite';
import * as _workspace from './workspace';
import * as _workspaceMeta from './workspace-meta';
import { generateId } from '../common/misc';
export type BaseModel = {
_id: string,
type: string,
parentId: string,
modified: number,
created: number,
};
// Reference to each model
export const apiSpec = _apiSpec;
export const clientCertificate = _clientCertificate;
export const cookieJar = _cookieJar;
export const environment = _environment;
export const gitRepository = _gitRepository;
export const oAuth2Token = _oAuth2Token;
export const pluginData = _pluginData;
export const request = _request;
export const requestGroup = _requestGroup;
export const requestGroupMeta = _requestGroupMeta;
export const requestMeta = _requestMeta;
export const requestVersion = _requestVersion;
export const response = _response;
export const settings = _settings;
export const stats = _stats;
export const unitTest = _unitTest;
export const unitTestSuite = _unitTestSuite;
export const unitTestResult = _unitTestResult;
export const workspace = _workspace;
export const workspaceMeta = _workspaceMeta;
export function all() {
return [
stats,
settings,
workspace,
workspaceMeta,
environment,
gitRepository,
cookieJar,
apiSpec,
requestGroup,
requestGroupMeta,
request,
requestVersion,
requestMeta,
response,
oAuth2Token,
clientCertificate,
pluginData,
unitTestSuite,
unitTestResult,
unitTest,
];
}
export function types(): Array<any> {
return all().map(model => model.type);
}
export function canSync(d: BaseModel): boolean {
if ((d: any).isPrivate) {
return false;
}
const m = getModel(d.type);
if (!m) {
return false;
}
return m.canSync || false;
}
export function getModel(type: string): Object | null {
return all().find(m => m.type === type) || null;
}
export function mustGetModel(type: string): Object {
const model = getModel(type);
if (!model) {
throw new Error(`The model type ${type} must exist but could not be found.`);
}
return model;
}
export function canDuplicate(type: string) {
const model = getModel(type);
return model ? model.canDuplicate : false;
}
export function getModelName(type: string, count: number = 1) {
const model = getModel(type);
if (!model) {
return 'Unknown';
} else if (count === 1) {
return model.name;
} else if (!model.name.match(/s$/)) {
// Add an 's' if it doesn't already end in one
return `${model.name}s`;
} else {
return model.name;
}
}
export async function initModel<T: BaseModel>(type: string, ...sources: Array<Object>): Promise<T> {
const model = getModel(type);
if (!model) {
const choices = all()
.map(m => m.type)
.join(', ');
throw new Error(`Tried to init invalid model "${type}". Choices are ${choices}`);
}
// Define global default fields
const objectDefaults = Object.assign(
{},
{
_id: null,
type: type,
parentId: null,
modified: Date.now(),
created: Date.now(),
},
model.init(),
);
const fullObject = Object.assign({}, objectDefaults, ...sources);
// Generate an _id if there isn't one yet
if (!fullObject._id) {
fullObject._id = generateId(model.prefix);
}
// Migrate the model
// NOTE: Do migration before pruning because we might need to look at those fields
const migratedDoc = await model.migrate(fullObject);
// Prune extra keys from doc
for (const key of Object.keys(migratedDoc)) {
if (!objectDefaults.hasOwnProperty(key)) {
delete migratedDoc[key];
}
}
return migratedDoc;
}