123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- import {initializeOrg} from 'sentry-test/initializeOrg';
- import {render, screen, waitForElementToBeRemoved} from 'sentry-test/reactTestingLibrary';
- import GroupingStore from 'sentry/stores/groupingStore';
- import {GroupMergedView} from 'sentry/views/issueDetails/groupMerged';
- jest.mock('sentry/api');
- describe('Issues -> Merged View', function () {
- const events = TestStubs.DetailedEvents();
- const mockData = {
- merged: [
- {
- latestEvent: events[0],
- state: 'unlocked',
- id: '2c4887696f708c476a81ce4e834c4b02',
- },
- {
- latestEvent: events[1],
- state: 'unlocked',
- id: 'e05da55328a860b21f62e371f0a7507d',
- },
- ],
- };
- beforeAll(function () {
- MockApiClient.addMockResponse({
- url: '/issues/groupId/hashes/?limit=50&query=',
- body: mockData.merged,
- });
- });
- beforeEach(() => {
- GroupingStore.init();
- });
- it('renders initially with loading component', function () {
- const {organization, project, router, routerContext} = initializeOrg({
- ...initializeOrg(),
- project: {
- ...initializeOrg().project,
- slug: 'projectId',
- },
- router: {
- ...initializeOrg().router,
- location: {
- query: {},
- },
- },
- });
- render(
- <GroupMergedView
- organization={organization}
- project={project}
- params={{orgId: 'orgId', groupId: 'groupId'}}
- location={router.location}
- routeParams={{}}
- route={{}}
- routes={router.routes}
- router={router}
- />,
- {context: routerContext}
- );
- expect(screen.getByTestId('loading-indicator')).toBeInTheDocument();
- });
- it('renders with mocked data', async function () {
- const {organization, project, router, routerContext} = initializeOrg({
- ...initializeOrg(),
- project: {
- ...initializeOrg().project,
- slug: 'projectId',
- },
- router: {
- ...initializeOrg().router,
- location: {
- query: {},
- },
- },
- });
- const {container} = render(
- <GroupMergedView
- organization={organization}
- project={project}
- params={{orgId: 'orgId', groupId: 'groupId'}}
- location={router.location}
- routeParams={{}}
- route={{}}
- routes={router.routes}
- router={router}
- />,
- {context: routerContext}
- );
- await waitForElementToBeRemoved(() => screen.getByTestId('loading-indicator'));
- expect(container).toSnapshot();
- });
- });
|