mirror of
https://github.com/grafana/grafana.git
synced 2025-02-14 17:43:35 -06:00
* Update dependency @testing-library/user-event to v13 * Changes needed for userEvent v13 * Ignore pointer-event checks until jsdom issue is fixed * Remove unused act imports Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: Ashley Harrison <ashley.harrison@grafana.com>
158 lines
5.5 KiB
TypeScript
158 lines
5.5 KiB
TypeScript
import React from 'react';
|
|
import { typeAsJestMock } from 'test/helpers/typeAsJestMock';
|
|
import { getAllDataSources } from './utils/config';
|
|
import {
|
|
fetchAlertManagerConfig,
|
|
deleteAlertManagerConfig,
|
|
updateAlertManagerConfig,
|
|
fetchStatus,
|
|
} from './api/alertmanager';
|
|
import { configureStore } from 'app/store/configureStore';
|
|
import { locationService, setDataSourceSrv } from '@grafana/runtime';
|
|
import Admin from './Admin';
|
|
import { Provider } from 'react-redux';
|
|
import { Router } from 'react-router-dom';
|
|
import { ALERTMANAGER_NAME_LOCAL_STORAGE_KEY, ALERTMANAGER_NAME_QUERY_KEY } from './utils/constants';
|
|
import { render, waitFor } from '@testing-library/react';
|
|
import { byLabelText, byRole, byTestId } from 'testing-library-selector';
|
|
import { mockDataSource, MockDataSourceSrv, someCloudAlertManagerConfig, someCloudAlertManagerStatus } from './mocks';
|
|
import { DataSourceType } from './utils/datasource';
|
|
import { contextSrv } from 'app/core/services/context_srv';
|
|
import store from 'app/core/store';
|
|
import userEvent from '@testing-library/user-event';
|
|
import {
|
|
AlertManagerCortexConfig,
|
|
AlertManagerDataSourceJsonData,
|
|
AlertManagerImplementation,
|
|
} from 'app/plugins/datasource/alertmanager/types';
|
|
|
|
jest.mock('./api/alertmanager');
|
|
jest.mock('./api/grafana');
|
|
jest.mock('./utils/config');
|
|
|
|
const mocks = {
|
|
getAllDataSources: typeAsJestMock(getAllDataSources),
|
|
|
|
api: {
|
|
fetchConfig: typeAsJestMock(fetchAlertManagerConfig),
|
|
deleteAlertManagerConfig: typeAsJestMock(deleteAlertManagerConfig),
|
|
updateAlertManagerConfig: typeAsJestMock(updateAlertManagerConfig),
|
|
fetchStatus: typeAsJestMock(fetchStatus),
|
|
},
|
|
};
|
|
|
|
const renderAdminPage = (alertManagerSourceName?: string) => {
|
|
const store = configureStore();
|
|
|
|
locationService.push(
|
|
'/alerting/notifications' +
|
|
(alertManagerSourceName ? `?${ALERTMANAGER_NAME_QUERY_KEY}=${alertManagerSourceName}` : '')
|
|
);
|
|
|
|
return render(
|
|
<Provider store={store}>
|
|
<Router history={locationService.getHistory()}>
|
|
<Admin />
|
|
</Router>
|
|
</Provider>
|
|
);
|
|
};
|
|
|
|
const dataSources = {
|
|
alertManager: mockDataSource({
|
|
name: 'CloudManager',
|
|
type: DataSourceType.Alertmanager,
|
|
}),
|
|
promAlertManager: mockDataSource<AlertManagerDataSourceJsonData>({
|
|
name: 'PromManager',
|
|
type: DataSourceType.Alertmanager,
|
|
jsonData: {
|
|
implementation: AlertManagerImplementation.prometheus,
|
|
},
|
|
}),
|
|
};
|
|
|
|
const ui = {
|
|
confirmButton: byRole('button', { name: /Confirm Modal Danger Button/ }),
|
|
resetButton: byRole('button', { name: /Reset configuration/ }),
|
|
saveButton: byRole('button', { name: /Save/ }),
|
|
configInput: byLabelText<HTMLTextAreaElement>(/Configuration/),
|
|
readOnlyConfig: byTestId('readonly-config'),
|
|
};
|
|
|
|
describe('Alerting Admin', () => {
|
|
beforeEach(() => {
|
|
jest.resetAllMocks();
|
|
mocks.getAllDataSources.mockReturnValue(Object.values(dataSources));
|
|
setDataSourceSrv(new MockDataSourceSrv(dataSources));
|
|
contextSrv.isGrafanaAdmin = true;
|
|
store.delete(ALERTMANAGER_NAME_LOCAL_STORAGE_KEY);
|
|
});
|
|
|
|
it('Reset alertmanager config', async () => {
|
|
mocks.api.fetchConfig.mockResolvedValue({
|
|
template_files: {
|
|
foo: 'bar',
|
|
},
|
|
alertmanager_config: {},
|
|
});
|
|
mocks.api.deleteAlertManagerConfig.mockResolvedValue();
|
|
|
|
await renderAdminPage(dataSources.alertManager.name);
|
|
|
|
userEvent.click(await ui.resetButton.find());
|
|
userEvent.click(ui.confirmButton.get());
|
|
await waitFor(() => expect(mocks.api.deleteAlertManagerConfig).toHaveBeenCalled());
|
|
expect(ui.confirmButton.query()).not.toBeInTheDocument();
|
|
});
|
|
|
|
it('Edit and save alertmanager config', async () => {
|
|
let savedConfig: AlertManagerCortexConfig | undefined = undefined;
|
|
|
|
const defaultConfig = {
|
|
template_files: {
|
|
foo: 'bar',
|
|
},
|
|
alertmanager_config: {},
|
|
};
|
|
|
|
const newConfig = {
|
|
template_files: {
|
|
bar: 'baz',
|
|
},
|
|
alertmanager_config: {},
|
|
};
|
|
|
|
mocks.api.fetchConfig.mockImplementation(() => Promise.resolve(savedConfig ?? defaultConfig));
|
|
mocks.api.updateAlertManagerConfig.mockResolvedValue();
|
|
await renderAdminPage(dataSources.alertManager.name);
|
|
const input = await ui.configInput.find();
|
|
expect(input.value).toEqual(JSON.stringify(defaultConfig, null, 2));
|
|
userEvent.clear(input);
|
|
// What is this regex replace doing? in userEvent v13, '{' and '[' are special characters.
|
|
// To get the literal character, you have to escape them by typing '{{' or '[['.
|
|
// See https://github.com/testing-library/user-event/issues/584.
|
|
userEvent.type(input, JSON.stringify(newConfig, null, 2).replace(/[{[]/g, '$&$&'));
|
|
userEvent.click(ui.saveButton.get());
|
|
await waitFor(() => expect(mocks.api.updateAlertManagerConfig).toHaveBeenCalled());
|
|
await waitFor(() => expect(mocks.api.fetchConfig).toHaveBeenCalledTimes(3));
|
|
expect(input.value).toEqual(JSON.stringify(newConfig, null, 2));
|
|
});
|
|
|
|
it('Read-only when using Prometheus Alertmanager', async () => {
|
|
mocks.api.fetchStatus.mockResolvedValue({
|
|
...someCloudAlertManagerStatus,
|
|
config: someCloudAlertManagerConfig.alertmanager_config,
|
|
});
|
|
await renderAdminPage(dataSources.promAlertManager.name);
|
|
|
|
await ui.readOnlyConfig.find();
|
|
expect(ui.configInput.query()).not.toBeInTheDocument();
|
|
expect(ui.resetButton.query()).not.toBeInTheDocument();
|
|
expect(ui.saveButton.query()).not.toBeInTheDocument();
|
|
|
|
expect(mocks.api.fetchConfig).not.toHaveBeenCalled();
|
|
expect(mocks.api.fetchStatus).toHaveBeenCalledTimes(1);
|
|
});
|
|
});
|