mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
* Eslint: no-duplicate-imports rule (bump grafana-eslint-config) * Chore: Fix duplicate imports (#31041) * Rebased this branch into eslint-no-duplicate-imports * updated some changes * merged uncaught duplicate imports * fixes frontend test- I hope * fixes e2e test- I hope Co-authored-by: Uchechukwu Obasi <obasiuche62@gmail.com>
458 lines
13 KiB
TypeScript
458 lines
13 KiB
TypeScript
import { SingleStatCtrl, ShowData } from '../module';
|
|
import { dateTime, ReducerID, getFieldDisplayName, LegacyResponseData } from '@grafana/data';
|
|
import { LinkSrv } from 'app/features/panel/panellinks/link_srv';
|
|
import { DashboardModel } from 'app/features/dashboard/state';
|
|
|
|
interface TestContext {
|
|
ctrl: SingleStatCtrl;
|
|
input: LegacyResponseData[];
|
|
data: Partial<ShowData>;
|
|
setup: (setupFunc: any) => void;
|
|
}
|
|
|
|
describe('SingleStatCtrl', () => {
|
|
const ctx: TestContext = {} as TestContext;
|
|
const epoch = 1505826363746;
|
|
Date.now = () => epoch;
|
|
|
|
const $scope = {
|
|
$on: () => {},
|
|
};
|
|
|
|
const $injector = {
|
|
get: () => {},
|
|
};
|
|
|
|
const $sanitize = {};
|
|
|
|
SingleStatCtrl.prototype.dashboard = ({
|
|
getTimezone: jest.fn(() => 'utc'),
|
|
} as any) as DashboardModel;
|
|
|
|
function singleStatScenario(desc: string, func: any) {
|
|
describe(desc, () => {
|
|
ctx.setup = (setupFunc: any) => {
|
|
beforeEach(() => {
|
|
SingleStatCtrl.prototype.panel = {
|
|
events: {
|
|
on: () => {},
|
|
emit: () => {},
|
|
},
|
|
};
|
|
|
|
// @ts-ignore
|
|
ctx.ctrl = new SingleStatCtrl($scope, $injector, {} as LinkSrv, $sanitize);
|
|
setupFunc();
|
|
ctx.ctrl.onSnapshotLoad(ctx.input);
|
|
ctx.data = ctx.ctrl.data;
|
|
});
|
|
};
|
|
|
|
func(ctx);
|
|
});
|
|
}
|
|
|
|
singleStatScenario('with defaults', (ctx: TestContext) => {
|
|
ctx.setup(() => {
|
|
ctx.input = [
|
|
{
|
|
target: 'test.cpu1',
|
|
datapoints: [
|
|
[10, 1],
|
|
[20, 2],
|
|
],
|
|
},
|
|
];
|
|
});
|
|
|
|
it('Should use series avg as default main value', () => {
|
|
expect(ctx.data.value).toBe(15);
|
|
});
|
|
|
|
it('should set formatted falue', () => {
|
|
expect(ctx.data.display!.text).toBe('15');
|
|
});
|
|
});
|
|
|
|
singleStatScenario('showing serie name instead of value', (ctx: TestContext) => {
|
|
ctx.setup(() => {
|
|
ctx.input = [
|
|
{
|
|
target: 'test.cpu1',
|
|
datapoints: [
|
|
[10, 1],
|
|
[20, 2],
|
|
],
|
|
},
|
|
];
|
|
ctx.ctrl.panel.valueName = 'name';
|
|
});
|
|
|
|
it('Should use series avg as default main value', () => {
|
|
const name = getFieldDisplayName(ctx.data.field!);
|
|
expect(name).toBe('test.cpu1');
|
|
});
|
|
|
|
it('should set formatted value', () => {
|
|
expect(ctx.data.display!.text).toBe('test.cpu1');
|
|
});
|
|
});
|
|
|
|
singleStatScenario('showing last iso time instead of value', (ctx: TestContext) => {
|
|
ctx.setup(() => {
|
|
ctx.input = [
|
|
{
|
|
target: 'test.cpu1',
|
|
datapoints: [
|
|
[10, 12],
|
|
[20, 1505634997920],
|
|
],
|
|
},
|
|
];
|
|
ctx.ctrl.panel.valueName = 'last_time';
|
|
ctx.ctrl.panel.format = 'dateTimeAsIso';
|
|
ctx.ctrl.dashboard.getTimezone = () => 'browser';
|
|
});
|
|
|
|
it('Should use time instead of value', () => {
|
|
expect(ctx.data.value).toBe(1505634997920);
|
|
});
|
|
|
|
it('should set formatted value', () => {
|
|
expect(dateTime(ctx.data.display!.text).valueOf()).toBe(1505634997000);
|
|
});
|
|
});
|
|
|
|
singleStatScenario('showing last iso time instead of value (in UTC)', (ctx: TestContext) => {
|
|
ctx.setup(() => {
|
|
ctx.input = [
|
|
{
|
|
target: 'test.cpu1',
|
|
datapoints: [
|
|
[10, 12],
|
|
[20, 5000],
|
|
],
|
|
},
|
|
];
|
|
ctx.ctrl.panel.valueName = 'last_time';
|
|
ctx.ctrl.panel.format = 'dateTimeAsIso';
|
|
ctx.ctrl.dashboard.getTimezone = () => 'utc';
|
|
});
|
|
|
|
it('should set value', () => {
|
|
expect(ctx.data.display!.text).toBe('1970-01-01 00:00:05');
|
|
});
|
|
});
|
|
|
|
singleStatScenario('showing last us time instead of value', (ctx: TestContext) => {
|
|
ctx.setup(() => {
|
|
ctx.input = [
|
|
{
|
|
target: 'test.cpu1',
|
|
datapoints: [
|
|
[10, 12],
|
|
[20, 1505634997920],
|
|
],
|
|
},
|
|
];
|
|
ctx.ctrl.panel.valueName = 'last_time';
|
|
ctx.ctrl.panel.format = 'dateTimeAsUS';
|
|
ctx.ctrl.dashboard.getTimezone = () => 'browser';
|
|
});
|
|
|
|
it('Should use time instead of value', () => {
|
|
expect(ctx.data.value).toBe(1505634997920);
|
|
});
|
|
|
|
it('should set formatted value', () => {
|
|
expect(ctx.data.display!.text).toBe(dateTime(1505634997920).format('MM/DD/YYYY h:mm:ss a'));
|
|
});
|
|
});
|
|
|
|
singleStatScenario('showing last us time instead of value (in UTC)', (ctx: TestContext) => {
|
|
ctx.setup(() => {
|
|
ctx.input = [
|
|
{
|
|
target: 'test.cpu1',
|
|
datapoints: [
|
|
[10, 12],
|
|
[20, 5000],
|
|
],
|
|
},
|
|
];
|
|
ctx.ctrl.panel.valueName = 'last_time';
|
|
ctx.ctrl.panel.format = 'dateTimeAsUS';
|
|
ctx.ctrl.dashboard.getTimezone = () => 'utc';
|
|
});
|
|
|
|
it('should set formatted value', () => {
|
|
expect(ctx.data.display!.text).toBe('01/01/1970 12:00:05 am');
|
|
});
|
|
});
|
|
|
|
singleStatScenario('showing last time from now instead of value', (ctx: TestContext) => {
|
|
ctx.setup(() => {
|
|
ctx.input = [
|
|
{
|
|
target: 'test.cpu1',
|
|
datapoints: [
|
|
[10, 12],
|
|
[20, 1505634997920],
|
|
],
|
|
},
|
|
];
|
|
ctx.ctrl.panel.valueName = 'last_time';
|
|
ctx.ctrl.panel.format = 'dateTimeFromNow';
|
|
});
|
|
|
|
it('Should use time instead of value', () => {
|
|
expect(ctx.data.value).toBe(1505634997920);
|
|
});
|
|
|
|
it('should set formatted value', () => {
|
|
expect(ctx.data.display!.text).toBe('2 days ago');
|
|
});
|
|
});
|
|
|
|
singleStatScenario('showing last time from now instead of value (in UTC)', (ctx: TestContext) => {
|
|
ctx.setup(() => {
|
|
ctx.input = [
|
|
{
|
|
target: 'test.cpu1',
|
|
datapoints: [
|
|
[10, 12],
|
|
[20, 1505634997920],
|
|
],
|
|
},
|
|
];
|
|
ctx.ctrl.panel.valueName = 'last_time';
|
|
ctx.ctrl.panel.format = 'dateTimeFromNow';
|
|
});
|
|
|
|
it('should set formatted value', () => {
|
|
expect(ctx.data.display!.text).toBe('2 days ago');
|
|
});
|
|
});
|
|
|
|
singleStatScenario(
|
|
'MainValue should use same number for decimals as displayed when checking thresholds',
|
|
(ctx: TestContext) => {
|
|
ctx.setup(() => {
|
|
ctx.input = [
|
|
{
|
|
target: 'test.cpu1',
|
|
datapoints: [
|
|
[99.999, 1],
|
|
[99.99999, 2],
|
|
],
|
|
},
|
|
];
|
|
ctx.ctrl.panel.valueName = 'avg';
|
|
ctx.ctrl.panel.format = 'none';
|
|
});
|
|
|
|
it('Should be rounded', () => {
|
|
expect(ctx.data.value).toBe(99.999495);
|
|
});
|
|
|
|
it('should set formatted value', () => {
|
|
expect(ctx.data.display!.text).toBe('100.0');
|
|
});
|
|
}
|
|
);
|
|
|
|
singleStatScenario('When value to text mapping is specified', (ctx: TestContext) => {
|
|
ctx.setup(() => {
|
|
ctx.input = [{ target: 'test.cpu1', datapoints: [[9.9, 1]] }];
|
|
ctx.ctrl.panel.valueMaps = [{ value: '9.9', text: 'OK' }];
|
|
});
|
|
|
|
it('value should remain', () => {
|
|
expect(ctx.data.value).toBe(9.9);
|
|
});
|
|
|
|
it('Should replace value with text', () => {
|
|
expect(ctx.data.display!.text).toBe('OK');
|
|
});
|
|
});
|
|
|
|
singleStatScenario('When mapping null values and no data', (ctx: TestContext) => {
|
|
ctx.setup(() => {
|
|
ctx.input = []; // No data
|
|
ctx.ctrl.panel.valueMaps = [{ value: 'null', text: 'XYZ' }];
|
|
});
|
|
|
|
it('value should be null', () => {
|
|
expect(ctx.data.value).toBe(null);
|
|
});
|
|
|
|
it('Should replace value with text', () => {
|
|
expect(ctx.data.display!.text).toBe('XYZ');
|
|
});
|
|
});
|
|
|
|
singleStatScenario('When range to text mapping is specified for first range', (ctx: TestContext) => {
|
|
ctx.setup(() => {
|
|
ctx.input = [{ target: 'test.cpu1', datapoints: [[41, 50]] }];
|
|
ctx.ctrl.panel.mappingType = 2;
|
|
ctx.ctrl.panel.rangeMaps = [
|
|
{ from: '10', to: '50', text: 'OK' },
|
|
{ from: '51', to: '100', text: 'NOT OK' },
|
|
];
|
|
});
|
|
|
|
it('Should replace value with text OK', () => {
|
|
expect(ctx.data.display!.text).toBe('OK');
|
|
});
|
|
});
|
|
|
|
singleStatScenario('When range to text mapping is specified for other ranges', (ctx: TestContext) => {
|
|
ctx.setup(() => {
|
|
ctx.input = [{ target: 'test.cpu1', datapoints: [[65, 75]] }];
|
|
ctx.ctrl.panel.mappingType = 2;
|
|
ctx.ctrl.panel.rangeMaps = [
|
|
{ from: '10', to: '50', text: 'OK' },
|
|
{ from: '51', to: '100', text: 'NOT OK' },
|
|
];
|
|
});
|
|
|
|
it('Should replace value with text NOT OK', () => {
|
|
expect(ctx.data.display!.text).toBe('NOT OK');
|
|
});
|
|
});
|
|
|
|
describe('When table data', () => {
|
|
const tableData = [
|
|
{
|
|
columns: [{ text: 'Time', type: 'time' }, { text: 'test1' }, { text: 'mean' }, { text: 'test2' }],
|
|
rows: [[1492759673649, 'ignore1', 15, 'ignore2']],
|
|
type: 'table',
|
|
},
|
|
];
|
|
|
|
singleStatScenario('with default values', (ctx: TestContext) => {
|
|
ctx.setup(() => {
|
|
ctx.input = tableData;
|
|
ctx.ctrl.panel.tableColumn = 'mean';
|
|
ctx.ctrl.panel.format = 'none';
|
|
});
|
|
|
|
it('Should use first rows value as default main value', () => {
|
|
expect(ctx.data.value).toBe(15);
|
|
});
|
|
|
|
it('should set formatted value', () => {
|
|
expect(ctx.data.display!.text).toBe('15');
|
|
});
|
|
});
|
|
|
|
singleStatScenario('When table data has multiple columns', (ctx: TestContext) => {
|
|
ctx.setup(() => {
|
|
ctx.input = tableData;
|
|
ctx.ctrl.panel.tableColumn = '';
|
|
});
|
|
|
|
it('Should set column to first column that is not time', () => {
|
|
expect(ctx.ctrl.panel.tableColumn).toBe('test1');
|
|
});
|
|
});
|
|
|
|
singleStatScenario(
|
|
'MainValue should use same number for decimals as displayed when checking thresholds',
|
|
(ctx: TestContext) => {
|
|
ctx.setup(() => {
|
|
ctx.input = tableData;
|
|
ctx.input[0].rows[0] = [1492759673649, 'ignore1', 99.99999, 'ignore2'];
|
|
ctx.ctrl.panel.mappingType = 0;
|
|
ctx.ctrl.panel.tableColumn = 'mean';
|
|
});
|
|
|
|
it('Should be rounded', () => {
|
|
expect(ctx.data.value).toBe(99.99999);
|
|
});
|
|
|
|
it('should set formatted falue', () => {
|
|
expect(ctx.data.display!.text).toBe('100.0');
|
|
});
|
|
}
|
|
);
|
|
|
|
singleStatScenario('When value to text mapping is specified', (ctx: TestContext) => {
|
|
ctx.setup(() => {
|
|
ctx.input = tableData;
|
|
ctx.input[0].rows[0] = [1492759673649, 'ignore1', 10, 'ignore2'];
|
|
ctx.ctrl.panel.mappingType = 1;
|
|
ctx.ctrl.panel.tableColumn = 'mean';
|
|
ctx.ctrl.panel.valueMaps = [{ value: '10', text: 'OK' }];
|
|
});
|
|
|
|
it('value should remain', () => {
|
|
expect(ctx.data.value).toBe(10);
|
|
});
|
|
|
|
it('Should replace value with text', () => {
|
|
expect(ctx.data.display!.text).toBe('OK');
|
|
});
|
|
});
|
|
|
|
singleStatScenario('When range to text mapping is specified for first range', (ctx: TestContext) => {
|
|
ctx.setup(() => {
|
|
ctx.input = tableData;
|
|
ctx.input[0].rows[0] = [1492759673649, 'ignore1', 41, 'ignore2'];
|
|
ctx.ctrl.panel.tableColumn = 'mean';
|
|
ctx.ctrl.panel.mappingType = 2;
|
|
ctx.ctrl.panel.rangeMaps = [
|
|
{ from: '10', to: '50', text: 'OK' },
|
|
{ from: '51', to: '100', text: 'NOT OK' },
|
|
];
|
|
});
|
|
|
|
it('Should replace value with text OK', () => {
|
|
expect(ctx.data.display!.text).toBe('OK');
|
|
});
|
|
});
|
|
|
|
singleStatScenario('When range to text mapping is specified for other ranges', (ctx: TestContext) => {
|
|
ctx.setup(() => {
|
|
ctx.input = tableData;
|
|
ctx.input[0].rows[0] = [1492759673649, 'ignore1', 65, 'ignore2'];
|
|
ctx.ctrl.panel.tableColumn = 'mean';
|
|
ctx.ctrl.panel.mappingType = 2;
|
|
ctx.ctrl.panel.rangeMaps = [
|
|
{ from: '10', to: '50', text: 'OK' },
|
|
{ from: '51', to: '100', text: 'NOT OK' },
|
|
];
|
|
});
|
|
|
|
it('Should replace value with text NOT OK', () => {
|
|
expect(ctx.data.display!.text).toBe('NOT OK');
|
|
});
|
|
});
|
|
|
|
singleStatScenario('When value is string', (ctx: TestContext) => {
|
|
ctx.setup(() => {
|
|
ctx.input = tableData;
|
|
ctx.input[0].rows[0] = [1492759673649, 'ignore1', 65, 'ignore2'];
|
|
ctx.ctrl.panel.tableColumn = 'test1';
|
|
ctx.ctrl.panel.valueName = ReducerID.first;
|
|
});
|
|
|
|
it('Should replace value with text NOT OK', () => {
|
|
expect(ctx.data.display!.text).toBe('ignore1');
|
|
});
|
|
});
|
|
|
|
singleStatScenario('When value is zero', (ctx: TestContext) => {
|
|
ctx.setup(() => {
|
|
ctx.input = tableData;
|
|
ctx.input[0].rows[0] = [1492759673649, 'ignore1', 0, 'ignore2'];
|
|
ctx.ctrl.panel.tableColumn = 'mean';
|
|
});
|
|
|
|
it('Should return zero', () => {
|
|
expect(ctx.data.value).toBe(0);
|
|
});
|
|
});
|
|
});
|
|
});
|