mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
* Prometheus: Run Explore both queries trough backend * Refactor, simplify * Set default values for query type selector * Run multiple queries as one query trough backend * Remove trailing newlines * Pass utcOffset * Remove trailing comma * WIP: Implementatioon of exemplars * add sampling for exemplars * Refactor to use response as custom metadata * Simplify processing of exemplars * Update, clean up * Refactor the way how we get available exemplars * Simplify exemplars disabling and running on frontend * Add tests * Update toggle * Remove console log * Fix go linting * Fix e2e test * Trigger Build * Compare lengts, small fix * Remove duplicated time check * Address feedback * Remove redundant ! as not needed * Update
63 lines
2.1 KiB
TypeScript
63 lines
2.1 KiB
TypeScript
import React from 'react';
|
|
import { render, RenderResult } from '@testing-library/react';
|
|
import { PromQueryEditorByApp } from './PromQueryEditorByApp';
|
|
import { CoreApp } from '@grafana/data';
|
|
import { noop } from 'lodash';
|
|
import { PrometheusDatasource } from '../datasource';
|
|
import { testIds as alertingTestIds } from './PromQueryEditorForAlerting';
|
|
import { testIds as regularTestIds } from './PromQueryEditor';
|
|
|
|
function setup(app: CoreApp): RenderResult {
|
|
const dataSource = ({
|
|
createQuery: jest.fn((q) => q),
|
|
getInitHints: () => [],
|
|
getPrometheusTime: jest.fn((date, roundup) => 123),
|
|
languageProvider: {
|
|
start: () => Promise.resolve([]),
|
|
syntax: () => {},
|
|
getLabelKeys: () => [],
|
|
metrics: [],
|
|
},
|
|
} as unknown) as PrometheusDatasource;
|
|
|
|
return render(
|
|
<PromQueryEditorByApp
|
|
app={app}
|
|
onChange={noop}
|
|
onRunQuery={noop}
|
|
datasource={dataSource}
|
|
query={{ refId: 'A', expr: '' }}
|
|
/>
|
|
);
|
|
}
|
|
|
|
describe('PromQueryEditorByApp', () => {
|
|
it('should render simplified query editor for cloud alerting', () => {
|
|
const { getByTestId, queryByTestId } = setup(CoreApp.CloudAlerting);
|
|
|
|
expect(getByTestId(alertingTestIds.editor)).toBeInTheDocument();
|
|
expect(queryByTestId(regularTestIds.editor)).toBeNull();
|
|
});
|
|
|
|
it('should render regular query editor for unkown apps', () => {
|
|
const { getByTestId, queryByTestId } = setup(CoreApp.Unknown);
|
|
|
|
expect(getByTestId(regularTestIds.editor)).toBeInTheDocument();
|
|
expect(queryByTestId(alertingTestIds.editor)).toBeNull();
|
|
});
|
|
|
|
it('should render regular query editor for explore', () => {
|
|
const { getByTestId, queryByTestId } = setup(CoreApp.Explore);
|
|
|
|
expect(getByTestId(regularTestIds.editor)).toBeInTheDocument();
|
|
expect(queryByTestId(alertingTestIds.editor)).toBeNull();
|
|
});
|
|
|
|
it('should render regular query editor for dashboard', () => {
|
|
const { getByTestId, queryByTestId } = setup(CoreApp.Dashboard);
|
|
|
|
expect(getByTestId(regularTestIds.editor)).toBeInTheDocument();
|
|
expect(queryByTestId(alertingTestIds.editor)).toBeNull();
|
|
});
|
|
});
|