///////////////////////////////////////////////////////////// // // pgAdmin 4 - PostgreSQL Tools // // Copyright (C) 2013 - 2021, The pgAdmin Development Team // This software is released under the PostgreSQL Licence // ////////////////////////////////////////////////////////////// import jasmineEnzyme from 'jasmine-enzyme'; import React from 'react'; import '../helper/enzyme.helper'; import { createMount } from '@material-ui/core/test-utils'; import pgAdmin from 'sources/pgadmin'; import {messages} from '../fake_messages'; import SchemaView, { SCHEMA_STATE_ACTIONS } from '../../../pgadmin/static/js/SchemaView'; import BaseUISchema from '../../../pgadmin/static/js/SchemaView/base_schema.ui'; import _ from 'lodash'; import PrimaryKeySchema from '../../../pgadmin/browser/server_groups/servers/databases/schemas/tables/constraints/index_constraint/static/js/primary_key.ui'; class SchemaInColl extends BaseUISchema { constructor(schemaObj) { super(); this.schemaObj = schemaObj; } get baseFields() { return [{ id: 'collection', label: '', type: 'collection', schema: this.schemaObj, editable: false, canAdd: true, canEdit: false, canDelete: true, hasRole: true, columns : ['name', 'columns'], }]; } } function getFieldDepChange(schema, id) { return _.find(schema.fields, (f)=>f.id==id)?.depChange; } describe('PrimaryKeySchema', ()=>{ let mount; let schemaObj; 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(); schemaObj = new PrimaryKeySchema({ spcname: ()=>Promise.resolve([]), }, {}); }); afterAll(() => { mount.cleanUp(); }); beforeEach(()=>{ jasmineEnzyme(); /* messages used by validators */ pgAdmin.Browser = pgAdmin.Browser || {}; pgAdmin.Browser.messages = pgAdmin.Browser.messages || messages; pgAdmin.Browser.utils = pgAdmin.Browser.utils || {}; }); it('create', ()=>{ mount({}} onClose={()=>{}} onHelp={()=>{}} onEdit={()=>{}} onDataChange={()=>{}} confirmOnCloseReset={false} hasSQL={false} disableSqlHelp={false} disableDialogHelp={false} />); }); it('edit', ()=>{ mount({}} onClose={()=>{}} onHelp={()=>{}} onEdit={()=>{}} onDataChange={()=>{}} confirmOnCloseReset={false} hasSQL={false} disableSqlHelp={false} disableDialogHelp={false} />); }); it('properties', ()=>{ mount({}} onEdit={()=>{}} />); }); it('create collection', ()=>{ let schemaCollObj = new SchemaInColl(schemaObj); let ctrl = mount({}} onClose={()=>{}} onHelp={()=>{}} onEdit={()=>{}} onDataChange={()=>{}} confirmOnCloseReset={false} hasSQL={false} disableSqlHelp={false} disableDialogHelp={false} />); /* 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 = {columns: [{column: 'id'}]}; state.name = ''; expect(getFieldDepChange(schemaObj, 'comment')(state)).toEqual({ comment: '', }); state.index = 'someindex'; expect(getFieldDepChange(schemaObj, 'spcname')(state)).toEqual({ spcname: '', }); expect(getFieldDepChange(schemaObj, 'include')(state)).toEqual({ include: [], }); expect(getFieldDepChange(schemaObj, 'fillfactor')(state)).toEqual({ fillfactor: null, }); expect(getFieldDepChange(schemaObj, 'condeferrable')(state)).toEqual({ condeferrable: false, }); expect(getFieldDepChange(schemaObj, 'condeferred')(state)).toEqual({ condeferred: false, }); state.index = undefined; state.condeferrable = true; expect(getFieldDepChange(schemaObj, 'spcname')(state)).toEqual({}); expect(getFieldDepChange(schemaObj, 'include')(state)).toEqual({}); expect(getFieldDepChange(schemaObj, 'fillfactor')(state)).toEqual({}); expect(getFieldDepChange(schemaObj, 'condeferrable')(state)).toEqual({}); expect(getFieldDepChange(schemaObj, 'condeferred')(state)).toEqual({}); expect(getFieldDepChange(schemaObj, 'columns')(state, ['columns', 0], null, { type: SCHEMA_STATE_ACTIONS.DELETE_ROW, oldState: { columns: [ {name: 'id'} ], }, path: ['columns'], value: 0, })).toEqual({ columns: [], }); expect(getFieldDepChange(schemaObj, 'columns')(state, ['columns', 0], { columns: [ {name: 'id123'} ], }, { type: SCHEMA_STATE_ACTIONS.SET_VALUE, oldState: { columns: [ {name: 'id'} ], }, path: ['columns', 0, 'name'], value: 'id123', })).toEqual({ columns: [{column: 'id123'}], }); }); it('validate', ()=>{ let state = {}; let setError = jasmine.createSpy('setError'); schemaObj.validate(state, setError); expect(setError).toHaveBeenCalledWith('columns', 'Please specify columns for Primary key.'); state.columns = [{columns: 'id'}]; expect(schemaObj.validate(state, setError)).toBe(false); }); });