Files
grafana/public/app/plugins/panel/graph/specs/data_processor.test.ts
Hugo Häggmark bd28512d29 Graph: Fixes so graph is shown for non numeric time values (#30972)
* Graph: Fixes so graph is shown for non numeric time values

* Tests: changes times to UTC

* Tests: forgot one value in time array

* GraphNG: make time series panel work with string time stamps (#30981)

* Make Time series panel work with data that time is represented as string

* Map to for

Co-authored-by: Dominik Prokop <dominik.prokop@grafana.com>
2021-02-09 09:46:37 +01:00

75 lines
2.1 KiB
TypeScript

import { DataProcessor } from '../data_processor';
import { getProcessedDataFrames } from 'app/features/query/state/runRequest';
describe('Graph DataProcessor', () => {
const panel: any = {
xaxis: { mode: 'series' },
aliasColors: {},
};
const processor = new DataProcessor(panel);
describe('getTimeSeries from LegacyResponseData', () => {
// Try each type of data
const dataList = getProcessedDataFrames([
{
alias: 'First (time_series)',
datapoints: [
[1, 1001],
[2, 1002],
[3, 1003],
],
unit: 'watt',
},
{
name: 'table_data',
columns: [
{ text: 'time' },
{ text: 'v1', unit: 'ohm' },
{ text: 'v2' }, // no unit
{ text: 'string' }, // skipped
],
rows: [
[1001, 0.1, 1.1, 'a'], // a
[1002, 0.2, 2.2, 'b'], // b
[1003, 0.3, 3.3, 'c'], // c
],
},
{
name: 'series',
fields: [
{ name: 'v1', values: [0.1, 0.2, 0.3] }, // first
{ name: 'v2', values: [1.1, 2.2, 3.3] }, // second
{ name: 'string', values: ['a', 'b', 'c'] }, // skip
{ name: 'time', values: [1001, 1002, 1003] }, // Time is last column
],
},
{
name: 'series with time as strings',
fields: [
{ name: 'v1', values: [0.1, 0.2, 0.3] }, // first
{
name: 'time',
values: ['2021-01-01T01:00:00.000Z', 'Fri, 01 Jan 2021 01:00:00 GMT', '2021-01-01T02:00:00.000Z'], // Time is last column
},
],
},
]);
it('Should return a new series for each field', () => {
panel.xaxis.mode = 'series';
const series = processor.getSeriesList({ dataList });
expect(series.length).toEqual(6);
expect(series).toMatchSnapshot();
});
it('Should return single histogram', () => {
panel.xaxis.mode = 'histogram';
const series = processor.getSeriesList({ dataList });
expect(series.length).toEqual(1);
expect(series).toMatchSnapshot();
});
});
});