| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067 |
- import { expect } from 'chai'
- import sinon, { SinonStub } from 'sinon'
- import {
- fireEvent,
- render,
- screen,
- waitForElementToBeRemoved,
- within,
- } from '@testing-library/react'
- import fetchMock from 'fetch-mock'
- import { merge, cloneDeep } from 'lodash'
- import {
- professionalUserData,
- unconfirmedUserData,
- untrustedUserData,
- unconfirmedCommonsUserData,
- confirmedUserData,
- } from '../../settings/fixtures/test-user-email-data'
- import {
- notificationDropboxDuplicateProjectNames,
- notificationGroupInviteDefault,
- notificationIPMatchedAffiliation,
- notificationProjectInvite,
- notificationTPDSFileLimit,
- notificationsInstitution,
- } from '../fixtures/notifications-data'
- import Common from '../../../../../frontend/js/features/project-list/components/notifications/groups/common'
- import Institution from '../../../../../frontend/js/features/project-list/components/notifications/groups/institution'
- import ConfirmEmail, {
- getEmailDeletionDate,
- } from '../../../../../frontend/js/features/project-list/components/notifications/groups/confirm-email'
- import ReconfirmationInfo from '../../../../../frontend/js/features/project-list/components/notifications/groups/affiliation/reconfirmation-info'
- import { ProjectListProvider } from '../../../../../frontend/js/features/project-list/context/project-list-context'
- import { SplitTestProvider } from '@/shared/context/split-test-context'
- import {
- Notification,
- Institution as InstitutionType,
- } from '../../../../../types/project/dashboard/notification'
- import { DeepPartial } from '../../../../../types/utils'
- import { Project } from '../../../../../types/project/dashboard/api'
- import GroupsAndEnterpriseBanner from '../../../../../frontend/js/features/project-list/components/notifications/groups-and-enterprise-banner'
- import GroupSsoSetupSuccess from '../../../../../frontend/js/features/project-list/components/notifications/groups/group-sso-setup-success'
- import localStorage from '@/infrastructure/local-storage'
- import * as useLocationModule from '../../../../../frontend/js/shared/hooks/use-location'
- import {
- commonsSubscription,
- freeSubscription,
- groupSubscription,
- individualSubscription,
- } from '../fixtures/user-subscriptions'
- import getMeta from '@/utils/meta'
- import * as bootstrapUtils from '@/features/utils/bootstrap-5'
- const renderWithinProjectListProvider = (Component: React.ComponentType) => {
- render(<Component />, {
- wrapper: ({ children }) => (
- <ProjectListProvider>
- <SplitTestProvider>
- <ul className="list-unstyled">{children}</ul>
- </SplitTestProvider>
- </ProjectListProvider>
- ),
- })
- }
- describe('<UserNotifications />', function () {
- const exposedSettings = {
- samlInitPath: '/fakeSaml/',
- appName: 'Overleaf',
- }
- let isBootstrap5Stub: SinonStub
- before(function () {
- isBootstrap5Stub = sinon.stub(bootstrapUtils, 'isBootstrap5').returns(true)
- })
- after(function () {
- isBootstrap5Stub.restore()
- })
- beforeEach(function () {
- fetchMock.reset()
- // at least one project is required to show some notifications
- const projects = [{}] as Project[]
- fetchMock.post(/\/api\/project/, {
- status: 200,
- body: {
- projects,
- totalSize: projects.length,
- },
- })
- })
- afterEach(function () {
- fetchMock.reset()
- })
- describe('<Common>', function () {
- beforeEach(function () {
- window.metaAttributesCache.set('ol-user', {})
- Object.assign(getMeta('ol-ExposedSettings'), exposedSettings)
- })
- afterEach(function () {
- fetchMock.reset()
- })
- it('accepts project invite', async function () {
- const reconfiguredNotification: DeepPartial<Notification> = {
- _id: 1,
- templateKey: 'notification_project_invite',
- }
- window.metaAttributesCache.set('ol-notifications', [
- merge(cloneDeep(notificationProjectInvite), reconfiguredNotification),
- ])
- renderWithinProjectListProvider(Common)
- await fetchMock.flush(true)
- const deleteMock = fetchMock.delete(
- `/notifications/${reconfiguredNotification._id}`,
- 200
- )
- const acceptMock = fetchMock.post(
- `project/${notificationProjectInvite.messageOpts.projectId}/invite/token/${notificationProjectInvite.messageOpts.token}/accept`,
- 200
- )
- screen.getByRole('alert')
- screen.getByText(/would like you to join/i)
- const joinBtn = screen.getByRole('button', {
- name: /join project/i,
- }) as HTMLButtonElement
- expect(joinBtn.disabled).to.be.false
- fireEvent.click(joinBtn)
- expect(joinBtn.disabled).to.be.true
- await waitForElementToBeRemoved(() => screen.getByText('Loading'))
- expect(acceptMock.called()).to.be.true
- screen.getByText(/joined/i)
- expect(screen.queryByRole('button', { name: /join project/i })).to.be.null
- const openProject = screen.getByRole('button', { name: /open project/i })
- expect(openProject.getAttribute('href')).to.equal(
- `/project/${notificationProjectInvite.messageOpts.projectId}`
- )
- const closeBtn = screen.getByRole('button', { name: /close/i })
- fireEvent.click(closeBtn)
- expect(deleteMock.called()).to.be.true
- expect(screen.queryByRole('alert')).to.be.null
- })
- it('fails to accept project invite', async function () {
- const reconfiguredNotification: DeepPartial<Notification> = {
- _id: 1,
- templateKey: 'notification_project_invite',
- }
- window.metaAttributesCache.set('ol-notifications', [
- merge(cloneDeep(notificationProjectInvite), reconfiguredNotification),
- ])
- renderWithinProjectListProvider(Common)
- await fetchMock.flush(true)
- fetchMock.post(
- `project/${notificationProjectInvite.messageOpts.projectId}/invite/token/${notificationProjectInvite.messageOpts.token}/accept`,
- 500
- )
- screen.getByRole('alert')
- screen.getByText(/would like you to join/i)
- const joinBtn = screen.getByRole('button', {
- name: /join project/i,
- }) as HTMLButtonElement
- fireEvent.click(joinBtn)
- await waitForElementToBeRemoved(() =>
- screen.getByRole('button', { name: /loading/i })
- )
- expect(fetchMock.called()).to.be.true
- screen.getByRole('button', { name: /join project/i })
- expect(screen.queryByRole('button', { name: /open project/i })).to.be.null
- })
- it('shows WFH2020', async function () {
- const reconfiguredNotification: DeepPartial<Notification> = {
- _id: 1,
- templateKey: 'wfh_2020_upgrade_offer',
- }
- window.metaAttributesCache.set('ol-notifications', [
- merge(reconfiguredNotification),
- ])
- renderWithinProjectListProvider(Common)
- await fetchMock.flush(true)
- fetchMock.delete(`/notifications/${reconfiguredNotification._id}`, 200)
- screen.getByRole('alert')
- screen.getByText(/your free WFH2020 upgrade came to an end on/i)
- const viewLink = screen.getByRole('button', { name: /view/i })
- expect(viewLink.getAttribute('href')).to.equal(
- 'https://www.overleaf.com/events/wfh2020'
- )
- const closeBtn = screen.getByRole('button', { name: /close/i })
- fireEvent.click(closeBtn)
- expect(fetchMock.called()).to.be.true
- expect(screen.queryByRole('alert')).to.be.null
- })
- it('shows IP matched affiliation with SSO enabled', async function () {
- const reconfiguredNotification: DeepPartial<Notification> = {
- _id: 1,
- templateKey: 'notification_ip_matched_affiliation',
- messageOpts: { ssoEnabled: true },
- }
- window.metaAttributesCache.set('ol-notifications', [
- merge(
- cloneDeep(notificationIPMatchedAffiliation),
- reconfiguredNotification
- ),
- ])
- renderWithinProjectListProvider(Common)
- await fetchMock.flush(true)
- fetchMock.delete(`/notifications/${reconfiguredNotification._id}`, 200)
- screen.getByRole('alert')
- screen.getByText(/it looks like you’re at/i)
- screen.getByText(/you can now log in through your institution/i)
- screen.getByText(
- /link an institutional email address to your account to get started/i
- )
- const findOutMore = screen.getByRole('link', { name: /find out more/i })
- expect(findOutMore.getAttribute('href')).to.equal(
- 'https://www.overleaf.com/learn/how-to/Institutional_Login'
- )
- const linkAccount = screen.getByRole('button', { name: /link account/i })
- expect(linkAccount.getAttribute('href')).to.equal(
- `${exposedSettings.samlInitPath}?university_id=${notificationIPMatchedAffiliation.messageOpts.institutionId}&auto=/project`
- )
- const closeBtn = screen.getByRole('button', { name: /close/i })
- fireEvent.click(closeBtn)
- expect(fetchMock.called()).to.be.true
- expect(screen.queryByRole('alert')).to.be.null
- })
- it('shows IP matched affiliation with SSO disabled', async function () {
- const reconfiguredNotification: DeepPartial<Notification> = {
- _id: 1,
- templateKey: 'notification_ip_matched_affiliation',
- messageOpts: { ssoEnabled: false },
- }
- window.metaAttributesCache.set('ol-notifications', [
- merge(
- cloneDeep(notificationIPMatchedAffiliation),
- reconfiguredNotification
- ),
- ])
- renderWithinProjectListProvider(Common)
- await fetchMock.flush(true)
- fetchMock.delete(`/notifications/${reconfiguredNotification._id}`, 200)
- screen.getByRole('alert')
- screen.getByText(/it looks like you’re at/i)
- screen.getByText(/did you know that/i)
- screen.getByText(
- /add an institutional email address to claim your features/i
- )
- const addAffiliation = screen.getByRole('button', {
- name: /add affiliation/i,
- })
- expect(addAffiliation.getAttribute('href')).to.equal(`/user/settings`)
- const closeBtn = screen.getByRole('button', { name: /close/i })
- fireEvent.click(closeBtn)
- expect(fetchMock.called()).to.be.true
- expect(screen.queryByRole('alert')).to.be.null
- })
- it('shows tpds file limit', async function () {
- const reconfiguredNotification: DeepPartial<Notification> = {
- templateKey: 'notification_tpds_file_limit',
- }
- window.metaAttributesCache.set('ol-notifications', [
- merge(cloneDeep(notificationTPDSFileLimit), reconfiguredNotification),
- ])
- renderWithinProjectListProvider(Common)
- await fetchMock.flush(true)
- screen.getByRole('alert')
- screen.getByText(/file limit/i)
- screen.getByText(/You can't add more files to the project or sync it/i)
- const accountSettings = screen.getByRole('button', {
- name: /Open project/i,
- })
- expect(accountSettings.getAttribute('href')).to.equal('/project/123')
- const closeBtn = screen.getByRole('button', { name: /close/i })
- fireEvent.click(closeBtn)
- expect(screen.queryByRole('alert')).to.be.null
- })
- it('shows dropbox duplicate project names warning', async function () {
- const reconfiguredNotification: DeepPartial<Notification> = {
- _id: 1,
- templateKey: 'notification_dropbox_duplicate_project_names',
- }
- window.metaAttributesCache.set('ol-notifications', [
- merge(
- cloneDeep(notificationDropboxDuplicateProjectNames),
- reconfiguredNotification
- ),
- ])
- renderWithinProjectListProvider(Common)
- await fetchMock.flush(true)
- fetchMock.delete(`/notifications/${reconfiguredNotification._id}`, 200)
- screen.getByRole('alert')
- screen.getByText(/you have more than one project called/i)
- screen.getByText(/make your project names unique/i)
- const learnMore = screen.getByRole('link', { name: /learn more/i })
- expect(learnMore.getAttribute('href')).to.equal(
- '/learn/how-to/Dropbox_Synchronization#Troubleshooting'
- )
- const closeBtn = screen.getByRole('button', { name: /close/i })
- fireEvent.click(closeBtn)
- expect(fetchMock.called()).to.be.true
- expect(screen.queryByRole('alert')).to.be.null
- })
- it('shows dropbox unlinked tue to lapsed reconfirmation', async function () {
- const reconfiguredNotification: DeepPartial<Notification> = {
- _id: 1,
- templateKey:
- 'notification_dropbox_unlinked_due_to_lapsed_reconfirmation',
- }
- window.metaAttributesCache.set('ol-notifications', [
- merge(
- cloneDeep(notificationDropboxDuplicateProjectNames),
- reconfiguredNotification
- ),
- ])
- renderWithinProjectListProvider(Common)
- await fetchMock.flush(true)
- fetchMock.delete(`/notifications/${reconfiguredNotification._id}`, 200)
- screen.getByRole('alert')
- screen.getByText(/your Dropbox account has been unlinked/i)
- screen.getByText(
- /confirm you are still at the institution and on their license, or upgrade your account in order to relink your dropbox account/i
- )
- const learnMore = screen.getByRole('link', { name: /learn more/i })
- expect(learnMore.getAttribute('href')).to.equal(
- '/learn/how-to/Institutional_Email_Reconfirmation'
- )
- const closeBtn = screen.getByRole('button', { name: /close/i })
- fireEvent.click(closeBtn)
- expect(fetchMock.called()).to.be.true
- expect(screen.queryByRole('alert')).to.be.null
- })
- it('shows non specific notification', async function () {
- const reconfiguredNotification: DeepPartial<Notification> = {
- _id: 1,
- html: 'unspecific message',
- }
- window.metaAttributesCache.set('ol-notifications', [
- reconfiguredNotification,
- ])
- renderWithinProjectListProvider(Common)
- await fetchMock.flush(true)
- fetchMock.delete(`/notifications/${reconfiguredNotification._id}`, 200)
- screen.getByRole('alert')
- screen.getByText(reconfiguredNotification.html!)
- const closeBtn = screen.getByRole('button', { name: /close/i })
- fireEvent.click(closeBtn)
- expect(fetchMock.called()).to.be.true
- expect(screen.queryByRole('alert')).to.be.null
- })
- describe('<GroupInvitation />', function () {
- describe('without existing personal subscription', function () {
- it('shows group invitation notification for user without personal subscription', async function () {
- const notificationGroupInvite: DeepPartial<Notification> = {
- _id: 1,
- templateKey: 'notification_group_invitation',
- }
- window.metaAttributesCache.set('ol-notifications', [
- merge(
- cloneDeep(notificationGroupInviteDefault),
- notificationGroupInvite
- ),
- ])
- renderWithinProjectListProvider(Common)
- await fetchMock.flush(true)
- fetchMock.delete(`/notifications/${notificationGroupInvite._id}`, 200)
- screen.getByRole('alert')
- screen.getByText('inviter@overleaf.com')
- screen.getByText(
- /has invited you to join a group subscription on Overleaf/
- )
- screen.getByRole('button', { name: 'Join now' })
- screen.getByRole('button', { name: /close/i })
- })
- describe('with existing personal subscription', function () {
- it('shows group invitation notification for user with personal subscription', async function () {
- const notificationGroupInvite: DeepPartial<Notification> = {
- _id: 1,
- templateKey: 'notification_group_invitation',
- }
- window.metaAttributesCache.set('ol-notifications', [
- merge(
- cloneDeep(notificationGroupInviteDefault),
- notificationGroupInvite
- ),
- ])
- window.metaAttributesCache.set(
- 'ol-hasIndividualRecurlySubscription',
- true
- )
- renderWithinProjectListProvider(Common)
- await fetchMock.flush(true)
- fetchMock.delete(
- `/notifications/${notificationGroupInvite._id}`,
- 200
- )
- screen.getByRole('alert')
- screen.getByText(
- /inviter@overleaf.com has invited you to join a group Overleaf subscription. If you join this group, you may not need your individual subscription. Would you like to cancel it/
- )
- screen.getByRole('button', { name: 'Not now' })
- screen.getByRole('button', { name: 'Cancel my subscription' })
- })
- })
- })
- })
- })
- describe('<Institution>', function () {
- beforeEach(function () {
- Object.assign(getMeta('ol-ExposedSettings'), exposedSettings)
- fetchMock.reset()
- })
- afterEach(function () {
- fetchMock.reset()
- })
- it('shows sso available', function () {
- const institution: DeepPartial<InstitutionType> = {
- templateKey: 'notification_institution_sso_available',
- }
- window.metaAttributesCache.set('ol-notificationsInstitution', [
- { ...notificationsInstitution, ...institution },
- ])
- render(<Institution />)
- screen.getByRole('alert')
- screen.getByText(/you can now link/i)
- screen.getByText(/doing this will allow you to log in/i)
- const learnMore = screen.getByRole('link', { name: /learn more/i })
- expect(learnMore.getAttribute('href')).to.equal(
- '/learn/how-to/Institutional_Login'
- )
- const action = screen.getByRole('button', { name: /link account/i })
- expect(action.getAttribute('href')).to.equal(
- `${exposedSettings.samlInitPath}?university_id=${notificationsInstitution.institutionId}&auto=/project&email=${notificationsInstitution.email}`
- )
- })
- it('shows sso linked', function () {
- const institution: DeepPartial<InstitutionType> = {
- _id: 1,
- templateKey: 'notification_institution_sso_linked',
- }
- window.metaAttributesCache.set('ol-notificationsInstitution', [
- { ...notificationsInstitution, ...institution },
- ])
- render(<Institution />)
- fetchMock.delete(`/notifications/${institution._id}`, 200)
- screen.getByRole('alert')
- screen.getByText(/has been linked to your/i)
- const closeBtn = screen.getByRole('button', { name: /close/i })
- fireEvent.click(closeBtn)
- expect(fetchMock.called()).to.be.true
- expect(screen.queryByRole('alert')).to.be.null
- })
- it('shows sso non canonical', function () {
- const institution: DeepPartial<InstitutionType> = {
- _id: 1,
- templateKey: 'notification_institution_sso_non_canonical',
- }
- window.metaAttributesCache.set('ol-notificationsInstitution', [
- { ...notificationsInstitution, ...institution },
- ])
- render(<Institution />)
- fetchMock.delete(`/notifications/${institution._id}`, 200)
- screen.getByRole('alert')
- screen.getByText(/you’ve tried to log in with/i)
- screen.getByText(
- /in order to match your institutional metadata, your account is associated with/i
- )
- const closeBtn = screen.getByRole('button', { name: /close/i })
- fireEvent.click(closeBtn)
- expect(fetchMock.called()).to.be.true
- expect(screen.queryByRole('alert')).to.be.null
- })
- it('shows sso already registered', function () {
- const institution: DeepPartial<InstitutionType> = {
- _id: 1,
- templateKey: 'notification_institution_sso_already_registered',
- }
- window.metaAttributesCache.set('ol-notificationsInstitution', [
- { ...notificationsInstitution, ...institution },
- ])
- render(<Institution />)
- fetchMock.delete(`/notifications/${institution._id}`, 200)
- screen.getByRole('alert')
- screen.getByText(/which is already registered with/i)
- const action = screen.getByRole('button', { name: /find out more/i })
- expect(action.getAttribute('href')).to.equal(
- '/learn/how-to/Institutional_Login'
- )
- const closeBtn = screen.getByRole('button', { name: /close/i })
- fireEvent.click(closeBtn)
- expect(fetchMock.called()).to.be.true
- expect(screen.queryByRole('alert')).to.be.null
- })
- it('shows sso error', function () {
- const institution: DeepPartial<InstitutionType> = {
- templateKey: 'notification_institution_sso_error',
- error: {
- message: 'fake message',
- tryAgain: true,
- },
- }
- window.metaAttributesCache.set('ol-notificationsInstitution', [
- { ...notificationsInstitution, ...institution },
- ])
- render(<Institution />)
- screen.getByRole('alert')
- screen.getByText(/something went wrong/i)
- screen.getByText(institution.error!.message!)
- screen.getByText(/please try again/i)
- const closeBtn = screen.getByRole('button', { name: /close/i })
- fireEvent.click(closeBtn)
- expect(screen.queryByRole('alert')).to.be.null
- })
- })
- describe('getEmailDeletionDate', function () {
- beforeEach(async function () {
- window.metaAttributesCache.set('ol-userEmails', [
- confirmedUserData,
- untrustedUserData,
- ])
- this.clock = sinon.useFakeTimers(new Date('2025-07-01').getTime())
- })
- afterEach(function () {
- this.clock.restore()
- })
- it('returns deletion date for unconfirmed email within notification window', function () {
- window.metaAttributesCache.set('ol-userEmails', [unconfirmedUserData])
- const signUpDate = '2022-01-01' // Before cutoff '2025-03-03'
- const emailDeletionDate = getEmailDeletionDate(
- unconfirmedUserData,
- signUpDate
- )
- expect(emailDeletionDate).to.equal(
- new Date('2025-09-03').toLocaleDateString()
- )
- })
- it('returns false for primary email', function () {
- const primaryUserData = { ...unconfirmedUserData, default: true }
- const signUpDate = '2022-01-01'
- const emailDeletionDate = getEmailDeletionDate(
- primaryUserData,
- signUpDate
- )
- expect(emailDeletionDate).to.be.false
- })
- it('returns false for already confirmed email', function () {
- window.metaAttributesCache.set('ol-userEmails', [confirmedUserData])
- const signUpDate = '2022-01-01'
- const emailDeletionDate = getEmailDeletionDate(
- confirmedUserData,
- signUpDate
- )
- expect(emailDeletionDate).to.be.false
- })
- })
- describe('<ConfirmEmail/>', function () {
- beforeEach(async function () {
- Object.assign(getMeta('ol-ExposedSettings'), {
- emailConfirmationDisabled: false,
- })
- window.metaAttributesCache.set('ol-userEmails', [
- confirmedUserData,
- untrustedUserData,
- ])
- window.metaAttributesCache.set(
- 'ol-usersBestSubscription',
- freeSubscription
- )
- window.metaAttributesCache.set('ol-user', {
- signUpDate: new Date('2024-01-01').toISOString(),
- })
- this.clock = sinon.useFakeTimers(new Date('2025-07-01').getTime())
- })
- afterEach(function () {
- fetchMock.reset()
- this.clock.restore()
- })
- function testUnconfirmedNotification(
- userEmails: any[],
- isPrimary: boolean
- ) {
- it(`sends unconfirmed notification email successfully when email is ${isPrimary ? 'primary' : 'secondary'}`, async function () {
- window.metaAttributesCache.set('ol-userEmails', userEmails)
- renderWithinProjectListProvider(ConfirmEmail)
- await fetchMock.flush(true)
- fetchMock.post('/user/emails/resend_confirmation', 200)
- const email = userEmails[0].email
- const notificationBody = screen.getByTestId('pro-notification-body')
- if (isPrimary) {
- expect(notificationBody.textContent).to.contain(
- `Please confirm your primary email address ${email} by clicking on the link in the confirmation email.`
- )
- } else {
- expect(notificationBody.textContent).to.contain(
- `Please confirm your secondary email address ${email} by clicking on the link in the confirmation email.`
- )
- }
- const resendButton = screen.getByRole('button', { name: /resend/i })
- fireEvent.click(resendButton)
- await waitForElementToBeRemoved(() =>
- screen.getByRole('button', { name: /resend/i })
- )
- expect(fetchMock.called()).to.be.true
- expect(screen.queryByRole('alert')).to.be.null
- })
- }
- testUnconfirmedNotification(
- [{ email: 'baz@overleaf.com', default: true }],
- true
- )
- testUnconfirmedNotification(
- [{ email: 'baz@overleaf.com', default: false }],
- false
- )
- it('sends untrusted notification email successfully', async function () {
- window.metaAttributesCache.set('ol-userEmails', [untrustedUserData])
- renderWithinProjectListProvider(ConfirmEmail)
- await fetchMock.flush(true)
- fetchMock.post('/user/emails/resend_confirmation', 200)
- const email = untrustedUserData.email
- const notificationBody = screen.getByTestId(
- 'not-trusted-notification-body'
- )
- expect(notificationBody.textContent).to.contain(
- `To enhance the security of your Overleaf account, please reconfirm your secondary email address ${email}.`
- )
- const resendButton = screen.getByRole('button', { name: /resend/i })
- fireEvent.click(resendButton)
- await waitForElementToBeRemoved(() =>
- screen.getByRole('button', { name: /resend/i })
- )
- expect(fetchMock.called()).to.be.true
- expect(screen.queryByRole('alert')).to.be.null
- })
- it('fails to send', async function () {
- window.metaAttributesCache.set('ol-userEmails', [unconfirmedUserData])
- renderWithinProjectListProvider(ConfirmEmail)
- await fetchMock.flush(true)
- fetchMock.post('/user/emails/resend_confirmation', 500)
- const resendButtons = screen.getAllByRole('button', { name: /resend/i })
- const resendButton = resendButtons[0]
- fireEvent.click(resendButton)
- const notificationBody = screen.getByTestId('pro-notification-body')
- await waitForElementToBeRemoved(() =>
- within(notificationBody).getByTestId(
- 'loading-resending-confirmation-email'
- )
- )
- expect(fetchMock.called()).to.be.true
- screen.getByText(/something went wrong/i)
- })
- for (const subscription of [freeSubscription, individualSubscription]) {
- it(`shows commons notification for commons account when user is on ${subscription.type} plan`, async function () {
- window.metaAttributesCache.set('ol-userEmails', [
- unconfirmedCommonsUserData,
- ])
- window.metaAttributesCache.set('ol-usersBestSubscription', subscription)
- renderWithinProjectListProvider(ConfirmEmail)
- await fetchMock.flush(true)
- const alert = screen.getByRole('alert')
- const email = unconfirmedCommonsUserData.email
- const notificationBody = within(alert).getByTestId('notification-body')
- expect(notificationBody.textContent).to.contain(
- 'You are one step away from accessing Overleaf Professional features'
- )
- expect(notificationBody.textContent).to.contain(
- `Overleaf has an Overleaf subscription. Click the confirmation link sent to ${email} to upgrade to Overleaf Professional`
- )
- })
- }
- for (const subscription of [groupSubscription, commonsSubscription]) {
- it(`shows default notification for commons account when user is on ${subscription.type} plan`, async function () {
- window.metaAttributesCache.set('ol-userEmails', [
- unconfirmedCommonsUserData,
- ])
- window.metaAttributesCache.set('ol-usersBestSubscription', subscription)
- renderWithinProjectListProvider(ConfirmEmail)
- await fetchMock.flush(true)
- const alert = screen.getByRole('alert')
- const email = unconfirmedCommonsUserData.email
- const notificationBody = within(alert).getByTestId(
- 'pro-notification-body'
- )
- const isPrimary = unconfirmedCommonsUserData.default
- if (isPrimary) {
- expect(notificationBody.textContent).to.contain(
- `Please confirm your primary email address ${email} by clicking on the link in the confirmation email`
- )
- } else {
- expect(notificationBody.textContent).to.contain(
- `Please confirm your secondary email address ${email} by clicking on the link in the confirmation email`
- )
- }
- })
- }
- })
- describe('<Affiliation/>', function () {
- let assignStub: sinon.SinonStub
- beforeEach(function () {
- Object.assign(getMeta('ol-ExposedSettings'), exposedSettings)
- assignStub = sinon.stub()
- this.locationStub = sinon.stub(useLocationModule, 'useLocation').returns({
- assign: assignStub,
- replace: sinon.stub(),
- reload: sinon.stub(),
- setHash: sinon.stub(),
- })
- fetchMock.reset()
- })
- afterEach(function () {
- this.locationStub.restore()
- fetchMock.reset()
- })
- it('shows reconfirm message with SSO disabled', async function () {
- window.metaAttributesCache.set('ol-allInReconfirmNotificationPeriods', [
- { ...professionalUserData, samlProviderId: 'Saml Provider' },
- ])
- render(<ReconfirmationInfo />)
- screen.getByRole('alert')
- screen.getByText(
- /take a moment to confirm your institutional email address/i
- )
- const removeLink = screen.getByRole('link', { name: /remove it/i })
- expect(removeLink.getAttribute('href')).to.equal(
- `/user/settings?remove=${professionalUserData.email}`
- )
- const learnMore = screen.getByRole('link', { name: /learn more/i })
- expect(learnMore.getAttribute('href')).to.equal(
- '/learn/how-to/Institutional_Email_Reconfirmation'
- )
- const sendReconfirmationMock = fetchMock.post(
- '/user/emails/send-reconfirmation',
- 200
- )
- fireEvent.click(
- screen.getByRole('button', { name: /confirm affiliation/i })
- )
- await waitForElementToBeRemoved(() => screen.getByText(/loading/i))
- screen.getByText(/check your email inbox to confirm/i)
- expect(screen.queryByRole('button', { name: /confirm affiliation/i })).to
- .be.null
- expect(screen.queryByRole('link', { name: /remove it/i })).to.be.null
- expect(screen.queryByRole('link', { name: /learn more/i })).to.be.null
- expect(sendReconfirmationMock.called()).to.be.true
- fireEvent.click(
- screen.getByRole('button', { name: /resend confirmation email/i })
- )
- await waitForElementToBeRemoved(() => screen.getByText('Loading'))
- expect(sendReconfirmationMock.calls()).to.have.lengthOf(2)
- })
- it('shows reconfirm message with SSO enabled', async function () {
- window.metaAttributesCache.set('ol-allInReconfirmNotificationPeriods', [
- merge(cloneDeep(professionalUserData), {
- affiliation: { institution: { ssoEnabled: true } },
- }),
- ])
- render(<ReconfirmationInfo />)
- fireEvent.click(
- screen.getByRole('button', { name: /confirm affiliation/i })
- )
- sinon.assert.calledOnce(assignStub)
- sinon.assert.calledWithMatch(
- assignStub,
- `${exposedSettings.samlInitPath}?university_id=${professionalUserData.affiliation.institution.id}&reconfirm=/project`
- )
- })
- it('shows success reconfirmation message', function () {
- window.metaAttributesCache.set('ol-userEmails', [
- { ...professionalUserData, samlProviderId: 'Saml Provider' },
- ])
- window.metaAttributesCache.set('ol-reconfirmedViaSAML', 'Saml Provider')
- const { rerender } = render(<ReconfirmationInfo />)
- screen.getByRole('alert')
- screen.getByText(professionalUserData.affiliation!.institution!.name!)
- screen.getByText(/affiliation is confirmed/i)
- window.metaAttributesCache.set('ol-reconfirmedViaSAML', '')
- rerender(<ReconfirmationInfo />)
- expect(screen.queryByRole('alert')).to.be.null
- })
- })
- describe('<GroupsAndEnterpriseBanner />', function () {
- beforeEach(function () {
- localStorage.clear()
- fetchMock.reset()
- // at least one project is required to show some notifications
- const projects = [{}] as Project[]
- fetchMock.post(/\/api\/project/, {
- status: 200,
- body: {
- projects,
- totalSize: projects.length,
- },
- })
- window.metaAttributesCache.set(
- 'ol-groupsAndEnterpriseBannerVariant',
- 'on-premise'
- )
- })
- afterEach(function () {
- fetchMock.reset()
- })
- it('does not show the banner for users that are in group or are affiliated', async function () {
- window.metaAttributesCache.set('ol-showGroupsAndEnterpriseBanner', false)
- renderWithinProjectListProvider(GroupsAndEnterpriseBanner)
- await fetchMock.flush(true)
- expect(screen.queryByRole('button', { name: 'Contact Sales' })).to.be.null
- })
- it('shows the banner for users that have dismissed the previous banners', async function () {
- window.metaAttributesCache.set('ol-showGroupsAndEnterpriseBanner', true)
- localStorage.setItem('has_dismissed_groups_and_enterprise_banner', true)
- renderWithinProjectListProvider(GroupsAndEnterpriseBanner)
- await fetchMock.flush(true)
- expect(screen.queryByRole('button', { name: 'Contact Sales' })).to.not.be
- .null
- })
- it('shows the banner for users that have dismissed the banner more than 30 days ago', async function () {
- const dismissed = new Date()
- dismissed.setDate(dismissed.getDate() - 31) // 31 days
- window.metaAttributesCache.set('ol-showGroupsAndEnterpriseBanner', true)
- localStorage.setItem(
- 'has_dismissed_groups_and_enterprise_banner',
- dismissed
- )
- renderWithinProjectListProvider(GroupsAndEnterpriseBanner)
- await fetchMock.flush(true)
- expect(screen.queryByRole('button', { name: 'Contact Sales' })).to.not.be
- .null
- })
- it('does not show the banner for users that have dismissed the banner within the last 30 days', async function () {
- const dismissed = new Date()
- dismissed.setDate(dismissed.getDate() - 29) // 29 days
- window.metaAttributesCache.set('ol-showGroupsAndEnterpriseBanner', true)
- localStorage.setItem(
- 'has_dismissed_groups_and_enterprise_banner',
- dismissed
- )
- renderWithinProjectListProvider(GroupsAndEnterpriseBanner)
- await fetchMock.flush(true)
- expect(screen.queryByRole('button', { name: 'Contact Sales' })).to.be.null
- })
- describe('users that are not in group and are not affiliated', function () {
- beforeEach(function () {
- localStorage.clear()
- fetchMock.reset()
- // at least one project is required to show some notifications
- const projects = [{}] as Project[]
- fetchMock.post(/\/api\/project/, {
- status: 200,
- body: {
- projects,
- totalSize: projects.length,
- },
- })
- window.metaAttributesCache.set('ol-showGroupsAndEnterpriseBanner', true)
- })
- afterEach(function () {
- fetchMock.reset()
- })
- after(function () {
- localStorage.clear()
- })
- it('will show the correct text for the `on-premise` variant', async function () {
- window.metaAttributesCache.set(
- 'ol-groupsAndEnterpriseBannerVariant',
- 'on-premise'
- )
- renderWithinProjectListProvider(GroupsAndEnterpriseBanner)
- await fetchMock.flush(true)
- screen.getByText(
- 'Overleaf On-Premises: Does your company want to keep its data within its firewall? Overleaf offers Server Pro, an on-premises solution for companies. Get in touch to learn more.'
- )
- const link = screen.getByRole('button', { name: 'Contact Sales' })
- expect(link.getAttribute('href')).to.equal(`/for/contact-sales-2`)
- })
- it('will show the correct text for the `FOMO` variant', async function () {
- window.metaAttributesCache.set(
- 'ol-groupsAndEnterpriseBannerVariant',
- 'FOMO'
- )
- renderWithinProjectListProvider(GroupsAndEnterpriseBanner)
- await fetchMock.flush(true)
- screen.getByText(
- 'Why do Fortune 500 companies and top research institutions trust Overleaf to streamline their collaboration? Get in touch to learn more.'
- )
- const link = screen.getByRole('button', { name: 'Contact Sales' })
- expect(link.getAttribute('href')).to.equal(`/for/contact-sales-4`)
- })
- })
- })
- describe('GroupSsoSetupSuccess', function () {
- it('shows group SSO linked notification', function () {
- window.metaAttributesCache.set('ol-groupSsoSetupSuccess', true)
- renderWithinProjectListProvider(GroupSsoSetupSuccess)
- screen.getByText('Success! Single sign-on is all set up for you.')
- })
- it('does not show group SSO linked notification', function () {
- window.metaAttributesCache.set('ol-groupSsoSetupSuccess', false)
- renderWithinProjectListProvider(GroupSsoSetupSuccess)
- expect(
- screen.queryByText('Success! Single sign-on is all set up for you.')
- ).to.be.null
- })
- })
- })
|