123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224 |
- import {render, screen, userEvent, waitFor} from 'sentry-test/reactTestingLibrary';
- import ConfigStore from 'sentry/stores/configStore';
- import ModalStore from 'sentry/stores/modalStore';
- import {IssueCategory} from 'sentry/types';
- import GroupActions from 'sentry/views/organizationGroupDetails/actions';
- const group = TestStubs.Group({
- id: '1337',
- pluginActions: [],
- pluginIssues: [],
- issueCategory: IssueCategory.ERROR,
- });
- const project = TestStubs.ProjectDetails({
- id: '2448',
- name: 'project name',
- slug: 'project',
- });
- const organization = TestStubs.Organization({
- id: '4660',
- slug: 'org',
- features: ['reprocessing-v2'],
- });
- describe('GroupActions', function () {
- beforeEach(function () {
- ConfigStore.init();
- jest.spyOn(ConfigStore, 'get').mockImplementation(() => []);
- });
- describe('render()', function () {
- it('renders correctly', function () {
- const wrapper = render(
- <GroupActions
- group={group}
- project={project}
- organization={organization}
- disabled={false}
- />
- );
- expect(wrapper.container).toSnapshot();
- });
- });
- describe('subscribing', function () {
- let issuesApi: any;
- beforeEach(function () {
- issuesApi = MockApiClient.addMockResponse({
- url: '/projects/org/project/issues/',
- method: 'PUT',
- body: TestStubs.Group({isSubscribed: false}),
- });
- });
- it('can subscribe', function () {
- render(
- <GroupActions
- group={group}
- project={project}
- organization={organization}
- disabled={false}
- />
- );
- userEvent.click(screen.getByRole('button', {name: 'Subscribe'}));
- expect(issuesApi).toHaveBeenCalledWith(
- expect.anything(),
- expect.objectContaining({
- data: {isSubscribed: true},
- })
- );
- });
- });
- describe('bookmarking', function () {
- let issuesApi: any;
- beforeEach(function () {
- issuesApi = MockApiClient.addMockResponse({
- url: '/projects/org/project/issues/',
- method: 'PUT',
- body: TestStubs.Group({isBookmarked: false}),
- });
- });
- it('can bookmark', async function () {
- render(
- <GroupActions
- group={group}
- project={project}
- organization={organization}
- disabled={false}
- />
- );
- userEvent.click(screen.getByLabelText('More Actions'));
- const bookmark = await screen.findByTestId('bookmark');
- userEvent.click(bookmark);
- expect(issuesApi).toHaveBeenCalledWith(
- expect.anything(),
- expect.objectContaining({
- data: {isBookmarked: true},
- })
- );
- });
- });
- describe('reprocessing', function () {
- it('renders ReprocessAction component if org has feature flag reprocessing-v2 and native exception event', async function () {
- const event = TestStubs.EventStacktraceException({
- platform: 'native',
- });
- render(
- <GroupActions
- group={group}
- project={project}
- organization={organization}
- event={event}
- disabled={false}
- />
- );
- userEvent.click(screen.getByLabelText('More Actions'));
- const reprocessActionButton = await screen.findByTestId('reprocess');
- expect(reprocessActionButton).toBeInTheDocument();
- });
- it('open dialog by clicking on the ReprocessAction component', async function () {
- const event = TestStubs.EventStacktraceException({
- platform: 'native',
- });
- render(
- <GroupActions
- group={group}
- project={project}
- organization={organization}
- event={event}
- disabled={false}
- />
- );
- const onReprocessEventFunc = jest.spyOn(ModalStore, 'openModal');
- userEvent.click(screen.getByLabelText('More Actions'));
- const reprocessActionButton = await screen.findByTestId('reprocess');
- expect(reprocessActionButton).toBeInTheDocument();
- userEvent.click(reprocessActionButton);
- await waitFor(() => expect(onReprocessEventFunc).toHaveBeenCalled());
- });
- });
- describe('issue-actions-v2', () => {
- const org = {...organization, features: ['issue-actions-v2', 'shared-issues']};
- it('opens share modal from more actions dropdown', async () => {
- render(
- <GroupActions
- group={group}
- project={project}
- organization={org}
- disabled={false}
- />,
- {organization: org}
- );
- userEvent.click(screen.getByLabelText('More Actions'));
- const openModal = jest.spyOn(ModalStore, 'openModal');
- userEvent.click(await screen.findByText('Share'));
- await waitFor(() => expect(openModal).toHaveBeenCalled());
- });
- it('resolves and unresolves issue', () => {
- const issuesApi = MockApiClient.addMockResponse({
- url: `/projects/${org.slug}/project/issues/`,
- method: 'PUT',
- body: {...group, status: 'resolved'},
- });
- const {rerender} = render(
- <GroupActions
- group={group}
- project={project}
- organization={org}
- disabled={false}
- />,
- {organization: org}
- );
- userEvent.click(screen.getByRole('button', {name: 'Resolve'}));
- expect(issuesApi).toHaveBeenCalledWith(
- `/projects/${org.slug}/project/issues/`,
- expect.objectContaining({data: {status: 'resolved', statusDetails: {}}})
- );
- rerender(
- <GroupActions
- group={{...group, status: 'resolved'}}
- project={project}
- organization={org}
- disabled={false}
- />
- );
- const resolvedButton = screen.getByRole('button', {name: 'Resolved'});
- expect(resolvedButton).toBeInTheDocument();
- userEvent.click(resolvedButton);
- expect(issuesApi).toHaveBeenCalledWith(
- `/projects/${org.slug}/project/issues/`,
- expect.objectContaining({data: {status: 'unresolved', statusDetails: {}}})
- );
- });
- });
- });
|