123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- import {render, screen} from 'sentry-test/reactTestingLibrary';
- import AccountDetails from 'sentry/views/settings/account/accountDetails';
- jest.mock('scroll-to-element', () => 'scroll-to-element');
- const mockUserDetails = params => {
- MockApiClient.clearMockResponses();
- MockApiClient.addMockResponse({
- url: '/users/me/',
- method: 'GET',
- body: TestStubs.UserDetails(params),
- });
- };
- describe('AccountDetails', function () {
- beforeEach(function () {
- mockUserDetails();
- });
- it('renders', function () {
- render(<AccountDetails location={{}} />);
- expect(screen.getByRole('textbox', {name: 'Name'})).toBeEnabled();
- expect(screen.getByRole('checkbox', {name: 'Use a 24-hour clock'})).toBeEnabled();
- expect(screen.getByRole('radiogroup', {name: 'Avatar Type'})).toBeEnabled();
- });
- it('has username field if it is different than email', function () {
- mockUserDetails({username: 'different@example.com'});
- render(<AccountDetails location={{}} />);
- expect(screen.getByRole('textbox', {name: 'Username'})).toBeEnabled();
- });
- describe('Managed User', function () {
- it('does not have password fields', function () {
- mockUserDetails({isManaged: true});
- render(<AccountDetails location={{}} />);
- expect(screen.getByRole('textbox', {name: 'Name'})).toBeEnabled();
- expect(screen.queryByRole('textbox', {name: 'Password'})).not.toBeInTheDocument();
- });
- it('has disabled username field if it is different than email', function () {
- mockUserDetails({isManaged: true, username: 'different@example.com'});
- render(<AccountDetails location={{}} />);
- expect(screen.getByRole('textbox', {name: 'Username'})).toBeDisabled();
- });
- });
- });
|