123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456 |
- import {initializeOrg} from 'sentry-test/initializeOrg';
- import {
- act,
- render,
- renderGlobalModal,
- screen,
- userEvent,
- waitFor,
- } from 'sentry-test/reactTestingLibrary';
- import PullRequestLink from 'sentry/components/pullRequestLink';
- import ConfigStore from 'sentry/stores/configStore';
- import GroupStore from 'sentry/stores/groupStore';
- import OrganizationStore from 'sentry/stores/organizationStore';
- import ProjectsStore from 'sentry/stores/projectsStore';
- import TeamStore from 'sentry/stores/teamStore';
- import {GroupActivityType} from 'sentry/types';
- import {GroupActivity} from 'sentry/views/issueDetails/groupActivity';
- describe('GroupActivity', function () {
- let project;
- const dateCreated = '2021-10-01T15:31:38.950115Z';
- beforeEach(function () {
- project = TestStubs.Project();
- ProjectsStore.loadInitialData([project]);
- ConfigStore.init();
- ConfigStore.set('user', {id: '123'});
- GroupStore.init();
- });
- afterEach(() => {
- MockApiClient.clearMockResponses();
- jest.clearAllMocks();
- });
- function createWrapper({activity, organization: additionalOrg} = {}) {
- const group = TestStubs.Group({
- id: '1337',
- activity: activity ?? [
- {type: 'note', id: 'note-1', data: {text: 'Test Note'}, user: TestStubs.User()},
- ],
- project,
- });
- const {organization, routerContext} = initializeOrg({
- organization: additionalOrg,
- group,
- });
- GroupStore.add([group]);
- TeamStore.loadInitialData([TestStubs.Team({id: '999', slug: 'no-team'})]);
- OrganizationStore.onUpdate(organization, {replace: true});
- return render(
- <GroupActivity
- api={new MockApiClient()}
- params={{orgId: 'org-slug'}}
- group={group}
- organization={organization}
- />,
- {context: routerContext}
- );
- }
- it('renders a NoteInput', function () {
- createWrapper();
- expect(screen.getByTestId('activity-note-body')).toBeInTheDocument();
- });
- it('renders a marked reviewed activity', function () {
- const user = TestStubs.User({name: 'Samwise'});
- createWrapper({
- activity: [{type: 'mark_reviewed', id: 'reviewed-1', data: {}, user}],
- });
- expect(screen.getByText('marked this issue as reviewed')).toBeInTheDocument();
- expect(screen.getByText(user.name)).toBeInTheDocument();
- });
- it('renders a pr activity', function () {
- const user = TestStubs.User({name: 'Test User'});
- const repository = TestStubs.Repository();
- const pullRequest = TestStubs.PullRequest({message: 'Fixes ISSUE-1'});
- createWrapper({
- activity: [
- {
- type: 'set_resolved_in_pull_request',
- id: 'pr-1',
- data: {
- pullRequest: {
- author: 'Test User',
- version: (
- <PullRequestLink
- inline
- pullRequest={pullRequest}
- repository={pullRequest.repository}
- />
- ),
- repository: {repository},
- },
- },
- user,
- },
- ],
- });
- expect(screen.getAllByTestId('activity-item').at(-1)).toHaveTextContent(
- 'Test User has created a PR for this issue:'
- );
- });
- it('renders a assigned to self activity', function () {
- const user = TestStubs.User({id: '301', name: 'Mark'});
- createWrapper({
- activity: [
- {
- data: {
- assignee: user.id,
- assigneeEmail: user.email,
- assigneeType: 'user',
- },
- dateCreated: '2021-10-01T15:31:38.950115Z',
- id: '117',
- type: 'assigned',
- user,
- },
- ],
- });
- expect(screen.getAllByTestId('activity-item').at(-1)).toHaveTextContent(
- /Mark assigned this issue to themselves/
- );
- });
- it('renders an assigned via codeowners activity', function () {
- createWrapper({
- activity: [
- {
- data: {
- assignee: '123',
- assigneeEmail: 'anotheruser@sentry.io',
- assigneeType: 'user',
- integration: 'codeowners',
- rule: 'path:something/*.py #workflow',
- },
- dateCreated: '2021-10-01T15:31:38.950115Z',
- id: '117',
- type: 'assigned',
- user: null,
- },
- ],
- });
- expect(screen.getAllByTestId('activity-item').at(-1)).toHaveTextContent(
- /Sentry auto-assigned this issue to anotheruser@sentry.io/
- );
- });
- it('renders an assigned via slack activity', function () {
- const user = TestStubs.User({id: '301', name: 'Mark'});
- createWrapper({
- activity: [
- {
- data: {
- assignee: '123',
- assigneeEmail: 'anotheruser@sentry.io',
- assigneeType: 'user',
- integration: 'slack',
- },
- dateCreated: '2021-10-01T15:31:38.950115Z',
- id: '117',
- type: 'assigned',
- user,
- },
- ],
- });
- const item = screen.getAllByTestId('activity-item').at(-1);
- expect(item).toHaveTextContent(/Mark assigned this issue to anotheruser@sentry.io/);
- expect(item).toHaveTextContent(/Assigned via Slack/);
- });
- it('resolved in commit with no releases', function () {
- createWrapper({
- activity: [
- {
- type: 'set_resolved_in_commit',
- id: '123',
- data: {
- author: 'hello',
- commit: {
- id: 'komal-commit',
- repository: {},
- releases: [],
- },
- },
- user: TestStubs.User(),
- },
- ],
- });
- expect(screen.getAllByTestId('activity-item').at(-1)).toHaveTextContent(
- 'Foo Bar marked this issue as resolved in komal-commit'
- );
- });
- it('resolved in commit with one release', function () {
- createWrapper({
- activity: [
- {
- type: 'set_resolved_in_commit',
- id: '123',
- data: {
- author: 'hello',
- commit: {
- id: 'komal-commit',
- repository: {},
- releases: [
- {
- dateCreated: '2022-05-01',
- dateReleased: '2022-05-02',
- version: 'random',
- },
- ],
- },
- },
- user: TestStubs.User(),
- },
- ],
- });
- expect(screen.getAllByTestId('activity-item').at(-1)).toHaveTextContent(
- 'Foo Bar marked this issue as resolved in komal-commit This commit was released in random'
- );
- });
- it('resolved in commit with multiple releases', function () {
- createWrapper({
- activity: [
- {
- type: 'set_resolved_in_commit',
- id: '123',
- data: {
- commit: {
- id: 'komal-commit',
- repository: {},
- releases: [
- {
- dateCreated: '2022-05-01',
- dateReleased: '2022-05-02',
- version: 'random',
- },
- {
- dateCreated: '2022-06-01',
- dateReleased: '2022-06-02',
- version: 'newest',
- },
- {
- dateCreated: '2021-08-03',
- dateReleased: '2021-08-03',
- version: 'oldest-release',
- },
- {
- dateCreated: '2022-04-21',
- dateReleased: '2022-04-21',
- version: 'randomTwo',
- },
- ],
- },
- },
- user: TestStubs.User(),
- },
- ],
- });
- expect(screen.getAllByTestId('activity-item').at(-1)).toHaveTextContent(
- 'Foo Bar marked this issue as resolved in komal-commit This commit was released in oldest-release and 3 others'
- );
- });
- it('requests assignees that are not in the team store', async function () {
- const team = TestStubs.Team({id: '123', name: 'workflow'});
- const teamRequest = MockApiClient.addMockResponse({
- url: `/organizations/org-slug/teams/`,
- body: [team],
- });
- createWrapper({
- activity: [
- {
- id: '123',
- user: null,
- type: 'assigned',
- data: {
- assignee: team.id,
- assigneeEmail: null,
- assigneeType: 'team',
- },
- dateCreated: '2021-10-28T13:40:10.634821Z',
- },
- ],
- });
- await waitFor(() => expect(teamRequest).toHaveBeenCalledTimes(1));
- expect(
- await screen.findByText(`assigned this issue to #${team.slug}`)
- ).toBeInTheDocument();
- expect(screen.getAllByTestId('activity-item').at(-1)).toHaveTextContent(
- /Sentry assigned this issue to #team-slug/
- );
- });
- describe('Delete', function () {
- let deleteMock;
- beforeEach(function () {
- deleteMock = MockApiClient.addMockResponse({
- url: '/issues/1337/comments/note-1/',
- method: 'DELETE',
- });
- ConfigStore.set('user', {id: '123', isSuperuser: true});
- });
- it('should do nothing if not present in GroupStore', async function () {
- createWrapper();
- renderGlobalModal();
- act(() => {
- // Remove note from group activity
- GroupStore.removeActivity('1337', 'note-1');
- });
- await userEvent.click(screen.getByRole('button', {name: 'Comment Actions'}));
- await userEvent.click(screen.getByRole('menuitemradio', {name: 'Remove'}));
- expect(
- screen.getByText('Are you sure you wish to delete this comment?')
- ).toBeInTheDocument();
- await userEvent.click(screen.getByRole('button', {name: 'Confirm'}));
- expect(deleteMock).not.toHaveBeenCalled();
- });
- it('should remove remove the item from the GroupStore make a DELETE API request', async function () {
- createWrapper();
- renderGlobalModal();
- await userEvent.click(screen.getByRole('button', {name: 'Comment Actions'}));
- await userEvent.click(screen.getByRole('menuitemradio', {name: 'Remove'}));
- expect(
- screen.getByText('Are you sure you wish to delete this comment?')
- ).toBeInTheDocument();
- await userEvent.click(screen.getByRole('button', {name: 'Confirm'}));
- expect(deleteMock).toHaveBeenCalledTimes(1);
- });
- });
- it('renders ignored', function () {
- createWrapper({
- activity: [
- {
- id: '123',
- type: GroupActivityType.SET_IGNORED,
- data: {
- ignoreUntilEscalating: true,
- },
- user: TestStubs.User(),
- dateCreated,
- },
- ],
- });
- expect(screen.getAllByTestId('activity-item').at(-1)).toHaveTextContent(
- 'Foo Bar ignored this issue'
- );
- });
- it('renders archived until escalating if org has `escalating-issues` feature', function () {
- createWrapper({
- activity: [
- {
- id: '123',
- type: GroupActivityType.SET_IGNORED,
- data: {
- ignoreUntilEscalating: true,
- },
- user: TestStubs.User(),
- dateCreated,
- },
- ],
- organization: {features: ['escalating-issues']},
- });
- expect(screen.getAllByTestId('activity-item').at(-1)).toHaveTextContent(
- 'Foo Bar archived this issue until it escalates'
- );
- });
- it('renders escalating with forecast and plural events if org has `escalating-issues` feature', function () {
- createWrapper({
- activity: [
- {
- id: '123',
- type: GroupActivityType.SET_UNRESOLVED,
- data: {
- forecast: 200,
- },
- user: null,
- dateCreated,
- },
- {
- id: '124',
- type: GroupActivityType.SET_ESCALATING,
- data: {
- forecast: 400,
- },
- user: null,
- dateCreated: '2021-10-05T15:31:38.950115Z',
- },
- ],
- organization: {features: ['escalating-issues']},
- });
- expect(screen.getAllByTestId('activity-item').at(-1)).toHaveTextContent(
- 'Sentry flagged this issue as escalating because over 400 events happened in an hour'
- );
- expect(screen.getAllByTestId('activity-item').at(-2)).toHaveTextContent(
- 'Sentry flagged this issue as escalating because over 200 events happened in an hour'
- );
- });
- it('renders escalating with forecast and singular event if org has `escalating-issues` feature', function () {
- createWrapper({
- activity: [
- {
- id: '123',
- type: GroupActivityType.SET_UNRESOLVED,
- data: {
- forecast: 1,
- },
- user: null,
- dateCreated,
- },
- ],
- organization: {features: ['escalating-issues']},
- });
- expect(screen.getAllByTestId('activity-item').at(-1)).toHaveTextContent(
- 'Sentry flagged this issue as escalating because over 1 event happened in an hour'
- );
- });
- it('renders ignored until it happens x times in time window', function () {
- createWrapper({
- activity: [
- {
- id: '123',
- type: GroupActivityType.SET_IGNORED,
- data: {
- ignoreCount: 400,
- ignoreWindow: 1,
- },
- user: TestStubs.User(),
- dateCreated,
- },
- ],
- });
- expect(screen.getAllByTestId('activity-item').at(-1)).toHaveTextContent(
- 'Foo Bar ignored this issue until it happens 400 time(s) in 1 minute'
- );
- });
- });
|