tmagic-editor/packages/data-source/tests/createDataSourceManager.spec.ts

52 lines
993 B
TypeScript

import { describe, expect, test } from 'vitest';
import TMagicApp, { type MApp, NodeType } from '@tmagic/core';
import { createDataSourceManager, DataSourceManager } from '@data-source/index';
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: [],
events: [],
},
],
};
describe('createDataSourceManager', () => {
test('instance', () => {
const manager = createDataSourceManager(new TMagicApp({ config: dsl }));
expect(manager).toBeInstanceOf(DataSourceManager);
});
});