2019-05-29 05:21:06 -04:00
|
|
|
const chai = require('chai')
|
|
|
|
const { expect } = chai
|
|
|
|
const SandboxedModule = require('sandboxed-module')
|
2020-09-23 04:49:26 -04:00
|
|
|
const { ObjectId } = require('mongodb')
|
2019-05-29 05:21:06 -04:00
|
|
|
|
2020-06-30 08:04:59 -04:00
|
|
|
const MODULE_PATH = '../../../../app/src/Features/Project/ProjectHelper.js'
|
|
|
|
|
2019-05-29 05:21:06 -04:00
|
|
|
describe('ProjectHelper', function() {
|
|
|
|
beforeEach(function() {
|
2019-08-09 05:40:11 -04:00
|
|
|
this.project = {
|
|
|
|
_id: '123213jlkj9kdlsaj'
|
|
|
|
}
|
|
|
|
|
|
|
|
this.user = {
|
|
|
|
_id: '588f3ddae8ebc1bac07c9fa4',
|
|
|
|
first_name: 'bjkdsjfk',
|
|
|
|
features: {}
|
|
|
|
}
|
|
|
|
|
2020-06-30 08:04:59 -04:00
|
|
|
this.adminUser = {
|
|
|
|
_id: 'admin-user-id',
|
|
|
|
isAdmin: true
|
|
|
|
}
|
|
|
|
|
|
|
|
this.Settings = {
|
|
|
|
allowedImageNames: [
|
|
|
|
{ imageName: 'texlive-full:2018.1', imageDesc: 'TeX Live 2018' },
|
|
|
|
{ imageName: 'texlive-full:2019.1', imageDesc: 'TeX Live 2019' },
|
|
|
|
{
|
|
|
|
imageName: 'texlive-full:2020.1',
|
|
|
|
imageDesc: 'TeX Live 2020',
|
|
|
|
adminOnly: true
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
this.ProjectHelper = SandboxedModule.require(MODULE_PATH, {
|
|
|
|
requires: {
|
2020-10-05 04:23:21 -04:00
|
|
|
mongodb: { ObjectId },
|
2020-06-30 08:04:59 -04:00
|
|
|
'settings-sharelatex': this.Settings
|
|
|
|
}
|
|
|
|
})
|
2019-05-29 05:21:06 -04:00
|
|
|
})
|
|
|
|
|
2019-08-09 05:40:11 -04:00
|
|
|
describe('isArchived', function() {
|
|
|
|
describe('project.archived being an array', function() {
|
|
|
|
it('returns true if user id is found', function() {
|
|
|
|
this.project.archived = [
|
|
|
|
ObjectId('588f3ddae8ebc1bac07c9fa4'),
|
|
|
|
ObjectId('5c41deb2b4ca500153340809')
|
|
|
|
]
|
|
|
|
expect(
|
|
|
|
this.ProjectHelper.isArchived(this.project, this.user._id)
|
|
|
|
).to.equal(true)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('returns false if user id is not found', function() {
|
|
|
|
this.project.archived = []
|
|
|
|
expect(
|
|
|
|
this.ProjectHelper.isArchived(this.project, this.user._id)
|
|
|
|
).to.equal(false)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('project.archived being a boolean', function() {
|
|
|
|
it('returns true if archived is true', function() {
|
|
|
|
this.project.archived = true
|
|
|
|
expect(
|
|
|
|
this.ProjectHelper.isArchived(this.project, this.user._id)
|
|
|
|
).to.equal(true)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('returns false if archived is false', function() {
|
|
|
|
this.project.archived = false
|
|
|
|
expect(
|
|
|
|
this.ProjectHelper.isArchived(this.project, this.user._id)
|
|
|
|
).to.equal(false)
|
|
|
|
})
|
|
|
|
})
|
2019-08-27 06:38:17 -04:00
|
|
|
|
|
|
|
describe('project.archived being undefined', function() {
|
|
|
|
it('returns false if archived is undefined', function() {
|
|
|
|
this.project.archived = undefined
|
|
|
|
expect(
|
|
|
|
this.ProjectHelper.isArchived(this.project, this.user._id)
|
|
|
|
).to.equal(false)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('isTrashed', function() {
|
|
|
|
it('returns true if user id is found', function() {
|
|
|
|
this.project.trashed = [
|
|
|
|
ObjectId('588f3ddae8ebc1bac07c9fa4'),
|
|
|
|
ObjectId('5c41deb2b4ca500153340809')
|
|
|
|
]
|
|
|
|
expect(
|
|
|
|
this.ProjectHelper.isTrashed(this.project, this.user._id)
|
|
|
|
).to.equal(true)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('returns false if user id is not found', function() {
|
|
|
|
this.project.trashed = []
|
|
|
|
expect(
|
|
|
|
this.ProjectHelper.isTrashed(this.project, this.user._id)
|
|
|
|
).to.equal(false)
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('project.trashed being undefined', function() {
|
|
|
|
it('returns false if trashed is undefined', function() {
|
|
|
|
this.project.trashed = undefined
|
|
|
|
expect(
|
|
|
|
this.ProjectHelper.isTrashed(this.project, this.user._id)
|
|
|
|
).to.equal(false)
|
|
|
|
})
|
|
|
|
})
|
2019-08-09 05:40:11 -04:00
|
|
|
})
|
|
|
|
|
2019-10-02 10:06:57 -04:00
|
|
|
describe('calculateArchivedArray', function() {
|
|
|
|
describe('project.archived being an array', function() {
|
|
|
|
it('returns an array adding the current user id when archiving', function() {
|
|
|
|
const project = { archived: [] }
|
|
|
|
const result = this.ProjectHelper.calculateArchivedArray(
|
|
|
|
project,
|
|
|
|
ObjectId('5c922599cdb09e014aa7d499'),
|
|
|
|
'ARCHIVE'
|
|
|
|
)
|
|
|
|
expect(result).to.deep.equal([ObjectId('5c922599cdb09e014aa7d499')])
|
|
|
|
})
|
|
|
|
|
|
|
|
it('returns an array without the current user id when unarchiving', function() {
|
|
|
|
const project = { archived: [ObjectId('5c922599cdb09e014aa7d499')] }
|
|
|
|
const result = this.ProjectHelper.calculateArchivedArray(
|
|
|
|
project,
|
|
|
|
ObjectId('5c922599cdb09e014aa7d499'),
|
|
|
|
'UNARCHIVE'
|
|
|
|
)
|
|
|
|
expect(result).to.deep.equal([])
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('project.archived being a boolean and being true', function() {
|
|
|
|
it('returns an array of all associated user ids when archiving', function() {
|
|
|
|
const project = {
|
|
|
|
archived: true,
|
|
|
|
owner_ref: this.user._id,
|
|
|
|
collaberator_refs: [
|
|
|
|
ObjectId('4f2cfb341eb5855a5b000f8b'),
|
|
|
|
ObjectId('5c45f3bd425ead01488675aa')
|
|
|
|
],
|
|
|
|
readOnly_refs: [ObjectId('5c92243fcdb09e014aa7d487')],
|
|
|
|
tokenAccessReadAndWrite_refs: [ObjectId('5c922599cdb09e014aa7d499')],
|
|
|
|
tokenAccessReadOnly_refs: []
|
|
|
|
}
|
|
|
|
|
|
|
|
const result = this.ProjectHelper.calculateArchivedArray(
|
|
|
|
project,
|
|
|
|
this.user._id,
|
|
|
|
'ARCHIVE'
|
|
|
|
)
|
|
|
|
expect(result).to.deep.equal([
|
|
|
|
this.user._id,
|
|
|
|
ObjectId('4f2cfb341eb5855a5b000f8b'),
|
|
|
|
ObjectId('5c45f3bd425ead01488675aa'),
|
|
|
|
ObjectId('5c92243fcdb09e014aa7d487'),
|
|
|
|
ObjectId('5c922599cdb09e014aa7d499')
|
|
|
|
])
|
|
|
|
})
|
|
|
|
|
|
|
|
it('returns an array of all associated users without the current user id when unarchived', function() {
|
|
|
|
const project = {
|
|
|
|
archived: true,
|
|
|
|
owner_ref: this.user._id,
|
|
|
|
collaberator_refs: [
|
|
|
|
ObjectId('4f2cfb341eb5855a5b000f8b'),
|
|
|
|
ObjectId('5c45f3bd425ead01488675aa'),
|
|
|
|
ObjectId('5c922599cdb09e014aa7d499')
|
|
|
|
],
|
|
|
|
readOnly_refs: [ObjectId('5c92243fcdb09e014aa7d487')],
|
|
|
|
tokenAccessReadAndWrite_refs: [ObjectId('5c922599cdb09e014aa7d499')],
|
|
|
|
tokenAccessReadOnly_refs: []
|
|
|
|
}
|
|
|
|
|
|
|
|
const result = this.ProjectHelper.calculateArchivedArray(
|
|
|
|
project,
|
|
|
|
this.user._id,
|
|
|
|
'UNARCHIVE'
|
|
|
|
)
|
|
|
|
expect(result).to.deep.equal([
|
|
|
|
ObjectId('4f2cfb341eb5855a5b000f8b'),
|
|
|
|
ObjectId('5c45f3bd425ead01488675aa'),
|
|
|
|
ObjectId('5c922599cdb09e014aa7d499'),
|
|
|
|
ObjectId('5c92243fcdb09e014aa7d487')
|
|
|
|
])
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('project.archived being a boolean and being false', function() {
|
|
|
|
it('returns an array adding the current user id when archiving', function() {
|
|
|
|
const project = { archived: false }
|
|
|
|
const result = this.ProjectHelper.calculateArchivedArray(
|
|
|
|
project,
|
|
|
|
ObjectId('5c922599cdb09e014aa7d499'),
|
|
|
|
'ARCHIVE'
|
|
|
|
)
|
|
|
|
expect(result).to.deep.equal([ObjectId('5c922599cdb09e014aa7d499')])
|
|
|
|
})
|
|
|
|
|
|
|
|
it('returns an empty array when unarchiving', function() {
|
|
|
|
const project = { archived: false }
|
|
|
|
const result = this.ProjectHelper.calculateArchivedArray(
|
|
|
|
project,
|
|
|
|
ObjectId('5c922599cdb09e014aa7d499'),
|
|
|
|
'UNARCHIVE'
|
|
|
|
)
|
|
|
|
expect(result).to.deep.equal([])
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('project.archived not being set', function() {
|
|
|
|
it('returns an array adding the current user id when archiving', function() {
|
|
|
|
const project = { archived: undefined }
|
|
|
|
const result = this.ProjectHelper.calculateArchivedArray(
|
|
|
|
project,
|
|
|
|
ObjectId('5c922599cdb09e014aa7d499'),
|
|
|
|
'ARCHIVE'
|
|
|
|
)
|
|
|
|
expect(result).to.deep.equal([ObjectId('5c922599cdb09e014aa7d499')])
|
|
|
|
})
|
|
|
|
|
|
|
|
it('returns an empty array when unarchiving', function() {
|
|
|
|
const project = { archived: undefined }
|
|
|
|
const result = this.ProjectHelper.calculateArchivedArray(
|
|
|
|
project,
|
|
|
|
ObjectId('5c922599cdb09e014aa7d499'),
|
|
|
|
'UNARCHIVE'
|
|
|
|
)
|
|
|
|
expect(result).to.deep.equal([])
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2019-06-21 09:46:09 -04:00
|
|
|
describe('compilerFromV1Engine', function() {
|
2019-05-29 05:21:06 -04:00
|
|
|
it('returns the correct engine for latex_dvipdf', function() {
|
2020-06-30 08:04:59 -04:00
|
|
|
expect(this.ProjectHelper.compilerFromV1Engine('latex_dvipdf')).to.equal(
|
|
|
|
'latex'
|
|
|
|
)
|
2019-05-29 05:21:06 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('returns the correct engine for pdflatex', function() {
|
2020-06-30 08:04:59 -04:00
|
|
|
expect(this.ProjectHelper.compilerFromV1Engine('pdflatex')).to.equal(
|
|
|
|
'pdflatex'
|
|
|
|
)
|
2019-05-29 05:21:06 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('returns the correct engine for xelatex', function() {
|
2020-06-30 08:04:59 -04:00
|
|
|
expect(this.ProjectHelper.compilerFromV1Engine('xelatex')).to.equal(
|
|
|
|
'xelatex'
|
|
|
|
)
|
2019-05-29 05:21:06 -04:00
|
|
|
})
|
|
|
|
|
2019-06-21 09:46:09 -04:00
|
|
|
it('returns the correct engine for lualatex', function() {
|
2020-06-30 08:04:59 -04:00
|
|
|
expect(this.ProjectHelper.compilerFromV1Engine('lualatex')).to.equal(
|
|
|
|
'lualatex'
|
|
|
|
)
|
2019-05-29 05:21:06 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2020-06-30 08:04:59 -04:00
|
|
|
describe('getAllowedImagesForUser', function() {
|
|
|
|
it('filters out admin-only images when the user is anonymous', function() {
|
|
|
|
const images = this.ProjectHelper.getAllowedImagesForUser(null)
|
|
|
|
const imageNames = images.map(image => image.imageName)
|
|
|
|
expect(imageNames).to.deep.equal([
|
|
|
|
'texlive-full:2018.1',
|
|
|
|
'texlive-full:2019.1'
|
|
|
|
])
|
|
|
|
})
|
|
|
|
|
|
|
|
it('filters out admin-only images when the user is not admin', function() {
|
|
|
|
const images = this.ProjectHelper.getAllowedImagesForUser(this.user)
|
|
|
|
const imageNames = images.map(image => image.imageName)
|
|
|
|
expect(imageNames).to.deep.equal([
|
|
|
|
'texlive-full:2018.1',
|
|
|
|
'texlive-full:2019.1'
|
|
|
|
])
|
|
|
|
})
|
|
|
|
|
|
|
|
it('returns all images when the user is admin', function() {
|
|
|
|
const images = this.ProjectHelper.getAllowedImagesForUser(this.adminUser)
|
|
|
|
const imageNames = images.map(image => image.imageName)
|
|
|
|
expect(imageNames).to.deep.equal([
|
|
|
|
'texlive-full:2018.1',
|
|
|
|
'texlive-full:2019.1',
|
|
|
|
'texlive-full:2020.1'
|
|
|
|
])
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|