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