1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- import {Event as EventFixture} from 'sentry-fixture/event';
- import {render} from 'sentry-test/reactTestingLibrary';
- import {RouteContext} from 'sentry/views/routeContext';
- import SharedGroupDetails from 'sentry/views/sharedGroupDetails';
- describe('SharedGroupDetails', function () {
- const eventEntry = TestStubs.EventEntry();
- const exception = TestStubs.EventStacktraceException().entries[0];
- const params = {shareId: 'a'};
- const router = TestStubs.router({params});
- beforeEach(function () {
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/shared/issues/a/',
- body: TestStubs.Group({
- title: 'ZeroDivisionError',
- latestEvent: EventFixture({
- entries: [eventEntry, exception],
- }),
- project: TestStubs.Project({organization: {slug: 'test-org'}}),
- }),
- });
- MockApiClient.addMockResponse({
- url: '/shared/issues/a/',
- body: TestStubs.Group({
- title: 'ZeroDivisionError',
- latestEvent: EventFixture({
- entries: [eventEntry, exception],
- }),
- project: TestStubs.Project({organization: {slug: 'test-org'}}),
- }),
- });
- });
- afterEach(function () {
- MockApiClient.clearMockResponses();
- });
- it('renders', function () {
- render(
- <RouteContext.Provider value={{router, ...router}}>
- <SharedGroupDetails
- params={params}
- api={new MockApiClient()}
- route={{}}
- router={router}
- routes={router.routes}
- routeParams={router.params}
- location={router.location}
- />
- </RouteContext.Provider>
- );
- });
- it('renders with org slug in path', function () {
- const params_with_slug = {shareId: 'a', orgId: 'test-org'};
- const router_with_slug = TestStubs.router({params_with_slug});
- render(
- <RouteContext.Provider value={{router, ...router}}>
- <SharedGroupDetails
- params={params}
- api={new MockApiClient()}
- route={{}}
- router={router_with_slug}
- routes={router_with_slug.routes}
- routeParams={router_with_slug.params}
- location={router_with_slug.location}
- />
- </RouteContext.Provider>
- );
- });
- });
|