mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2024-11-22 08:46:39 -06:00
86 lines
2.1 KiB
JavaScript
86 lines
2.1 KiB
JavaScript
//////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// pgAdmin 4 - PostgreSQL Tools
|
|
//
|
|
// Copyright (C) 2013 - 2018, The pgAdmin Development Team
|
|
// This software is released under the PostgreSQL Licence
|
|
//
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
import {
|
|
setFocusToDebuggerEditor,
|
|
getProcedureId,
|
|
} from '../../pgadmin/tools/debugger/static/js/debugger_utils';
|
|
|
|
describe('setFocusToDebuggerEditor', function () {
|
|
let editor;
|
|
editor = jasmine.createSpyObj('editor', ['focus']);
|
|
|
|
let tab_key = {
|
|
which: 9,
|
|
keyCode: 9,
|
|
};
|
|
|
|
let enter_key = {
|
|
which: 13,
|
|
keyCode: 13,
|
|
};
|
|
|
|
describe('setFocusToDebuggerEditor', function () {
|
|
it('returns undefined if no command is passed', function () {
|
|
expect(setFocusToDebuggerEditor(editor, null)).toEqual(undefined);
|
|
});
|
|
});
|
|
|
|
describe('setFocusToDebuggerEditor', function () {
|
|
it('should call focus on editor', function () {
|
|
setFocusToDebuggerEditor(editor, enter_key);
|
|
expect(editor.focus).toHaveBeenCalled();
|
|
});
|
|
});
|
|
|
|
describe('setFocusToDebuggerEditor', function () {
|
|
it('should not call focus on editor and returns undefined', function () {
|
|
expect(setFocusToDebuggerEditor(editor, tab_key)).toEqual(undefined);
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('getProcedureId', function () {
|
|
let treeInfroProc = {
|
|
'procedure': {
|
|
'_id': 123,
|
|
},
|
|
};
|
|
let treeInfroInvalidProcId = {
|
|
'procedure': {
|
|
'_id': null,
|
|
},
|
|
};
|
|
let treeInfroEdbProc = {
|
|
'edbproc': {
|
|
'_id': 321,
|
|
},
|
|
};
|
|
let fakeTreeInfro;
|
|
|
|
describe('Should return proper object id', function () {
|
|
it('returns valid procedure id', function () {
|
|
expect(getProcedureId(treeInfroProc)).toBe(123);
|
|
});
|
|
|
|
it('returns valid edbproc id', function () {
|
|
expect(getProcedureId(treeInfroEdbProc)).toBe(321);
|
|
});
|
|
|
|
it('returns undefined for fake tree info', function () {
|
|
expect(getProcedureId(fakeTreeInfro)).toBe(undefined);
|
|
});
|
|
|
|
it('returns undefined for invalid procedure id', function () {
|
|
expect(getProcedureId(treeInfroInvalidProcId)).toBe(undefined);
|
|
});
|
|
});
|
|
});
|
|
|