2021-07-19 00:37:28 -05:00
|
|
|
/////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// pgAdmin 4 - PostgreSQL Tools
|
|
|
|
//
|
2023-01-02 00:23:55 -06:00
|
|
|
// Copyright (C) 2013 - 2023, The pgAdmin Development Team
|
2021-07-19 00:37:28 -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 'sources/SchemaView/base_schema.ui';
|
|
|
|
import LanguageSchema from '../../../pgadmin/browser/server_groups/servers/databases/languages/static/js/language.ui';
|
2022-01-28 05:50:34 -06:00
|
|
|
import {genericBeforeEach, getCreateView, getEditView, getPropertiesView} from '../genericFunctions';
|
2021-07-19 00:37:28 -05:00
|
|
|
|
|
|
|
class MockSchema extends BaseUISchema {
|
|
|
|
get baseFields() {
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
describe('LanguageSchema', ()=>{
|
|
|
|
let mount;
|
|
|
|
let schemaObj = new LanguageSchema(
|
|
|
|
()=>new MockSchema(),
|
|
|
|
{
|
|
|
|
lan_functions: ()=>[],
|
|
|
|
templates_data: ()=>[],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
node_info: {connected: true,
|
|
|
|
user: {id: 10, name: 'postgres', is_superuser: true, can_create_role: true, can_create_db: true},
|
|
|
|
user_id: 1,
|
2023-02-01 01:41:00 -06:00
|
|
|
username: 'postgres',
|
2021-07-19 00:37:28 -05:00
|
|
|
version: 120005,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
);
|
|
|
|
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-07-19 00:37:28 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
it('create', ()=>{
|
2022-01-28 05:50:34 -06:00
|
|
|
mount(getCreateView(schemaObj));
|
2021-07-19 00:37:28 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
it('edit', ()=>{
|
2022-01-28 05:50:34 -06:00
|
|
|
mount(getEditView(schemaObj, getInitData));
|
2021-07-19 00:37:28 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
it('properties', ()=>{
|
2022-01-28 05:50:34 -06:00
|
|
|
mount(getPropertiesView(schemaObj, getInitData));
|
2021-07-19 00:37:28 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
it('validate', ()=>{
|
|
|
|
let state = {};
|
|
|
|
let setError = jasmine.createSpy('setError');
|
|
|
|
|
2021-07-28 07:16:46 -05:00
|
|
|
state.lanproc = '';
|
2021-08-24 03:10:37 -05:00
|
|
|
schemaObj.isTemplate = true;
|
2021-07-19 00:37:28 -05:00
|
|
|
schemaObj.validate(state, setError);
|
|
|
|
expect(setError).toHaveBeenCalledWith('lanproc', 'Handler function cannot be empty.');
|
|
|
|
|
2021-07-28 07:16:46 -05:00
|
|
|
state.lanproc = 'my_len';
|
|
|
|
schemaObj.validate(state, setError);
|
|
|
|
expect(setError).toHaveBeenCalledWith('lanproc', null);
|
2021-07-19 00:37:28 -05:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|