2021-08-23 03:10:14 -05:00
|
|
|
/////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// pgAdmin 4 - PostgreSQL Tools
|
|
|
|
//
|
2023-01-02 00:23:55 -06:00
|
|
|
// Copyright (C) 2013 - 2023, The pgAdmin Development Team
|
2021-08-23 03:10:14 -05:00
|
|
|
// This software is released under the PostgreSQL Licence
|
|
|
|
//
|
|
|
|
//////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
import '../helper/enzyme.helper';
|
|
|
|
import { createMount } from '@material-ui/core/test-utils';
|
|
|
|
import BaseUISchema from '../../../pgadmin/static/js/SchemaView/base_schema.ui';
|
|
|
|
import _ from 'lodash';
|
|
|
|
import CheckConstraintSchema from '../../../pgadmin/browser/server_groups/servers/databases/schemas/tables/constraints/check_constraint/static/js/check_constraint.ui';
|
2022-01-28 05:50:34 -06:00
|
|
|
import {genericBeforeEach, getCreateView, getEditView, getPropertiesView} from '../genericFunctions';
|
|
|
|
|
2021-08-23 03:10:14 -05:00
|
|
|
class SchemaInColl extends BaseUISchema {
|
|
|
|
constructor() {
|
|
|
|
super();
|
|
|
|
}
|
|
|
|
|
|
|
|
get baseFields() {
|
|
|
|
return [{
|
|
|
|
id: 'collection', label: '', type: 'collection',
|
|
|
|
schema: new CheckConstraintSchema(),
|
|
|
|
editable: false,
|
|
|
|
canAdd: true, canEdit: false, canDelete: true, hasRole: true,
|
|
|
|
columns : ['name', 'consrc'],
|
|
|
|
}];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function getFieldDepChange(schema, id) {
|
|
|
|
return _.find(schema.fields, (f)=>f.id==id)?.depChange;
|
|
|
|
}
|
|
|
|
|
|
|
|
describe('CheckConstraintSchema', ()=>{
|
|
|
|
let mount;
|
|
|
|
let schemaObj = new CheckConstraintSchema();
|
|
|
|
let getInitData = ()=>Promise.resolve({});
|
|
|
|
|
|
|
|
/* Use createMount so that material ui components gets the required context */
|
|
|
|
/* https://material-ui.com/guides/testing/#api */
|
|
|
|
beforeAll(()=>{
|
|
|
|
mount = createMount();
|
|
|
|
});
|
|
|
|
|
|
|
|
afterAll(() => {
|
|
|
|
mount.cleanUp();
|
|
|
|
});
|
|
|
|
|
|
|
|
beforeEach(()=>{
|
2022-01-28 05:50:34 -06:00
|
|
|
genericBeforeEach();
|
2021-08-23 03:10:14 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
it('create', ()=>{
|
2022-01-28 05:50:34 -06:00
|
|
|
mount(getCreateView(schemaObj));
|
2021-08-23 03:10:14 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
it('edit', ()=>{
|
2022-01-28 05:50:34 -06:00
|
|
|
mount(getEditView(schemaObj, getInitData));
|
2021-08-23 03:10:14 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
it('properties', ()=>{
|
2022-01-28 05:50:34 -06:00
|
|
|
mount(getPropertiesView(schemaObj, getInitData));
|
2021-08-23 03:10:14 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
it('create collection', ()=>{
|
|
|
|
let schemaCollObj = new SchemaInColl();
|
2022-01-28 05:50:34 -06:00
|
|
|
let ctrl = mount(getCreateView(schemaCollObj));
|
2021-08-23 03:10:14 -05:00
|
|
|
/* Make sure you hit every corner */
|
|
|
|
ctrl.find('DataGridView').at(0).find('PgIconButton[data-test="add-row"]').find('button').simulate('click');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('depChange', ()=>{
|
|
|
|
let state = {name: ''};
|
|
|
|
|
|
|
|
expect(getFieldDepChange(schemaObj, 'comment')(state)).toEqual({
|
|
|
|
comment: '',
|
|
|
|
});
|
|
|
|
|
|
|
|
/* If partitioned table */
|
|
|
|
schemaObj.top = {
|
|
|
|
sessData: {
|
|
|
|
is_partitioned: true,
|
|
|
|
}
|
|
|
|
};
|
|
|
|
expect(getFieldDepChange(schemaObj, 'connoinherit')(state)).toEqual({
|
|
|
|
connoinherit: false,
|
|
|
|
});
|
|
|
|
schemaObj.top = null;
|
|
|
|
});
|
|
|
|
|
|
|
|
it('validate', ()=>{
|
|
|
|
expect(schemaObj.validate()).toBe(false);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|