2014-02-12 05:23:40 -05:00
|
|
|
spies = require('chai-spies')
|
|
|
|
chai = require('chai').use(spies)
|
|
|
|
sinon = require("sinon")
|
|
|
|
should = chai.should()
|
2016-01-14 11:35:42 -05:00
|
|
|
expect = chai.expect
|
2014-02-12 05:23:40 -05:00
|
|
|
modulePath = "../../../../app/js/Features/Project/ProjectCreationHandler.js"
|
|
|
|
SandboxedModule = require('sandboxed-module')
|
|
|
|
Settings = require('settings-sharelatex')
|
|
|
|
Path = require "path"
|
2014-03-06 07:28:07 -05:00
|
|
|
_ = require("underscore")
|
2014-02-12 05:23:40 -05:00
|
|
|
|
|
|
|
describe 'ProjectCreationHandler', ->
|
|
|
|
ownerId = '4eecb1c1bffa66588e0000a1'
|
2014-03-06 07:28:07 -05:00
|
|
|
projectName = 'project name goes here'
|
2014-02-12 05:23:40 -05:00
|
|
|
project_id = "4eecaffcbffa66588e000008"
|
|
|
|
docId = '4eecb17ebffa66588e00003f'
|
|
|
|
rootFolderId = "234adfa3r2afe"
|
|
|
|
|
|
|
|
beforeEach ->
|
|
|
|
@ProjectModel = class Project
|
|
|
|
constructor:(options = {})->
|
|
|
|
@._id = project_id
|
|
|
|
@owner_ref = options.owner_ref
|
|
|
|
@name = options.name
|
|
|
|
save: sinon.stub().callsArg(0)
|
|
|
|
rootFolder:[{
|
|
|
|
_id: rootFolderId
|
|
|
|
docs: []
|
|
|
|
}]
|
|
|
|
@FolderModel = class Folder
|
|
|
|
constructor:(options)->
|
|
|
|
{@name} = options
|
|
|
|
@ProjectEntityHandler =
|
2014-10-15 09:11:02 -04:00
|
|
|
addDoc: sinon.stub().callsArgWith(4, null, {_id: docId})
|
2014-02-12 05:23:40 -05:00
|
|
|
addFile: sinon.stub().callsArg(4)
|
|
|
|
setRootDoc: sinon.stub().callsArg(2)
|
2017-05-19 11:21:02 -04:00
|
|
|
@ProjectDetailsHandler =
|
|
|
|
validateProjectName: sinon.stub().yields()
|
2014-02-12 05:23:40 -05:00
|
|
|
|
|
|
|
@user =
|
|
|
|
first_name:"first name here"
|
|
|
|
last_name:"last name here"
|
|
|
|
ace:
|
|
|
|
spellCheckLanguage:"de"
|
|
|
|
|
|
|
|
@User = findById:sinon.stub().callsArgWith(2, null, @user)
|
|
|
|
@callback = sinon.stub()
|
|
|
|
@handler = SandboxedModule.require modulePath, requires:
|
|
|
|
'../../models/User': User:@User
|
|
|
|
'../../models/Project':{Project:@ProjectModel}
|
|
|
|
'../../models/Folder':{Folder:@FolderModel}
|
|
|
|
'./ProjectEntityHandler':@ProjectEntityHandler
|
2017-05-19 11:21:02 -04:00
|
|
|
"./ProjectDetailsHandler":@ProjectDetailsHandler
|
2016-01-14 11:35:42 -05:00
|
|
|
"settings-sharelatex": @Settings = {}
|
2014-02-12 05:23:40 -05:00
|
|
|
'logger-sharelatex': {log:->}
|
2017-04-03 11:18:30 -04:00
|
|
|
"metrics-sharelatex": {
|
2017-03-17 10:55:41 -04:00
|
|
|
inc: ()->,
|
|
|
|
timeAsyncMethod: ()->
|
|
|
|
}
|
2014-02-12 05:23:40 -05:00
|
|
|
|
|
|
|
describe 'Creating a Blank project', ->
|
|
|
|
beforeEach ->
|
|
|
|
@ProjectModel::save = sinon.stub().callsArg(0)
|
|
|
|
|
|
|
|
describe "successfully", ->
|
|
|
|
|
|
|
|
it "should save the project", (done)->
|
|
|
|
@handler.createBlankProject ownerId, projectName, =>
|
|
|
|
@ProjectModel::save.called.should.equal true
|
|
|
|
done()
|
|
|
|
|
|
|
|
it "should return the project in the callback", (done)->
|
|
|
|
@handler.createBlankProject ownerId, projectName, (err, project)->
|
|
|
|
project.name.should.equal projectName
|
|
|
|
(project.owner_ref + "").should.equal ownerId
|
|
|
|
done()
|
|
|
|
|
|
|
|
it "should set the language from the user", (done)->
|
|
|
|
@handler.createBlankProject ownerId, projectName, (err, project)->
|
|
|
|
project.spellCheckLanguage.should.equal "de"
|
|
|
|
done()
|
2016-01-14 11:35:42 -05:00
|
|
|
|
|
|
|
it "should set the imageName to currentImageName if set", (done) ->
|
|
|
|
@Settings.currentImageName = "mock-image-name"
|
|
|
|
@handler.createBlankProject ownerId, projectName, (err, project)=>
|
|
|
|
project.imageName.should.equal @Settings.currentImageName
|
|
|
|
done()
|
|
|
|
|
|
|
|
it "should not set the imageName if no currentImageName", (done) ->
|
|
|
|
@Settings.currentImageName = null
|
|
|
|
@handler.createBlankProject ownerId, projectName, (err, project)=>
|
|
|
|
expect(project.imageName).to.not.exist
|
|
|
|
done()
|
2014-02-12 05:23:40 -05:00
|
|
|
|
|
|
|
describe "with an error", ->
|
|
|
|
beforeEach ->
|
|
|
|
@ProjectModel::save = sinon.stub().callsArgWith(0, new Error("something went wrong"))
|
|
|
|
@handler.createBlankProject ownerId, projectName, @callback
|
|
|
|
|
|
|
|
it 'should return the error to the callback', ->
|
|
|
|
should.exist @callback.args[0][0]
|
2017-05-19 11:21:02 -04:00
|
|
|
|
|
|
|
describe "with an invalid name", ->
|
|
|
|
beforeEach ->
|
|
|
|
@ProjectDetailsHandler.validateProjectName = sinon.stub().yields(new Error("bad name"))
|
|
|
|
@handler.createBlankProject ownerId, projectName, @callback
|
|
|
|
|
|
|
|
it 'should return the error to the callback', ->
|
|
|
|
should.exist @callback.args[0][0]
|
|
|
|
|
|
|
|
it 'should not try to create the project', ->
|
|
|
|
@ProjectModel::save.called.should.equal false
|
|
|
|
|
2014-02-12 05:23:40 -05:00
|
|
|
|
|
|
|
describe 'Creating a basic project', ->
|
|
|
|
beforeEach ->
|
|
|
|
@project = new @ProjectModel()
|
|
|
|
@handler._buildTemplate = (template_name, user, project_name, callback) ->
|
|
|
|
if template_name == "mainbasic.tex"
|
|
|
|
return callback(null, ["mainbasic.tex", "lines"])
|
|
|
|
throw new Error("unknown template: #{template_name}")
|
|
|
|
sinon.spy @handler, "_buildTemplate"
|
|
|
|
@handler.createBlankProject = sinon.stub().callsArgWith(2, null, @project)
|
|
|
|
@handler.createBasicProject(ownerId, projectName, @callback)
|
|
|
|
|
|
|
|
it "should create a blank project first", ->
|
|
|
|
@handler.createBlankProject.calledWith(ownerId, projectName)
|
|
|
|
.should.equal true
|
|
|
|
|
|
|
|
it 'should insert main.tex', ->
|
|
|
|
@ProjectEntityHandler.addDoc.calledWith(project_id, rootFolderId, "main.tex", ["mainbasic.tex", "lines"])
|
|
|
|
.should.equal true
|
|
|
|
|
|
|
|
it 'should set the main doc id', ->
|
|
|
|
@ProjectEntityHandler.setRootDoc.calledWith(project_id, docId).should.equal true
|
|
|
|
|
|
|
|
it 'should build the mainbasic.tex template', ->
|
|
|
|
@handler._buildTemplate
|
|
|
|
.calledWith("mainbasic.tex", ownerId, projectName)
|
|
|
|
.should.equal true
|
|
|
|
|
|
|
|
|
|
|
|
describe 'Creating an example project', ->
|
|
|
|
beforeEach ->
|
|
|
|
@project = new @ProjectModel()
|
|
|
|
@handler._buildTemplate = (template_name, user, project_name, callback) ->
|
|
|
|
if template_name == "main.tex"
|
|
|
|
return callback(null, ["main.tex", "lines"])
|
|
|
|
if template_name == "references.bib"
|
|
|
|
return callback(null, ["references.bib", "lines"])
|
|
|
|
throw new Error("unknown template: #{template_name}")
|
|
|
|
sinon.spy @handler, "_buildTemplate"
|
|
|
|
@handler.createBlankProject = sinon.stub().callsArgWith(2, null, @project)
|
|
|
|
@handler.createExampleProject(ownerId, projectName, @callback)
|
|
|
|
|
|
|
|
it "should create a blank project first", ->
|
|
|
|
@handler.createBlankProject.calledWith(ownerId, projectName)
|
|
|
|
.should.equal true
|
|
|
|
|
|
|
|
it 'should insert main.tex', ->
|
|
|
|
@ProjectEntityHandler.addDoc
|
|
|
|
.calledWith(project_id, rootFolderId, "main.tex", ["main.tex", "lines"])
|
|
|
|
.should.equal true
|
|
|
|
|
|
|
|
it 'should insert references.bib', ->
|
|
|
|
@ProjectEntityHandler.addDoc
|
|
|
|
.calledWith(project_id, rootFolderId, "references.bib", ["references.bib", "lines"])
|
|
|
|
.should.equal true
|
|
|
|
|
|
|
|
it 'should insert universe.jpg', ->
|
|
|
|
@ProjectEntityHandler.addFile
|
|
|
|
.calledWith(
|
|
|
|
project_id, rootFolderId, "universe.jpg",
|
|
|
|
Path.resolve(__dirname + "/../../../../app/templates/project_files/universe.jpg")
|
|
|
|
)
|
|
|
|
.should.equal true
|
|
|
|
|
|
|
|
it 'should set the main doc id', ->
|
|
|
|
@ProjectEntityHandler.setRootDoc.calledWith(project_id, docId).should.equal true
|
|
|
|
|
|
|
|
it 'should build the main.tex template', ->
|
|
|
|
@handler._buildTemplate
|
|
|
|
.calledWith("main.tex", ownerId, projectName)
|
|
|
|
.should.equal true
|
|
|
|
|
|
|
|
it 'should build the references.bib template', ->
|
|
|
|
@handler._buildTemplate
|
|
|
|
.calledWith("references.bib", ownerId, projectName)
|
|
|
|
.should.equal true
|
2014-03-06 07:28:07 -05:00
|
|
|
|
|
|
|
|
|
|
|
describe "_buildTemplate", ->
|
|
|
|
|
|
|
|
beforeEach (done)->
|
|
|
|
@handler._buildTemplate "main.tex", @user_id, projectName, (err, templateLines)=>
|
|
|
|
@template = templateLines.reduce (singleLine, line)-> "#{singleLine}\n#{line}"
|
|
|
|
done()
|
|
|
|
|
|
|
|
it "should insert the project name into the template", (done)->
|
|
|
|
@template.indexOf(projectName).should.not.equal -1
|
|
|
|
done()
|
|
|
|
|
|
|
|
it "should insert the users name into the template", (done)->
|
|
|
|
@template.indexOf(@user.first_name).should.not.equal -1
|
|
|
|
@template.indexOf(@user.last_name).should.not.equal -1
|
|
|
|
done()
|
|
|
|
|
|
|
|
it "should not have undefined in the template", (done)->
|
|
|
|
@template.indexOf("undefined").should.equal -1
|
|
|
|
done()
|
|
|
|
|
|
|
|
it "should not have any underscore brackets in the output", (done)->
|
|
|
|
@template.indexOf("{{").should.equal -1
|
|
|
|
@template.indexOf("<%=").should.equal -1
|
|
|
|
done()
|
|
|
|
|
|
|
|
it "should put the year in", (done)->
|
|
|
|
@template.indexOf(new Date().getUTCFullYear()).should.not.equal -1
|
|
|
|
done()
|