mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-01-27 00:36:52 -06:00
71 lines
1.7 KiB
JavaScript
71 lines
1.7 KiB
JavaScript
/////////////////////////////////////////////////////////////
|
|
//
|
|
// pgAdmin 4 - PostgreSQL Tools
|
|
//
|
|
// Copyright (C) 2013 - 2020, The pgAdmin Development Team
|
|
// This software is released under the PostgreSQL Licence
|
|
//
|
|
//////////////////////////////////////////////////////////////
|
|
|
|
import pgAdmin from 'sources/pgadmin';
|
|
import Alertify from 'pgadmin.alertifyjs';
|
|
import '../../../pgadmin/misc/file_manager/static/js/file_manager';
|
|
import '../../../pgadmin/misc/file_manager/static/js/select_dialogue.js';
|
|
|
|
|
|
describe('fileSelectDialog', function () {
|
|
|
|
let params;
|
|
|
|
pgAdmin.Browser = {
|
|
stdW: {
|
|
sm: 500,
|
|
md: 700,
|
|
lg: 900,
|
|
default: 500,
|
|
},
|
|
stdH: {
|
|
sm: 200,
|
|
md: 400,
|
|
lg: 550,
|
|
default: 550,
|
|
},
|
|
};
|
|
|
|
describe('When dialog is called for select file', () => {
|
|
it('Select file dialog', function() {
|
|
params = {
|
|
'dialog_title': 'Select file',
|
|
'dialog_type': 'select_file',
|
|
};
|
|
|
|
spyOn(Alertify, 'fileSelectionDlg').and.callFake(function() {
|
|
this.resizeTo = function() {};
|
|
return this;
|
|
});
|
|
|
|
pgAdmin.FileManager.show_dialog(params);
|
|
|
|
expect(Alertify.fileSelectionDlg).toHaveBeenCalled();
|
|
});
|
|
});
|
|
|
|
describe('When dialog is called for create file', () => {
|
|
it('Select file dialog', function() {
|
|
params = {
|
|
'dialog_title': 'Create file',
|
|
'dialog_type': 'create_file',
|
|
};
|
|
|
|
spyOn(Alertify, 'createModeDlg').and.callFake(function() {
|
|
this.resizeTo = function() {};
|
|
return this;
|
|
});
|
|
|
|
pgAdmin.FileManager.show_dialog(params);
|
|
|
|
expect(Alertify.createModeDlg).toHaveBeenCalled();
|
|
});
|
|
});
|
|
});
|