2022-03-21 02:59:26 -05:00
|
|
|
|
|
|
|
/////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// pgAdmin 4 - PostgreSQL Tools
|
|
|
|
//
|
2023-01-02 00:23:55 -06:00
|
|
|
// Copyright (C) 2013 - 2023, The pgAdmin Development Team
|
2022-03-21 02:59:26 -05:00
|
|
|
// This software is released under the PostgreSQL Licence
|
|
|
|
//
|
|
|
|
//////////////////////////////////////////////////////////////
|
|
|
|
|
2023-10-23 07:13:17 -05:00
|
|
|
|
2022-03-21 02:59:26 -05:00
|
|
|
import {genericBeforeEach, getEditView} from '../genericFunctions';
|
|
|
|
import {getBinaryPathSchema} from '../../../pgadmin/browser/server_groups/servers/static/js/binary_path.ui';
|
2023-10-23 07:13:17 -05:00
|
|
|
import pgAdmin from '../fake_pgadmin';
|
2022-03-21 02:59:26 -05:00
|
|
|
|
|
|
|
describe('BinaryPathschema', ()=>{
|
2023-10-23 07:13:17 -05:00
|
|
|
|
2022-03-21 02:59:26 -05:00
|
|
|
let schemaObj = getBinaryPathSchema();
|
|
|
|
let getInitData = ()=>Promise.resolve({});
|
|
|
|
|
|
|
|
beforeAll(()=>{
|
2023-10-23 07:13:17 -05:00
|
|
|
jest.spyOn(pgAdmin.Browser.notifier, 'alert').mockImplementation(() => {});
|
2022-03-21 02:59:26 -05:00
|
|
|
});
|
|
|
|
|
2023-10-23 07:13:17 -05:00
|
|
|
|
2022-03-21 02:59:26 -05:00
|
|
|
|
|
|
|
beforeEach(()=>{
|
|
|
|
genericBeforeEach();
|
|
|
|
});
|
|
|
|
|
2023-10-23 07:13:17 -05:00
|
|
|
it('edit', async ()=>{
|
|
|
|
await getEditView(schemaObj, getInitData);
|
2022-03-21 02:59:26 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
it('validate path', ()=>{
|
|
|
|
let validate = _.find(schemaObj.fields, (f)=>f.id=='binaryPath').validate;
|
|
|
|
let status = validate('');
|
|
|
|
expect(status).toBe(true);
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|