tmagic-editor/packages/data-source/tests/createDataSourceManager.spec.ts
2024-05-09 20:49:54 +08:00

59 lines
1.0 KiB
TypeScript

import { describe, expect, test } from 'vitest';
import { MApp, NodeType } from '@tmagic/schema';
import { createDataSourceManager, DataSourceManager } from '@data-source/index';
class Core {
public dsl?: MApp;
constructor(options: any) {
this.dsl = options.config;
}
}
const dsl: MApp = {
type: NodeType.ROOT,
id: 'app_1',
items: [
{
type: NodeType.PAGE,
id: 'page_1',
items: [
{
type: 'text',
id: 61705611,
text: '{{ds_bebcb2d5.text}}',
},
],
},
],
dataSourceDeps: {
ds_bebcb2d5: {
61705611: {
name: '文本',
keys: ['text'],
},
},
},
dataSources: [
{
id: 'ds_bebcb2d5',
type: 'http',
fields: [
{
name: 'text',
},
],
methods: [],
},
],
};
describe('createDataSourceManager', () => {
test('instance', () => {
const manager = createDataSourceManager(new Core({ config: dsl }));
expect(manager).toBeInstanceOf(DataSourceManager);
});
});