123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- import {browserHistory} from 'react-router';
- import {OrganizationFixture} from 'sentry-fixture/organization';
- import {TeamFixture} from 'sentry-fixture/team';
- 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 = TeamFixture();
- 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('needs team:admin in order to see an enabled Remove Team button', function () {
- const team = TeamFixture();
- const organization = OrganizationFixture({access: []});
- render(<TeamSettings {...routerProps} team={team} params={{teamId: team.slug}} />, {
- organization,
- });
- expect(screen.getByTestId('button-remove-team')).toBeDisabled();
- });
- it('can remove team', async function () {
- const team = TeamFixture({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([]);
- });
- });
|