123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276 |
- import {initializeOrg} from 'sentry-test/initializeOrg';
- import {act, render, screen, userEvent, within} from 'sentry-test/reactTestingLibrary';
- import ProjectsStore from 'sentry/stores/projectsStore';
- import TeamStore from 'sentry/stores/teamStore';
- import IncidentsList from 'sentry/views/alerts/list';
- import {OrganizationContext} from 'sentry/views/organizationContext';
- describe('IncidentsList', function () {
- let routerContext;
- let router;
- let organization;
- let projectMock;
- let projects;
- const projects1 = ['a', 'b', 'c'];
- const projects2 = ['c', 'd'];
- const createWrapper = (props = {}) => {
- return render(
- <OrganizationContext.Provider value={organization}>
- <IncidentsList
- params={{orgId: organization.slug}}
- location={{query: {}, search: ''}}
- router={router}
- {...props}
- />
- </OrganizationContext.Provider>,
- {context: routerContext}
- );
- };
- beforeEach(function () {
- const context = initializeOrg({
- organization: {
- features: ['incidents'],
- },
- });
- routerContext = context.routerContext;
- router = context.router;
- organization = context.organization;
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/incidents/',
- body: [
- TestStubs.Incident({
- id: '123',
- identifier: '1',
- title: 'First incident',
- projects: projects1,
- }),
- TestStubs.Incident({
- id: '342',
- identifier: '2',
- title: 'Second incident',
- projects: projects2,
- }),
- ],
- });
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/incidents/2/stats/',
- body: TestStubs.IncidentStats({
- totalEvents: 1000,
- uniqueUsers: 32,
- eventStats: {
- data: [[1591390293327, [{count: 42}]]],
- },
- }),
- });
- projects = [
- TestStubs.Project({slug: 'a', platform: 'javascript'}),
- TestStubs.Project({slug: 'b'}),
- TestStubs.Project({slug: 'c'}),
- TestStubs.Project({slug: 'd'}),
- ];
- projectMock = MockApiClient.addMockResponse({
- url: '/organizations/org-slug/projects/',
- body: projects,
- });
- act(() => ProjectsStore.loadInitialData(projects));
- });
- afterEach(function () {
- act(() => ProjectsStore.reset());
- MockApiClient.clearMockResponses();
- });
- it('displays list', async function () {
- createWrapper();
- const items = await screen.findAllByTestId('alert-title');
- expect(items).toHaveLength(2);
- expect(within(items[0]).getByText('First incident')).toBeInTheDocument();
- expect(within(items[1]).getByText('Second incident')).toBeInTheDocument();
- expect(projectMock).toHaveBeenCalledTimes(1);
- expect(projectMock).toHaveBeenLastCalledWith(
- expect.anything(),
- expect.objectContaining({
- query: expect.objectContaining({query: 'slug:a slug:b slug:c'}),
- })
- );
- const projectBadges = screen.getAllByTestId('badge-display-name');
- expect(within(projectBadges[0]).getByText('a')).toBeInTheDocument();
- });
- it('displays empty state (first time experience)', async function () {
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/incidents/',
- body: [],
- });
- const rulesMock = MockApiClient.addMockResponse({
- url: '/organizations/org-slug/alert-rules/',
- body: [],
- });
- const promptsMock = MockApiClient.addMockResponse({
- url: '/prompts-activity/',
- body: {data: {dismissed_ts: null}},
- });
- const promptsUpdateMock = MockApiClient.addMockResponse({
- url: '/prompts-activity/',
- method: 'PUT',
- });
- createWrapper();
- expect(await screen.findByText('More signal, less noise')).toBeInTheDocument();
- expect(rulesMock).toHaveBeenCalledTimes(1);
- expect(promptsMock).toHaveBeenCalledTimes(1);
- expect(promptsUpdateMock).toHaveBeenCalledTimes(1);
- });
- it('displays empty state (rules not yet created)', async function () {
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/incidents/',
- body: [],
- });
- const rulesMock = MockApiClient.addMockResponse({
- url: '/organizations/org-slug/alert-rules/',
- body: [],
- });
- const promptsMock = MockApiClient.addMockResponse({
- url: '/prompts-activity/',
- body: {data: {dismissed_ts: Math.floor(Date.now() / 1000)}},
- });
- createWrapper();
- expect(
- await screen.findByText('No incidents exist for the current query.')
- ).toBeInTheDocument();
- expect(rulesMock).toHaveBeenCalledTimes(1);
- expect(promptsMock).toHaveBeenCalledTimes(1);
- });
- it('displays empty state (rules created)', async function () {
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/incidents/',
- body: [],
- });
- const rulesMock = MockApiClient.addMockResponse({
- url: '/organizations/org-slug/alert-rules/',
- body: [{id: 1}],
- });
- const promptsMock = MockApiClient.addMockResponse({
- url: '/prompts-activity/',
- body: {data: {dismissed_ts: Math.floor(Date.now() / 1000)}},
- });
- createWrapper();
- expect(
- await screen.findByText('No incidents exist for the current query.')
- ).toBeInTheDocument();
- expect(rulesMock).toHaveBeenCalledTimes(1);
- expect(promptsMock).toHaveBeenCalledTimes(0);
- });
- it('filters by opened issues', function () {
- createWrapper();
- userEvent.click(screen.getByTestId('filter-button'));
- const resolved = screen.getByText('Resolved');
- expect(resolved).toBeInTheDocument();
- expect(
- within(resolved.parentElement).getByTestId('checkbox-fancy')
- ).not.toBeChecked();
- userEvent.click(resolved);
- expect(router.push).toHaveBeenCalledWith({
- pathname: undefined,
- query: {
- expand: ['original_alert_rule'],
- status: ['closed'],
- team: ['myteams', 'unassigned'],
- },
- });
- });
- it('disables the new alert button for those without alert:write', function () {
- const noAccessOrg = {
- ...organization,
- access: [],
- };
- createWrapper({organization: noAccessOrg});
- expect(screen.getByLabelText('Create Alert')).toHaveAttribute(
- 'aria-disabled',
- 'true'
- );
- });
- it('does not disable the new alert button for those with alert:write', function () {
- // Enabled with access
- createWrapper();
- expect(screen.getByLabelText('Create Alert')).toHaveAttribute(
- 'aria-disabled',
- 'false'
- );
- });
- it('searches by name', async () => {
- createWrapper();
- const input = screen.getByPlaceholderText('Search by name');
- expect(input).toBeInTheDocument();
- const testQuery = 'test name';
- userEvent.type(input, `${testQuery}{enter}`);
- expect(router.push).toHaveBeenCalledWith(
- expect.objectContaining({
- query: {
- title: testQuery,
- expand: ['original_alert_rule'],
- team: ['myteams', 'unassigned'],
- },
- })
- );
- });
- it('displays owner from alert rule', async () => {
- const team = TestStubs.Team();
- MockApiClient.addMockResponse({
- url: '/organizations/org-slug/incidents/',
- body: [
- TestStubs.Incident({
- id: '123',
- identifier: '1',
- title: 'First incident',
- projects: projects1,
- alertRule: TestStubs.IncidentRule({owner: `team:${team.id}`}),
- }),
- ],
- });
- TeamStore.getById = jest.fn().mockReturnValue(team);
- const org = {
- ...organization,
- features: ['incidents', 'team-alerts-ownership'],
- };
- const {container} = createWrapper({organization: org});
- expect(screen.getByText(team.name)).toBeInTheDocument();
- expect(container).toSnapshot();
- });
- });
|