mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-06 03:57:56 +08:00
* feat(editor,core,data-source,dep,schema,ui,utils,vue-runtime-help): 完善迭代器 * test: 完善测试用例 * chore: 构建 * feat: 迭代器嵌套事件传递数据 --------- Co-authored-by: roymondchen <roymondchen@tencent.com>
69 lines
1.5 KiB
TypeScript
69 lines
1.5 KiB
TypeScript
import { describe, expect, test } from 'vitest';
|
|
|
|
import { compiledCondition, createIteratorContentData, template } from '@data-source/utils';
|
|
|
|
describe('compiledCondition', () => {
|
|
test('=,true', () => {
|
|
const result = compiledCondition(
|
|
[
|
|
{
|
|
field: ['a', 'b'],
|
|
op: '=',
|
|
value: 1,
|
|
},
|
|
],
|
|
{ a: { b: 1 } },
|
|
);
|
|
|
|
expect(result).toBeTruthy();
|
|
});
|
|
|
|
test('=,false', () => {
|
|
const result = compiledCondition(
|
|
[
|
|
{
|
|
field: ['a', 'b'],
|
|
op: '=',
|
|
value: 2,
|
|
},
|
|
],
|
|
{ a: { b: 1 } },
|
|
);
|
|
|
|
expect(result).toBeFalsy();
|
|
});
|
|
});
|
|
|
|
describe('template', () => {
|
|
test('template', () => {
|
|
const value = template('xxx${aa.bb}123${aa1.bb1}dsf', { aa: { bb: 1 }, aa1: { bb1: 2 } });
|
|
expect(value).toBe('xxx11232dsf');
|
|
});
|
|
});
|
|
|
|
describe('createIteratorContentData', () => {
|
|
test('createIteratorContentData', () => {
|
|
const ctxData: any = createIteratorContentData({ b: 1 }, 'ds', ['a'], { ds: { a: [{ b: 1 }] } });
|
|
expect(ctxData.ds.a.b).toBe(1);
|
|
});
|
|
test('混用', () => {
|
|
const ctxData: any = createIteratorContentData({ b: 1 }, 'ds', ['a'], { ds: { a: [{ b: 1 }], b: 2 } });
|
|
expect(ctxData.ds.b).toBe(2);
|
|
});
|
|
|
|
test('二维数组', () => {
|
|
const ctxData: any = createIteratorContentData({ a: 1 }, 'ds', ['a', 'c'], {
|
|
ds: {
|
|
a: [
|
|
{
|
|
b: 0,
|
|
c: [{ a: 1 }],
|
|
},
|
|
],
|
|
b: 2,
|
|
},
|
|
});
|
|
expect(ctxData.ds.a.c.a).toBe(1);
|
|
});
|
|
});
|