123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- import {EventsStats} from 'sentry-fixture/events';
- import {initializeOrg} from 'sentry-test/initializeOrg';
- import {render} from 'sentry-test/reactTestingLibrary';
- import EventView from 'sentry/utils/discover/eventView';
- import MetricRulesCreate from 'sentry/views/alerts/rules/metric/create';
- describe('Incident Rules Create', function () {
- let eventStatsMock;
- beforeEach(function () {
- MockApiClient.clearMockResponses();
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/tags/',
- body: [],
- });
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/users/',
- body: [],
- });
- MockApiClient.addMockResponse({
- url: '/projects/org-slug/project-slug/environments/',
- body: [],
- });
- eventStatsMock = MockApiClient.addMockResponse({
- url: '/organizations/org-slug/events-stats/',
- body: EventsStats(),
- });
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/alert-rules/available-actions/',
- body: [
- {
- allowedTargetTypes: ['user', 'team'],
- integrationName: null,
- type: 'email',
- integrationId: null,
- },
- ],
- });
- });
- it('renders', function () {
- const {organization, project} = initializeOrg();
- MockApiClient.addMockResponse({
- url: `/organizations/${organization.slug}/events-meta/`,
- body: {count: 0},
- });
- render(
- <MetricRulesCreate
- {...TestStubs.routeComponentProps()}
- eventView={EventView.fromLocation(TestStubs.location())}
- params={{projectId: project.slug}}
- organization={organization}
- project={project}
- userTeamIds={[]}
- />
- );
- expect(eventStatsMock).toHaveBeenCalledWith(
- expect.anything(),
- expect.objectContaining({
- query: {
- interval: '60m',
- project: [2],
- query: 'event.type:error',
- statsPeriod: '9999m',
- yAxis: 'count()',
- referrer: 'api.organization-event-stats',
- },
- })
- );
- });
- });
|