Merge pull request #8186 from overleaf/msm-test-university-autocomplete

[Settings] Add test for University autocomplete

GitOrigin-RevId: 8f890a74f12bd5e349df815a662c1a3be9ba189e
This commit is contained in:
Timothée Alby 2022-05-30 12:19:00 +02:00 committed by Copybot
parent ce3c3d4435
commit d2d01f6b7d

View file

@ -299,6 +299,56 @@ describe('<EmailsSection />', function () {
screen.getByText(customDepartment, { exact: false })
})
it('autocompletes institution name', async function () {
fetchMock.get('/user/emails?ensureAffiliation=true', [])
render(<EmailsSection />)
await fetchMock.flush(true)
resetFetchMock()
fetchMock.get(/\/institutions\/list/, [
{
id: 1,
name: 'University of Bonn',
},
{
id: 2,
name: 'Bochum institute of Science',
},
])
// open "add new email" section and click "let us know" to open the Country/University form
await userEvent.click(
screen.getByRole('button', {
name: /add another email/i,
})
)
await userEvent.type(screen.getByLabelText(/email/i), userEmailData.email)
await userEvent.click(screen.getByRole('button', { name: /let us know/i }))
// select a country
const countryInput = screen.getByRole('textbox', {
name: /country/i,
}) as HTMLInputElement
await userEvent.click(countryInput)
await userEvent.type(countryInput, 'Germ')
await userEvent.click(await screen.findByText('Germany'))
// match several universities on initial typing
const universityInput = screen.getByRole('textbox', {
name: /university/i,
}) as HTMLInputElement
await userEvent.click(universityInput)
await userEvent.type(universityInput, 'bo')
screen.getByText('University of Bonn')
screen.getByText('Bochum institute of Science')
// match a single university when typing to refine the search
await userEvent.type(universityInput, 'nn')
screen.getByText('University of Bonn')
expect(screen.queryByText('Bochum institute of Science')).to.be.null
})
it('adds new email address without existing institution', async function () {
const country = 'Germany'
const countryCode = 'de'