mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-06 15:49:01 +02:00
3cd9ded7c8
GitOrigin-RevId: 02b35facff478ccf269fb472eba271cbf8473d46
153 lines
5.0 KiB
JavaScript
153 lines
5.0 KiB
JavaScript
import { expect } from 'chai'
|
|
import UserHelper from './helpers/User.mjs'
|
|
|
|
const User = UserHelper.promises
|
|
|
|
describe('Sharing', function () {
|
|
beforeEach(async function () {
|
|
this.ownerSession = new User()
|
|
this.collaboratorSession = new User()
|
|
this.strangerSession = new User()
|
|
this.reviewerSession = new User()
|
|
await this.ownerSession.login()
|
|
await this.collaboratorSession.login()
|
|
await this.strangerSession.login()
|
|
await this.reviewerSession.login()
|
|
this.owner = await this.ownerSession.get()
|
|
this.collaborator = await this.collaboratorSession.get()
|
|
this.stranger = await this.strangerSession.get()
|
|
this.reviewer = await this.reviewerSession.get()
|
|
this.projectId = await this.ownerSession.createProject('Test project')
|
|
})
|
|
|
|
describe('with read-only collaborator', function () {
|
|
beforeEach(async function () {
|
|
await this.ownerSession.addUserToProject(
|
|
this.projectId,
|
|
this.collaborator,
|
|
'readOnly'
|
|
)
|
|
})
|
|
|
|
it('sets the privilege level to read-write', async function () {
|
|
await this.ownerSession.setCollaboratorInfo(
|
|
this.projectId,
|
|
this.collaborator._id,
|
|
{ privilegeLevel: 'readAndWrite' }
|
|
)
|
|
const project = await this.ownerSession.getProject(this.projectId)
|
|
expect(project.collaberator_refs).to.deep.equal([this.collaborator._id])
|
|
expect(project.readOnly_refs).to.deep.equal([])
|
|
expect(project.reviewer_refs).to.deep.equal([])
|
|
})
|
|
|
|
it('sets the privilege level to review', async function () {
|
|
await this.ownerSession.setCollaboratorInfo(
|
|
this.projectId,
|
|
this.collaborator._id,
|
|
{ privilegeLevel: 'review' }
|
|
)
|
|
const project = await this.ownerSession.getProject(this.projectId)
|
|
expect(project.reviewer_refs).to.deep.equal([this.collaborator._id])
|
|
expect(project.collaberator_refs).to.deep.equal([])
|
|
expect(project.readOnly_refs).to.deep.equal([])
|
|
})
|
|
|
|
it('treats setting the privilege to read-only as a noop', async function () {
|
|
await this.ownerSession.setCollaboratorInfo(
|
|
this.projectId,
|
|
this.collaborator._id,
|
|
{ privilegeLevel: 'readOnly' }
|
|
)
|
|
const project = await this.ownerSession.getProject(this.projectId)
|
|
expect(project.collaberator_refs).to.deep.equal([])
|
|
expect(project.reviewer_refs).to.deep.equal([])
|
|
expect(project.readOnly_refs).to.deep.equal([this.collaborator._id])
|
|
})
|
|
|
|
it('prevents non-owners to set the privilege level', async function () {
|
|
await expect(
|
|
this.collaboratorSession.setCollaboratorInfo(
|
|
this.projectId,
|
|
this.collaborator._id,
|
|
{ privilegeLevel: 'readAndWrite' }
|
|
)
|
|
).to.be.rejectedWith(/failed: status=403 /)
|
|
})
|
|
|
|
it('validates the privilege level', async function () {
|
|
await expect(
|
|
this.ownerSession.setCollaboratorInfo(
|
|
this.projectId,
|
|
this.collaborator._id,
|
|
{ privilegeLevel: 'superpowers' }
|
|
)
|
|
).to.be.rejectedWith(/failed: status=400 /)
|
|
})
|
|
|
|
it('returns 404 if the user is not already a collaborator', async function () {
|
|
await expect(
|
|
this.ownerSession.setCollaboratorInfo(
|
|
this.projectId,
|
|
this.stranger._id,
|
|
{ privilegeLevel: 'readOnly' }
|
|
)
|
|
).to.be.rejectedWith(/failed: status=404 /)
|
|
})
|
|
})
|
|
|
|
describe('with read-write collaborator', function () {
|
|
beforeEach(async function () {
|
|
await this.ownerSession.addUserToProject(
|
|
this.projectId,
|
|
this.collaborator,
|
|
'readAndWrite'
|
|
)
|
|
})
|
|
|
|
it('sets the privilege level to read-only', async function () {
|
|
await this.ownerSession.setCollaboratorInfo(
|
|
this.projectId,
|
|
this.collaborator._id,
|
|
{ privilegeLevel: 'readOnly' }
|
|
)
|
|
const project = await this.ownerSession.getProject(this.projectId)
|
|
expect(project.collaberator_refs).to.deep.equal([])
|
|
expect(project.reviewer_refs).to.deep.equal([])
|
|
expect(project.readOnly_refs).to.deep.equal([this.collaborator._id])
|
|
})
|
|
})
|
|
|
|
describe('with reviewer collaborator', function () {
|
|
beforeEach(async function () {
|
|
await this.ownerSession.addUserToProject(
|
|
this.projectId,
|
|
this.reviewer,
|
|
'review'
|
|
)
|
|
})
|
|
|
|
it('prevents non-owners to set the privilege level', async function () {
|
|
await expect(
|
|
this.collaboratorSession.setCollaboratorInfo(
|
|
this.projectId,
|
|
this.reviewer._id,
|
|
{ privilegeLevel: 'review' }
|
|
)
|
|
).to.be.rejectedWith(/failed: status=403 /)
|
|
})
|
|
|
|
it('sets the privilege level to read-only', async function () {
|
|
await this.ownerSession.setCollaboratorInfo(
|
|
this.projectId,
|
|
this.reviewer._id,
|
|
{ privilegeLevel: 'readOnly' }
|
|
)
|
|
const project = await this.ownerSession.getProject(this.projectId)
|
|
expect(project.collaberator_refs).to.deep.equal([])
|
|
expect(project.reviewer_refs).to.deep.equal([])
|
|
expect(project.readOnly_refs).to.deep.equal([this.reviewer._id])
|
|
})
|
|
})
|
|
})
|