mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
Add add{File|Doc}WithoutUpdatingHistory methods to allow importing OL projects with existing history
This commit is contained in:
parent
ffa2e231fd
commit
5463b608ad
12 changed files with 229 additions and 139 deletions
|
@ -5,29 +5,6 @@ AuthenticationController = require "../Authentication/AuthenticationController"
|
||||||
ProjectDetailsHandler = require "../Project/ProjectDetailsHandler"
|
ProjectDetailsHandler = require "../Project/ProjectDetailsHandler"
|
||||||
|
|
||||||
module.exports = HistoryController =
|
module.exports = HistoryController =
|
||||||
initializeProject: (callback = (error, history_id) ->) ->
|
|
||||||
return callback() if !settings.apis.project_history?.initializeHistoryForNewProjects
|
|
||||||
request.post {
|
|
||||||
url: "#{settings.apis.project_history.url}/project"
|
|
||||||
}, (error, res, body)->
|
|
||||||
return callback(error) if error?
|
|
||||||
|
|
||||||
if res.statusCode >= 200 and res.statusCode < 300
|
|
||||||
try
|
|
||||||
project = JSON.parse(body)
|
|
||||||
catch error
|
|
||||||
return callback(error)
|
|
||||||
|
|
||||||
overleaf_id = project?.project?.id
|
|
||||||
if !overleaf_id
|
|
||||||
error = new Error("project-history did not provide an id", project)
|
|
||||||
return callback(error)
|
|
||||||
|
|
||||||
callback null, { overleaf_id }
|
|
||||||
else
|
|
||||||
error = new Error("project-history returned a non-success status code: #{res.statusCode}")
|
|
||||||
callback error
|
|
||||||
|
|
||||||
selectHistoryApi: (req, res, next = (error) ->) ->
|
selectHistoryApi: (req, res, next = (error) ->) ->
|
||||||
project_id = req.params?.Project_id
|
project_id = req.params?.Project_id
|
||||||
# find out which type of history service this project uses
|
# find out which type of history service this project uses
|
||||||
|
|
|
@ -0,0 +1,26 @@
|
||||||
|
request = require "request"
|
||||||
|
settings = require "settings-sharelatex"
|
||||||
|
|
||||||
|
module.exports = HistoryManager =
|
||||||
|
initializeProject: (callback = (error, history_id) ->) ->
|
||||||
|
return callback() if !settings.apis.project_history?.initializeHistoryForNewProjects
|
||||||
|
request.post {
|
||||||
|
url: "#{settings.apis.project_history.url}/project"
|
||||||
|
}, (error, res, body)->
|
||||||
|
return callback(error) if error?
|
||||||
|
|
||||||
|
if res.statusCode >= 200 and res.statusCode < 300
|
||||||
|
try
|
||||||
|
project = JSON.parse(body)
|
||||||
|
catch error
|
||||||
|
return callback(error)
|
||||||
|
|
||||||
|
overleaf_id = project?.project?.id
|
||||||
|
if !overleaf_id
|
||||||
|
error = new Error("project-history did not provide an id", project)
|
||||||
|
return callback(error)
|
||||||
|
|
||||||
|
callback null, { overleaf_id }
|
||||||
|
else
|
||||||
|
error = new Error("project-history returned a non-success status code: #{res.statusCode}")
|
||||||
|
callback error
|
|
@ -7,7 +7,7 @@ Project = require('../../models/Project').Project
|
||||||
Folder = require('../../models/Folder').Folder
|
Folder = require('../../models/Folder').Folder
|
||||||
ProjectEntityHandler = require('./ProjectEntityHandler')
|
ProjectEntityHandler = require('./ProjectEntityHandler')
|
||||||
ProjectDetailsHandler = require('./ProjectDetailsHandler')
|
ProjectDetailsHandler = require('./ProjectDetailsHandler')
|
||||||
HistoryController = require('../History/HistoryController')
|
HistoryManager = require('../History/HistoryManager')
|
||||||
User = require('../../models/User').User
|
User = require('../../models/User').User
|
||||||
fs = require('fs')
|
fs = require('fs')
|
||||||
Path = require "path"
|
Path = require "path"
|
||||||
|
@ -27,7 +27,7 @@ module.exports = ProjectCreationHandler =
|
||||||
if projectHistoryId?
|
if projectHistoryId?
|
||||||
ProjectCreationHandler._createBlankProject owner_id, projectName, projectHistoryId, callback
|
ProjectCreationHandler._createBlankProject owner_id, projectName, projectHistoryId, callback
|
||||||
else
|
else
|
||||||
HistoryController.initializeProject (error, history) ->
|
HistoryManager.initializeProject (error, history) ->
|
||||||
return callback(error) if error?
|
return callback(error) if error?
|
||||||
ProjectCreationHandler._createBlankProject owner_id, projectName, history?.overleaf_id, callback
|
ProjectCreationHandler._createBlankProject owner_id, projectName, history?.overleaf_id, callback
|
||||||
|
|
||||||
|
|
|
@ -21,7 +21,7 @@ module.exports = ProjectDuplicator =
|
||||||
if !doc?._id?
|
if !doc?._id?
|
||||||
return callback()
|
return callback()
|
||||||
content = docContents[doc._id.toString()]
|
content = docContents[doc._id.toString()]
|
||||||
projectEntityHandler.addDocWithProject newProject, desFolder._id, doc.name, content.lines, owner_id, (err, newDoc)->
|
projectEntityHandler.addDoc newProject, desFolder._id, doc.name, content.lines, owner_id, (err, newDoc)->
|
||||||
if err?
|
if err?
|
||||||
logger.err err:err, "error copying doc"
|
logger.err err:err, "error copying doc"
|
||||||
return callback(err)
|
return callback(err)
|
||||||
|
|
|
@ -149,14 +149,35 @@ module.exports = ProjectEntityHandler =
|
||||||
else
|
else
|
||||||
DocstoreManager.getDoc project_id, doc_id, options, callback
|
DocstoreManager.getDoc project_id, doc_id, options, callback
|
||||||
|
|
||||||
addDoc: (project_id, folder_id, docName, docLines, userId, callback = (error, doc, folder_id) ->)=>
|
addDoc: (project_or_id, folder_id, docName, docLines, userId, callback = (error, doc, folder_id) ->)=>
|
||||||
ProjectGetter.getProjectWithOnlyFolders project_id, (err, project) ->
|
ProjectEntityHandler.addDocWithoutUpdatingHistory project_or_id, folder_id, docName, docLines, userId, (error, doc, folder_id, result) ->
|
||||||
|
return callback(error) if error?
|
||||||
|
newDocs = [
|
||||||
|
doc: doc
|
||||||
|
path: result?.path?.fileSystem
|
||||||
|
docLines: docLines.join('\n')
|
||||||
|
]
|
||||||
|
project_id = project_or_id._id or project_or_id
|
||||||
|
DocumentUpdaterHandler.updateProjectStructure project_id, userId, {newDocs}, (error) ->
|
||||||
|
return callback(error) if error?
|
||||||
|
callback null, doc, folder_id
|
||||||
|
|
||||||
|
addDocWithoutUpdatingHistory: (project_or_id, folder_id, docName, docLines, userId, callback = (error, doc, folder_id) ->)=>
|
||||||
|
# This method should never be called directly, except when importing a project
|
||||||
|
# from Overleaf. It skips sending updates to the project history, which will break
|
||||||
|
# the history unless you are making sure it is updated in some other way.
|
||||||
|
getProject = (cb) ->
|
||||||
|
if project_or_id._id? # project
|
||||||
|
return cb(null, project_or_id)
|
||||||
|
else # id
|
||||||
|
return ProjectGetter.getProjectWithOnlyFolders project_or_id, cb
|
||||||
|
getProject (error, project) ->
|
||||||
if err?
|
if err?
|
||||||
logger.err project_id:project_id, err:err, "error getting project for add doc"
|
logger.err project_id:project_id, err:err, "error getting project for add doc"
|
||||||
return callback(err)
|
return callback(err)
|
||||||
ProjectEntityHandler.addDocWithProject project, folder_id, docName, docLines, userId, callback
|
ProjectEntityHandler._addDocWithProject project, folder_id, docName, docLines, userId, callback
|
||||||
|
|
||||||
addDocWithProject: (project, folder_id, docName, docLines, userId, callback = (error, doc, folder_id) ->)=>
|
_addDocWithProject: (project, folder_id, docName, docLines, userId, callback = (error, doc, folder_id, result) ->)=>
|
||||||
project_id = project._id
|
project_id = project._id
|
||||||
logger.log project_id: project_id, folder_id: folder_id, doc_name: docName, "adding doc to project with project"
|
logger.log project_id: project_id, folder_id: folder_id, doc_name: docName, "adding doc to project with project"
|
||||||
confirmFolder project, folder_id, (folder_id)=>
|
confirmFolder project, folder_id, (folder_id)=>
|
||||||
|
@ -176,14 +197,7 @@ module.exports = ProjectEntityHandler =
|
||||||
rev: 0
|
rev: 0
|
||||||
}, (err) ->
|
}, (err) ->
|
||||||
return callback(err) if err?
|
return callback(err) if err?
|
||||||
newDocs = [
|
callback(null, doc, folder_id, result)
|
||||||
doc: doc
|
|
||||||
path: result?.path?.fileSystem
|
|
||||||
docLines: docLines.join('\n')
|
|
||||||
]
|
|
||||||
DocumentUpdaterHandler.updateProjectStructure project_id, userId, {newDocs}, (error) ->
|
|
||||||
return callback(error) if error?
|
|
||||||
callback null, doc, folder_id
|
|
||||||
|
|
||||||
restoreDoc: (project_id, doc_id, name, callback = (error, doc, folder_id) ->) ->
|
restoreDoc: (project_id, doc_id, name, callback = (error, doc, folder_id) ->) ->
|
||||||
# getDoc will return the deleted doc's lines, but we don't actually remove
|
# getDoc will return the deleted doc's lines, but we don't actually remove
|
||||||
|
@ -192,37 +206,37 @@ module.exports = ProjectEntityHandler =
|
||||||
return callback(error) if error?
|
return callback(error) if error?
|
||||||
ProjectEntityHandler.addDoc project_id, null, name, lines, callback
|
ProjectEntityHandler.addDoc project_id, null, name, lines, callback
|
||||||
|
|
||||||
addFile: (project_id, folder_id, fileName, path, userId, callback = (error, fileRef, folder_id) ->)->
|
addFileWithoutUpdatingHistory: (project_id, folder_id, fileName, path, userId, callback = (error, fileRef, folder_id, result, fileStoreUrl) ->)->
|
||||||
ProjectGetter.getProjectWithOnlyFolders project_id, (err, project) ->
|
ProjectGetter.getProjectWithOnlyFolders project_id, (err, project) ->
|
||||||
if err?
|
if err?
|
||||||
logger.err project_id:project_id, err:err, "error getting project for add file"
|
logger.err project_id:project_id, err:err, "error getting project for add file"
|
||||||
return callback(err)
|
return callback(err)
|
||||||
ProjectEntityHandler.addFileWithProject project, folder_id, fileName, path, userId, callback
|
logger.log project_id: project._id, folder_id: folder_id, file_name: fileName, path:path, "adding file"
|
||||||
|
return callback(err) if err?
|
||||||
addFileWithProject: (project, folder_id, fileName, path, userId, callback = (error, fileRef, folder_id) ->)->
|
confirmFolder project, folder_id, (folder_id)->
|
||||||
project_id = project._id
|
fileRef = new File name : fileName
|
||||||
logger.log project_id: project._id, folder_id: folder_id, file_name: fileName, path:path, "adding file"
|
FileStoreHandler.uploadFileFromDisk project._id, fileRef._id, path, (err, fileStoreUrl)->
|
||||||
return callback(err) if err?
|
|
||||||
confirmFolder project, folder_id, (folder_id)->
|
|
||||||
fileRef = new File name : fileName
|
|
||||||
FileStoreHandler.uploadFileFromDisk project._id, fileRef._id, path, (err, fileStoreUrl)->
|
|
||||||
if err?
|
|
||||||
logger.err err:err, project_id: project._id, folder_id: folder_id, file_name: fileName, fileRef:fileRef, "error uploading image to s3"
|
|
||||||
return callback(err)
|
|
||||||
ProjectEntityHandler._putElement project, folder_id, fileRef, "file", (err, result)=>
|
|
||||||
if err?
|
if err?
|
||||||
logger.err err:err, project_id: project._id, folder_id: folder_id, file_name: fileName, fileRef:fileRef, "error adding file with project"
|
logger.err err:err, project_id: project._id, folder_id: folder_id, file_name: fileName, fileRef:fileRef, "error uploading image to s3"
|
||||||
return callback(err)
|
return callback(err)
|
||||||
tpdsUpdateSender.addFile {project_id:project._id, file_id:fileRef._id, path:result?.path?.fileSystem, project_name:project.name, rev:fileRef.rev}, (err) ->
|
ProjectEntityHandler._putElement project, folder_id, fileRef, "file", (err, result)=>
|
||||||
return callback(err) if err?
|
if err?
|
||||||
newFiles = [
|
logger.err err:err, project_id: project._id, folder_id: folder_id, file_name: fileName, fileRef:fileRef, "error adding file with project"
|
||||||
file: fileRef
|
return callback(err)
|
||||||
path: result?.path?.fileSystem
|
tpdsUpdateSender.addFile {project_id:project._id, file_id:fileRef._id, path:result?.path?.fileSystem, project_name:project.name, rev:fileRef.rev}, (err) ->
|
||||||
url: fileStoreUrl
|
return callback(err) if err?
|
||||||
]
|
callback(null, fileRef, folder_id, result, fileStoreUrl)
|
||||||
DocumentUpdaterHandler.updateProjectStructure project_id, userId, {newFiles}, (error) ->
|
|
||||||
return callback(error) if error?
|
addFile: (project_id, folder_id, fileName, path, userId, callback = (error, fileRef, folder_id) ->)->
|
||||||
callback null, fileRef, folder_id
|
ProjectEntityHandler.addFileWithoutUpdatingHistory project_id, folder_id, fileName, path, userId, (error, fileRef, folder_id, result, fileStoreUrl) ->
|
||||||
|
newFiles = [
|
||||||
|
file: fileRef
|
||||||
|
path: result?.path?.fileSystem
|
||||||
|
url: fileStoreUrl
|
||||||
|
]
|
||||||
|
DocumentUpdaterHandler.updateProjectStructure project_id, userId, {newFiles}, (error) ->
|
||||||
|
return callback(error) if error?
|
||||||
|
callback null, fileRef, folder_id
|
||||||
|
|
||||||
replaceFile: (project_id, file_id, fsPath, userId, callback)->
|
replaceFile: (project_id, file_id, fsPath, userId, callback)->
|
||||||
self = ProjectEntityHandler
|
self = ProjectEntityHandler
|
||||||
|
|
|
@ -56,6 +56,7 @@ ProjectSchema = new Schema
|
||||||
read_token : { type: String }
|
read_token : { type: String }
|
||||||
history :
|
history :
|
||||||
id : { type: Number }
|
id : { type: Number }
|
||||||
|
display : { type: Boolean }
|
||||||
|
|
||||||
ProjectSchema.statics.getProject = (project_or_id, fields, callback)->
|
ProjectSchema.statics.getProject = (project_or_id, fields, callback)->
|
||||||
if project_or_id._id?
|
if project_or_id._id?
|
||||||
|
|
|
@ -59,7 +59,7 @@ describe "ProjectStructureChanges", ->
|
||||||
@dup_project_id = body.project_id
|
@dup_project_id = body.project_id
|
||||||
done()
|
done()
|
||||||
|
|
||||||
it "should version the dosc created", ->
|
it "should version the docs created", ->
|
||||||
updates = MockDocUpdaterApi.getProjectStructureUpdates(@dup_project_id).docUpdates
|
updates = MockDocUpdaterApi.getProjectStructureUpdates(@dup_project_id).docUpdates
|
||||||
expect(updates.length).to.equal(2)
|
expect(updates.length).to.equal(2)
|
||||||
_.each updates, (update) =>
|
_.each updates, (update) =>
|
||||||
|
|
|
@ -114,68 +114,3 @@ describe "HistoryController", ->
|
||||||
|
|
||||||
it "should pass the error up the call chain", ->
|
it "should pass the error up the call chain", ->
|
||||||
@next.calledWith(@error).should.equal true
|
@next.calledWith(@error).should.equal true
|
||||||
|
|
||||||
describe "initializeProject", ->
|
|
||||||
describe "with project history enabled", ->
|
|
||||||
beforeEach ->
|
|
||||||
@settings.apis.project_history.initializeHistoryForNewProjects = true
|
|
||||||
|
|
||||||
describe "project history returns a successful response", ->
|
|
||||||
beforeEach ->
|
|
||||||
@overleaf_id = 1234
|
|
||||||
@res = statusCode: 200
|
|
||||||
@body = JSON.stringify(project: id: @overleaf_id)
|
|
||||||
@request.post = sinon.stub().callsArgWith(1, null, @res, @body)
|
|
||||||
|
|
||||||
@HistoryController.initializeProject @callback
|
|
||||||
|
|
||||||
it "should call the project history api", ->
|
|
||||||
@request.post.calledWith(
|
|
||||||
url: "#{@settings.apis.project_history.url}/project"
|
|
||||||
).should.equal true
|
|
||||||
|
|
||||||
it "should return the callback with the overleaf id", ->
|
|
||||||
@callback.calledWithExactly(null, { @overleaf_id }).should.equal true
|
|
||||||
|
|
||||||
describe "project history returns a response without the project id", ->
|
|
||||||
beforeEach ->
|
|
||||||
@res = statusCode: 200
|
|
||||||
@body = JSON.stringify(project: {})
|
|
||||||
@request.post = sinon.stub().callsArgWith(1, null, @res, @body)
|
|
||||||
|
|
||||||
@HistoryController.initializeProject @callback
|
|
||||||
|
|
||||||
it "should return the callback with an error", ->
|
|
||||||
@callback
|
|
||||||
.calledWith(sinon.match.has("message", "project-history did not provide an id"))
|
|
||||||
.should.equal true
|
|
||||||
|
|
||||||
describe "project history returns a unsuccessful response", ->
|
|
||||||
beforeEach ->
|
|
||||||
@res = statusCode: 404
|
|
||||||
@request.post = sinon.stub().callsArgWith(1, null, @res)
|
|
||||||
|
|
||||||
@HistoryController.initializeProject @callback
|
|
||||||
|
|
||||||
it "should return the callback with an error", ->
|
|
||||||
@callback
|
|
||||||
.calledWith(sinon.match.has("message", "project-history returned a non-success status code: 404"))
|
|
||||||
.should.equal true
|
|
||||||
|
|
||||||
describe "project history errors", ->
|
|
||||||
beforeEach ->
|
|
||||||
@error = sinon.stub()
|
|
||||||
@request.post = sinon.stub().callsArgWith(1, @error)
|
|
||||||
|
|
||||||
@HistoryController.initializeProject @callback
|
|
||||||
|
|
||||||
it "should return the callback with the error", ->
|
|
||||||
@callback.calledWithExactly(@error).should.equal true
|
|
||||||
|
|
||||||
describe "with project history disabled", ->
|
|
||||||
beforeEach ->
|
|
||||||
@settings.apis.project_history.initializeHistoryForNewProjects = false
|
|
||||||
@HistoryController.initializeProject @callback
|
|
||||||
|
|
||||||
it "should return the callback", ->
|
|
||||||
@callback.calledWithExactly().should.equal true
|
|
||||||
|
|
|
@ -0,0 +1,86 @@
|
||||||
|
chai = require('chai')
|
||||||
|
chai.should()
|
||||||
|
sinon = require("sinon")
|
||||||
|
modulePath = "../../../../app/js/Features/History/HistoryManager"
|
||||||
|
SandboxedModule = require('sandboxed-module')
|
||||||
|
|
||||||
|
describe "HistoryManager", ->
|
||||||
|
beforeEach ->
|
||||||
|
@callback = sinon.stub()
|
||||||
|
@user_id = "user-id-123"
|
||||||
|
@AuthenticationController =
|
||||||
|
getLoggedInUserId: sinon.stub().returns(@user_id)
|
||||||
|
@HistoryManager = SandboxedModule.require modulePath, requires:
|
||||||
|
"request" : @request = sinon.stub()
|
||||||
|
"settings-sharelatex": @settings = {}
|
||||||
|
@settings.apis =
|
||||||
|
trackchanges:
|
||||||
|
enabled: false
|
||||||
|
url: "http://trackchanges.example.com"
|
||||||
|
project_history:
|
||||||
|
url: "http://project_history.example.com"
|
||||||
|
|
||||||
|
describe "initializeProject", ->
|
||||||
|
describe "with project history enabled", ->
|
||||||
|
beforeEach ->
|
||||||
|
@settings.apis.project_history.initializeHistoryForNewProjects = true
|
||||||
|
|
||||||
|
describe "project history returns a successful response", ->
|
||||||
|
beforeEach ->
|
||||||
|
@overleaf_id = 1234
|
||||||
|
@res = statusCode: 200
|
||||||
|
@body = JSON.stringify(project: id: @overleaf_id)
|
||||||
|
@request.post = sinon.stub().callsArgWith(1, null, @res, @body)
|
||||||
|
|
||||||
|
@HistoryManager.initializeProject @callback
|
||||||
|
|
||||||
|
it "should call the project history api", ->
|
||||||
|
@request.post.calledWith(
|
||||||
|
url: "#{@settings.apis.project_history.url}/project"
|
||||||
|
).should.equal true
|
||||||
|
|
||||||
|
it "should return the callback with the overleaf id", ->
|
||||||
|
@callback.calledWithExactly(null, { @overleaf_id }).should.equal true
|
||||||
|
|
||||||
|
describe "project history returns a response without the project id", ->
|
||||||
|
beforeEach ->
|
||||||
|
@res = statusCode: 200
|
||||||
|
@body = JSON.stringify(project: {})
|
||||||
|
@request.post = sinon.stub().callsArgWith(1, null, @res, @body)
|
||||||
|
|
||||||
|
@HistoryManager.initializeProject @callback
|
||||||
|
|
||||||
|
it "should return the callback with an error", ->
|
||||||
|
@callback
|
||||||
|
.calledWith(sinon.match.has("message", "project-history did not provide an id"))
|
||||||
|
.should.equal true
|
||||||
|
|
||||||
|
describe "project history returns a unsuccessful response", ->
|
||||||
|
beforeEach ->
|
||||||
|
@res = statusCode: 404
|
||||||
|
@request.post = sinon.stub().callsArgWith(1, null, @res)
|
||||||
|
|
||||||
|
@HistoryManager.initializeProject @callback
|
||||||
|
|
||||||
|
it "should return the callback with an error", ->
|
||||||
|
@callback
|
||||||
|
.calledWith(sinon.match.has("message", "project-history returned a non-success status code: 404"))
|
||||||
|
.should.equal true
|
||||||
|
|
||||||
|
describe "project history errors", ->
|
||||||
|
beforeEach ->
|
||||||
|
@error = sinon.stub()
|
||||||
|
@request.post = sinon.stub().callsArgWith(1, @error)
|
||||||
|
|
||||||
|
@HistoryManager.initializeProject @callback
|
||||||
|
|
||||||
|
it "should return the callback with the error", ->
|
||||||
|
@callback.calledWithExactly(@error).should.equal true
|
||||||
|
|
||||||
|
describe "with project history disabled", ->
|
||||||
|
beforeEach ->
|
||||||
|
@settings.apis.project_history.initializeHistoryForNewProjects = false
|
||||||
|
@HistoryManager.initializeProject @callback
|
||||||
|
|
||||||
|
it "should return the callback", ->
|
||||||
|
@callback.calledWithExactly().should.equal true
|
|
@ -38,7 +38,7 @@ describe 'ProjectCreationHandler', ->
|
||||||
setRootDoc: sinon.stub().callsArg(2)
|
setRootDoc: sinon.stub().callsArg(2)
|
||||||
@ProjectDetailsHandler =
|
@ProjectDetailsHandler =
|
||||||
validateProjectName: sinon.stub().yields()
|
validateProjectName: sinon.stub().yields()
|
||||||
@HistoryController =
|
@HistoryManager =
|
||||||
initializeProject: sinon.stub().callsArg(0)
|
initializeProject: sinon.stub().callsArg(0)
|
||||||
|
|
||||||
@user =
|
@user =
|
||||||
|
@ -53,7 +53,7 @@ describe 'ProjectCreationHandler', ->
|
||||||
'../../models/User': User:@User
|
'../../models/User': User:@User
|
||||||
'../../models/Project':{Project:@ProjectModel}
|
'../../models/Project':{Project:@ProjectModel}
|
||||||
'../../models/Folder':{Folder:@FolderModel}
|
'../../models/Folder':{Folder:@FolderModel}
|
||||||
'../History/HistoryController': @HistoryController
|
'../History/HistoryManager': @HistoryManager
|
||||||
'./ProjectEntityHandler':@ProjectEntityHandler
|
'./ProjectEntityHandler':@ProjectEntityHandler
|
||||||
"./ProjectDetailsHandler":@ProjectDetailsHandler
|
"./ProjectDetailsHandler":@ProjectDetailsHandler
|
||||||
"settings-sharelatex": @Settings = {}
|
"settings-sharelatex": @Settings = {}
|
||||||
|
@ -66,7 +66,7 @@ describe 'ProjectCreationHandler', ->
|
||||||
describe 'Creating a Blank project', ->
|
describe 'Creating a Blank project', ->
|
||||||
beforeEach ->
|
beforeEach ->
|
||||||
@overleaf_id = 1234
|
@overleaf_id = 1234
|
||||||
@HistoryController.initializeProject = sinon.stub().callsArgWith(0, null, { @overleaf_id })
|
@HistoryManager.initializeProject = sinon.stub().callsArgWith(0, null, { @overleaf_id })
|
||||||
@ProjectModel::save = sinon.stub().callsArg(0)
|
@ProjectModel::save = sinon.stub().callsArg(0)
|
||||||
|
|
||||||
describe "successfully", ->
|
describe "successfully", ->
|
||||||
|
@ -83,7 +83,7 @@ describe 'ProjectCreationHandler', ->
|
||||||
|
|
||||||
it "should initialize the project overleaf if history id not provided", (done)->
|
it "should initialize the project overleaf if history id not provided", (done)->
|
||||||
@handler.createBlankProject ownerId, projectName, done
|
@handler.createBlankProject ownerId, projectName, done
|
||||||
@HistoryController.initializeProject.calledWith().should.equal true
|
@HistoryManager.initializeProject.calledWith().should.equal true
|
||||||
|
|
||||||
it "should set the overleaf id if overleaf id not provided", (done)->
|
it "should set the overleaf id if overleaf id not provided", (done)->
|
||||||
@handler.createBlankProject ownerId, projectName, (err, project)=>
|
@handler.createBlankProject ownerId, projectName, (err, project)=>
|
||||||
|
|
|
@ -64,7 +64,7 @@ describe 'ProjectDuplicator', ->
|
||||||
@projectOptionsHandler =
|
@projectOptionsHandler =
|
||||||
setCompiler : sinon.stub()
|
setCompiler : sinon.stub()
|
||||||
@entityHandler =
|
@entityHandler =
|
||||||
addDocWithProject: sinon.stub().callsArgWith(5, null, {name:"somDoc"})
|
addDoc: sinon.stub().callsArgWith(5, null, {name:"somDoc"})
|
||||||
copyFileFromExistingProjectWithProject: sinon.stub().callsArgWith(5)
|
copyFileFromExistingProjectWithProject: sinon.stub().callsArgWith(5)
|
||||||
setRootDoc: sinon.stub()
|
setRootDoc: sinon.stub()
|
||||||
addFolderWithProject: sinon.stub().callsArgWith(3, null, @newFolder)
|
addFolderWithProject: sinon.stub().callsArgWith(3, null, @newFolder)
|
||||||
|
@ -112,13 +112,13 @@ describe 'ProjectDuplicator', ->
|
||||||
done()
|
done()
|
||||||
|
|
||||||
it 'should use the same compiler', (done)->
|
it 'should use the same compiler', (done)->
|
||||||
@entityHandler.addDocWithProject.callsArgWith(5, null, @rootFolder.docs[0], @owner._id)
|
@entityHandler.addDoc.callsArgWith(5, null, @rootFolder.docs[0], @owner._id)
|
||||||
@duplicator.duplicate @owner, @old_project_id, "", (err, newProject)=>
|
@duplicator.duplicate @owner, @old_project_id, "", (err, newProject)=>
|
||||||
@projectOptionsHandler.setCompiler.calledWith(@stubbedNewProject._id, @project.compiler).should.equal true
|
@projectOptionsHandler.setCompiler.calledWith(@stubbedNewProject._id, @project.compiler).should.equal true
|
||||||
done()
|
done()
|
||||||
|
|
||||||
it 'should use the same root doc', (done)->
|
it 'should use the same root doc', (done)->
|
||||||
@entityHandler.addDocWithProject.callsArgWith(5, null, @rootFolder.docs[0], @owner._id)
|
@entityHandler.addDoc.callsArgWith(5, null, @rootFolder.docs[0], @owner._id)
|
||||||
@duplicator.duplicate @owner, @old_project_id, "", (err, newProject)=>
|
@duplicator.duplicate @owner, @old_project_id, "", (err, newProject)=>
|
||||||
@entityHandler.setRootDoc.calledWith(@stubbedNewProject._id, @rootFolder.docs[0]._id).should.equal true
|
@entityHandler.setRootDoc.calledWith(@stubbedNewProject._id, @rootFolder.docs[0]._id).should.equal true
|
||||||
done()
|
done()
|
||||||
|
@ -139,13 +139,13 @@ describe 'ProjectDuplicator', ->
|
||||||
it 'should copy all the docs', (done)->
|
it 'should copy all the docs', (done)->
|
||||||
@duplicator.duplicate @owner, @old_project_id, "", (err, newProject)=>
|
@duplicator.duplicate @owner, @old_project_id, "", (err, newProject)=>
|
||||||
@DocstoreManager.getAllDocs.calledWith(@old_project_id).should.equal true
|
@DocstoreManager.getAllDocs.calledWith(@old_project_id).should.equal true
|
||||||
@entityHandler.addDocWithProject
|
@entityHandler.addDoc
|
||||||
.calledWith(@stubbedNewProject, @stubbedNewProject.rootFolder[0]._id, @doc0.name, @doc0_lines, @owner._id)
|
.calledWith(@stubbedNewProject, @stubbedNewProject.rootFolder[0]._id, @doc0.name, @doc0_lines, @owner._id)
|
||||||
.should.equal true
|
.should.equal true
|
||||||
@entityHandler.addDocWithProject
|
@entityHandler.addDoc
|
||||||
.calledWith(@stubbedNewProject, @newFolder._id, @doc1.name, @doc1_lines, @owner._id)
|
.calledWith(@stubbedNewProject, @newFolder._id, @doc1.name, @doc1_lines, @owner._id)
|
||||||
.should.equal true
|
.should.equal true
|
||||||
@entityHandler.addDocWithProject
|
@entityHandler.addDoc
|
||||||
.calledWith(@stubbedNewProject, @newFolder._id, @doc2.name, @doc2_lines, @owner._id)
|
.calledWith(@stubbedNewProject, @newFolder._id, @doc2.name, @doc2_lines, @owner._id)
|
||||||
.should.equal true
|
.should.equal true
|
||||||
done()
|
done()
|
||||||
|
|
|
@ -496,6 +496,51 @@ describe 'ProjectEntityHandler', ->
|
||||||
.calledWith(project_id, userId, {newDocs})
|
.calledWith(project_id, userId, {newDocs})
|
||||||
.should.equal true
|
.should.equal true
|
||||||
|
|
||||||
|
describe 'addDocWithoutUpdatingHistory', ->
|
||||||
|
beforeEach ->
|
||||||
|
@name = "some new doc"
|
||||||
|
@lines = ['1234','abc']
|
||||||
|
@path = "/path/to/doc"
|
||||||
|
|
||||||
|
@ProjectEntityHandler._putElement = sinon.stub().callsArgWith(4, null, {path:{fileSystem:@path}})
|
||||||
|
@callback = sinon.stub()
|
||||||
|
@tpdsUpdateSender.addDoc = sinon.stub().callsArg(1)
|
||||||
|
@DocstoreManager.updateDoc = sinon.stub().yields(null, true, 0)
|
||||||
|
|
||||||
|
@ProjectEntityHandler.addDocWithoutUpdatingHistory project_id, folder_id, @name, @lines, userId, @callback
|
||||||
|
|
||||||
|
# Created doc
|
||||||
|
@doc = @ProjectEntityHandler._putElement.args[0][2]
|
||||||
|
@doc.name.should.equal @name
|
||||||
|
expect(@doc.lines).to.be.undefined
|
||||||
|
|
||||||
|
it 'should call put element', ->
|
||||||
|
@ProjectEntityHandler._putElement.calledWith(@project, folder_id, @doc).should.equal true
|
||||||
|
|
||||||
|
it 'should return doc and parent folder', ->
|
||||||
|
@callback.calledWith(null, @doc, folder_id).should.equal true
|
||||||
|
|
||||||
|
it 'should call third party data store', ->
|
||||||
|
@tpdsUpdateSender.addDoc
|
||||||
|
.calledWith({
|
||||||
|
project_id: project_id
|
||||||
|
doc_id: doc_id
|
||||||
|
path: @path
|
||||||
|
project_name: @project.name
|
||||||
|
rev: 0
|
||||||
|
})
|
||||||
|
.should.equal true
|
||||||
|
|
||||||
|
it "should send the doc lines to the doc store", ->
|
||||||
|
@DocstoreManager.updateDoc
|
||||||
|
.calledWith(project_id, @doc._id.toString(), @lines)
|
||||||
|
.should.equal true
|
||||||
|
|
||||||
|
it "should not should send the change in project structure to the doc updater", () ->
|
||||||
|
@documentUpdaterHandler.updateProjectStructure
|
||||||
|
.called
|
||||||
|
.should.equal false
|
||||||
|
|
||||||
describe "restoreDoc", ->
|
describe "restoreDoc", ->
|
||||||
beforeEach ->
|
beforeEach ->
|
||||||
@name = "doc-name"
|
@name = "doc-name"
|
||||||
|
@ -584,6 +629,12 @@ describe 'ProjectEntityHandler', ->
|
||||||
|
|
||||||
@ProjectEntityHandler.addFile project_id, folder_id, fileName, {}, userId, () ->
|
@ProjectEntityHandler.addFile project_id, folder_id, fileName, {}, userId, () ->
|
||||||
|
|
||||||
|
it "should not send the change in project structure to the doc updater when called as addFileWithoutUpdatingHistory", (done) ->
|
||||||
|
@documentUpdaterHandler.updateProjectStructure = sinon.stub().yields()
|
||||||
|
@ProjectEntityHandler.addFileWithoutUpdatingHistory project_id, folder_id, fileName, {}, userId, () =>
|
||||||
|
@documentUpdaterHandler.updateProjectStructure.called.should.equal false
|
||||||
|
done()
|
||||||
|
|
||||||
describe 'replaceFile', ->
|
describe 'replaceFile', ->
|
||||||
beforeEach ->
|
beforeEach ->
|
||||||
@projectLocator
|
@projectLocator
|
||||||
|
|
Loading…
Reference in a new issue