mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
56 lines
2.1 KiB
TypeScript
56 lines
2.1 KiB
TypeScript
import { Routes, Route } from 'react-router-dom-v5-compat';
|
|
import { render } from 'test/test-utils';
|
|
import { byRole, byTestId, byText } from 'testing-library-selector';
|
|
|
|
import { selectors } from '@grafana/e2e-selectors';
|
|
import { AppNotificationList } from 'app/core/components/AppNotifications/AppNotificationList';
|
|
import RuleEditor from 'app/features/alerting/unified/RuleEditor';
|
|
|
|
export const ui = {
|
|
loadingIndicator: byText('Loading rule...'),
|
|
inputs: {
|
|
name: byRole('textbox', { name: 'name' }),
|
|
alertType: byTestId('alert-type-picker'),
|
|
dataSource: byTestId(selectors.components.DataSourcePicker.inputV2),
|
|
folder: byTestId('folder-picker'),
|
|
folderContainer: byTestId(selectors.components.FolderPicker.containerV2),
|
|
namespace: byTestId('namespace-picker'),
|
|
group: byTestId('group-picker'),
|
|
annotationKey: (idx: number) => byTestId(`annotation-key-${idx}`),
|
|
annotationValue: (idx: number) => byTestId(`annotation-value-${idx}`),
|
|
labelKey: (idx: number) => byTestId(`label-key-${idx}`),
|
|
labelValue: (idx: number) => byTestId(`label-value-${idx}`),
|
|
expr: byTestId('expr'),
|
|
simplifiedRouting: {
|
|
contactPointRouting: byRole('radio', { name: /select contact point/i }),
|
|
contactPoint: byTestId('contact-point-picker'),
|
|
routingOptions: byText(/muting, grouping and timings \(optional\)/i),
|
|
},
|
|
},
|
|
buttons: {
|
|
saveAndExit: byRole('button', { name: 'Save rule and exit' }),
|
|
save: byRole('button', { name: 'Save rule' }),
|
|
addAnnotation: byRole('button', { name: /Add info/ }),
|
|
addLabel: byRole('button', { name: /Add label/ }),
|
|
},
|
|
};
|
|
|
|
export function renderRuleEditor(identifier?: string, recording = false) {
|
|
return render(
|
|
<>
|
|
<AppNotificationList />
|
|
<Routes>
|
|
<Route path={'/alerting/new/:type'} element={<RuleEditor />} />
|
|
<Route path={'/alerting/:id/edit'} element={<RuleEditor />} />
|
|
</Routes>
|
|
</>,
|
|
{
|
|
historyOptions: {
|
|
initialEntries: [
|
|
identifier ? `/alerting/${identifier}/edit` : `/alerting/new/${recording ? 'recording' : 'alerting'}`,
|
|
],
|
|
},
|
|
}
|
|
);
|
|
}
|