mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
7588393580
Enforce consistent callback style in mocha tests GitOrigin-RevId: a64c293dae6926ef5831abe97eaf2044942a5c85
103 lines
2.9 KiB
JavaScript
103 lines
2.9 KiB
JavaScript
/* eslint-disable
|
|
camelcase,
|
|
handle-callback-err,
|
|
max-len,
|
|
*/
|
|
// TODO: This file was created by bulk-decaffeinate.
|
|
// Fix any style issues and re-enable lint.
|
|
/*
|
|
* decaffeinate suggestions:
|
|
* DS102: Remove unnecessary code created because of implicit returns
|
|
* DS207: Consider shorter variations of null checks
|
|
* Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md
|
|
*/
|
|
const { expect } = require('chai')
|
|
const async = require('async')
|
|
const User = require('./helpers/User')
|
|
const request = require('./helpers/request')
|
|
const settings = require('settings-sharelatex')
|
|
|
|
const joinProject = (user_id, project_id, callback) =>
|
|
request.post(
|
|
{
|
|
url: `/project/${project_id}/join`,
|
|
qs: { user_id },
|
|
auth: {
|
|
user: settings.apis.web.user,
|
|
pass: settings.apis.web.pass,
|
|
sendImmediately: true
|
|
},
|
|
json: true,
|
|
jar: false
|
|
},
|
|
callback
|
|
)
|
|
|
|
describe('ProjectFeatures', function() {
|
|
beforeEach(function(done) {
|
|
this.timeout(90000)
|
|
this.owner = new User()
|
|
return async.series([cb => this.owner.login(cb)], done)
|
|
})
|
|
|
|
describe('with private project', function() {
|
|
beforeEach(function(done) {
|
|
return this.owner.createProject(
|
|
'private-project',
|
|
(error, project_id) => {
|
|
if (error != null) {
|
|
return done(error)
|
|
}
|
|
this.project_id = project_id
|
|
return done()
|
|
}
|
|
)
|
|
})
|
|
|
|
describe('with an upgraded account', function() {
|
|
beforeEach(function(done) {
|
|
return this.owner.upgradeFeatures(done)
|
|
})
|
|
after(function(done) {
|
|
return this.owner.defaultFeatures(done)
|
|
})
|
|
|
|
it('should have premium features', function(done) {
|
|
return joinProject(
|
|
this.owner._id,
|
|
this.project_id,
|
|
(error, response, body) => {
|
|
expect(body.project.features.compileGroup).to.equal('priority')
|
|
expect(body.project.features.versioning).to.equal(true)
|
|
expect(body.project.features.templates).to.equal(true)
|
|
expect(body.project.features.dropbox).to.equal(true)
|
|
return done()
|
|
}
|
|
)
|
|
})
|
|
})
|
|
|
|
describe('with an basic account', function() {
|
|
beforeEach(function(done) {
|
|
return this.owner.downgradeFeatures(done)
|
|
})
|
|
after(function(done) {
|
|
return this.owner.defaultFeatures(done)
|
|
})
|
|
|
|
it('should have basic features', function(done) {
|
|
return joinProject(
|
|
this.owner._id,
|
|
this.project_id,
|
|
(error, response, body) => {
|
|
expect(body.project.features.compileGroup).to.equal('standard')
|
|
expect(body.project.features.versioning).to.equal(false)
|
|
expect(body.project.features.templates).to.equal(false)
|
|
expect(body.project.features.dropbox).to.equal(false)
|
|
return done()
|
|
}
|
|
)
|
|
})
|
|
})
|
|
})
|
|
})
|