mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2024-11-22 08:46:39 -06:00
56 lines
1.5 KiB
JavaScript
56 lines
1.5 KiB
JavaScript
/////////////////////////////////////////////////////////////
|
|
//
|
|
// pgAdmin 4 - PostgreSQL Tools
|
|
//
|
|
// Copyright (C) 2013 - 2019, The pgAdmin Development Team
|
|
// This software is released under the PostgreSQL Licence
|
|
//
|
|
//////////////////////////////////////////////////////////////
|
|
|
|
|
|
import {menuEnabledServer} from '../../../pgadmin/tools/backup/static/js/menu_utils';
|
|
|
|
const context = describe;
|
|
|
|
describe('backup.menuUtils', () => {
|
|
describe('#menuEnabledServer', () => {
|
|
context('provided node data is undefined', () => {
|
|
it('returns false', () => {
|
|
expect(menuEnabledServer(undefined)).toEqual(false);
|
|
});
|
|
});
|
|
|
|
context('provided node data is null', () => {
|
|
it('returns false', () => {
|
|
expect(menuEnabledServer(null)).toEqual(false);
|
|
});
|
|
});
|
|
|
|
context('current node type is not of the type server', () => {
|
|
it('returns false', () => {
|
|
expect(menuEnabledServer({_type: 'schema'})).toEqual(false);
|
|
});
|
|
});
|
|
|
|
context('current node type is of the type server', () => {
|
|
context('is connected', () => {
|
|
it('returns true', () => {
|
|
expect(menuEnabledServer({
|
|
_type: 'server',
|
|
connected: true,
|
|
})).toEqual(true);
|
|
});
|
|
});
|
|
context('is not connected', () => {
|
|
it('returns false', () => {
|
|
expect(menuEnabledServer({
|
|
_type: 'server',
|
|
connected: false,
|
|
})).toEqual(false);
|
|
});
|
|
});
|
|
});
|
|
});
|
|
});
|
|
|