mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
1be43911b4
Set Prettier's "trailingComma" setting to "es5" GitOrigin-RevId: 9f14150511929a855b27467ad17be6ab262fe5d5
88 lines
2.4 KiB
JavaScript
88 lines
2.4 KiB
JavaScript
/* eslint-disable
|
|
node/handle-callback-err,
|
|
*/
|
|
// 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
|
|
* 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 MockV1ApiClass = require('./mocks/MockV1Api')
|
|
|
|
let MockV1Api
|
|
|
|
before(function () {
|
|
MockV1Api = MockV1ApiClass.instance()
|
|
})
|
|
|
|
describe('SettingsPage', function () {
|
|
beforeEach(function (done) {
|
|
this.user = new User()
|
|
this.v1Id = 1234
|
|
this.v1User = {
|
|
id: this.v1Id,
|
|
email: this.user.email,
|
|
password: this.user.password,
|
|
profile: {
|
|
id: this.v1Id,
|
|
email: this.user.email,
|
|
},
|
|
}
|
|
return async.series(
|
|
[
|
|
this.user.ensureUserExists.bind(this.user),
|
|
this.user.login.bind(this.user),
|
|
cb => this.user.mongoUpdate({ $set: { 'overleaf.id': this.v1Id } }, cb),
|
|
cb => {
|
|
MockV1Api.setUser(this.v1Id, this.v1User)
|
|
return cb()
|
|
},
|
|
],
|
|
done
|
|
)
|
|
})
|
|
|
|
it('load settings page', function (done) {
|
|
return this.user.getUserSettingsPage((err, statusCode) => {
|
|
statusCode.should.equal(200)
|
|
return done()
|
|
})
|
|
})
|
|
|
|
it('update main email address', function (done) {
|
|
const newEmail = 'foo@bar.com'
|
|
return this.user.updateSettings({ email: newEmail }, error => {
|
|
expect(error).not.to.exist
|
|
return this.user.get((error, user) => {
|
|
user.email.should.equal(newEmail)
|
|
user.emails.length.should.equal(1)
|
|
user.emails[0].email.should.equal(newEmail)
|
|
return done()
|
|
})
|
|
})
|
|
})
|
|
|
|
describe('with third-party-references configured', function () {
|
|
beforeEach(function injectThirdPartyReferencesEntryIntoDb(done) {
|
|
this.user.mongoUpdate(
|
|
{ $set: { refProviders: { zotero: { encrypted: '2020.9:SNIP' } } } },
|
|
done
|
|
)
|
|
})
|
|
|
|
it('should be able to update settings', function (done) {
|
|
const newName = 'third-party-references'
|
|
this.user.updateSettings({ first_name: newName }, error => {
|
|
expect(error).not.to.exist
|
|
this.user.get((error, user) => {
|
|
user.first_name.should.equal(newName)
|
|
done()
|
|
})
|
|
})
|
|
})
|
|
})
|
|
})
|