forked from processing/p5.js-web-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue-processing#2923 added test for the Account Form.
- Loading branch information
1 parent
fcbc05e
commit 1693492
Showing
1 changed file
with
122 additions
and
0 deletions.
There are no files selected for viewing
122 changes: 122 additions & 0 deletions
122
client/modules/User/components/AccountForm.unit.test.jsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,122 @@ | ||
import React from 'react'; | ||
import thunk from 'redux-thunk'; | ||
import configureStore from 'redux-mock-store'; | ||
import { | ||
reduxRender, | ||
screen, | ||
fireEvent, | ||
act, | ||
waitFor | ||
} from '../../../test-utils'; | ||
import AccountForm from './AccountForm'; | ||
import { initialTestState } from '../../../testData/testReduxStore'; | ||
import * as actions from '../actions'; | ||
|
||
const mockStore = configureStore([thunk]); | ||
const store = mockStore(initialTestState); | ||
|
||
jest.mock('../actions', () => ({ | ||
...jest.requireActual('../actions'), | ||
updateSettings: jest.fn().mockReturnValue( | ||
(dispatch) => | ||
new Promise((resolve) => { | ||
setTimeout(() => { | ||
dispatch({ type: 'UPDATE_SETTINGS', payload: {} }); | ||
resolve(); | ||
}, 100); | ||
}) | ||
) | ||
})); | ||
|
||
const subject = () => { | ||
reduxRender(<AccountForm />, { | ||
store | ||
}); | ||
}; | ||
|
||
describe('<AccountForm />', () => { | ||
it('renders form fields with initial values', () => { | ||
subject(); | ||
const emailElement = screen.getByRole('textbox', { | ||
name: /email/i | ||
}); | ||
expect(emailElement).toBeInTheDocument(); | ||
expect(emailElement).toHaveValue('[email protected]'); | ||
|
||
const userNameElement = screen.getByRole('textbox', { | ||
name: /username/i | ||
}); | ||
expect(userNameElement).toBeInTheDocument(); | ||
expect(userNameElement).toHaveValue('happydog'); | ||
|
||
const currentPasswordElement = screen.getByLabelText(/current password/i); | ||
expect(currentPasswordElement).toBeInTheDocument(); | ||
expect(currentPasswordElement).toHaveValue(''); | ||
|
||
const newPasswordElement = screen.getByLabelText(/new password/i); | ||
expect(newPasswordElement).toBeInTheDocument(); | ||
expect(newPasswordElement).toHaveValue(''); | ||
}); | ||
|
||
it('handles form submission and calls updateSettings', async () => { | ||
subject(); | ||
|
||
const saveAllSettingsButton = screen.getByRole('button', { | ||
name: /save all settings/i | ||
}); | ||
|
||
const currentPasswordElement = screen.getByLabelText(/current password/i); | ||
const newPasswordElement = screen.getByLabelText(/new password/i); | ||
|
||
fireEvent.change(currentPasswordElement, { | ||
target: { | ||
value: 'currentPassword' | ||
} | ||
}); | ||
|
||
fireEvent.change(newPasswordElement, { | ||
target: { | ||
value: 'newPassword' | ||
} | ||
}); | ||
|
||
await act(async () => { | ||
fireEvent.click(saveAllSettingsButton); | ||
}); | ||
|
||
await waitFor(() => { | ||
expect(actions.updateSettings).toHaveBeenCalledTimes(1); | ||
}); | ||
}); | ||
|
||
it('Save all setting button should get disabled while submitting and enable when not submitting', async () => { | ||
subject(); | ||
|
||
const saveAllSettingsButton = screen.getByRole('button', { | ||
name: /save all settings/i | ||
}); | ||
|
||
const currentPasswordElement = screen.getByLabelText(/current password/i); | ||
const newPasswordElement = screen.getByLabelText(/new password/i); | ||
|
||
fireEvent.change(currentPasswordElement, { | ||
target: { | ||
value: 'currentPassword' | ||
} | ||
}); | ||
|
||
fireEvent.change(newPasswordElement, { | ||
target: { | ||
value: 'newPassword' | ||
} | ||
}); | ||
expect(saveAllSettingsButton).not.toHaveAttribute('disabled'); | ||
|
||
await act(async () => { | ||
fireEvent.click(saveAllSettingsButton); | ||
await waitFor(() => { | ||
expect(saveAllSettingsButton).toHaveAttribute('disabled'); | ||
}); | ||
}); | ||
}); | ||
}); |