123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- import {browserHistory} from 'react-router';
- import {initializeOrg} from 'sentry-test/initializeOrg';
- import {render, screen, userEvent} from 'sentry-test/reactTestingLibrary';
- import {GroupEvents} from 'sentry/views/organizationGroupDetails/groupEvents';
- describe('groupEvents', function () {
- let request;
- const {organization, routerContext} = initializeOrg();
- beforeEach(function () {
- request = MockApiClient.addMockResponse({
- url: '/issues/1/events/',
- body: [
- TestStubs.Event({
- eventID: '12345',
- id: '1',
- message: 'ApiException',
- groupID: '1',
- }),
- TestStubs.Event({
- crashFile: {
- sha1: 'sha1',
- name: 'name.dmp',
- dateCreated: '2019-05-21T18:01:48.762Z',
- headers: {'Content-Type': 'application/octet-stream'},
- id: '12345',
- size: 123456,
- type: 'event.minidump',
- },
- culprit: '',
- dateCreated: '2019-05-21T18:00:23Z',
- 'event.type': 'error',
- eventID: '123456',
- groupID: '1',
- id: '98654',
- location: 'main.js',
- message: 'TestException',
- platform: 'native',
- projectID: '123',
- tags: [{value: 'production', key: 'production'}],
- title: 'TestException',
- }),
- ],
- });
- browserHistory.push = jest.fn();
- });
- afterEach(() => {
- MockApiClient.clearMockResponses();
- jest.clearAllMocks();
- });
- it('renders', function () {
- const wrapper = render(
- <GroupEvents
- organization={organization}
- api={new MockApiClient()}
- group={TestStubs.Group()}
- params={{orgId: 'orgId', projectId: 'projectId', groupId: '1'}}
- location={{query: {}}}
- />,
- {context: routerContext, organization}
- );
- expect(wrapper.container).toSnapshot();
- });
- it('handles search', function () {
- render(
- <GroupEvents
- organization={organization}
- api={new MockApiClient()}
- params={{orgId: 'orgId', projectId: 'projectId', groupId: '1'}}
- group={TestStubs.Group()}
- location={{query: {}}}
- />,
- {context: routerContext, organization}
- );
- const list = [
- {searchTerm: '', expectedQuery: ''},
- {searchTerm: 'test', expectedQuery: 'test'},
- {searchTerm: 'environment:production test', expectedQuery: 'test'},
- ];
- const input = screen.getByPlaceholderText('Search events by id, message, or tags');
- for (const item of list) {
- userEvent.clear(input);
- userEvent.type(input, `${item.searchTerm}{enter}`);
- expect(browserHistory.push).toHaveBeenCalledWith(
- expect.objectContaining({
- query: {query: item.expectedQuery},
- })
- );
- }
- });
- it('handles environment filtering', function () {
- render(
- <GroupEvents
- organization={organization}
- api={new MockApiClient()}
- params={{orgId: 'orgId', projectId: 'projectId', groupId: '1'}}
- group={TestStubs.Group()}
- location={{query: {environment: ['prod', 'staging']}}}
- />,
- {context: routerContext, organization}
- );
- expect(request).toHaveBeenCalledWith(
- '/issues/1/events/',
- expect.objectContaining({
- query: {limit: 50, query: '', environment: ['prod', 'staging']},
- })
- );
- });
- });
|