tachybase_todo/packages/test/src/mockServer.ts

143 lines
4.0 KiB
TypeScript
Raw Normal View History

2022-02-15 00:20:25 +08:00
import { mockDatabase } from '@nocobase/database';
import Application, { ApplicationOptions } from '@nocobase/server';
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
interface ActionParams {
2022-01-23 15:04:50 +08:00
filterByTk?: any;
fields?: string[];
filter?: any;
sort?: string[];
page?: number;
2022-02-18 09:46:10 +08:00
pageSize?: 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 {
Application (#175) * feat: getRepository * getRepository return type * export action * add: acl * feat: setResourceAction * feat: action alias * chore: code struct * feat: removeResourceAction * chore: file name * ignorecase * remove ACL * feat: ACL * feat: role toJSON * using emit * chore: test * feat: plugin-acl * feat: acl with predicate * grant universal action test * grant action test * update resource action test * revoke resource action * usingActionsConfig switch * plugin-ui-schema-storage * remove global acl instance * fix: collection manager with sqlite * add own action listener * add acl middleware * add acl allowConfigure strategy option * add plugin-acl allowConfigure * change acl resourceName * add acl middleware merge params * bugfix * append fields on acl action params * acl middleware parse template * fix: collection-manager migrate * add acl association field test * feat(plugin-acl): grant association field actions * chore(plugin-acl): type name * feat(plugin-acl): regrant actions on resource action update * feat(plugin-acl): regrant action on field destroy * fix(plugin-acl): test * fix(plugin-acl): test run * feat(plugin-acl): set default role * feat(plugin-users): set user default role * test(plugin-users): create user with role * feat(plugin-users): create user with role * feat(application): application hook * feat(database): reconnect * feat(database): application life cycle * feat(database): sync with option * feat(database): hook position * feat(database): hook position * feat(database): remove load in start * fix(application): get plugin * feat(test): loadAndInstall * feat: improve code * feat: improve code * fix: listen options * fix: bug * test(database): add test case Co-authored-by: chenos <chenlinxh@gmail.com>
2022-01-30 11:11:36 +08:00
async loadAndInstall() {
2022-01-23 15:04:50 +08:00
await this.load();
await this.install({
sync: {
force: true,
alter: {
drop: false,
},
},
});
2022-01-23 15:04:50 +08:00
}
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
}
const queryString = qs.stringify(restParams, { arrayFormat: 'brackets' });
2021-12-06 21:23:34 +08:00
switch (method) {
case 'upload':
return agent.post(`${url}?${queryString}`).attach('file', file).field(values);
2021-12-06 21:23:34 +08:00
case 'list':
case 'get':
return agent.get(`${url}?${queryString}`);
2021-12-06 21:23:34 +08:00
default:
return agent.post(`${url}?${queryString}`).send(values);
2021-12-06 21:23:34 +08:00
}
};
},
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
}
}
2022-02-15 00:20:25 +08:00
export function mockServer(options: ApplicationOptions = {}) {
const database = mockDatabase(<any>options?.database || {});
2021-09-09 13:09:25 +08:00
return new MockServer({
...options,
2022-02-15 00:20:25 +08:00
database,
2021-09-09 13:09:25 +08:00
});
}
export function createMockServer() {}
2021-09-09 13:09:25 +08:00
export default mockServer;