123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- import {Authenticators} from 'sentry-fixture/authenticators';
- import {render, screen, userEvent} from 'sentry-test/reactTestingLibrary';
- import AccountSecurityEnroll from 'sentry/views/settings/account/accountSecurity/accountSecurityEnroll';
- const ENDPOINT = '/users/me/authenticators/';
- describe('AccountSecurityEnroll', function () {
- describe('Totp', function () {
- const authenticator = Authenticators().Totp({
- isEnrolled: false,
- qrcode: 'otpauth://totp/test%40sentry.io?issuer=Sentry&secret=secret',
- secret: 'secret',
- form: [
- {
- type: 'string',
- name: 'otp',
- label: 'OTP Code',
- },
- ],
- });
- const routerContext = TestStubs.routerContext([
- {
- router: {
- ...TestStubs.router(),
- params: {authId: authenticator.authId},
- },
- },
- ]);
- beforeEach(function () {
- MockApiClient.clearMockResponses();
- MockApiClient.addMockResponse({
- url: `${ENDPOINT}${authenticator.authId}/enroll/`,
- body: authenticator,
- });
- });
- it('does not have enrolled circle indicator', function () {
- render(<AccountSecurityEnroll />, {context: routerContext});
- expect(
- screen.getByRole('status', {name: 'Authentication Method Inactive'})
- ).toBeInTheDocument();
- });
- it('has qrcode component', function () {
- render(<AccountSecurityEnroll />, {context: routerContext});
- expect(screen.getByLabelText('Enrollment QR Code')).toBeInTheDocument();
- });
- it('can enroll', async function () {
- const enrollMock = MockApiClient.addMockResponse({
- url: `${ENDPOINT}${authenticator.authId}/enroll/`,
- method: 'POST',
- });
- render(<AccountSecurityEnroll />, {context: routerContext});
- await userEvent.type(screen.getByRole('textbox', {name: 'OTP Code'}), 'otp{enter}');
- expect(enrollMock).toHaveBeenCalledWith(
- `${ENDPOINT}15/enroll/`,
- expect.objectContaining({
- method: 'POST',
- data: expect.objectContaining({
- secret: 'secret',
- otp: 'otp',
- }),
- })
- );
- });
- it('can redirect with already enrolled error', function () {
- MockApiClient.addMockResponse({
- url: `${ENDPOINT}${authenticator.authId}/enroll/`,
- body: {details: 'Already enrolled'},
- statusCode: 400,
- });
- const pushMock = jest.fn();
- const routerContextWithMock = TestStubs.routerContext([
- {
- router: {
- ...TestStubs.router({push: pushMock}),
- params: {authId: authenticator.authId},
- },
- },
- ]);
- render(<AccountSecurityEnroll />, {context: routerContextWithMock});
- expect(pushMock).toHaveBeenCalledWith('/settings/account/security/');
- });
- });
- });
|