mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2024-11-22 08:46:39 -06:00
134 lines
3.4 KiB
JavaScript
134 lines
3.4 KiB
JavaScript
import jasmineEnzyme from 'jasmine-enzyme';
|
|
import React from 'react';
|
|
import {mount} from 'enzyme';
|
|
import '../helper/enzyme.helper';
|
|
import {
|
|
RightAngleLinkModel,
|
|
} from '@projectstorm/react-diagrams';
|
|
|
|
import OneToManyPortModel from 'pgadmin.tools.erd/erd_tool/ports/OneToManyPort';
|
|
import {OneToManyLinkModel, OneToManyLinkWidget, OneToManyLinkFactory} from 'pgadmin.tools.erd/erd_tool/links/OneToManyLink';
|
|
|
|
|
|
describe('ERD OneToManyLinkModel', ()=>{
|
|
let modelObj = null;
|
|
beforeAll(()=>{
|
|
spyOn(RightAngleLinkModel.prototype, 'serialize').and.returnValue({'key': 'value'});
|
|
});
|
|
beforeEach(()=>{
|
|
modelObj = new OneToManyLinkModel({
|
|
data: {
|
|
local_table_uid: 'id1',
|
|
local_column_attnum: 0,
|
|
referenced_table_uid: 'id2',
|
|
referenced_column_attnum: 1,
|
|
},
|
|
});
|
|
});
|
|
|
|
it('init', ()=>{
|
|
expect(modelObj.getData()).toEqual({
|
|
local_table_uid: 'id1',
|
|
local_column_attnum: 0,
|
|
referenced_table_uid: 'id2',
|
|
referenced_column_attnum: 1,
|
|
});
|
|
});
|
|
|
|
it('setData', ()=>{
|
|
modelObj.setData({
|
|
local_column_attnum: 2,
|
|
referenced_column_attnum: 4,
|
|
});
|
|
expect(modelObj.getData()).toEqual({
|
|
local_column_attnum: 2,
|
|
referenced_column_attnum: 4,
|
|
});
|
|
});
|
|
|
|
it('serializeData', ()=>{
|
|
let nodesDict = {
|
|
'id1': {
|
|
getData: function(){ return {
|
|
'name': 'table1',
|
|
'schema': 'erd1',
|
|
'columns': [
|
|
{'name': 'col11', attnum: 0},
|
|
{'name': 'col12', attnum: 1},
|
|
],
|
|
};},
|
|
},
|
|
'id2': {
|
|
getData: function(){ return {
|
|
'name': 'table2',
|
|
'schema': 'erd2',
|
|
'columns': [
|
|
{'name': 'col21', attnum: 0},
|
|
{'name': 'col22', attnum: 1},
|
|
],
|
|
};},
|
|
},
|
|
};
|
|
|
|
expect(modelObj.serializeData(nodesDict)).toEqual({
|
|
'schema': 'erd1',
|
|
'table': 'table1',
|
|
'remote_schema': 'erd2',
|
|
'remote_table': 'table2',
|
|
'columns': [{
|
|
'local_column': 'col11',
|
|
'referenced': 'col22',
|
|
}],
|
|
});
|
|
});
|
|
|
|
it('serialize', ()=>{
|
|
let retVal = modelObj.serialize();
|
|
expect(RightAngleLinkModel.prototype.serialize).toHaveBeenCalled();
|
|
expect(retVal).toEqual({
|
|
key: 'value',
|
|
data: {
|
|
local_table_uid: 'id1',
|
|
local_column_attnum: 0,
|
|
referenced_table_uid: 'id2',
|
|
referenced_column_attnum: 1,
|
|
},
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('ERD OneToManyLinkWidget', ()=>{
|
|
let linkFactory = new OneToManyLinkFactory();
|
|
let engine = {
|
|
getFactoryForLink: ()=>linkFactory,
|
|
};
|
|
let link = null;
|
|
|
|
beforeEach(()=>{
|
|
jasmineEnzyme();
|
|
|
|
link = new OneToManyLinkModel({
|
|
color: '#000',
|
|
data: {
|
|
local_table_uid: 'id1',
|
|
local_column_attnum: 0,
|
|
referenced_table_uid: 'id2',
|
|
referenced_column_attnum: 1,
|
|
},
|
|
});
|
|
link.setSourcePort(new OneToManyPortModel({options: {}}));
|
|
link.setTargetPort(new OneToManyPortModel({options: {}}));
|
|
});
|
|
|
|
it('render', ()=>{
|
|
let linkWidget = mount(
|
|
<svg><OneToManyLinkWidget link={link} diagramEngine={engine} factory={linkFactory} /></svg>
|
|
);
|
|
|
|
let paths = linkWidget.find('g g');
|
|
expect(paths.at(0).find('polyline').length).toBe(1);
|
|
expect(paths.at(paths.length-1).find('polyline').length).toBe(1);
|
|
expect(paths.at(paths.length-1).find('circle').length).toBe(1);
|
|
});
|
|
});
|