123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362 |
- import {AccessRequestFixture} from 'sentry-fixture/accessRequest';
- import {OrganizationFixture} from 'sentry-fixture/organization';
- import {TeamFixture} from 'sentry-fixture/team';
- import {UserFixture} from 'sentry-fixture/user';
- import {initializeOrg} from 'sentry-test/initializeOrg';
- import {act, render, screen, userEvent, waitFor} from 'sentry-test/reactTestingLibrary';
- import {openCreateTeamModal} from 'sentry/actionCreators/modal';
- import TeamStore from 'sentry/stores/teamStore';
- import recreateRoute from 'sentry/utils/recreateRoute';
- import OrganizationTeams from 'sentry/views/settings/organizationTeams/organizationTeams';
- jest.mocked(recreateRoute).mockReturnValue('');
- jest.mock('sentry/actionCreators/modal', () => ({
- openCreateTeamModal: jest.fn(),
- }));
- describe('OrganizationTeams', function () {
- describe('Open Membership', function () {
- const {organization, project, routerProps} = initializeOrg({
- organization: {
- openMembership: true,
- },
- });
- const createWrapper = (
- props?: Partial<React.ComponentProps<typeof OrganizationTeams>>
- ) =>
- render(
- <OrganizationTeams
- {...routerProps}
- onRemoveAccessRequest={() => {}}
- requestList={[]}
- params={{projectId: project.slug}}
- features={new Set(['open-membership'])}
- access={new Set(['project:admin'])}
- organization={organization}
- {...props}
- />
- );
- it('opens "create team modal" when creating a new team from header', async function () {
- createWrapper();
- // Click "Create Team" in Panel Header
- await userEvent.click(screen.getByLabelText('Create Team'));
- // action creator to open "create team modal" is called
- expect(openCreateTeamModal).toHaveBeenCalledWith(
- expect.objectContaining({
- organization: expect.objectContaining({
- slug: organization.slug,
- }),
- })
- );
- });
- it('can join team and have link to details', function () {
- const mockTeams = [
- TeamFixture({
- hasAccess: true,
- isMember: false,
- }),
- ];
- act(() => void TeamStore.loadInitialData(mockTeams, false, null));
- createWrapper({
- access: new Set([]),
- });
- expect(screen.getByLabelText('Join Team')).toBeInTheDocument();
- // Should also link to details
- expect(screen.getByTestId('team-link')).toBeInTheDocument();
- });
- it('reloads projects after joining a team', async function () {
- const team = TeamFixture({
- hasAccess: true,
- isMember: false,
- });
- const getOrgMock = MockApiClient.addMockResponse({
- url: '/organizations/org-slug/',
- body: OrganizationFixture(),
- });
- MockApiClient.addMockResponse({
- url: `/organizations/org-slug/members/me/teams/${team.slug}/`,
- method: 'POST',
- body: {...team, isMember: true},
- });
- const mockTeams = [team];
- act(() => void TeamStore.loadInitialData(mockTeams, false, null));
- createWrapper({access: new Set([])});
- await userEvent.click(screen.getByLabelText('Join Team'));
- await waitFor(() => {
- expect(getOrgMock).toHaveBeenCalledTimes(1);
- });
- });
- it('cannot leave idp-provisioned team', function () {
- const mockTeams = [TeamFixture({flags: {'idp:provisioned': true}, isMember: true})];
- act(() => void TeamStore.loadInitialData(mockTeams, false, null));
- createWrapper();
- expect(screen.getByRole('button', {name: 'Leave Team'})).toBeDisabled();
- });
- it('cannot join idp-provisioned team', function () {
- const mockTeams = [
- TeamFixture({flags: {'idp:provisioned': true}, isMember: false}),
- ];
- act(() => void TeamStore.loadInitialData(mockTeams, false, null));
- createWrapper({
- access: new Set([]),
- });
- expect(screen.getByRole('button', {name: 'Join Team'})).toBeDisabled();
- });
- });
- describe('Closed Membership', function () {
- const {organization, project, routerProps} = initializeOrg({
- organization: {
- openMembership: false,
- },
- });
- const createWrapper = (
- props?: Partial<React.ComponentProps<typeof OrganizationTeams>>
- ) =>
- render(
- <OrganizationTeams
- {...routerProps}
- onRemoveAccessRequest={() => {}}
- requestList={[]}
- params={{projectId: project.slug}}
- features={new Set([])}
- access={new Set([])}
- organization={organization}
- {...props}
- />
- );
- it('can request access to team and does not have link to details', function () {
- const mockTeams = [
- TeamFixture({
- hasAccess: false,
- isMember: false,
- }),
- ];
- act(() => void TeamStore.loadInitialData(mockTeams, false, null));
- createWrapper({access: new Set([])});
- expect(screen.getByLabelText('Request Access')).toBeInTheDocument();
- // Should also not link to details because of lack of access
- expect(screen.queryByTestId('team-link')).not.toBeInTheDocument();
- });
- it('can leave team when you are a member', function () {
- const mockTeams = [
- TeamFixture({
- hasAccess: true,
- isMember: true,
- }),
- ];
- act(() => void TeamStore.loadInitialData(mockTeams, false, null));
- createWrapper({
- access: new Set([]),
- });
- expect(screen.getByLabelText('Leave Team')).toBeInTheDocument();
- });
- it('cannot request to join idp-provisioned team', function () {
- const mockTeams = [
- TeamFixture({flags: {'idp:provisioned': true}, isMember: false}),
- ];
- act(() => void TeamStore.loadInitialData(mockTeams, false, null));
- createWrapper({
- access: new Set([]),
- });
- expect(screen.getByRole('button', {name: 'Request Access'})).toBeDisabled();
- });
- it('cannot leave idp-provisioned team', function () {
- const mockTeams = [TeamFixture({flags: {'idp:provisioned': true}, isMember: true})];
- act(() => void TeamStore.loadInitialData(mockTeams, false, null));
- createWrapper({
- access: new Set([]),
- });
- expect(screen.getByRole('button', {name: 'Leave Team'})).toBeDisabled();
- });
- });
- describe('Team Requests', function () {
- const {organization, project, routerProps} = initializeOrg({
- organization: {
- openMembership: false,
- },
- });
- const orgId = organization.slug;
- const accessRequest = AccessRequestFixture({
- requester: {},
- });
- const requester = UserFixture({
- id: '9',
- username: 'requester@example.com',
- email: 'requester@example.com',
- name: 'Requester',
- });
- const requestList = [accessRequest, AccessRequestFixture({id: '4', requester})];
- const createWrapper = (
- props?: Partial<React.ComponentProps<typeof OrganizationTeams>>
- ) =>
- render(
- <OrganizationTeams
- {...routerProps}
- onRemoveAccessRequest={() => {}}
- params={{projectId: project.slug}}
- features={new Set([])}
- access={new Set([])}
- organization={organization}
- requestList={requestList}
- {...props}
- />
- );
- it('renders team request panel', function () {
- createWrapper();
- expect(screen.getByText('Pending Team Requests')).toBeInTheDocument();
- expect(screen.queryAllByTestId('request-message')).toHaveLength(2);
- expect(screen.queryAllByTestId('request-message')[0]).toHaveTextContent(
- `${accessRequest.member.user?.name} requests access to the #${accessRequest.team.slug} team`
- );
- });
- it('can approve', async function () {
- const onUpdateRequestListMock = jest.fn();
- const approveMock = MockApiClient.addMockResponse({
- url: `/organizations/${orgId}/access-requests/${accessRequest.id}/`,
- method: 'PUT',
- });
- createWrapper({
- onRemoveAccessRequest: onUpdateRequestListMock,
- });
- await userEvent.click(screen.getAllByLabelText('Approve')[0]);
- await tick();
- expect(approveMock).toHaveBeenCalledWith(
- expect.anything(),
- expect.objectContaining({
- data: {
- isApproved: true,
- },
- })
- );
- expect(onUpdateRequestListMock).toHaveBeenCalledWith(accessRequest.id, true);
- });
- it('can deny', async function () {
- const onUpdateRequestListMock = jest.fn();
- const denyMock = MockApiClient.addMockResponse({
- url: `/organizations/${orgId}/access-requests/${accessRequest.id}/`,
- method: 'PUT',
- });
- createWrapper({
- onRemoveAccessRequest: onUpdateRequestListMock,
- });
- await userEvent.click(screen.getAllByLabelText('Deny')[0]);
- await tick();
- expect(denyMock).toHaveBeenCalledWith(
- expect.anything(),
- expect.objectContaining({
- data: {
- isApproved: false,
- },
- })
- );
- expect(onUpdateRequestListMock).toHaveBeenCalledWith(accessRequest.id, false);
- });
- });
- describe('Team Roles', function () {
- const features = new Set(['team-roles']);
- const access = new Set<string>();
- it('does not render alert without feature flag', function () {
- const {organization, project, routerProps} = initializeOrg({
- organization: {orgRole: 'admin'},
- });
- render(
- <OrganizationTeams
- {...routerProps}
- requestList={[]}
- onRemoveAccessRequest={() => {}}
- params={{projectId: project.slug}}
- features={new Set()}
- access={access}
- organization={organization}
- />
- );
- expect(screen.queryByText('a minimum team-level role of')).not.toBeInTheDocument();
- });
- it('renders alert with elevated org role', function () {
- const {organization, project, routerProps} = initializeOrg({
- organization: {orgRole: 'admin'},
- });
- render(
- <OrganizationTeams
- {...routerProps}
- requestList={[]}
- onRemoveAccessRequest={() => {}}
- params={{projectId: project.slug}}
- features={features}
- access={access}
- organization={organization}
- />
- );
- expect(
- // Text broken up by styles
- screen.getByText(
- 'Your organization role as an has granted you a minimum team-level role of'
- )
- ).toBeInTheDocument();
- });
- it('does not render alert with lowest org role', function () {
- const {organization, project, routerProps} = initializeOrg({
- organization: {orgRole: 'member'},
- });
- render(
- <OrganizationTeams
- {...routerProps}
- requestList={[]}
- onRemoveAccessRequest={() => {}}
- params={{projectId: project.slug}}
- features={features}
- access={access}
- organization={organization}
- />
- );
- expect(screen.queryByText('a minimum team-level role of')).not.toBeInTheDocument();
- });
- });
- });
|