123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182 |
- import {browserHistory} from 'react-router';
- import selectEvent from 'react-select-event';
- import {initializeOrg} from 'sentry-test/initializeOrg';
- import {
- render,
- renderGlobalModal,
- screen,
- userEvent,
- waitFor,
- } from 'sentry-test/reactTestingLibrary';
- import TeamStore from 'sentry/stores/teamStore';
- import TeamSettings from 'sentry/views/settings/organizationTeams/teamSettings';
- describe('TeamSettings', function () {
- const {routerProps} = initializeOrg();
- beforeEach(function () {
- TeamStore.reset();
- MockApiClient.clearMockResponses();
- jest.spyOn(window.location, 'assign');
- });
- afterEach(function () {
- jest.mocked(window.location.assign).mockRestore();
- });
- it('can change slug', async function () {
- const team = TestStubs.Team();
- const putMock = MockApiClient.addMockResponse({
- url: `/teams/org-slug/${team.slug}/`,
- method: 'PUT',
- body: {
- slug: 'new-slug',
- },
- });
- render(<TeamSettings {...routerProps} team={team} params={{teamId: team.slug}} />);
- const input = screen.getByRole('textbox', {name: 'Team Slug'});
- await userEvent.clear(input);
- await userEvent.type(input, 'NEW SLUG');
- await userEvent.click(screen.getByRole('button', {name: 'Save'}));
- expect(putMock).toHaveBeenCalledWith(
- `/teams/org-slug/${team.slug}/`,
- expect.objectContaining({
- data: {
- slug: 'new-slug',
- },
- })
- );
- await waitFor(() =>
- expect(browserHistory.replace).toHaveBeenCalledWith(
- '/settings/org-slug/teams/new-slug/settings/'
- )
- );
- });
- it('can set team org-role', async function () {
- const team = TestStubs.Team({orgRole: ''});
- const putMock = MockApiClient.addMockResponse({
- url: `/teams/org-slug/${team.slug}/`,
- method: 'PUT',
- body: {
- slug: 'new-slug',
- orgRole: 'owner',
- },
- });
- const organization = TestStubs.Organization({
- access: ['org:admin'],
- features: ['org-roles-for-teams'],
- });
- render(<TeamSettings {...routerProps} team={team} params={{teamId: team.slug}} />, {
- organization,
- });
- // set org role
- const unsetDropdown = await screen.findByText('None');
- await selectEvent.select(unsetDropdown, 'Owner');
- await userEvent.click(screen.getByRole('button', {name: 'Save'}));
- expect(putMock).toHaveBeenCalledWith(
- `/teams/org-slug/${team.slug}/`,
- expect.objectContaining({
- data: {
- orgRole: 'owner',
- },
- })
- );
- // unset org role
- const setDropdown = await screen.findByText('Owner');
- await selectEvent.select(setDropdown, 'None');
- await userEvent.click(screen.getByRole('button', {name: 'Save'}));
- expect(putMock).toHaveBeenCalledWith(
- `/teams/org-slug/${team.slug}/`,
- expect.objectContaining({
- data: {
- orgRole: '',
- },
- })
- );
- });
- it('needs team:admin in order to see an enabled Remove Team button', function () {
- const team = TestStubs.Team();
- const organization = TestStubs.Organization({access: []});
- render(<TeamSettings {...routerProps} team={team} params={{teamId: team.slug}} />, {
- organization,
- });
- expect(screen.getByTestId('button-remove-team')).toBeDisabled();
- });
- it('needs org:admin in order to set team org-role', function () {
- const team = TestStubs.Team();
- const organization = TestStubs.Organization({
- access: [],
- features: ['org-roles-for-teams'],
- });
- render(<TeamSettings {...routerProps} team={team} params={{teamId: team.slug}} />, {
- organization,
- });
- expect(screen.getByRole('textbox', {name: 'Organization Role'})).toBeDisabled();
- });
- it('cannot set team org-role for idp:provisioned team', function () {
- const team = TestStubs.Team({flags: {'idp:provisioned': true}});
- const organization = TestStubs.Organization({
- access: ['org:admin'],
- features: ['org-roles-for-teams'],
- });
- render(<TeamSettings {...routerProps} team={team} params={{teamId: team.slug}} />, {
- organization,
- });
- expect(screen.getByRole('textbox', {name: 'Organization Role'})).toBeDisabled();
- });
- it('can remove team', async function () {
- const team = TestStubs.Team({hasAccess: true});
- const deleteMock = MockApiClient.addMockResponse({
- url: `/teams/org-slug/${team.slug}/`,
- method: 'DELETE',
- });
- TeamStore.loadInitialData([team]);
- render(<TeamSettings {...routerProps} params={{teamId: team.slug}} team={team} />);
- // Click "Remove Team button
- await userEvent.click(screen.getByRole('button', {name: 'Remove Team'}));
- // Wait for modal
- renderGlobalModal();
- await userEvent.click(screen.getByTestId('confirm-button'));
- expect(deleteMock).toHaveBeenCalledWith(
- `/teams/org-slug/${team.slug}/`,
- expect.objectContaining({
- method: 'DELETE',
- })
- );
- await waitFor(() =>
- expect(browserHistory.replace).toHaveBeenCalledWith('/settings/org-slug/teams/')
- );
- expect(TeamStore.getAll()).toEqual([]);
- });
- });
|