mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2024-11-22 08:46:39 -06:00
56 lines
2.0 KiB
JavaScript
56 lines
2.0 KiB
JavaScript
/////////////////////////////////////////////////////////////
|
|
//
|
|
// pgAdmin 4 - PostgreSQL Tools
|
|
//
|
|
// Copyright (C) 2013 - 2023, The pgAdmin Development Team
|
|
// This software is released under the PostgreSQL License
|
|
//
|
|
//////////////////////////////////////////////////////////////
|
|
|
|
import '../helper/enzyme.helper';
|
|
import { createMount } from '@material-ui/core/test-utils';
|
|
import pgAdmin from 'sources/pgadmin';
|
|
import RestoreSchema, {getRestoreSaveOptSchema, getRestoreQueryOptionSchema, getRestoreDisableOptionSchema, getRestoreMiscellaneousSchema, getRestoreTypeObjSchema, getRestoreSectionSchema} from '../../../pgadmin/tools/restore/static/js/restore.ui';
|
|
import {getCreateView} from '../genericFunctions';
|
|
|
|
describe('RestoreSchema', ()=>{
|
|
let mount;
|
|
beforeAll(()=>{
|
|
mount = createMount();
|
|
});
|
|
|
|
afterAll(() => {
|
|
mount.cleanUp();
|
|
});
|
|
let restoreSchemaObj = new RestoreSchema(
|
|
()=>getRestoreSectionSchema({selectedNodeType: 'table'}),
|
|
()=>getRestoreTypeObjSchema({selectedNodeType: 'table'}),
|
|
()=>getRestoreSaveOptSchema({nodeInfo: {server: {version: 11000}}}),
|
|
()=>getRestoreQueryOptionSchema({nodeInfo: {server: {version: 11000}}}),
|
|
()=>getRestoreDisableOptionSchema({nodeInfo: {server: {version: 11000}}}),
|
|
()=>getRestoreMiscellaneousSchema({nodeInfo: {server: {version: 11000}}}),
|
|
{
|
|
role: ()=>[],
|
|
encoding: ()=>[],
|
|
},
|
|
{server: {version: 11000}},
|
|
pgAdmin.pgBrowser
|
|
);
|
|
|
|
it('restore dialog', ()=>{
|
|
mount(getCreateView(restoreSchemaObj));
|
|
});
|
|
|
|
it('restore validate', () => {
|
|
let state = { file: undefined }; //validating for empty file
|
|
let setError = jasmine.createSpy('setError');
|
|
|
|
restoreSchemaObj.validate(state, setError);
|
|
expect(setError).toHaveBeenCalledWith('file', 'Please provide a filename.');
|
|
|
|
state.file = '/home/dir/restore.sql'; //validating for valid file name
|
|
restoreSchemaObj.validate(state, setError);
|
|
expect(setError).toHaveBeenCalledWith('file', null);
|
|
});
|
|
});
|