tachybase_todo/packages/test/src/mockServer.ts

141 lines
3.9 KiB
TypeScript
Raw Normal View History

2021-09-09 13:09:25 +08:00
import qs from 'qs';
2021-09-16 00:38:48 +08:00
import supertest, { SuperAgentTest } from 'supertest';
2021-09-09 13:09:25 +08:00
import Application, { ApplicationOptions } from '@nocobase/server';
import { getConfig } from './mockDatabase';
interface ActionParams {
2022-01-23 15:04:50 +08:00
filterByTk?: any;
fields?: string[];
filter?: any;
sort?: string[];
page?: number;
perPage?: number;
values?: any;
2022-01-23 15:04:50 +08:00
/**
* @deprecated
*/
resourceName?: string;
2022-01-23 15:04:50 +08:00
/**
* @deprecated
*/
resourceIndex?: string;
2022-01-23 15:04:50 +08:00
/**
* @deprecated
*/
associatedName?: string;
2022-01-23 15:04:50 +08:00
/**
* @deprecated
*/
associatedIndex?: string;
[key: string]: any;
}
interface SortActionParams {
resourceName?: string;
resourceIndex?: any;
associatedName?: string;
associatedIndex?: any;
sourceId?: any;
targetId?: any;
sortField?: string;
method?: string;
target?: any;
sticky?: boolean;
[key: string]: any;
}
2021-09-09 13:09:25 +08:00
interface Resource {
get: (params?: ActionParams) => Promise<supertest.Response>;
list: (params?: ActionParams) => Promise<supertest.Response>;
create: (params?: ActionParams) => Promise<supertest.Response>;
update: (params?: ActionParams) => Promise<supertest.Response>;
destroy: (params?: ActionParams) => Promise<supertest.Response>;
sort: (params?: SortActionParams) => Promise<supertest.Response>;
2021-09-09 13:09:25 +08:00
[name: string]: (params?: ActionParams) => Promise<supertest.Response>;
}
export class MockServer extends Application {
2022-01-23 15:04:50 +08:00
async loadAndSync() {
await this.load();
await this.db.sync({
force: false,
alter: {
drop: false,
},
});
}
async cleanDb() {
await this.db.sequelize.getQueryInterface().dropAllTables();
}
agent(): SuperAgentTest & { resource: (name: string, resourceOf?: any) => Resource } {
2021-09-16 00:38:48 +08:00
const agent = supertest.agent(this.callback());
2021-09-09 13:09:25 +08:00
const prefix = this.resourcer.options.prefix;
const proxy = new Proxy(agent, {
2021-09-09 13:09:25 +08:00
get(target, method: string, receiver) {
2021-09-16 00:38:48 +08:00
if (method === 'resource') {
2022-01-23 15:04:50 +08:00
return (name: string, resourceOf?: any) => {
2021-09-16 00:38:48 +08:00
const keys = name.split('.');
2021-12-06 21:23:34 +08:00
const proxy = new Proxy(
{},
{
get(target, method: string, receiver) {
return (params: ActionParams = {}) => {
2022-01-23 15:04:50 +08:00
let { filterByTk, values = {}, file, ...restParams } = params;
if (params.associatedIndex) {
resourceOf = params.associatedIndex;
}
if (params.resourceIndex) {
filterByTk = params.resourceIndex;
}
let url = prefix || '';
2021-12-06 21:23:34 +08:00
if (keys.length > 1) {
2022-01-23 15:04:50 +08:00
url += `/${keys[0]}/${resourceOf}/${keys[1]}`;
2021-12-06 21:23:34 +08:00
} else {
2022-01-23 15:04:50 +08:00
url += `/${name}`;
2021-12-06 21:23:34 +08:00
}
url += `:${method as string}`;
2022-01-23 15:04:50 +08:00
if (filterByTk) {
url += `/${filterByTk}`;
2021-12-06 21:23:34 +08:00
}
2021-12-06 21:23:34 +08:00
switch (method) {
case 'upload':
return agent
.post(`${url}?${qs.stringify(restParams)}`)
.attach('file', file)
.field(values);
case 'list':
case 'get':
return agent.get(`${url}?${qs.stringify(restParams)}`);
default:
return agent.post(`${url}?${qs.stringify(restParams)}`).send(values);
}
};
},
2021-09-16 00:38:48 +08:00
},
2021-12-06 21:23:34 +08:00
);
2021-09-16 00:38:48 +08:00
return proxy;
2021-12-06 21:23:34 +08:00
};
2021-09-16 00:38:48 +08:00
}
return (...args: any[]) => {
return agent[method](...args);
2021-09-09 13:09:25 +08:00
};
2021-12-06 21:23:34 +08:00
},
2021-09-09 13:09:25 +08:00
});
2021-09-16 00:38:48 +08:00
return proxy as any;
2021-09-09 13:09:25 +08:00
}
}
export function mockServer(options?: ApplicationOptions) {
return new MockServer({
...options,
database: getConfig(options?.database),
});
}
export function createMockServer() {}
2021-09-09 13:09:25 +08:00
export default mockServer;