mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
* Chore: upgrades jQuery and @types/jQuery * Chore: reduce strict null errors * Fixed issue in graphite func editor Co-authored-by: Torkel Ödegaard <torkel@grafana.com>
171 lines
6.0 KiB
TypeScript
171 lines
6.0 KiB
TypeScript
import gfunc from '../gfunc';
|
|
|
|
describe('when creating func instance from func names', () => {
|
|
it('should return func instance', () => {
|
|
const func = gfunc.createFuncInstance('sumSeries');
|
|
expect(func).toBeTruthy();
|
|
expect(func.def.name).toEqual('sumSeries');
|
|
expect(func.def.params.length).toEqual(1);
|
|
expect(func.def.params[0].multiple).toEqual(true);
|
|
expect(func.def.defaultParams.length).toEqual(1);
|
|
});
|
|
|
|
it('should return func instance with shortName', () => {
|
|
const func = gfunc.createFuncInstance('sum');
|
|
expect(func).toBeTruthy();
|
|
});
|
|
|
|
it('should return func instance from funcDef', () => {
|
|
const func = gfunc.createFuncInstance('sum');
|
|
const func2 = gfunc.createFuncInstance(func.def);
|
|
expect(func2).toBeTruthy();
|
|
});
|
|
|
|
it('func instance should have text representation', () => {
|
|
const func = gfunc.createFuncInstance('groupByNode');
|
|
func.params[0] = 5;
|
|
func.params[1] = 'avg';
|
|
func.updateText();
|
|
expect(func.text).toEqual('groupByNode(5, avg)');
|
|
});
|
|
});
|
|
|
|
function replaceVariablesDummy(str: string) {
|
|
// important that this does replace
|
|
return str.replace('asdasdas', 'asdsad');
|
|
}
|
|
|
|
describe('when rendering func instance', () => {
|
|
it('should handle single metric param', () => {
|
|
const func = gfunc.createFuncInstance('sumSeries');
|
|
expect(func.render('hello.metric', replaceVariablesDummy)).toEqual('sumSeries(hello.metric)');
|
|
});
|
|
|
|
it('should include default params if options enable it', () => {
|
|
const func = gfunc.createFuncInstance('scaleToSeconds', {
|
|
withDefaultParams: true,
|
|
});
|
|
expect(func.render('hello', replaceVariablesDummy)).toEqual('scaleToSeconds(hello, 1)');
|
|
});
|
|
|
|
it('should handle int or interval params with number', () => {
|
|
const func = gfunc.createFuncInstance('movingMedian');
|
|
func.params[0] = '5';
|
|
expect(func.render('hello', replaceVariablesDummy)).toEqual('movingMedian(hello, 5)');
|
|
});
|
|
|
|
it('should handle int or interval params with interval string', () => {
|
|
const func = gfunc.createFuncInstance('movingMedian');
|
|
func.params[0] = '5min';
|
|
expect(func.render('hello', replaceVariablesDummy)).toEqual("movingMedian(hello, '5min')");
|
|
});
|
|
|
|
it('should never quote boolean paramater', () => {
|
|
const func = gfunc.createFuncInstance('sortByName');
|
|
func.params[0] = '$natural';
|
|
expect(func.render('hello', replaceVariablesDummy)).toEqual('sortByName(hello, $natural)');
|
|
});
|
|
|
|
it('should never quote int paramater', () => {
|
|
const func = gfunc.createFuncInstance('maximumAbove');
|
|
func.params[0] = '$value';
|
|
expect(func.render('hello', replaceVariablesDummy)).toEqual('maximumAbove(hello, $value)');
|
|
});
|
|
|
|
it('should never quote node paramater', () => {
|
|
const func = gfunc.createFuncInstance('aliasByNode');
|
|
func.params[0] = '$node';
|
|
expect(func.render('hello', replaceVariablesDummy)).toEqual('aliasByNode(hello, $node)');
|
|
});
|
|
|
|
it('should handle metric param and int param and string param', () => {
|
|
const func = gfunc.createFuncInstance('groupByNode');
|
|
func.params[0] = 5;
|
|
func.params[1] = 'avg';
|
|
expect(func.render('hello.metric', replaceVariablesDummy)).toEqual("groupByNode(hello.metric, 5, 'avg')");
|
|
});
|
|
|
|
it('should handle function with no metric param', () => {
|
|
const func = gfunc.createFuncInstance('randomWalk');
|
|
func.params[0] = 'test';
|
|
expect(func.render((undefined as unknown) as string, replaceVariablesDummy)).toEqual("randomWalk('test')");
|
|
});
|
|
|
|
it('should handle function multiple series params', () => {
|
|
const func = gfunc.createFuncInstance('asPercent');
|
|
func.params[0] = '#B';
|
|
expect(func.render('#A', replaceVariablesDummy)).toEqual('asPercent(#A, #B)');
|
|
});
|
|
|
|
it('should not quote variables that have numeric value', () => {
|
|
const func = gfunc.createFuncInstance('movingAverage');
|
|
func.params[0] = '$variable';
|
|
|
|
const replaceVariables = (str: string) => {
|
|
return str.replace('$variable', '60');
|
|
};
|
|
|
|
expect(func.render('metric', replaceVariables)).toBe('movingAverage(metric, $variable)');
|
|
});
|
|
|
|
it('should quote variables that have string value', () => {
|
|
const func = gfunc.createFuncInstance('movingAverage');
|
|
func.params[0] = '$variable';
|
|
|
|
const replaceVariables = (str: string) => {
|
|
return str.replace('$variable', '10min');
|
|
};
|
|
|
|
expect(func.render('metric', replaceVariables)).toBe("movingAverage(metric, '$variable')");
|
|
});
|
|
});
|
|
|
|
describe('when requesting function definitions', () => {
|
|
it('should return function definitions', () => {
|
|
const funcIndex = gfunc.getFuncDefs('1.0');
|
|
expect(Object.keys(funcIndex).length).toBeGreaterThan(8);
|
|
});
|
|
});
|
|
|
|
describe('when updating func param', () => {
|
|
it('should update param value and update text representation', () => {
|
|
const func = gfunc.createFuncInstance('summarize', {
|
|
withDefaultParams: true,
|
|
});
|
|
func.updateParam('1h', 0);
|
|
expect(func.params[0]).toBe('1h');
|
|
expect(func.text).toBe('summarize(1h, sum, false)');
|
|
});
|
|
|
|
it('should parse numbers as float', () => {
|
|
const func = gfunc.createFuncInstance('scale');
|
|
func.updateParam('0.001', 0);
|
|
expect(func.params[0]).toBe('0.001');
|
|
});
|
|
});
|
|
|
|
describe('when updating func param with optional second parameter', () => {
|
|
it('should update value and text', () => {
|
|
const func = gfunc.createFuncInstance('aliasByNode');
|
|
func.updateParam('1', 0);
|
|
expect(func.params[0]).toBe('1');
|
|
});
|
|
|
|
it('should slit text and put value in second param', () => {
|
|
const func = gfunc.createFuncInstance('aliasByNode');
|
|
func.updateParam('4,-5', 0);
|
|
expect(func.params[0]).toBe('4');
|
|
expect(func.params[1]).toBe('-5');
|
|
expect(func.text).toBe('aliasByNode(4, -5)');
|
|
});
|
|
|
|
it('should remove second param when empty string is set', () => {
|
|
const func = gfunc.createFuncInstance('aliasByNode');
|
|
func.updateParam('4,-5', 0);
|
|
func.updateParam('', 1);
|
|
expect(func.params[0]).toBe('4');
|
|
expect(func.params[1]).toBe(undefined);
|
|
expect(func.text).toBe('aliasByNode(4)');
|
|
});
|
|
});
|