mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
e41315364d
[web] Fix remaining strict type checks GitOrigin-RevId: 69881c37938f88c7ea4a630f362712a804085bc8
244 lines
7.2 KiB
TypeScript
244 lines
7.2 KiB
TypeScript
import {
|
|
render,
|
|
screen,
|
|
waitForElementToBeRemoved,
|
|
fireEvent,
|
|
} from '@testing-library/react'
|
|
import userEvent from '@testing-library/user-event'
|
|
import { expect } from 'chai'
|
|
import { UserEmailData } from '../../../../../../types/user-email'
|
|
import fetchMock from 'fetch-mock'
|
|
import EmailsSection from '../../../../../../frontend/js/features/settings/components/emails-section'
|
|
import { Institution } from '../../../../../../types/institution'
|
|
import { Affiliation } from '../../../../../../types/affiliation'
|
|
|
|
const userEmailData: UserEmailData = {
|
|
confirmedAt: '2022-03-10T10:59:44.139Z',
|
|
email: 'bar@overleaf.com',
|
|
default: false,
|
|
}
|
|
|
|
const userEmailData2: UserEmailData & { affiliation: Affiliation } = {
|
|
affiliation: {
|
|
inReconfirmNotificationPeriod: false,
|
|
institution: {
|
|
confirmed: false,
|
|
} as Institution,
|
|
} as Affiliation,
|
|
confirmedAt: '2022-03-10T10:59:44.139Z',
|
|
email: 'bar@overleaf.com',
|
|
default: false,
|
|
}
|
|
|
|
describe('email actions - make primary', function () {
|
|
beforeEach(function () {
|
|
window.metaAttributesCache.set('ol-ExposedSettings', {
|
|
hasAffiliationsFeature: true,
|
|
})
|
|
fetchMock.reset()
|
|
})
|
|
|
|
afterEach(function () {
|
|
window.metaAttributesCache = new Map()
|
|
fetchMock.reset()
|
|
})
|
|
|
|
describe('disabled `make primary` button', function () {
|
|
it('when renders with unconfirmed email', async function () {
|
|
const userEmailDataCopy = { ...userEmailData2 }
|
|
const { confirmedAt: _, ...userEmailData } = userEmailDataCopy
|
|
fetchMock.get('/user/emails?ensureAffiliation=true', [userEmailData])
|
|
render(<EmailsSection />)
|
|
|
|
const button = (await screen.findByRole('button', {
|
|
name: /make primary/i,
|
|
})) as HTMLButtonElement
|
|
expect(button.disabled).to.be.true
|
|
})
|
|
|
|
it('when renders with email in reconfirmation period', async function () {
|
|
const userEmailDataCopy = {
|
|
...userEmailData2,
|
|
affiliation: {
|
|
...userEmailData2.affiliation,
|
|
inReconfirmNotificationPeriod: true,
|
|
},
|
|
}
|
|
fetchMock.get('/user/emails?ensureAffiliation=true', [userEmailDataCopy])
|
|
render(<EmailsSection />)
|
|
|
|
const button = (await screen.findByRole('button', {
|
|
name: /make primary/i,
|
|
})) as HTMLButtonElement
|
|
expect(button.disabled).to.be.true
|
|
})
|
|
})
|
|
|
|
describe('button tooltips', function () {
|
|
it('when the email is in reconfirmation period', async function () {
|
|
const userEmailDataCopy = {
|
|
...userEmailData2,
|
|
affiliation: {
|
|
...userEmailData2.affiliation,
|
|
inReconfirmNotificationPeriod: true,
|
|
},
|
|
}
|
|
|
|
fetchMock.get('/user/emails?ensureAffiliation=true', [userEmailDataCopy])
|
|
render(<EmailsSection />)
|
|
|
|
const button = (await screen.findByRole('button', {
|
|
name: /make primary/i,
|
|
})) as HTMLButtonElement
|
|
|
|
userEvent.hover(button.parentElement!)
|
|
|
|
screen.getByText(
|
|
/Please confirm your affiliation before making this the primary/i
|
|
)
|
|
})
|
|
|
|
it('when the email is confirmed', async function () {
|
|
const userEmailDataCopy = { ...userEmailData2 }
|
|
|
|
fetchMock.get('/user/emails?ensureAffiliation=true', [userEmailDataCopy])
|
|
render(<EmailsSection />)
|
|
|
|
const button = (await screen.findByRole('button', {
|
|
name: /make primary/i,
|
|
})) as HTMLButtonElement
|
|
|
|
userEvent.hover(button.parentElement!)
|
|
|
|
screen.getByText('Make this the primary email, used to log in', {
|
|
exact: false,
|
|
})
|
|
})
|
|
|
|
it('when not linked to institution', async function () {
|
|
window.metaAttributesCache.set('ol-ExposedSettings', {
|
|
hasAffiliationsFeature: true,
|
|
hasSamlFeature: true,
|
|
})
|
|
|
|
const userEmailDataCopy = { ...userEmailData2 }
|
|
const { confirmedAt: _, ...userEmailData } = userEmailDataCopy
|
|
const userEmailDataCopy1 = { ...userEmailData }
|
|
const userEmailDataCopy2 = {
|
|
...userEmailData,
|
|
email: 'baz@overleaf.com',
|
|
affiliation: {
|
|
...userEmailData.affiliation,
|
|
institution: {
|
|
...userEmailData.affiliation.institution,
|
|
id: 123,
|
|
confirmed: true,
|
|
isUniversity: true,
|
|
ssoEnabled: true,
|
|
},
|
|
},
|
|
}
|
|
|
|
fetchMock.get('/user/emails?ensureAffiliation=true', [
|
|
userEmailDataCopy1,
|
|
userEmailDataCopy2,
|
|
])
|
|
render(<EmailsSection />)
|
|
|
|
const buttons = (await screen.findAllByRole('button', {
|
|
name: /make primary/i,
|
|
})) as HTMLButtonElement[]
|
|
|
|
userEvent.hover(buttons[1].parentElement!)
|
|
|
|
screen.getByText(
|
|
'Please confirm your email by linking to your institutional account before making it the primary email',
|
|
{
|
|
exact: false,
|
|
}
|
|
)
|
|
})
|
|
})
|
|
|
|
it('shows loader when making email primary and removes button', async function () {
|
|
fetchMock
|
|
.get('/user/emails?ensureAffiliation=true', [userEmailData])
|
|
.post('/user/emails/default', 200)
|
|
const userEmailDataCopy = { ...userEmailData }
|
|
render(<EmailsSection />)
|
|
|
|
const button = await screen.findByRole('button', { name: /make primary/i })
|
|
fireEvent.click(button)
|
|
|
|
expect(screen.queryByRole('button', { name: /make primary/i })).to.be.null
|
|
|
|
userEmailDataCopy.default = true
|
|
|
|
await waitForElementToBeRemoved(() =>
|
|
screen.getByRole('button', { name: /sending/i })
|
|
)
|
|
|
|
expect(
|
|
screen.queryByText(/an error has occurred while performing your request/i)
|
|
).to.be.null
|
|
expect(screen.queryByRole('button', { name: /make primary/i })).to.be.null
|
|
})
|
|
|
|
it('shows error when making email primary', async function () {
|
|
fetchMock
|
|
.get('/user/emails?ensureAffiliation=true', [userEmailData])
|
|
.post('/user/emails/default', 503)
|
|
render(<EmailsSection />)
|
|
|
|
const button = await screen.findByRole('button', { name: /make primary/i })
|
|
fireEvent.click(button)
|
|
|
|
await waitForElementToBeRemoved(() =>
|
|
screen.getByRole('button', { name: /sending/i })
|
|
)
|
|
|
|
screen.getByText(/sorry, something went wrong/i)
|
|
screen.getByRole('button', { name: /make primary/i })
|
|
})
|
|
})
|
|
|
|
describe('email actions - delete', function () {
|
|
beforeEach(function () {
|
|
window.metaAttributesCache.set('ol-ExposedSettings', {
|
|
hasAffiliationsFeature: true,
|
|
})
|
|
fetchMock.reset()
|
|
})
|
|
|
|
afterEach(function () {
|
|
window.metaAttributesCache = new Map()
|
|
fetchMock.reset()
|
|
})
|
|
|
|
it('shows loader when deleting and removes the row', async function () {
|
|
fetchMock
|
|
.get('/user/emails?ensureAffiliation=true', [userEmailData])
|
|
.post('/user/emails/delete', 200)
|
|
render(<EmailsSection />)
|
|
|
|
const button = await screen.findByRole('button', { name: /remove/i })
|
|
fireEvent.click(button)
|
|
|
|
await waitForElementToBeRemoved(() =>
|
|
screen.queryByText(userEmailData.email)
|
|
)
|
|
})
|
|
|
|
it('shows error when deleting', async function () {
|
|
fetchMock
|
|
.get('/user/emails?ensureAffiliation=true', [userEmailData])
|
|
.post('/user/emails/delete', 503)
|
|
render(<EmailsSection />)
|
|
|
|
const button = await screen.findByRole('button', { name: /remove/i })
|
|
fireEvent.click(button)
|
|
|
|
await screen.queryByText(/sorry, something went wrong/i)
|
|
screen.getByRole('button', { name: /remove/i })
|
|
})
|
|
})
|