2021-08-10 06:51:09 -05:00
|
|
|
/////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// pgAdmin 4 - PostgreSQL Tools
|
|
|
|
//
|
2023-01-02 00:23:55 -06:00
|
|
|
// Copyright (C) 2013 - 2023, The pgAdmin Development Team
|
2021-08-10 06:51:09 -05:00
|
|
|
// This software is released under the PostgreSQL Licence
|
|
|
|
//
|
|
|
|
//////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
import '../helper/enzyme.helper';
|
|
|
|
import { createMount } from '@material-ui/core/test-utils';
|
|
|
|
import PgaJobStepSchema from '../../../pgadmin/browser/server_groups/servers/pgagent/steps/static/js/pga_jobstep.ui';
|
2022-01-28 05:50:34 -06:00
|
|
|
import {genericBeforeEach, getCreateView, getEditView, getPropertiesView} from '../genericFunctions';
|
2021-08-10 06:51:09 -05:00
|
|
|
|
|
|
|
describe('PgaJobStepSchema', ()=>{
|
|
|
|
let mount;
|
|
|
|
let schemaObj = new PgaJobStepSchema(
|
|
|
|
{
|
|
|
|
databases: ()=>[],
|
|
|
|
},
|
|
|
|
[],
|
|
|
|
{
|
|
|
|
jstdbname: 'postgres',
|
|
|
|
}
|
|
|
|
);
|
|
|
|
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-10 06:51:09 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
it('create', ()=>{
|
2022-01-28 05:50:34 -06:00
|
|
|
mount(getCreateView(schemaObj));
|
2021-08-10 06:51:09 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
it('edit', ()=>{
|
2022-01-28 05:50:34 -06:00
|
|
|
mount(getEditView(schemaObj, getInitData));
|
2021-08-10 06:51:09 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
it('properties', ()=>{
|
2022-01-28 05:50:34 -06:00
|
|
|
mount(getPropertiesView(schemaObj, getInitData));
|
2021-08-10 06:51:09 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
it('validate', ()=>{
|
|
|
|
let state = {};
|
|
|
|
let setError = jasmine.createSpy('setError');
|
|
|
|
|
|
|
|
state.name = 'my_step';
|
|
|
|
state.jstkind = true;
|
|
|
|
state.jstconntype = true;
|
|
|
|
schemaObj.validate(state, setError);
|
|
|
|
expect(setError).toHaveBeenCalledWith('jstdbname', 'Please select a database.');
|
|
|
|
|
|
|
|
state.jstdbname = 'postgres';
|
|
|
|
schemaObj.validate(state, setError);
|
|
|
|
expect(setError).toHaveBeenCalledWith('jstdbname', null);
|
|
|
|
|
|
|
|
state.jstconntype = false;
|
|
|
|
state.jstconnstr = null;
|
|
|
|
schemaObj.validate(state, setError);
|
|
|
|
expect(setError).toHaveBeenCalledWith('jstconnstr', 'Please enter a connection string.');
|
|
|
|
|
|
|
|
state.jstconnstr = '**!!';
|
|
|
|
schemaObj.validate(state, setError);
|
|
|
|
expect(setError).toHaveBeenCalledWith('jstconnstr', 'Please enter a connection string.');
|
|
|
|
|
|
|
|
state.jstconnstr = 'host:\'192.168.1.7\'';
|
|
|
|
schemaObj.validate(state, setError);
|
|
|
|
expect(setError).toHaveBeenCalledWith('jstconnstr', 'Please enter a valid connection string.');
|
|
|
|
|
|
|
|
state.jstconnstr = 'host:\'192.168.1.7\'';
|
|
|
|
schemaObj.validate(state, setError);
|
|
|
|
expect(setError).toHaveBeenCalledWith('jstconnstr', 'Please enter a valid connection string.');
|
|
|
|
|
|
|
|
state.jstconnstr = 'hostaddrtest=\'192.168.1.7\'';
|
|
|
|
schemaObj.validate(state, setError);
|
|
|
|
expect(setError).toHaveBeenCalledWith('jstconnstr', 'Invalid parameter in the connection string - hostaddrtest.');
|
|
|
|
|
|
|
|
state.jstconnstr = 'host=\'192.168.1.7\' port=5432';
|
|
|
|
schemaObj.validate(state, setError);
|
|
|
|
expect(setError).toHaveBeenCalledWith('jstconnstr', null);
|
|
|
|
|
|
|
|
state.jstcode = null;
|
|
|
|
schemaObj.validate(state, setError);
|
|
|
|
expect(setError).toHaveBeenCalledWith('jstcode', 'Please specify code to execute.');
|
|
|
|
|
|
|
|
state.jstcode = 'PERFORM 1;';
|
|
|
|
schemaObj.validate(state, setError);
|
|
|
|
expect(setError).toHaveBeenCalledWith('jstcode', null);
|
|
|
|
|
|
|
|
state.jstonerror = null;
|
|
|
|
schemaObj.validate(state, setError);
|
|
|
|
expect(setError).toHaveBeenCalledWith('jstonerror', 'Please select valid on error option.');
|
|
|
|
|
|
|
|
state.jstonerror = 'f';
|
|
|
|
schemaObj.validate(state, setError);
|
|
|
|
expect(setError).toHaveBeenCalledWith('jstonerror', null);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|