12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- import {render, screen, userEvent, waitFor} from 'sentry-test/reactTestingLibrary';
- import {browserHistory} from 'sentry/utils/browserHistory';
- import SsoForm from 'sentry/views/auth/ssoForm';
- describe('SsoForm', function () {
- const emptyAuthConfig = {
- canRegister: false,
- githubLoginLink: '',
- googleLoginLink: '',
- hasNewsletter: false,
- serverHostname: '',
- vstsLoginLink: '',
- };
- async function doSso(apiRequest: jest.Mock) {
- await userEvent.type(
- screen.getByRole('textbox', {name: 'Organization ID'}),
- 'org123'
- );
- await userEvent.click(screen.getByRole('button', {name: 'Continue'}));
- expect(apiRequest).toHaveBeenCalledWith(
- '/auth/sso-locate/',
- expect.objectContaining({data: {organization: 'org123'}})
- );
- }
- it('renders', function () {
- const authConfig = {
- ...emptyAuthConfig,
- serverHostname: 'testserver',
- };
- render(<SsoForm authConfig={authConfig} />);
- expect(screen.getByLabelText('Organization ID')).toBeInTheDocument();
- });
- it('handles errors', async function () {
- const mockRequest = MockApiClient.addMockResponse({
- url: '/auth/sso-locate/',
- method: 'POST',
- statusCode: 400,
- body: {
- detail: 'Invalid org name',
- },
- });
- render(<SsoForm authConfig={emptyAuthConfig} />);
- await doSso(mockRequest);
- expect(await screen.findByText('Invalid org name')).toBeInTheDocument();
- });
- it('handles success', async function () {
- const mockRequest = MockApiClient.addMockResponse({
- url: '/auth/sso-locate/',
- method: 'POST',
- statusCode: 200,
- body: {
- nextUri: '/next/',
- },
- });
- render(<SsoForm authConfig={emptyAuthConfig} />);
- await doSso(mockRequest);
- await waitFor(() =>
- expect(browserHistory.push).toHaveBeenCalledWith({pathname: '/next/'})
- );
- });
- });
|