mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-30 05:35:18 -05:00
1ae5c2c2f1
[web] check response status code in acceptance tests GitOrigin-RevId: 119a13f03bb3f1e8bb39340c36a9f2b0649b2bba
100 lines
3.3 KiB
JavaScript
100 lines
3.3 KiB
JavaScript
const { expect } = require('chai')
|
|
const User = require('./helpers/User').promises
|
|
|
|
describe('Sharing', function () {
|
|
beforeEach(async function () {
|
|
this.ownerSession = new User()
|
|
this.collaboratorSession = new User()
|
|
this.strangerSession = new User()
|
|
await this.ownerSession.login()
|
|
await this.collaboratorSession.login()
|
|
await this.strangerSession.login()
|
|
this.owner = await this.ownerSession.get()
|
|
this.collaborator = await this.collaboratorSession.get()
|
|
this.stranger = await this.strangerSession.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([])
|
|
})
|
|
|
|
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.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.collaboratorSession.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.readOnly_refs).to.deep.equal([this.collaborator._id])
|
|
})
|
|
})
|
|
})
|