12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- import {ActivityFeedFixture} from 'sentry-fixture/activityFeed';
- import {initializeOrg} from 'sentry-test/initializeOrg';
- import {render, screen} from 'sentry-test/reactTestingLibrary';
- import {GroupActivityType} from 'sentry/types';
- import OrganizationActivity from 'sentry/views/organizationActivity';
- describe('OrganizationActivity', function () {
- const {router, organization, routerContext} = initializeOrg();
- let params = {};
- beforeEach(function () {
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/activity/',
- body: [
- ActivityFeedFixture(),
- ActivityFeedFixture({
- id: '49',
- data: {},
- type: GroupActivityType.SET_PUBLIC,
- }),
- ],
- });
- params = {
- ...router,
- params: {
- orgId: organization.slug,
- },
- };
- });
- it('renders', async function () {
- render(<OrganizationActivity {...params} />, {context: routerContext});
- expect(await screen.findAllByTestId('activity-feed-item')).toHaveLength(2);
- });
- it('renders empty', async function () {
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/activity/',
- body: [],
- });
- render(<OrganizationActivity {...params} />, {context: routerContext});
- expect(screen.queryByTestId('activity-feed-item')).not.toBeInTheDocument();
- expect(await screen.findByTestId('empty-state')).toBeInTheDocument();
- });
- it('renders not found', async function () {
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/activity/',
- body: [],
- statusCode: 404,
- });
- render(<OrganizationActivity {...params} />, {context: routerContext});
- expect(screen.queryByTestId('activity-feed-item')).not.toBeInTheDocument();
- expect(await screen.findByTestId('empty-state')).toBeInTheDocument();
- });
- });
|