12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- import {DetailedEventsFixture} from 'sentry-fixture/events';
- import {GroupFixture} from 'sentry-fixture/group';
- import {initializeOrg} from 'sentry-test/initializeOrg';
- import {act, render, screen} from 'sentry-test/reactTestingLibrary';
- import GroupingStore from 'sentry/stores/groupingStore';
- import GroupMergedView from 'sentry/views/issueDetails/groupMerged';
- describe('Issues -> Merged View', function () {
- const events = DetailedEventsFixture();
- const group = GroupFixture();
- const mockData = {
- merged: [
- {
- latestEvent: events[0],
- state: 'unlocked',
- id: '2c4887696f708c476a81ce4e834c4b02',
- },
- {
- latestEvent: events[1],
- state: 'unlocked',
- id: 'e05da55328a860b21f62e371f0a7507d',
- },
- ],
- };
- beforeEach(function () {
- GroupingStore.init();
- MockApiClient.clearMockResponses();
- MockApiClient.addMockResponse({
- url: `/organizations/org-slug/issues/${group.id}/hashes/?limit=50&query=`,
- body: mockData.merged,
- });
- });
- it('renders initially with loading component', async function () {
- const {organization, project, router} = initializeOrg({
- router: {
- params: {groupId: 'groupId'},
- },
- });
- render(
- <GroupMergedView
- organization={organization}
- project={project}
- groupId={group.id}
- location={router.location}
- />,
- {router, organization}
- );
- expect(screen.getByTestId('loading-indicator')).toBeInTheDocument();
- await act(tick);
- });
- it('renders with mocked data', async function () {
- const {organization, project, router} = initializeOrg({
- router: {
- params: {groupId: 'groupId'},
- },
- });
- render(
- <GroupMergedView
- organization={organization}
- project={project}
- groupId={group.id}
- location={router.location}
- />,
- {router, organization}
- );
- expect(await screen.findByText(mockData.merged[0].id)).toBeInTheDocument();
- const title = await screen.findByText('Fingerprints included in this issue');
- expect(title.parentElement).toHaveTextContent(
- 'Fingerprints included in this issue (2)'
- );
- });
- });
|