import React from 'react';
import { DataQueryRequest, serializeStateToUrlParam } from '@grafana/data';
import { getTemplateSrv } from '@grafana/runtime';
import { LokiQuery } from '../../../plugins/datasource/loki/types';
import { makeLogsQueryResponse } from './helper/query';
import { setupExplore, waitForExplore } from './helper/setup';
const fetch = jest.fn();
jest.mock('@grafana/runtime', () => ({
...jest.requireActual('@grafana/runtime'),
getBackendSrv: () => ({ fetch }),
}));
jest.mock('react-virtualized-auto-sizer', () => {
return {
__esModule: true,
default(props: any) {
return
{props.children({ width: 1000 })}
;
},
};
});
describe('Explore: interpolation', () => {
// support-escalations/issues/1459
it('Time is interpolated when explore is opened with a URL', async () => {
const urlParams = {
left: serializeStateToUrlParam({
datasource: 'loki',
queries: [{ refId: 'A', expr: '{ job="a", from="${__from}", to="${__to}" }' }],
range: { from: '1600000000000', to: '1700000000000' },
}),
right: serializeStateToUrlParam({
datasource: 'loki',
queries: [{ refId: 'b', expr: '{ job="b", from="${__from}", to="${__to}" }' }],
range: { from: '1800000000000', to: '1900000000000' },
}),
};
const { datasources } = setupExplore({ urlParams });
const fakeFetch = jest.fn();
(datasources.loki.query as jest.Mock).mockImplementation((request: DataQueryRequest) => {
fakeFetch(getTemplateSrv().replace(request.targets[0]!.expr));
return makeLogsQueryResponse();
});
await waitForExplore();
expect(fakeFetch).toBeCalledTimes(2);
expect(fakeFetch).toHaveBeenCalledWith('{ job="a", from="1600000000000", to="1700000000000" }');
expect(fakeFetch).toHaveBeenCalledWith('{ job="b", from="1800000000000", to="1900000000000" }');
});
});