add test case for magic-attribute-model

This commit is contained in:
chenos 2022-01-07 21:47:10 +08:00
parent ef6e2dd378
commit 103a170917

View File

@ -0,0 +1,43 @@
import { mockDatabase } from '.';
import { MagicAttributeModel } from '..';
describe('magic-attribute-model', () => {
it('case 1', async () => {
const db = mockDatabase();
db.registerModels({ MagicAttributeModel });
const Test = db.collection({
name: 'tests',
model: 'MagicAttributeModel',
fields: [
{ type: 'string', name: 'title' },
{ type: 'json', name: 'options' },
],
});
await db.sync();
const test = await Test.model.create({
title: 'aa',
'x-component-props': { key1: 'val1', arr1: [1, 2, 3], arr2: [4, 5] },
});
test.set({
'x-component-props': { key2: 'val2', arr1: [3, 4] },
'x-decorator-props': { key1: 'val1' },
});
test.set('x-component-props', { arr2: [1, 2, 3] });
expect(test.toJSON()).toMatchObject({
title: 'aa',
'x-component-props': {
key1: 'val1',
key2: 'val2',
arr1: [3, 4],
arr2: [1, 2, 3],
},
'x-decorator-props': { key1: 'val1' },
});
});
});