2021-06-29 04:03:36 -05:00
|
|
|
/////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// pgAdmin 4 - PostgreSQL Tools
|
|
|
|
//
|
2022-01-04 02:24:25 -06:00
|
|
|
// Copyright (C) 2013 - 2022, The pgAdmin Development Team
|
2021-06-29 04:03:36 -05:00
|
|
|
// This software is released under the PostgreSQL Licence
|
|
|
|
//
|
|
|
|
//////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
import '../helper/enzyme.helper';
|
|
|
|
import { createMount } from '@material-ui/core/test-utils';
|
|
|
|
import ServerGroupSchema from '../../../pgadmin/browser/server_groups/static/js/server_group.ui';
|
2022-01-28 05:50:34 -06:00
|
|
|
import {genericBeforeEach, getCreateView, getEditView, getPropertiesView} from '../genericFunctions';
|
2021-06-29 04:03:36 -05:00
|
|
|
|
|
|
|
describe('ServerGroupSchema', ()=>{
|
|
|
|
let mount;
|
|
|
|
let schemaObj = new ServerGroupSchema();
|
|
|
|
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-06-29 04:03:36 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
it('create', ()=>{
|
2022-01-28 05:50:34 -06:00
|
|
|
mount(getCreateView(schemaObj));
|
2021-06-29 04:03:36 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
it('edit', ()=>{
|
2022-01-28 05:50:34 -06:00
|
|
|
mount(getEditView(schemaObj, getInitData));
|
2021-06-29 04:03:36 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
it('properties', ()=>{
|
2022-01-28 05:50:34 -06:00
|
|
|
mount(getPropertiesView(schemaObj, getInitData));
|
2021-06-29 04:03:36 -05:00
|
|
|
});
|
|
|
|
});
|