mirror of
https://github.com/grafana/grafana.git
synced 2025-07-30 14:03:30 +08:00

* translate some of core * more * translate admin * fix count translations * update unit tests
67 lines
2.4 KiB
TypeScript
67 lines
2.4 KiB
TypeScript
import { render, fireEvent, screen, waitFor, userEvent } from 'test/test-utils';
|
|
|
|
import { VerifyEmailPage } from './VerifyEmailPage';
|
|
|
|
const postMock = jest.fn();
|
|
jest.mock('@grafana/runtime', () => ({
|
|
...jest.requireActual('@grafana/runtime'),
|
|
getBackendSrv: () => ({
|
|
post: postMock,
|
|
}),
|
|
config: {
|
|
...jest.requireActual('@grafana/runtime').config,
|
|
buildInfo: {
|
|
version: 'v1.0',
|
|
commit: '1',
|
|
env: 'production',
|
|
edition: 'Open Source',
|
|
},
|
|
licenseInfo: {
|
|
stateInfo: '',
|
|
licenseUrl: '',
|
|
},
|
|
verifyEmailEnabled: true,
|
|
appSubUrl: '',
|
|
},
|
|
}));
|
|
|
|
describe('VerifyEmail Page', () => {
|
|
it('renders correctly', () => {
|
|
render(<VerifyEmailPage />);
|
|
expect(screen.getByText('Verify email')).toBeInTheDocument();
|
|
expect(screen.getByRole('textbox', { name: /Email/i })).toBeInTheDocument();
|
|
|
|
expect(screen.getByRole('button', { name: 'Send verification email' })).toBeInTheDocument();
|
|
|
|
expect(screen.getByRole('link', { name: 'Back to login' })).toBeInTheDocument();
|
|
expect(screen.getByRole('link', { name: 'Back to login' })).toHaveAttribute('href', '/login');
|
|
});
|
|
it('should pass validation checks for email field', async () => {
|
|
render(<VerifyEmailPage />);
|
|
|
|
fireEvent.click(screen.getByRole('button', { name: 'Send verification email' }));
|
|
expect(await screen.findByText('Email is required')).toBeInTheDocument();
|
|
|
|
await userEvent.type(screen.getByRole('textbox', { name: /Email/i }), 'test');
|
|
expect(await screen.findByText('Email is invalid')).toBeInTheDocument();
|
|
|
|
await userEvent.type(screen.getByRole('textbox', { name: /Email/i }), 'test@gmail.com');
|
|
expect(screen.queryByText('Email is invalid')).not.toBeInTheDocument();
|
|
});
|
|
it('should show complete signup if email-verification is successful', async () => {
|
|
postMock.mockResolvedValueOnce({ message: 'SignUpCreated' });
|
|
render(<VerifyEmailPage />);
|
|
|
|
await userEvent.type(screen.getByRole('textbox', { name: /Email/i }), 'test@gmail.com');
|
|
fireEvent.click(screen.getByRole('button', { name: 'Send verification email' }));
|
|
|
|
await waitFor(() =>
|
|
expect(postMock).toHaveBeenCalledWith('/api/user/signup', {
|
|
email: 'test@gmail.com',
|
|
})
|
|
);
|
|
expect(screen.getByRole('link', { name: 'Complete signup' })).toBeInTheDocument();
|
|
expect(screen.getByRole('link', { name: 'Complete signup' })).toHaveAttribute('href', '/signup');
|
|
});
|
|
});
|