| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040 |
- import { expect } from 'chai'
- import sinon from 'sinon'
- import { screen, fireEvent, render, waitFor } from '@testing-library/react'
- import fetchMock from 'fetch-mock'
- import userEvent from '@testing-library/user-event'
- import * as bootstrapUtils from '@/features/utils/bootstrap-5'
- import ShareProjectModal from '../../../../../frontend/js/features/share-project-modal/components/share-project-modal'
- import {
- renderWithEditorContext,
- cleanUpContext,
- } from '../../../helpers/render-with-context'
- import {
- EditorProviders,
- USER_EMAIL,
- USER_ID,
- } from '../../../helpers/editor-providers'
- import * as useLocationModule from '../../../../../frontend/js/shared/hooks/use-location'
- async function changePrivilegeLevel(screen, { current, next }) {
- const select = screen.getByDisplayValue(current)
- await fireEvent.click(select)
- const option = screen.getByRole('option', {
- name: next,
- })
- await fireEvent.click(option)
- }
- describe('<ShareProjectModal/>', function () {
- const project = {
- _id: 'test-project',
- name: 'Test Project',
- features: {
- collaborators: 10,
- compileGroup: 'standard',
- },
- owner: {
- _id: USER_ID,
- email: USER_EMAIL,
- },
- members: [],
- invites: [],
- }
- const contacts = [
- // user with edited name
- {
- type: 'user',
- email: 'test-user@example.com',
- first_name: 'Test',
- last_name: 'User',
- name: 'Test User',
- },
- // user with default name (email prefix)
- {
- type: 'user',
- email: 'test@example.com',
- first_name: 'test',
- },
- // no last name
- {
- type: 'user',
- first_name: 'Eratosthenes',
- email: 'eratosthenes@example.com',
- },
- // more users
- {
- type: 'user',
- first_name: 'Claudius',
- last_name: 'Ptolemy',
- email: 'ptolemy@example.com',
- },
- {
- type: 'user',
- first_name: 'Abd al-Rahman',
- last_name: 'Al-Sufi',
- email: 'al-sufi@example.com',
- },
- {
- type: 'user',
- first_name: 'Nicolaus',
- last_name: 'Copernicus',
- email: 'copernicus@example.com',
- },
- ]
- const modalProps = {
- show: true,
- handleHide: sinon.stub(),
- }
- beforeEach(function () {
- this.locationStub = sinon.stub(useLocationModule, 'useLocation').returns({
- assign: sinon.stub(),
- replace: sinon.stub(),
- reload: sinon.stub(),
- })
- this.isBootstrap5Stub = sinon
- .stub(bootstrapUtils, 'isBootstrap5')
- .returns(true)
- fetchMock.get('/user/contacts', { contacts })
- window.metaAttributesCache.set('ol-user', { allowedFreeTrial: true })
- window.metaAttributesCache.set('ol-showUpgradePrompt', true)
- window.metaAttributesCache.set('ol-isReviewerRoleEnabled', true)
- })
- afterEach(function () {
- this.locationStub.restore()
- this.isBootstrap5Stub.restore()
- fetchMock.restore()
- cleanUpContext()
- })
- it('renders the modal', async function () {
- renderWithEditorContext(<ShareProjectModal {...modalProps} />, {
- scope: { project },
- })
- await screen.findByText('Share Project')
- })
- it('calls handleHide when a Close button is pressed', async function () {
- const handleHide = sinon.stub()
- renderWithEditorContext(
- <ShareProjectModal {...modalProps} handleHide={handleHide} />,
- { scope: { project } }
- )
- const [headerCloseButton, footerCloseButton] = await screen.findAllByRole(
- 'button',
- { name: 'Close' }
- )
- await userEvent.click(headerCloseButton)
- await userEvent.click(footerCloseButton)
- expect(handleHide.callCount).to.equal(2)
- })
- it('handles access level "private"', async function () {
- renderWithEditorContext(<ShareProjectModal {...modalProps} />, {
- scope: { project: { ...project, publicAccesLevel: 'private' } },
- })
- await screen.findByText('Link sharing is off')
- await screen.findByRole('button', { name: 'Turn on link sharing' })
- expect(screen.queryByText('Anyone with this link can view this project')).to
- .be.null
- expect(screen.queryByText('Anyone with this link can edit this project')).to
- .be.null
- })
- it('handles access level "tokenBased"', async function () {
- const tokens = {
- readAndWrite: '6862414195fwtbrtrdtskb',
- readAndWritePrefix: '6862414195',
- readOnly: 'wrnjfzkysqkr',
- readAndWriteHashPrefix: 'taEVki',
- readOnlyHashPrefix: 'j2xYbL',
- }
- fetchMock.get(`/project/${project._id}/tokens`, tokens)
- renderWithEditorContext(<ShareProjectModal {...modalProps} />, {
- scope: { project: { ...project, publicAccesLevel: 'tokenBased' } },
- })
- await screen.findByText('Link sharing is on')
- await screen.findByRole('button', { name: 'Turn off link sharing' })
- expect(screen.queryByText('Anyone with this link can view this project'))
- .not.to.be.null
- expect(screen.queryByText('Anyone with this link can edit this project'))
- .not.to.be.null
- screen.getByText(
- `https://www.test-overleaf.com/${tokens.readAndWrite}#${tokens.readAndWriteHashPrefix}`
- )
- screen.getByText(
- `https://www.test-overleaf.com/read/${tokens.readOnly}#${tokens.readOnlyHashPrefix}`
- )
- })
- it('handles legacy access level "readAndWrite"', async function () {
- renderWithEditorContext(<ShareProjectModal {...modalProps} />, {
- scope: { project: { ...project, publicAccesLevel: 'readAndWrite' } },
- })
- await screen.findByText(
- 'This project is public and can be edited by anyone with the URL.'
- )
- await screen.findByRole('button', { name: 'Make Private' })
- })
- it('handles legacy access level "readOnly"', async function () {
- renderWithEditorContext(<ShareProjectModal {...modalProps} />, {
- scope: { project: { ...project, publicAccesLevel: 'readOnly' } },
- })
- await screen.findByText(
- 'This project is public and can be viewed but not edited by anyone with the URL'
- )
- await screen.findByRole('button', { name: 'Make Private' })
- })
- it('displays actions for project-owners', async function () {
- const invites = [
- {
- _id: 'invited-author',
- email: 'invited-author@example.com',
- privileges: 'readAndWrite',
- },
- ]
- // render as project owner: actions should be present
- render(
- <EditorProviders
- scope={{
- project: {
- ...project,
- invites,
- publicAccesLevel: 'tokenBased',
- },
- }}
- >
- <ShareProjectModal {...modalProps} />
- </EditorProviders>
- )
- await screen.findByRole('button', { name: 'Turn off link sharing' })
- await screen.findByRole('button', { name: 'Resend' })
- })
- it('hides actions from non-project-owners when link sharing on', async function () {
- const invites = [
- {
- _id: 'invited-author',
- email: 'invited-author@example.com',
- privileges: 'readAndWrite',
- },
- ]
- render(
- <EditorProviders
- scope={{
- project: {
- ...project,
- invites,
- publicAccesLevel: 'tokenBased',
- },
- }}
- user={{
- id: 'non-project-owner',
- email: 'non-project-owner@example.com',
- }}
- >
- <ShareProjectModal {...modalProps} />
- </EditorProviders>
- )
- await screen.findByText(
- 'To change access permissions, please ask the project owner'
- )
- expect(screen.queryByRole('button', { name: 'Turn off link sharing' })).to
- .be.null
- expect(screen.queryByRole('button', { name: 'Turn on link sharing' })).to.be
- .null
- expect(screen.queryByRole('button', { name: 'Resend' })).to.be.null
- })
- it('hides actions from non-project-owners when link sharing off', async function () {
- const invites = [
- {
- _id: 'invited-author',
- email: 'invited-author@example.com',
- privileges: 'readAndWrite',
- },
- ]
- render(
- <EditorProviders
- scope={{
- project: {
- ...project,
- invites,
- publicAccesLevel: 'private',
- },
- }}
- user={{
- id: 'non-project-owner',
- email: 'non-project-owner@example.com',
- }}
- >
- <ShareProjectModal {...modalProps} />
- </EditorProviders>
- )
- await screen.findByText(
- 'To add more collaborators or turn on link sharing, please ask the project owner'
- )
- expect(screen.queryByRole('button', { name: 'Turn off link sharing' })).to
- .be.null
- expect(screen.queryByRole('button', { name: 'Turn on link sharing' })).to.be
- .null
- expect(screen.queryByRole('button', { name: 'Resend' })).to.be.null
- })
- it('only shows read-only token link to restricted token members', async function () {
- window.metaAttributesCache.set('ol-isRestrictedTokenMember', true)
- renderWithEditorContext(<ShareProjectModal {...modalProps} />, {
- isRestrictedTokenMember: true,
- scope: { project: { ...project, publicAccesLevel: 'tokenBased' } },
- })
- // no buttons
- expect(screen.queryByRole('button', { name: 'Turn on link sharing' })).to.be
- .null
- expect(screen.queryByRole('button', { name: 'Turn off link sharing' })).to
- .be.null
- // only read-only token link
- await screen.findByText('Anyone with this link can view this project')
- expect(screen.queryByText('Anyone with this link can edit this project')).to
- .be.null
- })
- it('displays project members and invites', async function () {
- const members = [
- {
- _id: 'member-author',
- email: 'member-author@example.com',
- privileges: 'readAndWrite',
- },
- {
- _id: 'member-viewer',
- email: 'member-viewer@example.com',
- privileges: 'readOnly',
- },
- ]
- const invites = [
- {
- _id: 'invited-author',
- email: 'invited-author@example.com',
- privileges: 'readAndWrite',
- },
- {
- _id: 'invited-viewer',
- email: 'invited-viewer@example.com',
- privileges: 'readOnly',
- },
- ]
- renderWithEditorContext(<ShareProjectModal {...modalProps} />, {
- scope: {
- project: {
- ...project,
- members,
- invites,
- publicAccesLevel: 'tokenBased',
- },
- },
- })
- const projectOwnerEmail = USER_EMAIL
- await screen.findByText(projectOwnerEmail)
- expect(screen.queryAllByText(projectOwnerEmail)).to.have.length(1)
- expect(screen.queryAllByText('member-author@example.com')).to.have.length(1)
- expect(screen.queryAllByText('member-viewer@example.com')).to.have.length(1)
- expect(screen.queryAllByText('invited-author@example.com')).to.have.length(
- 1
- )
- expect(screen.queryAllByText('invited-viewer@example.com')).to.have.length(
- 1
- )
- expect(screen.queryAllByText('Invite not yet accepted.')).to.have.length(
- invites.length
- )
- expect(screen.queryAllByRole('button', { name: 'Resend' })).to.have.length(
- invites.length
- )
- })
- it('resends an invite', async function () {
- fetchMock.postOnce(
- 'express:/project/:projectId/invite/:inviteId/resend',
- 204
- )
- const invites = [
- {
- _id: 'invited-author',
- email: 'invited-author@example.com',
- privileges: 'readAndWrite',
- },
- ]
- renderWithEditorContext(<ShareProjectModal {...modalProps} />, {
- scope: {
- project: {
- ...project,
- invites,
- publicAccesLevel: 'tokenBased',
- },
- },
- })
- const [, closeButton] = screen.getAllByRole('button', {
- name: 'Close',
- })
- const resendButton = screen.getByRole('button', { name: 'Resend' })
- fireEvent.click(resendButton)
- await waitFor(() => expect(closeButton.disabled).to.be.true)
- expect(fetchMock.done()).to.be.true
- expect(closeButton.disabled).to.be.false
- })
- it('revokes an invite', async function () {
- fetchMock.deleteOnce('express:/project/:projectId/invite/:inviteId', 204)
- const invites = [
- {
- _id: 'invited-author',
- email: 'invited-author@example.com',
- privileges: 'readAndWrite',
- },
- ]
- renderWithEditorContext(<ShareProjectModal {...modalProps} />, {
- scope: {
- project: {
- ...project,
- invites,
- publicAccesLevel: 'tokenBased',
- },
- },
- })
- const [, closeButton] = screen.getAllByRole('button', {
- name: 'Close',
- })
- const revokeButton = screen.getByRole('button', { name: 'Revoke' })
- fireEvent.click(revokeButton)
- await waitFor(() => expect(closeButton.disabled).to.be.true)
- expect(fetchMock.done()).to.be.true
- expect(closeButton.disabled).to.be.false
- })
- it('changes member privileges to read + write', async function () {
- fetchMock.putOnce('express:/project/:projectId/users/:userId', 204)
- const members = [
- {
- _id: 'member-viewer',
- email: 'member-viewer@example.com',
- privileges: 'readOnly',
- },
- ]
- renderWithEditorContext(<ShareProjectModal {...modalProps} />, {
- scope: {
- project: {
- ...project,
- members,
- publicAccesLevel: 'tokenBased',
- },
- },
- })
- const [, closeButton] = await screen.getAllByRole('button', {
- name: 'Close',
- })
- expect(
- await screen.findAllByText('member-viewer@example.com')
- ).to.have.length(1)
- await changePrivilegeLevel(screen, { current: 'Viewer', next: 'Editor' })
- await waitFor(() => expect(closeButton.disabled).to.be.true)
- const { body } = fetchMock.lastOptions()
- expect(JSON.parse(body)).to.deep.equal({ privilegeLevel: 'readAndWrite' })
- expect(fetchMock.done()).to.be.true
- expect(closeButton.disabled).to.be.false
- })
- it('removes a member from the project', async function () {
- fetchMock.deleteOnce('express:/project/:projectId/users/:userId', 204)
- const members = [
- {
- _id: 'member-viewer',
- email: 'member-viewer@example.com',
- privileges: 'readOnly',
- },
- ]
- renderWithEditorContext(<ShareProjectModal {...modalProps} />, {
- scope: {
- project: {
- ...project,
- members,
- publicAccesLevel: 'tokenBased',
- },
- },
- })
- expect(
- await screen.findAllByText('member-viewer@example.com')
- ).to.have.length(1)
- await changePrivilegeLevel(screen, {
- current: 'Viewer',
- next: 'Remove access',
- })
- const removeButton = screen.getByRole('button', {
- name: 'Change',
- })
- fireEvent.click(removeButton)
- const url = fetchMock.lastUrl()
- expect(url).to.equal('/project/test-project/users/member-viewer')
- expect(fetchMock.done()).to.be.true
- })
- it('changes member privileges to owner with confirmation', async function () {
- fetchMock.postOnce('express:/project/:projectId/transfer-ownership', 204)
- const members = [
- {
- _id: 'member-viewer',
- email: 'member-viewer@example.com',
- privileges: 'readOnly',
- },
- ]
- renderWithEditorContext(<ShareProjectModal {...modalProps} />, {
- scope: {
- project: {
- ...project,
- members,
- publicAccesLevel: 'tokenBased',
- },
- },
- })
- await screen.findByText('member-viewer@example.com')
- expect(screen.queryAllByText('member-viewer@example.com')).to.have.length(1)
- await changePrivilegeLevel(screen, {
- current: 'Viewer',
- next: 'Make owner',
- })
- screen.getByText((_, node) => {
- return (
- node.textContent ===
- 'Are you sure you want to make member-viewer@example.com the owner of Test Project?'
- )
- })
- const confirmButton = screen.getByRole('button', {
- name: 'Change owner',
- })
- fireEvent.click(confirmButton)
- await waitFor(() => expect(confirmButton.disabled).to.be.true)
- const { body } = fetchMock.lastOptions()
- expect(JSON.parse(body)).to.deep.equal({ user_id: 'member-viewer' })
- expect(fetchMock.done()).to.be.true
- })
- it('sends invites to input email addresses', async function () {
- renderWithEditorContext(<ShareProjectModal {...modalProps} />, {
- scope: {
- project: {
- ...project,
- publicAccesLevel: 'tokenBased',
- },
- },
- })
- const [inputElement] = await screen.findAllByLabelText('Add people')
- // loading contacts
- await waitFor(() => {
- expect(fetchMock.called('express:/user/contacts')).to.be.true
- })
- // displaying a list of matching contacts
- inputElement.focus()
- fireEvent.change(inputElement, { target: { value: 'ptolemy' } })
- await screen.findByText(/ptolemy@example.com/)
- // sending invitations
- fetchMock.post('express:/project/:projectId/invite', (url, req) => {
- const data = JSON.parse(req.body)
- if (data.email === 'a@b.c') {
- return {
- status: 400,
- body: { errorReason: 'invalid_email' },
- }
- }
- return {
- status: 200,
- body: {
- invite: {
- ...data,
- _id: data.email,
- },
- },
- }
- })
- fireEvent.paste(inputElement, {
- clipboardData: {
- getData: () =>
- `test@example.com; foo@example.com
- bar@example.com, a@b.c`,
- },
- })
- const user = userEvent.setup()
- await user.click(screen.getByTestId('add-collaborator-select'))
- await user.click(screen.getByText('Viewer'))
- const submitButton = screen.getByRole('button', { name: 'Invite' })
- await userEvent.click(submitButton)
- let calls
- await waitFor(
- () => {
- calls = fetchMock.calls('express:/project/:projectId/invite')
- expect(calls).to.have.length(4)
- },
- { timeout: 5000 } // allow time for delay between each request
- )
- expect(calls[0][1].body).to.equal(
- JSON.stringify({ email: 'test@example.com', privileges: 'readOnly' })
- )
- expect(calls[1][1].body).to.equal(
- JSON.stringify({ email: 'foo@example.com', privileges: 'readOnly' })
- )
- expect(calls[2][1].body).to.equal(
- JSON.stringify({ email: 'bar@example.com', privileges: 'readOnly' })
- )
- expect(calls[3][1].body).to.equal(
- JSON.stringify({ email: 'a@b.c', privileges: 'readOnly' })
- )
- // error from the last invite
- screen.getByText('An email address is invalid')
- })
- it('displays a message when the collaborator limit is reached', async function () {
- fetchMock.post(
- '/event/paywall-prompt',
- {},
- { body: { 'paywall-type': 'project-sharing' } }
- )
- renderWithEditorContext(<ShareProjectModal {...modalProps} />, {
- scope: {
- project: {
- ...project,
- publicAccesLevel: 'tokenBased',
- features: {
- collaborators: 0,
- compileGroup: 'standard',
- },
- },
- },
- })
- await screen.findByText('Add more editors')
- const user = userEvent.setup()
- await user.click(screen.getByTestId('add-collaborator-select'))
- const editorOption = screen.getByText('Editor').closest('button')
- const reviewerOption = screen.getByText('Reviewer').closest('button')
- const viewerOption = screen.getByText('Viewer').closest('button')
- expect(editorOption.classList.contains('disabled')).to.be.true
- expect(reviewerOption.classList.contains('disabled')).to.be.false
- expect(viewerOption.classList.contains('disabled')).to.be.false
- screen.getByText(
- /Upgrade to add more editors and access collaboration features like track changes and full project history/
- )
- })
- it('counts reviewers towards the collaborator limit', async function () {
- renderWithEditorContext(<ShareProjectModal {...modalProps} />, {
- scope: {
- project: {
- ...project,
- features: {
- collaborators: 1,
- },
- members: [
- {
- _id: 'reviewer-id',
- email: 'reviewer@example.com',
- privileges: 'review',
- },
- ],
- },
- },
- })
- await screen.findByText('Add more editors')
- const user = userEvent.setup()
- await user.click(screen.getByTestId('add-collaborator-select'))
- const editorOption = screen.getByText('Editor').closest('button')
- const reviewerOption = screen.getByText('Reviewer').closest('button')
- const viewerOption = screen.getByText('Viewer').closest('button')
- expect(editorOption.classList.contains('disabled')).to.be.true
- expect(reviewerOption.classList.contains('disabled')).to.be.false
- expect(viewerOption.classList.contains('disabled')).to.be.false
- screen.getByText(
- /Upgrade to add more editors and access collaboration features like track changes and full project history/
- )
- })
- it('handles server error responses', async function () {
- renderWithEditorContext(<ShareProjectModal {...modalProps} />, {
- scope: {
- project: {
- ...project,
- publicAccesLevel: 'tokenBased',
- },
- },
- })
- // loading contacts
- await waitFor(() => {
- expect(fetchMock.called('express:/user/contacts')).to.be.true
- })
- const [inputElement] = await screen.findAllByLabelText('Add people')
- const submitButton = screen.getByRole('button', { name: 'Invite' })
- const respondWithError = async function (errorReason) {
- fireEvent.focus(inputElement)
- fireEvent.change(inputElement, {
- target: { value: 'invited-author-1@example.com' },
- })
- fireEvent.blur(inputElement)
- fetchMock.postOnce(
- 'express:/project/:projectId/invite',
- {
- status: 400,
- body: { errorReason },
- },
- { overwriteRoutes: true }
- )
- expect(submitButton.disabled).to.be.false
- await userEvent.click(submitButton)
- await fetchMock.flush(true)
- expect(fetchMock.done()).to.be.true
- }
- await respondWithError('cannot_invite_non_user')
- await screen.findByText(
- `Can’t send invite. Recipient must already have an Overleaf account`
- )
- await respondWithError('cannot_verify_user_not_robot')
- await screen.findByText(
- `Sorry, we could not verify that you are not a robot. Please check that Google reCAPTCHA is not being blocked by an ad blocker or firewall.`
- )
- await respondWithError('cannot_invite_self')
- await screen.findByText(`Can’t send invite to yourself`)
- await respondWithError('invalid_email')
- await screen.findByText(`An email address is invalid`)
- await respondWithError('too_many_requests')
- await screen.findByText(
- `Too many requests were received in a short space of time. Please wait for a few moments and try again.`
- )
- })
- it('handles switching between access levels', async function () {
- fetchMock.post('express:/project/:projectId/settings/admin', 204)
- renderWithEditorContext(<ShareProjectModal {...modalProps} />, {
- scope: {
- project: { ...project, publicAccesLevel: 'private' },
- },
- })
- await screen.findByText('Link sharing is off')
- const enableButton = await screen.findByRole('button', {
- name: 'Turn on link sharing',
- })
- fireEvent.click(enableButton)
- await waitFor(() => expect(enableButton.disabled).to.be.true)
- const { body: tokenBody } = fetchMock.lastOptions()
- expect(JSON.parse(tokenBody)).to.deep.equal({
- publicAccessLevel: 'tokenBased',
- })
- // NOTE: updating the scoped project data manually,
- // as the project data is usually updated via the websocket connection
- window.overleaf.unstable.store.set('project', {
- ...project,
- publicAccesLevel: 'tokenBased',
- })
- // watchCallbacks.project({ ...project, publicAccesLevel: 'tokenBased' })
- await screen.findByText('Link sharing is on')
- const disableButton = await screen.findByRole('button', {
- name: 'Turn off link sharing',
- })
- fireEvent.click(disableButton)
- await waitFor(() => expect(disableButton.disabled).to.be.true)
- const { body: privateBody } = fetchMock.lastOptions()
- expect(JSON.parse(privateBody)).to.deep.equal({
- publicAccessLevel: 'private',
- })
- // NOTE: updating the scoped project data manually,
- // as the project data is usually updated via the websocket connection
- window.overleaf.unstable.store.set('project', {
- ...project,
- publicAccesLevel: 'private',
- })
- // watchCallbacks.project({ ...project, publicAccesLevel: 'private' })
- await screen.findByText('Link sharing is off')
- })
- it('avoids selecting unmatched contact', async function () {
- renderWithEditorContext(<ShareProjectModal {...modalProps} />, {
- scope: { project },
- })
- const [inputElement] = await screen.findAllByLabelText('Add people')
- // Wait for contacts to load
- await waitFor(() => {
- expect(fetchMock.called('express:/user/contacts')).to.be.true
- })
- // Enter a prefix that matches a contact
- inputElement.focus()
- fireEvent.change(inputElement, { target: { value: 'ptolemy' } })
- // The matching contact should now be present and selected
- await screen.findByRole('option', {
- name: `Claudius Ptolemy <ptolemy@example.com>`,
- selected: true,
- })
- // Keep entering text so the contact no longer matches
- fireEvent.change(inputElement, {
- target: { value: 'ptolemy.new@example.com' },
- })
- // The matching contact should no longer be present
- expect(
- screen.queryByRole('option', {
- name: `Claudius Ptolemy <ptolemy@example.com>`,
- })
- ).to.be.null
- // No items should be added yet
- expect(screen.queryByRole('button', { name: 'Remove' })).to.be.null
- // Pressing Tab should add the entered item
- fireEvent.keyDown(inputElement, { key: 'Tab', code: 'Tab' })
- await waitFor(() => {
- expect(screen.getAllByRole('button', { name: /Remove/ })).to.have.length(
- 1
- )
- })
- // Blurring the input should not add another contact
- fireEvent.blur(inputElement)
- await waitFor(() => {
- expect(screen.getAllByRole('button', { name: /Remove/ })).to.have.length(
- 1
- )
- })
- })
- it('selects contact by typing the entire email and blurring the input', async function () {
- renderWithEditorContext(<ShareProjectModal {...modalProps} />, {
- scope: { project },
- })
- const [inputElement] = await screen.findAllByLabelText('Add people')
- // Wait for contacts to load
- await waitFor(() => {
- expect(fetchMock.called('express:/user/contacts')).to.be.true
- })
- // Enter a prefix that matches a contact
- await userEvent.type(inputElement, 'ptolemy@example.com')
- // The matching contact should now be present and selected
- await screen.findByRole('option', {
- name: `Claudius Ptolemy <ptolemy@example.com>`,
- selected: true,
- })
- // No items should be added yet
- expect(screen.queryByRole('button', { name: /Remove/ })).to.be.null
- // Click anywhere on the form to blur the input
- await userEvent.click(screen.getByRole('dialog'))
- // The contact should be added
- await waitFor(() => {
- expect(screen.getAllByRole('button', { name: /Remove/ })).to.have.length(
- 1
- )
- })
- })
- it('selects contact by typing a partial email and selecting the suggestion', async function () {
- renderWithEditorContext(<ShareProjectModal {...modalProps} />, {
- scope: { project },
- })
- const [inputElement] = await screen.findAllByLabelText('Add people')
- // Wait for contacts to load
- await waitFor(() => {
- expect(fetchMock.called('express:/user/contacts')).to.be.true
- })
- // Enter a prefix that matches a contact
- await userEvent.type(inputElement, 'pto')
- // The matching contact should now be present and selected
- await userEvent.click(
- screen.getByRole('option', {
- name: `Claudius Ptolemy <ptolemy@example.com>`,
- selected: true,
- })
- )
- // Click anywhere on the form to blur the input
- await userEvent.click(screen.getByRole('dialog'))
- // The contact should be added
- await waitFor(() => {
- expect(screen.getAllByRole('button', { name: /Remove/ })).to.have.length(
- 1
- )
- })
- })
- it('allows an email address to be selected, removed, then re-added', async function () {
- renderWithEditorContext(<ShareProjectModal {...modalProps} />, {
- scope: { project },
- })
- const [inputElement] = await screen.findAllByLabelText('Add people')
- // Wait for contacts to load
- await waitFor(() => {
- expect(fetchMock.called('express:/user/contacts')).to.be.true
- })
- // Enter a prefix that matches a contact
- await userEvent.type(inputElement, 'pto')
- // Select the suggested contact
- await userEvent.click(
- screen.getByRole('option', {
- name: `Claudius Ptolemy <ptolemy@example.com>`,
- selected: true,
- })
- )
- // Click anywhere on the form to blur the input
- await userEvent.click(screen.getByRole('dialog'))
- // Remove the just-added collaborator
- await userEvent.click(screen.getByRole('button', { name: /Remove/ }))
- // Remove button should now be gone
- expect(screen.queryByRole('button', { name: /Remove/ })).to.be.null
- // Add the same collaborator again
- await userEvent.type(inputElement, 'pto')
- // Click the suggested contact again
- await userEvent.click(
- screen.getByRole('option', {
- name: `Claudius Ptolemy <ptolemy@example.com>`,
- selected: true,
- })
- )
- // Click anywhere on the form to blur the input
- await userEvent.click(screen.getByRole('dialog'))
- // The contact should be added
- await waitFor(() => {
- expect(screen.getAllByRole('button', { name: /Remove/ })).to.have.length(
- 1
- )
- })
- })
- })
|