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/alerting/unified/components/panel-alerts-tab/NewRuleFromPanelButton.test...

50 lines
1.4 KiB

import { render, screen } from '@testing-library/react';
import userEvent from '@testing-library/user-event';
import React from 'react';
import { PanelModel } from 'app/features/dashboard/state';
import { createDashboardModelFixture } from 'app/features/dashboard/state/__fixtures__/dashboardFixtures';
import * as analytics from '../../Analytics';
import { NewRuleFromPanelButton } from './NewRuleFromPanelButton';
jest.mock('app/types', () => {
const original = jest.requireActual('app/types');
return {
...original,
useSelector: jest.fn(),
};
});
jest.mock('react-router-dom', () => ({
useLocation: () => ({
pathname: 'localhost:3000/example/path',
}),
}));
jest.spyOn(analytics, 'logInfo');
jest.mock('react-use', () => ({
useAsync: () => ({ loading: false, value: {} }),
}));
describe('Analytics', () => {
it('Sends log info when creating an alert rule from a panel', async () => {
const panel = new PanelModel({
id: 123,
});
const dashboard = createDashboardModelFixture({
id: 1,
});
render(<NewRuleFromPanelButton panel={panel} dashboard={dashboard} />);
const button = screen.getByText('Create alert rule from this panel');
button.addEventListener('click', (event) => event.preventDefault(), false);
await userEvent.click(button);
expect(analytics.logInfo).toHaveBeenCalledWith(analytics.LogMessages.alertRuleFromPanel);
});
});