123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415 |
- import {OrganizationFixture} from 'sentry-fixture/organization';
- import {ProjectFixture} from 'sentry-fixture/project';
- import {TeamFixture} from 'sentry-fixture/team';
- import {UserFixture} from 'sentry-fixture/user';
- import {act, render, screen, userEvent, waitFor} from 'sentry-test/reactTestingLibrary';
- import ProjectsStore from 'sentry/stores/projectsStore';
- import TeamStore from 'sentry/stores/teamStore';
- import EventView from 'sentry/utils/discover/eventView';
- import {MAX_TEAM_KEY_TRANSACTIONS} from 'sentry/utils/performance/constants';
- import TeamKeyTransactionButton from 'sentry/views/performance/transactionSummary/teamKeyTransactionButton';
- async function clickTeamKeyTransactionDropdown() {
- await waitFor(() =>
- expect(screen.getByRole('button', {expanded: false})).toBeEnabled()
- );
- await userEvent.click(screen.getByRole('button', {expanded: false}));
- }
- describe('TeamKeyTransactionButton', function () {
- const organization = OrganizationFixture({features: ['performance-view']});
- const teams = [
- TeamFixture({id: '1', slug: 'team1', name: 'Team 1'}),
- TeamFixture({id: '2', slug: 'team2', name: 'Team 2'}),
- ];
- const project = ProjectFixture({teams});
- const eventView = new EventView({
- id: '1',
- name: 'my query',
- fields: [{field: 'count()'}],
- sorts: [{field: 'count', kind: 'desc'}],
- query: '',
- project: [parseInt(project.id, 10)],
- start: '2019-10-01T00:00:00',
- end: '2019-10-02T00:00:00',
- statsPeriod: '14d',
- environment: [],
- createdBy: UserFixture(),
- display: 'line',
- team: ['myteams'],
- topEvents: '5',
- });
- beforeEach(function () {
- MockApiClient.clearMockResponses();
- act(() => ProjectsStore.loadInitialData([project]));
- act(() => void TeamStore.loadInitialData(teams, false, null));
- });
- it('fetches key transactions with project param', async function () {
- const getTeamKeyTransactionsMock = MockApiClient.addMockResponse({
- method: 'GET',
- url: '/organizations/org-slug/key-transactions-list/',
- body: teams.map(({id}) => ({
- team: id,
- count: 1,
- keyed: [{project_id: String(project.id), transaction: 'transaction'}],
- })),
- match: [MockApiClient.matchQuery({project: [project.id], team: ['myteams']})],
- });
- render(
- <TeamKeyTransactionButton
- eventView={eventView}
- organization={organization}
- transactionName="transaction"
- />
- );
- await waitFor(() => {
- expect(getTeamKeyTransactionsMock).toHaveBeenCalledTimes(1);
- });
- });
- it('renders with all teams checked', async function () {
- MockApiClient.addMockResponse({
- method: 'GET',
- url: '/organizations/org-slug/key-transactions-list/',
- body: teams.map(({id}) => ({
- team: id,
- count: 1,
- keyed: [{project_id: String(project.id), transaction: 'transaction'}],
- })),
- });
- render(
- <TeamKeyTransactionButton
- eventView={eventView}
- organization={organization}
- transactionName="transaction"
- />
- );
- await clickTeamKeyTransactionDropdown();
- // all teams should be checked
- expect(screen.getByRole('option', {name: `#${teams[0].slug}`})).toHaveAttribute(
- 'aria-selected',
- 'true'
- );
- expect(screen.getByRole('option', {name: `#${teams[1].slug}`})).toHaveAttribute(
- 'aria-selected',
- 'true'
- );
- });
- it('renders with some teams checked', async function () {
- MockApiClient.addMockResponse({
- method: 'GET',
- url: '/organizations/org-slug/key-transactions-list/',
- body: teams.map(({id}) => ({
- team: id,
- count: id === teams[0].id ? 1 : 0,
- keyed:
- id === teams[0].id
- ? [{project_id: String(project.id), transaction: 'transaction'}]
- : [],
- })),
- });
- render(
- <TeamKeyTransactionButton
- eventView={eventView}
- organization={organization}
- transactionName="transaction"
- />
- );
- await clickTeamKeyTransactionDropdown();
- // only team 1 should be checked
- expect(screen.getByRole('option', {name: `#${teams[0].slug}`})).toHaveAttribute(
- 'aria-selected',
- 'true'
- );
- expect(screen.getByRole('option', {name: `#${teams[1].slug}`})).toHaveAttribute(
- 'aria-selected',
- 'false'
- );
- });
- it('renders with no teams checked', async function () {
- MockApiClient.addMockResponse({
- method: 'GET',
- url: '/organizations/org-slug/key-transactions-list/',
- body: teams.map(({id}) => ({
- team: id,
- count: 0,
- keyed: [],
- })),
- });
- render(
- <TeamKeyTransactionButton
- eventView={eventView}
- organization={organization}
- transactionName="transaction"
- />
- );
- await clickTeamKeyTransactionDropdown();
- // all teams should be unchecked
- expect(screen.getByRole('option', {name: `#${teams[0].slug}`})).toHaveAttribute(
- 'aria-selected',
- 'false'
- );
- expect(screen.getByRole('option', {name: `#${teams[1].slug}`})).toHaveAttribute(
- 'aria-selected',
- 'false'
- );
- });
- it('should be able to check one team', async function () {
- MockApiClient.addMockResponse({
- method: 'GET',
- url: '/organizations/org-slug/key-transactions-list/',
- body: teams.map(({id}) => ({
- team: id,
- count: 0,
- keyed: [],
- })),
- });
- const postTeamKeyTransactionsMock = MockApiClient.addMockResponse({
- method: 'POST',
- url: '/organizations/org-slug/key-transactions/',
- body: [],
- match: [
- MockApiClient.matchQuery({project: [project.id]}),
- MockApiClient.matchData({team: [teams[0].id], transaction: 'transaction'}),
- ],
- });
- render(
- <TeamKeyTransactionButton
- eventView={eventView}
- organization={organization}
- transactionName="transaction"
- />
- );
- await clickTeamKeyTransactionDropdown();
- await userEvent.click(screen.getByRole('option', {name: `#${teams[0].slug}`}));
- expect(postTeamKeyTransactionsMock).toHaveBeenCalledTimes(1);
- });
- it('should be able to uncheck one team', async function () {
- MockApiClient.addMockResponse({
- method: 'GET',
- url: '/organizations/org-slug/key-transactions-list/',
- body: teams.map(({id}) => ({
- team: id,
- count: 1,
- keyed: [{project_id: String(project.id), transaction: 'transaction'}],
- })),
- });
- const deleteTeamKeyTransactionsMock = MockApiClient.addMockResponse({
- method: 'DELETE',
- url: '/organizations/org-slug/key-transactions/',
- body: [],
- match: [
- MockApiClient.matchQuery({project: [project.id]}),
- MockApiClient.matchData({team: [teams[0].id], transaction: 'transaction'}),
- ],
- });
- render(
- <TeamKeyTransactionButton
- eventView={eventView}
- organization={organization}
- transactionName="transaction"
- />
- );
- await clickTeamKeyTransactionDropdown();
- await userEvent.click(screen.getByRole('option', {name: `#${teams[0].slug}`}));
- expect(deleteTeamKeyTransactionsMock).toHaveBeenCalledTimes(1);
- });
- it('should be able to check all with my teams', async function () {
- MockApiClient.addMockResponse({
- method: 'GET',
- url: '/organizations/org-slug/key-transactions-list/',
- body: teams.map(({id}) => ({
- team: id,
- count: 0,
- keyed: [],
- })),
- });
- const postTeamKeyTransactionsMock = MockApiClient.addMockResponse({
- method: 'POST',
- url: '/organizations/org-slug/key-transactions/',
- body: [],
- match: [
- MockApiClient.matchQuery({project: [project.id]}),
- MockApiClient.matchData({
- team: [teams[0].id, teams[1].id],
- transaction: 'transaction',
- }),
- ],
- });
- render(
- <TeamKeyTransactionButton
- eventView={eventView}
- organization={organization}
- transactionName="transaction"
- />
- );
- await clickTeamKeyTransactionDropdown();
- await userEvent.click(screen.getByRole('button', {name: 'Select All in My Teams'}));
- // all teams should be checked now
- expect(screen.getByRole('option', {name: `#${teams[0].slug}`})).toHaveAttribute(
- 'aria-selected',
- 'true'
- );
- expect(screen.getByRole('option', {name: `#${teams[1].slug}`})).toHaveAttribute(
- 'aria-selected',
- 'true'
- );
- expect(postTeamKeyTransactionsMock).toHaveBeenCalledTimes(1);
- });
- it('should be able to uncheck all with my teams', async function () {
- MockApiClient.addMockResponse({
- method: 'GET',
- url: '/organizations/org-slug/key-transactions-list/',
- body: teams.map(({id}) => ({
- team: id,
- count: 1,
- keyed: [{project_id: String(project.id), transaction: 'transaction'}],
- })),
- });
- const deleteTeamKeyTransactionsMock = MockApiClient.addMockResponse({
- method: 'DELETE',
- url: '/organizations/org-slug/key-transactions/',
- body: [],
- match: [
- MockApiClient.matchQuery({project: [project.id]}),
- MockApiClient.matchData({
- team: [teams[0].id, teams[1].id],
- transaction: 'transaction',
- }),
- ],
- });
- render(
- <TeamKeyTransactionButton
- eventView={eventView}
- organization={organization}
- transactionName="transaction"
- />
- );
- await clickTeamKeyTransactionDropdown();
- await userEvent.click(screen.getByRole('button', {name: 'Unselect All in My Teams'}));
- // all teams should be checked now
- expect(screen.getByRole('option', {name: `#${teams[0].slug}`})).toHaveAttribute(
- 'aria-selected',
- 'false'
- );
- expect(screen.getByRole('option', {name: `#${teams[1].slug}`})).toHaveAttribute(
- 'aria-selected',
- 'false'
- );
- expect(deleteTeamKeyTransactionsMock).toHaveBeenCalledTimes(1);
- });
- it('renders unkeyed as disabled if count exceeds max', async function () {
- MockApiClient.addMockResponse({
- method: 'GET',
- url: '/organizations/org-slug/key-transactions-list/',
- body: teams.map(({id}) => ({
- team: id,
- count: MAX_TEAM_KEY_TRANSACTIONS,
- keyed: Array.from({length: MAX_TEAM_KEY_TRANSACTIONS}, (_, i) => ({
- project_id: String(project.id),
- transaction: `transaction-${i}`,
- })),
- })),
- });
- render(
- <TeamKeyTransactionButton
- eventView={eventView}
- organization={organization}
- transactionName="transaction"
- />
- );
- await clickTeamKeyTransactionDropdown();
- expect(screen.getByRole('option', {name: `#${teams[0].slug}`})).toHaveAttribute(
- 'aria-disabled',
- 'true'
- );
- expect(screen.getByRole('option', {name: `#${teams[1].slug}`})).toHaveAttribute(
- 'aria-disabled',
- 'true'
- );
- });
- it('renders keyed as checked even if count is maxed', async function () {
- MockApiClient.addMockResponse({
- method: 'GET',
- url: '/organizations/org-slug/key-transactions-list/',
- body: teams.map(({id}) => ({
- team: id,
- count: MAX_TEAM_KEY_TRANSACTIONS,
- keyed: [
- {project_id: String(project.id), transaction: 'transaction'},
- ...Array.from({length: MAX_TEAM_KEY_TRANSACTIONS - 1}, (_, i) => ({
- project_id: String(project.id),
- transaction: `transaction-${i}`,
- })),
- ],
- })),
- });
- render(
- <TeamKeyTransactionButton
- eventView={eventView}
- organization={organization}
- transactionName="transaction"
- />
- );
- await clickTeamKeyTransactionDropdown();
- expect(screen.getByRole('option', {name: `#${teams[0].slug}`})).toHaveAttribute(
- 'aria-selected',
- 'true'
- );
- expect(screen.getByRole('option', {name: `#${teams[1].slug}`})).toHaveAttribute(
- 'aria-selected',
- 'true'
- );
- });
- });
|