The open and composable observability and data visualization platform. Visualize metrics, logs, and traces from multiple sources like Prometheus, Loki, Elasticsearch, InfluxDB, Postgres and many more.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
grafana/public/app/features/trails/DataTrailsHistory.test.tsx

67 lines
2.3 KiB

import { SceneObjectUrlValues } from '@grafana/scenes';
import { parseFilterTooltip, parseTimeTooltip } from './DataTrailsHistory';
type ParseTimeTestCase = {
name: string;
input: SceneObjectUrlValues;
expected: string;
};
type ParseFilterTestCase = {
name: string;
input: { urlValues: SceneObjectUrlValues; filtersApplied: string[] };
expected: string;
expectedFiltersApplied: string[];
};
describe('DataTrailsHistory', () => {
// Due to daylight saving changes the expected time differs depends on when we run the tests.
// Until we find a better way to test, those will be skipped.
describe.skip('parseTimeTooltip', () => {
// global timezone is set to Pacific/Easter, see jest-config.js file
test.each<ParseTimeTestCase>([
{
name: 'from history',
input: { from: '2024-07-22T18:30:00.000Z', to: '2024-07-22T19:30:00.000Z' },
expected: '2024-07-22 13:30:00 - 2024-07-22 14:30:00',
},
{
name: 'time change event with timezone',
input: { from: '2024-07-22T18:30:00.000Z', to: '2024-07-22T19:30:00.000Z', timeZone: 'Europe/Berlin' },
expected: '2024-07-22 20:30:00 - 2024-07-22 21:30:00',
},
])('$name', ({ input, expected }) => {
const result = parseTimeTooltip(input);
expect(result).toEqual(expected);
});
});
describe('parseFilterTooltip', () => {
test.each<ParseFilterTestCase>([
{
name: 'from history initial load',
input: {
urlValues: { 'var-filters': ['job|=|grafana'] },
filtersApplied: [],
},
expected: 'job = grafana',
expectedFiltersApplied: ['job|=|grafana'],
},
{
name: 'from history initial load',
input: {
urlValues: { 'var-filters': ['job|=|grafana', 'instance|=|host.docker.internal:3000'] },
filtersApplied: ['job|=|grafana'],
},
expected: 'instance = host.docker.internal:3000',
expectedFiltersApplied: ['job|=|grafana', 'instance|=|host.docker.internal:3000'],
},
])('$name', ({ input, expected, expectedFiltersApplied }) => {
const filtersApplied = input.filtersApplied;
const result = parseFilterTooltip(input.urlValues, filtersApplied);
expect(result).toBe(expected);
expect(filtersApplied).toEqual(expectedFiltersApplied);
});
});
});