mirror of
https://github.com/grafana/grafana.git
synced 2025-01-06 22:23:19 -06:00
718401d250
* Add smart type selection when creating a new alert rule * Auto switch when switch button has not been clicked yet * remove unnecessay code after the last refacgtor * Refactor * Remove unneeded prop * Move SmartAlertTypeDetector to its own file * Fix tests * Refactor: new useSetExpressionAndDataSource hook * Fix expressions not been propagated when switching from one type to another * Change texts * Update tests * Update text in switch button * Update texts and tests * Refactor: move code to getCanSwitch new method * Move smart alert after queries and remove auto-switch * Remove expressions and restore them when switching between grafana and cloud type * Rename previous expression state * Fix tests * Add data source name for data source-managed alert selection * Update reducer when changing cloud data source * PR review suggestions * PR review suggestions 2nd part * PR review suggestions 3th part * Fix canSwitch * Update texts on smart alert --------- Co-authored-by: Virginia Cepeda <virginia.cepeda@grafana.com>
47 lines
1.7 KiB
TypeScript
47 lines
1.7 KiB
TypeScript
import { render } from '@testing-library/react';
|
|
import React from 'react';
|
|
import { Route } from 'react-router-dom';
|
|
import { byRole, byTestId } from 'testing-library-selector';
|
|
|
|
import { selectors } from '@grafana/e2e-selectors';
|
|
import { locationService } from '@grafana/runtime';
|
|
import RuleEditor from 'app/features/alerting/unified/RuleEditor';
|
|
|
|
import { TestProvider } from './TestProvider';
|
|
|
|
export const ui = {
|
|
inputs: {
|
|
name: byRole('textbox', { name: /rule name name for the alert rule\./i }),
|
|
alertType: byTestId('alert-type-picker'),
|
|
dataSource: byTestId('datasource-picker'),
|
|
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'),
|
|
},
|
|
buttons: {
|
|
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) {
|
|
if (identifier) {
|
|
locationService.push(`/alerting/${identifier}/edit`);
|
|
} else {
|
|
locationService.push(`/alerting/new/${recording ? 'recording' : 'alerting'}`);
|
|
}
|
|
|
|
return render(
|
|
<TestProvider>
|
|
<Route path={['/alerting/new/:type', '/alerting/:id/edit']} component={RuleEditor} />
|
|
</TestProvider>
|
|
);
|
|
}
|