mirror of
https://github.com/grafana/grafana.git
synced 2025-02-13 09:05:45 -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
174 lines
5.8 KiB
TypeScript
174 lines
5.8 KiB
TypeScript
import { render, waitFor } from '@testing-library/react';
|
|
import userEvent from '@testing-library/user-event';
|
|
import React from 'react';
|
|
import { Provider } from 'react-redux';
|
|
import { Router } from 'react-router-dom';
|
|
import { byRole, byTestId, byText } from 'testing-library-selector';
|
|
|
|
import { locationService, setDataSourceSrv } from '@grafana/runtime';
|
|
import { configureStore } from 'app/store/configureStore';
|
|
|
|
import AlertGroups from './AlertGroups';
|
|
import { fetchAlertGroups } from './api/alertmanager';
|
|
import { mockAlertGroup, mockAlertmanagerAlert, mockDataSource, MockDataSourceSrv } from './mocks';
|
|
import { DataSourceType } from './utils/datasource';
|
|
|
|
jest.mock('./api/alertmanager');
|
|
jest.mock('app/core/services/context_srv', () => ({
|
|
contextSrv: {
|
|
isEditor: true,
|
|
hasAccess: () => true,
|
|
hasPermission: () => true,
|
|
},
|
|
}));
|
|
const mocks = {
|
|
api: {
|
|
fetchAlertGroups: jest.mocked(fetchAlertGroups),
|
|
},
|
|
};
|
|
|
|
const renderAmNotifications = () => {
|
|
const store = configureStore();
|
|
|
|
return render(
|
|
<Provider store={store}>
|
|
<Router history={locationService.getHistory()}>
|
|
<AlertGroups />
|
|
</Router>
|
|
</Provider>
|
|
);
|
|
};
|
|
|
|
const dataSources = {
|
|
am: mockDataSource({
|
|
name: 'Alertmanager',
|
|
type: DataSourceType.Alertmanager,
|
|
}),
|
|
};
|
|
|
|
const ui = {
|
|
group: byTestId('alert-group'),
|
|
groupCollapseToggle: byTestId('alert-group-collapse-toggle'),
|
|
groupTable: byTestId('alert-group-table'),
|
|
row: byTestId('row'),
|
|
collapseToggle: byTestId('collapse-toggle'),
|
|
silenceButton: byText('Silence'),
|
|
sourceButton: byText('See source'),
|
|
matcherInput: byTestId('search-query-input'),
|
|
groupByContainer: byTestId('group-by-container'),
|
|
groupByInput: byRole('combobox', { name: /group by label keys/i }),
|
|
clearButton: byRole('button', { name: 'Clear filters' }),
|
|
};
|
|
|
|
describe('AlertGroups', () => {
|
|
beforeAll(() => {
|
|
mocks.api.fetchAlertGroups.mockImplementation(() => {
|
|
return Promise.resolve([
|
|
mockAlertGroup({ labels: {}, alerts: [mockAlertmanagerAlert({ labels: { foo: 'bar' } })] }),
|
|
mockAlertGroup(),
|
|
]);
|
|
});
|
|
});
|
|
|
|
beforeEach(() => {
|
|
setDataSourceSrv(new MockDataSourceSrv(dataSources));
|
|
});
|
|
|
|
it('loads and shows groups', async () => {
|
|
renderAmNotifications();
|
|
|
|
await waitFor(() => expect(mocks.api.fetchAlertGroups).toHaveBeenCalled());
|
|
|
|
const groups = ui.group.getAll();
|
|
|
|
expect(groups).toHaveLength(2);
|
|
expect(groups[0]).toHaveTextContent('No grouping');
|
|
expect(groups[1]).toHaveTextContent('severity=warningregion=US-Central');
|
|
|
|
await userEvent.click(ui.groupCollapseToggle.get(groups[0]));
|
|
expect(ui.groupTable.get()).toBeDefined();
|
|
|
|
await userEvent.click(ui.collapseToggle.get(ui.groupTable.get()));
|
|
expect(ui.silenceButton.get(ui.groupTable.get())).toBeDefined();
|
|
expect(ui.sourceButton.get(ui.groupTable.get())).toBeDefined();
|
|
});
|
|
|
|
it('should group by custom grouping', async () => {
|
|
const regions = ['NASA', 'EMEA', 'APAC'];
|
|
mocks.api.fetchAlertGroups.mockImplementation(() => {
|
|
const groups = regions.map((region) =>
|
|
mockAlertGroup({
|
|
labels: { region },
|
|
alerts: [
|
|
mockAlertmanagerAlert({ labels: { region, appName: 'billing', env: 'production' } }),
|
|
mockAlertmanagerAlert({ labels: { region, appName: 'auth', env: 'staging', uniqueLabel: 'true' } }),
|
|
mockAlertmanagerAlert({ labels: { region, appName: 'frontend', env: 'production' } }),
|
|
],
|
|
})
|
|
);
|
|
return Promise.resolve(groups);
|
|
});
|
|
|
|
renderAmNotifications();
|
|
await waitFor(() => expect(mocks.api.fetchAlertGroups).toHaveBeenCalled());
|
|
let groups = ui.group.getAll();
|
|
const groupByInput = ui.groupByInput.get();
|
|
const groupByWrapper = ui.groupByContainer.get();
|
|
|
|
expect(groups).toHaveLength(3);
|
|
expect(groups[0]).toHaveTextContent('region=NASA');
|
|
expect(groups[1]).toHaveTextContent('region=EMEA');
|
|
expect(groups[2]).toHaveTextContent('region=APAC');
|
|
|
|
await userEvent.type(groupByInput, 'appName{enter}');
|
|
|
|
await waitFor(() => expect(groupByWrapper).toHaveTextContent('appName'));
|
|
|
|
groups = ui.group.getAll();
|
|
|
|
await waitFor(() => expect(ui.clearButton.get()).toBeInTheDocument());
|
|
expect(groups).toHaveLength(3);
|
|
expect(groups[0]).toHaveTextContent('appName=billing');
|
|
expect(groups[1]).toHaveTextContent('appName=auth');
|
|
expect(groups[2]).toHaveTextContent('appName=frontend');
|
|
|
|
await userEvent.click(ui.clearButton.get());
|
|
await waitFor(() => expect(groupByWrapper).not.toHaveTextContent('appName'));
|
|
|
|
await userEvent.type(groupByInput, 'env{enter}');
|
|
await waitFor(() => expect(groupByWrapper).toHaveTextContent('env'));
|
|
|
|
groups = ui.group.getAll();
|
|
|
|
expect(groups).toHaveLength(2);
|
|
expect(groups[0]).toHaveTextContent('env=production');
|
|
expect(groups[1]).toHaveTextContent('env=staging');
|
|
|
|
await userEvent.click(ui.clearButton.get());
|
|
await waitFor(() => expect(groupByWrapper).not.toHaveTextContent('env'));
|
|
|
|
await userEvent.type(groupByInput, 'uniqueLabel{enter}');
|
|
await waitFor(() => expect(groupByWrapper).toHaveTextContent('uniqueLabel'));
|
|
|
|
groups = ui.group.getAll();
|
|
expect(groups).toHaveLength(2);
|
|
expect(groups[0]).toHaveTextContent('No grouping');
|
|
expect(groups[1]).toHaveTextContent('uniqueLabel=true');
|
|
});
|
|
|
|
it('should combine multiple ungrouped groups', async () => {
|
|
mocks.api.fetchAlertGroups.mockImplementation(() => {
|
|
const groups = [
|
|
mockAlertGroup({ labels: {} }),
|
|
mockAlertGroup({ labels: {}, alerts: [mockAlertmanagerAlert({ labels: { foo: 'bar' } })] }),
|
|
];
|
|
return Promise.resolve(groups);
|
|
});
|
|
renderAmNotifications();
|
|
await waitFor(() => expect(mocks.api.fetchAlertGroups).toHaveBeenCalled());
|
|
const groups = ui.group.getAll();
|
|
|
|
expect(groups).toHaveLength(1);
|
|
});
|
|
});
|