1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- import {render, screen, userEvent, waitFor} from 'sentry-test/reactTestingLibrary';
- import {addErrorMessage} from 'sentry/actionCreators/indicator';
- import OrganizationJoinRequest from 'sentry/views/organizationJoinRequest';
- jest.mock('sentry/utils/analytics', () => ({
- trackAdhocEvent: jest.fn(),
- }));
- jest.mock('sentry/actionCreators/indicator');
- describe('OrganizationJoinRequest', function () {
- const org = TestStubs.Organization({slug: 'test-org'});
- const endpoint = `/organizations/${org.slug}/join-request/`;
- beforeEach(function () {
- MockApiClient.clearMockResponses();
- });
- it('renders', function () {
- render(<OrganizationJoinRequest params={{orgId: org.slug}} />);
- expect(screen.getByRole('heading', {name: 'Request to Join'})).toBeInTheDocument();
- expect(screen.getByRole('textbox', {name: 'Email Address'})).toBeInTheDocument();
- expect(screen.getByRole('button', {name: 'Request to Join'})).toBeInTheDocument();
- });
- it('submits', async function () {
- const postMock = MockApiClient.addMockResponse({
- url: endpoint,
- method: 'POST',
- });
- render(<OrganizationJoinRequest params={{orgId: org.slug}} />);
- await userEvent.type(
- screen.getByRole('textbox', {name: 'Email Address'}),
- 'email@example.com{enter}'
- );
- expect(postMock).toHaveBeenCalled();
- expect(
- await screen.findByRole('heading', {name: 'Request Sent'})
- ).toBeInTheDocument();
- expect(
- screen.queryByRole('button', {name: 'Request to Join'})
- ).not.toBeInTheDocument();
- });
- it('errors', async function () {
- const postMock = MockApiClient.addMockResponse({
- url: endpoint,
- method: 'POST',
- statusCode: 400,
- });
- render(<OrganizationJoinRequest params={{orgId: org.slug}} />);
- await userEvent.type(
- screen.getByRole('textbox', {name: 'Email Address'}),
- 'email@example.com{enter}'
- );
- await waitFor(() => {
- expect(postMock).toHaveBeenCalled();
- expect(addErrorMessage).toHaveBeenCalled();
- });
- expect(screen.getByRole('heading', {name: 'Request to Join'})).toBeInTheDocument();
- });
- it('cancels', async function () {
- const spy = jest.spyOn(window.location, 'assign').mockImplementation(() => {});
- render(<OrganizationJoinRequest params={{orgId: org.slug}} />);
- await userEvent.click(screen.getByRole('button', {name: 'Cancel'}));
- expect(spy).toHaveBeenCalledWith(`/auth/login/${org.slug}/`);
- });
- });
|