This repository has been archived on 2026-07-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
espocrm-base/frontend/test/spec/test.field-manager.js
T
2015-01-15 15:36:20 +02:00

205 lines
4.2 KiB
JavaScript

/************************************************************************
* This file is part of EspoCRM.
*
* EspoCRM - Open Source CRM application.
* Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko
* Website: http://www.espocrm.com
*
* EspoCRM is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* EspoCRM is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with EspoCRM. If not, see http://www.gnu.org/licenses/.
************************************************************************/
var Espo = Espo || {};
describe("FieldManager", function () {
var fieldManager;
var defs = {
'varchar': {
'params': [
{
'name': 'required',
'type': 'bool',
'default': false
},
{
'name': 'maxLength',
'type': 'int'
}
]
},
'int': {
'params': [
{
'name': 'required',
'type': 'bool',
'default': false
},
{
'name': 'min',
'type': 'int'
},
{
'name': 'max',
'type': 'int'
}
]
},
'float': {
'params': [
{
'name': 'required',
'type': 'bool',
'default': false
},
{
'name': 'min',
'type': 'float'
},
{
'name': 'max',
'type': 'float'
}
]
},
'enum': {
'params': [
{
'name': 'required',
'type': 'bool',
'default': false
},
{
'name': 'options',
'type': 'array'
}
]
},
'bool': {
'params': []
},
'date': {
'params': [
{
'name': 'required',
'type': 'bool',
'default': false
}
]
},
'datetime': {
'params': [
{
'name': 'required',
'type': 'bool',
'default': false
}
]
},
'link': {
'params': [
{
'name': 'required',
'type': 'bool',
'default': false
}
],
'actualFields': ['id']
},
'linkParent': {
'params': [
{
'name': 'required',
'type': 'bool',
'default': false
}
],
'actualFields': ['id', 'type']
},
'linkMultiple': {
'params': [
{
'name': 'required',
'type': 'bool',
'default': false
}
],
'actualFields': ['ids']
},
'personName': {
'actualFields': ['salutation', 'first', 'last'],
'fields': {
'salutation': {
'type': 'varchar'
},
'first': {
'type': 'enum'
},
'last': {
'type': 'varchar'
}
},
'naming': 'prefix',
'mergable': false,
},
'address': {
'actualFields': ['street', 'city', 'state', 'country', 'postalCode'],
'fields': {
'street': {
'type': 'varchar'
},
'city': {
'type': 'varchar'
},
'state': {
'type': 'varchar'
},
'country': {
'type': 'varchar'
},
'postalCode': {
'type': 'varchar'
},
},
'mergable': false,
},
};
beforeEach(function () {
fieldManager = new Espo.FieldManager(defs);
});
it ('#isMergable should work correctly', function () {
expect(fieldManager.isMergable('address')).toBe(false);
expect(fieldManager.isMergable('link')).toBe(true);
});
it ('#getActualAttributes should work correctly', function () {
var fields = fieldManager.getActualAttributes('address', 'billingAddress');
expect(fields[0]).toBe('billingAddressStreet');
var fields = fieldManager.getActualAttributes('personName', 'name');
expect(fields[2]).toBe('lastName');
var fields = fieldManager.getActualAttributes('link', 'account');
expect(fields[0]).toBe('accountId');
var fields = fieldManager.getActualAttributes('varchar', 'name');
expect(fields[0]).toBe('name');
});
});