mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2024-11-22 08:46:39 -06:00
106 lines
2.8 KiB
JavaScript
106 lines
2.8 KiB
JavaScript
/////////////////////////////////////////////////////////////
|
|
//
|
|
// pgAdmin 4 - PostgreSQL Tools
|
|
//
|
|
// Copyright (C) 2013 - 2023, The pgAdmin Development Team
|
|
// This software is released under the PostgreSQL Licence
|
|
//
|
|
//////////////////////////////////////////////////////////////
|
|
|
|
import '../helper/enzyme.helper';
|
|
import { createMount } from '@material-ui/core/test-utils';
|
|
import _ from 'lodash';
|
|
import * as nodeAjax from '../../../pgadmin/browser/static/js/node_ajax';
|
|
import { getNodePartitionTableSchema } from '../../../pgadmin/browser/server_groups/servers/databases/schemas/tables/partitions/static/js/partition.ui';
|
|
import {genericBeforeEach, getCreateView, getEditView, getPropertiesView} from '../genericFunctions';
|
|
|
|
describe('PartitionTableSchema', ()=>{
|
|
let mount;
|
|
let schemaObj;
|
|
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();
|
|
spyOn(nodeAjax, 'getNodeAjaxOptions').and.returnValue(Promise.resolve([]));
|
|
spyOn(nodeAjax, 'getNodeListByName').and.returnValue(Promise.resolve([]));
|
|
schemaObj = getNodePartitionTableSchema({
|
|
server: {
|
|
_id: 1,
|
|
},
|
|
schema: {
|
|
_label: 'public',
|
|
}
|
|
}, {}, {
|
|
Nodes: {table: {}},
|
|
serverInfo: {
|
|
1: {
|
|
user: {
|
|
name: 'Postgres',
|
|
}
|
|
}
|
|
}
|
|
});
|
|
});
|
|
|
|
afterAll(() => {
|
|
mount.cleanUp();
|
|
});
|
|
|
|
beforeEach(()=>{
|
|
genericBeforeEach();
|
|
});
|
|
|
|
it('create', ()=>{
|
|
mount(getCreateView(schemaObj));
|
|
});
|
|
|
|
it('edit', ()=>{
|
|
mount(getEditView(schemaObj, getInitData));
|
|
});
|
|
|
|
it('properties', ()=>{
|
|
mount(getPropertiesView(schemaObj, getInitData));
|
|
});
|
|
|
|
it('depChange', ()=>{
|
|
let state = {typname: 'newtype'};
|
|
let partKeyField = _.find(schemaObj.fields, (f)=>f.id=='partition_keys');
|
|
expect(partKeyField.depChange(state, null, null, {
|
|
oldState: {
|
|
typname: 'oldtype',
|
|
}
|
|
})).toEqual({
|
|
partition_keys: []
|
|
});
|
|
|
|
state = {
|
|
partition_type: 'list',
|
|
columns: [{name: 'id'}],
|
|
partition_keys: [],
|
|
};
|
|
expect(partKeyField.canAddRow(state)).toBe(true);
|
|
|
|
state = {is_partitioned: true};
|
|
expect(partKeyField.canAdd(state)).toBe(true);
|
|
|
|
expect(_.find(schemaObj.fields, (f)=>f.id=='partitions').depChange(state, ['is_partitioned']))
|
|
.toEqual({
|
|
partitions: []
|
|
});
|
|
});
|
|
|
|
it('validate', ()=>{
|
|
let state = {is_partitioned: true};
|
|
let setError = jasmine.createSpy('setError');
|
|
|
|
schemaObj.validate(state, setError);
|
|
expect(setError).toHaveBeenCalledWith('partition_keys', 'Please specify at least one key for partitioned table.');
|
|
|
|
state.partition_keys = [{key: 'id'}];
|
|
expect(schemaObj.validate(state, setError)).toBe(false);
|
|
});
|
|
});
|
|
|