mirror of
https://github.com/grafana/grafana.git
synced 2025-02-11 08:05:43 -06:00
* Add and configure eslint-plugin-import * Fix the lint:ts npm command * Autofix + prettier all the files * Manually fix remaining files * Move jquery code in jest-setup to external file to safely reorder imports * Resolve issue caused by circular dependencies within Prometheus * Update .betterer.results * Fix missing // @ts-ignore * ignore iconBundle.ts * Fix missing // @ts-ignore
83 lines
2.3 KiB
TypeScript
83 lines
2.3 KiB
TypeScript
import { createTheme, FieldType, MutableDataFrame, toDataFrame } from '@grafana/data';
|
|
|
|
import { prepareGraphableFields } from './utils';
|
|
|
|
describe('prepare timeseries graph', () => {
|
|
it('errors with no time fields', () => {
|
|
const input = [
|
|
toDataFrame({
|
|
fields: [
|
|
{ name: 'a', values: [1, 2, 3] },
|
|
{ name: 'b', values: ['a', 'b', 'c'] },
|
|
],
|
|
}),
|
|
];
|
|
const frames = prepareGraphableFields(input, createTheme());
|
|
expect(frames).toBeNull();
|
|
});
|
|
|
|
it('requires a number or boolean value', () => {
|
|
const input = [
|
|
toDataFrame({
|
|
fields: [
|
|
{ name: 'a', type: FieldType.time, values: [1, 2, 3] },
|
|
{ name: 'b', values: ['a', 'b', 'c'] },
|
|
],
|
|
}),
|
|
];
|
|
const frames = prepareGraphableFields(input, createTheme());
|
|
expect(frames).toBeNull();
|
|
});
|
|
|
|
it('will graph numbers and boolean values', () => {
|
|
const input = [
|
|
toDataFrame({
|
|
fields: [
|
|
{ name: 'a', type: FieldType.time, values: [1, 2, 3] },
|
|
{ name: 'b', values: ['a', 'b', 'c'] },
|
|
{ name: 'c', values: [true, false, true] },
|
|
{ name: 'd', values: [100, 200, 300] },
|
|
],
|
|
}),
|
|
];
|
|
const frames = prepareGraphableFields(input, createTheme());
|
|
const out = frames![0];
|
|
|
|
expect(out.fields.map((f) => f.name)).toEqual(['a', 'c', 'd']);
|
|
|
|
const field = out.fields.find((f) => f.name === 'c');
|
|
expect(field?.display).toBeDefined();
|
|
expect(field!.display!(1)).toMatchInlineSnapshot(`
|
|
Object {
|
|
"color": "#808080",
|
|
"numeric": 1,
|
|
"percent": 1,
|
|
"prefix": undefined,
|
|
"suffix": undefined,
|
|
"text": "True",
|
|
}
|
|
`);
|
|
});
|
|
|
|
it('will convert NaN and Infinty to nulls', () => {
|
|
const df = new MutableDataFrame({
|
|
fields: [
|
|
{ name: 'time', type: FieldType.time, values: [995, 9996, 9997, 9998, 9999] },
|
|
{ name: 'a', values: [-10, NaN, 10, -Infinity, +Infinity] },
|
|
],
|
|
});
|
|
const frames = prepareGraphableFields([df], createTheme());
|
|
|
|
const field = frames![0].fields.find((f) => f.name === 'a');
|
|
expect(field!.values.toArray()).toMatchInlineSnapshot(`
|
|
Array [
|
|
-10,
|
|
null,
|
|
10,
|
|
null,
|
|
null,
|
|
]
|
|
`);
|
|
});
|
|
});
|