2014-02-12 05:23:40 -05:00
|
|
|
chai = require('chai')
|
|
|
|
should = chai.should()
|
2018-12-03 06:06:05 -05:00
|
|
|
expect = chai.expect
|
2014-02-12 05:23:40 -05:00
|
|
|
sinon = require("sinon")
|
|
|
|
modulePath = "../../../../app/js/Features/Project/ProjectRootDocManager.js"
|
|
|
|
SandboxedModule = require('sandboxed-module')
|
|
|
|
|
|
|
|
describe 'ProjectRootDocManager', ->
|
|
|
|
beforeEach ->
|
|
|
|
@project_id = "project-123"
|
2018-11-09 03:09:13 -05:00
|
|
|
@docPaths =
|
|
|
|
"doc-id-1": "/chapter1.tex"
|
|
|
|
"doc-id-2": "/main.tex"
|
|
|
|
"doc-id-3": "/nested/chapter1a.tex"
|
|
|
|
"doc-id-4": "/nested/chapter1b.tex"
|
2014-02-12 05:23:40 -05:00
|
|
|
@sl_req_id = "sl-req-id-123"
|
2014-10-15 09:11:02 -04:00
|
|
|
@callback = sinon.stub()
|
2018-12-05 08:23:16 -05:00
|
|
|
@globbyFiles = ['a.tex', 'b.tex', 'main.tex']
|
|
|
|
@globby = sinon.stub().returns(new Promise (resolve) =>
|
|
|
|
resolve(@globbyFiles)
|
2018-12-03 06:06:05 -05:00
|
|
|
)
|
|
|
|
@fs =
|
|
|
|
readFile: sinon.stub().callsArgWith(2, new Error('file not found'))
|
|
|
|
stat: sinon.stub().callsArgWith(1, null, {size: 100})
|
2014-02-12 05:23:40 -05:00
|
|
|
@ProjectRootDocManager = SandboxedModule.require modulePath, requires:
|
|
|
|
"./ProjectEntityHandler" : @ProjectEntityHandler = {}
|
2018-02-01 10:31:42 -05:00
|
|
|
"./ProjectEntityUpdateHandler" : @ProjectEntityUpdateHandler = {}
|
2018-10-29 10:48:23 -04:00
|
|
|
"./ProjectGetter" : @ProjectGetter = {}
|
2018-12-03 06:06:05 -05:00
|
|
|
"globby" : @globby
|
|
|
|
"fs" : @fs
|
2018-10-29 10:48:23 -04:00
|
|
|
|
2014-02-12 05:23:40 -05:00
|
|
|
describe "setRootDocAutomatically", ->
|
|
|
|
describe "when there is a suitable root doc", ->
|
2014-11-26 12:19:21 -05:00
|
|
|
beforeEach (done)->
|
2014-02-12 05:23:40 -05:00
|
|
|
@docs =
|
|
|
|
"/chapter1.tex":
|
|
|
|
_id: "doc-id-1"
|
2014-11-30 20:07:03 -05:00
|
|
|
lines: ["something else","\\begin{document}", "Hello world", "\\end{document}"]
|
2014-02-12 05:23:40 -05:00
|
|
|
"/main.tex":
|
|
|
|
_id: "doc-id-2"
|
2014-11-30 20:07:03 -05:00
|
|
|
lines: ["different line","\\documentclass{article}", "\\input{chapter1}"]
|
2014-11-26 12:19:21 -05:00
|
|
|
"/nested/chapter1a.tex":
|
|
|
|
_id: "doc-id-3"
|
|
|
|
lines: ["Hello world"]
|
|
|
|
"/nested/chapter1b.tex":
|
|
|
|
_id: "doc-id-4"
|
|
|
|
lines: ["Hello world"]
|
|
|
|
|
2014-10-15 09:11:02 -04:00
|
|
|
@ProjectEntityHandler.getAllDocs = sinon.stub().callsArgWith(1, null, @docs)
|
2018-02-01 10:31:42 -05:00
|
|
|
@ProjectEntityUpdateHandler.setRootDoc = sinon.stub().callsArgWith(2)
|
2014-11-26 12:19:21 -05:00
|
|
|
@ProjectRootDocManager.setRootDocAutomatically @project_id, done
|
2014-02-12 05:23:40 -05:00
|
|
|
|
|
|
|
it "should check the docs of the project", ->
|
|
|
|
@ProjectEntityHandler.getAllDocs.calledWith(@project_id)
|
|
|
|
.should.equal true
|
|
|
|
|
|
|
|
it "should set the root doc to the doc containing a documentclass", ->
|
2018-02-01 10:31:42 -05:00
|
|
|
@ProjectEntityUpdateHandler.setRootDoc.calledWith(@project_id, "doc-id-2")
|
2014-02-12 05:23:40 -05:00
|
|
|
.should.equal true
|
|
|
|
|
|
|
|
describe "when the root doc is an Rtex file", ->
|
|
|
|
beforeEach ->
|
|
|
|
@docs =
|
|
|
|
"/chapter1.tex":
|
|
|
|
_id: "doc-id-1"
|
|
|
|
lines: ["\\begin{document}", "Hello world", "\\end{document}"]
|
|
|
|
"/main.Rtex":
|
|
|
|
_id: "doc-id-2"
|
|
|
|
lines: ["\\documentclass{article}", "\\input{chapter1}"]
|
2014-10-15 09:11:02 -04:00
|
|
|
@ProjectEntityHandler.getAllDocs = sinon.stub().callsArgWith(1, null, @docs)
|
2018-02-01 10:31:42 -05:00
|
|
|
@ProjectEntityUpdateHandler.setRootDoc = sinon.stub().callsArgWith(2)
|
2014-10-15 09:11:02 -04:00
|
|
|
@ProjectRootDocManager.setRootDocAutomatically @project_id, @callback
|
2014-02-12 05:23:40 -05:00
|
|
|
|
|
|
|
it "should set the root doc to the doc containing a documentclass", ->
|
2018-02-01 10:31:42 -05:00
|
|
|
@ProjectEntityUpdateHandler.setRootDoc.calledWith(@project_id, "doc-id-2")
|
2014-02-12 05:23:40 -05:00
|
|
|
.should.equal true
|
|
|
|
|
|
|
|
describe "when there is no suitable root doc", ->
|
2014-11-26 12:19:21 -05:00
|
|
|
beforeEach (done)->
|
2014-02-12 05:23:40 -05:00
|
|
|
@docs =
|
|
|
|
"/chapter1.tex":
|
|
|
|
_id: "doc-id-1"
|
|
|
|
lines: ["\\begin{document}", "Hello world", "\\end{document}"]
|
|
|
|
"/style.bst":
|
|
|
|
_id: "doc-id-2"
|
|
|
|
lines: ["%Example: \\documentclass{article}"]
|
2014-10-15 09:11:02 -04:00
|
|
|
@ProjectEntityHandler.getAllDocs = sinon.stub().callsArgWith(1, null, @docs)
|
2018-02-01 10:31:42 -05:00
|
|
|
@ProjectEntityUpdateHandler.setRootDoc = sinon.stub().callsArgWith(2)
|
2014-11-26 12:19:21 -05:00
|
|
|
@ProjectRootDocManager.setRootDocAutomatically @project_id, done
|
2014-02-12 05:23:40 -05:00
|
|
|
|
|
|
|
it "should not set the root doc to the doc containing a documentclass", ->
|
2018-02-01 10:31:42 -05:00
|
|
|
@ProjectEntityUpdateHandler.setRootDoc.called.should.equal false
|
2014-02-12 05:23:40 -05:00
|
|
|
|
2018-12-03 06:06:05 -05:00
|
|
|
describe "findRootDocFileFromDirectory", ->
|
|
|
|
beforeEach ->
|
|
|
|
@fs.readFile.withArgs('/foo/a.tex').callsArgWith(2, null, 'Hello World!')
|
|
|
|
@fs.readFile.withArgs('/foo/b.tex').callsArgWith(2, null, "I'm a little teapot, get me out of here.")
|
|
|
|
@fs.readFile.withArgs('/foo/main.tex').callsArgWith(2, null, "Help, I'm trapped in a unit testing factory")
|
|
|
|
@fs.readFile.withArgs('/foo/c.tex').callsArgWith(2, null, 'Tomato, tomahto.')
|
|
|
|
@fs.readFile.withArgs('/foo/a/a.tex').callsArgWith(2, null, 'Potato? Potahto. Potootee!')
|
|
|
|
@documentclassContent = "% test\n\\documentclass\n\% test"
|
|
|
|
|
|
|
|
describe "when there is a file in a subfolder", ->
|
2018-12-05 08:23:16 -05:00
|
|
|
beforeEach ->
|
|
|
|
# have to splice globbyFiles weirdly because of the way the stubbed globby method handles references
|
|
|
|
@globbyFiles.splice(0, @globbyFiles.length, 'c.tex', 'a.tex', 'a/a.tex', 'b.tex')
|
2018-12-03 06:06:05 -05:00
|
|
|
|
2018-12-05 08:23:16 -05:00
|
|
|
it "processes the root folder files first, and then the subfolder, in alphabetical order", (done) ->
|
|
|
|
@ProjectRootDocManager.findRootDocFileFromDirectory '/foo', (error, path) =>
|
2018-12-03 06:06:05 -05:00
|
|
|
expect(error).not.to.exist
|
2018-12-05 08:23:16 -05:00
|
|
|
expect(path).not.to.exist
|
2018-12-03 06:06:05 -05:00
|
|
|
sinon.assert.callOrder(
|
|
|
|
@fs.readFile.withArgs('/foo/a.tex')
|
|
|
|
@fs.readFile.withArgs('/foo/b.tex')
|
|
|
|
@fs.readFile.withArgs('/foo/c.tex')
|
|
|
|
@fs.readFile.withArgs('/foo/a/a.tex')
|
|
|
|
)
|
|
|
|
done()
|
|
|
|
|
2018-12-05 08:23:16 -05:00
|
|
|
it "processes smaller files first", (done) ->
|
2018-12-03 06:06:05 -05:00
|
|
|
@fs.stat.withArgs('/foo/c.tex').callsArgWith(1, null, {size: 1})
|
2018-12-05 08:23:16 -05:00
|
|
|
@ProjectRootDocManager.findRootDocFileFromDirectory '/foo',(error, path) =>
|
2018-12-03 06:06:05 -05:00
|
|
|
expect(error).not.to.exist
|
2018-12-05 08:23:16 -05:00
|
|
|
expect(path).not.to.exist
|
2018-12-03 06:06:05 -05:00
|
|
|
sinon.assert.callOrder(
|
|
|
|
@fs.readFile.withArgs('/foo/c.tex')
|
|
|
|
@fs.readFile.withArgs('/foo/a.tex')
|
|
|
|
@fs.readFile.withArgs('/foo/b.tex')
|
|
|
|
@fs.readFile.withArgs('/foo/a/a.tex')
|
|
|
|
)
|
|
|
|
done()
|
|
|
|
|
|
|
|
describe "when main.tex contains a documentclass", ->
|
|
|
|
beforeEach ->
|
|
|
|
@fs.readFile.withArgs('/foo/main.tex').callsArgWith(2, null, @documentclassContent)
|
|
|
|
|
|
|
|
it "returns main.tex", (done) ->
|
|
|
|
@ProjectRootDocManager.findRootDocFileFromDirectory '/foo', (error, path, content) =>
|
|
|
|
expect(error).not.to.exist
|
|
|
|
expect(path).to.equal 'main.tex'
|
|
|
|
expect(content).to.equal @documentclassContent
|
|
|
|
done()
|
|
|
|
|
|
|
|
it "processes main.text first and stops processing when it finds the content", (done) ->
|
|
|
|
@ProjectRootDocManager.findRootDocFileFromDirectory '/foo', =>
|
|
|
|
expect(@fs.readFile).to.be.calledWith('/foo/main.tex')
|
|
|
|
expect(@fs.readFile).not.to.be.calledWith('/foo/a.tex')
|
|
|
|
done()
|
|
|
|
|
|
|
|
describe "when a.tex contains a documentclass", ->
|
|
|
|
beforeEach ->
|
|
|
|
@fs.readFile.withArgs('/foo/a.tex').callsArgWith(2, null, @documentclassContent)
|
|
|
|
|
|
|
|
it "returns a.tex", (done) ->
|
|
|
|
@ProjectRootDocManager.findRootDocFileFromDirectory '/foo', (error, path, content) =>
|
|
|
|
expect(error).not.to.exist
|
|
|
|
expect(path).to.equal 'a.tex'
|
|
|
|
expect(content).to.equal @documentclassContent
|
|
|
|
done()
|
|
|
|
|
|
|
|
it "processes main.text first and stops processing when it finds the content", (done) ->
|
|
|
|
@ProjectRootDocManager.findRootDocFileFromDirectory '/foo', =>
|
|
|
|
expect(@fs.readFile).to.be.calledWith('/foo/main.tex')
|
|
|
|
expect(@fs.readFile).to.be.calledWith('/foo/a.tex')
|
|
|
|
expect(@fs.readFile).not.to.be.calledWith('/foo/b.tex')
|
|
|
|
done()
|
|
|
|
|
|
|
|
describe "when there is no documentclass", ->
|
|
|
|
it "returns null with no error", (done) ->
|
|
|
|
@ProjectRootDocManager.findRootDocFileFromDirectory '/foo', (error, path, content) =>
|
|
|
|
expect(error).not.to.exist
|
|
|
|
expect(path).not.to.exist
|
|
|
|
expect(content).not.to.exist
|
|
|
|
done()
|
|
|
|
|
|
|
|
it "processes all the files", (done) ->
|
|
|
|
@ProjectRootDocManager.findRootDocFileFromDirectory '/foo', =>
|
|
|
|
expect(@fs.readFile).to.be.calledWith('/foo/main.tex')
|
|
|
|
expect(@fs.readFile).to.be.calledWith('/foo/a.tex')
|
|
|
|
expect(@fs.readFile).to.be.calledWith('/foo/b.tex')
|
|
|
|
done()
|
|
|
|
|
|
|
|
describe "when there is an error reading a file", ->
|
|
|
|
beforeEach ->
|
|
|
|
@fs.readFile.withArgs('/foo/a.tex').callsArgWith(2, new Error('something went wrong'))
|
|
|
|
|
|
|
|
it "returns an error", (done) ->
|
|
|
|
@ProjectRootDocManager.findRootDocFileFromDirectory '/foo', (error, path, content) =>
|
|
|
|
expect(error).to.exist
|
|
|
|
expect(path).not.to.exist
|
|
|
|
expect(content).not.to.exist
|
|
|
|
done()
|
|
|
|
|
2018-09-24 06:59:55 -04:00
|
|
|
describe "setRootDocFromName", ->
|
|
|
|
describe "when there is a suitable root doc", ->
|
|
|
|
beforeEach (done)->
|
|
|
|
@docPaths =
|
|
|
|
"doc-id-1": "/chapter1.tex"
|
|
|
|
"doc-id-2": "/main.tex"
|
|
|
|
"doc-id-3": "/nested/chapter1a.tex"
|
|
|
|
"doc-id-4": "/nested/chapter1b.tex"
|
2018-09-24 11:04:23 -04:00
|
|
|
@ProjectEntityHandler.getAllDocPathsFromProjectById = sinon.stub().callsArgWith(1, null, @docPaths)
|
2018-09-24 06:59:55 -04:00
|
|
|
@ProjectEntityUpdateHandler.setRootDoc = sinon.stub().callsArgWith(2)
|
|
|
|
@ProjectRootDocManager.setRootDocFromName @project_id, '/main.tex', done
|
|
|
|
|
|
|
|
it "should check the docs of the project", ->
|
2018-09-24 11:04:23 -04:00
|
|
|
@ProjectEntityHandler.getAllDocPathsFromProjectById.calledWith(@project_id)
|
2018-09-24 06:59:55 -04:00
|
|
|
.should.equal true
|
|
|
|
|
|
|
|
it "should set the root doc to main.tex", ->
|
|
|
|
@ProjectEntityUpdateHandler.setRootDoc.calledWith(@project_id, "doc-id-2")
|
|
|
|
.should.equal true
|
|
|
|
|
|
|
|
describe "when there is a suitable root doc but the leading slash is missing", ->
|
|
|
|
beforeEach (done)->
|
2018-09-24 11:04:23 -04:00
|
|
|
@ProjectEntityHandler.getAllDocPathsFromProjectById = sinon.stub().callsArgWith(1, null, @docPaths)
|
2018-09-24 06:59:55 -04:00
|
|
|
@ProjectEntityUpdateHandler.setRootDoc = sinon.stub().callsArgWith(2)
|
|
|
|
@ProjectRootDocManager.setRootDocFromName @project_id, 'main.tex', done
|
|
|
|
|
|
|
|
it "should check the docs of the project", ->
|
2018-09-24 11:04:23 -04:00
|
|
|
@ProjectEntityHandler.getAllDocPathsFromProjectById.calledWith(@project_id)
|
2018-09-24 06:59:55 -04:00
|
|
|
.should.equal true
|
|
|
|
|
|
|
|
it "should set the root doc to main.tex", ->
|
|
|
|
@ProjectEntityUpdateHandler.setRootDoc.calledWith(@project_id, "doc-id-2")
|
|
|
|
.should.equal true
|
|
|
|
|
|
|
|
describe "when there is a suitable root doc with a basename match", ->
|
|
|
|
beforeEach (done)->
|
2018-09-24 11:04:23 -04:00
|
|
|
@ProjectEntityHandler.getAllDocPathsFromProjectById = sinon.stub().callsArgWith(1, null, @docPaths)
|
2018-09-24 06:59:55 -04:00
|
|
|
@ProjectEntityUpdateHandler.setRootDoc = sinon.stub().callsArgWith(2)
|
|
|
|
@ProjectRootDocManager.setRootDocFromName @project_id, 'chapter1a.tex', done
|
|
|
|
|
|
|
|
it "should check the docs of the project", ->
|
2018-09-24 11:04:23 -04:00
|
|
|
@ProjectEntityHandler.getAllDocPathsFromProjectById.calledWith(@project_id)
|
2018-09-24 06:59:55 -04:00
|
|
|
.should.equal true
|
|
|
|
|
|
|
|
it "should set the root doc using the basename", ->
|
|
|
|
@ProjectEntityUpdateHandler.setRootDoc.calledWith(@project_id, "doc-id-3")
|
|
|
|
.should.equal true
|
|
|
|
|
2018-09-25 04:04:56 -04:00
|
|
|
describe "when there is a suitable root doc but the filename is in quotes", ->
|
|
|
|
beforeEach (done)->
|
|
|
|
@ProjectEntityHandler.getAllDocPathsFromProjectById = sinon.stub().callsArgWith(1, null, @docPaths)
|
|
|
|
@ProjectEntityUpdateHandler.setRootDoc = sinon.stub().callsArgWith(2)
|
|
|
|
@ProjectRootDocManager.setRootDocFromName @project_id, "'main.tex'", done
|
|
|
|
|
|
|
|
it "should check the docs of the project", ->
|
|
|
|
@ProjectEntityHandler.getAllDocPathsFromProjectById.calledWith(@project_id)
|
|
|
|
.should.equal true
|
|
|
|
|
|
|
|
it "should set the root doc to main.tex", ->
|
|
|
|
@ProjectEntityUpdateHandler.setRootDoc.calledWith(@project_id, "doc-id-2")
|
|
|
|
.should.equal true
|
|
|
|
|
2018-09-24 06:59:55 -04:00
|
|
|
describe "when there is no suitable root doc", ->
|
|
|
|
beforeEach (done)->
|
2018-09-24 11:04:23 -04:00
|
|
|
@ProjectEntityHandler.getAllDocPathsFromProjectById = sinon.stub().callsArgWith(1, null, @docPaths)
|
2018-09-24 06:59:55 -04:00
|
|
|
@ProjectEntityUpdateHandler.setRootDoc = sinon.stub().callsArgWith(2)
|
|
|
|
@ProjectRootDocManager.setRootDocFromName @project_id, "other.tex", done
|
|
|
|
|
|
|
|
it "should not set the root doc", ->
|
|
|
|
@ProjectEntityUpdateHandler.setRootDoc.called.should.equal false
|
2018-10-29 10:48:23 -04:00
|
|
|
|
|
|
|
|
|
|
|
describe "ensureRootDocumentIsSet", ->
|
|
|
|
beforeEach ->
|
|
|
|
@project = {}
|
|
|
|
@ProjectGetter.getProject = sinon.stub().callsArgWith(2, null, @project)
|
|
|
|
@ProjectRootDocManager.setRootDocAutomatically = sinon.stub().callsArgWith(1, null)
|
|
|
|
|
|
|
|
describe "when the root doc is set", ->
|
|
|
|
beforeEach ->
|
|
|
|
@project.rootDoc_id = "root-doc-id"
|
|
|
|
@ProjectRootDocManager.ensureRootDocumentIsSet(@project_id, @callback)
|
|
|
|
|
2018-11-09 03:09:13 -05:00
|
|
|
it "should find the project fetching only the rootDoc_id field", ->
|
2018-10-29 10:48:23 -04:00
|
|
|
@ProjectGetter.getProject
|
|
|
|
.calledWith(@project_id, rootDoc_id: 1)
|
|
|
|
.should.equal true
|
|
|
|
|
|
|
|
it "should not try to update the project rootDoc_id", ->
|
|
|
|
@ProjectRootDocManager.setRootDocAutomatically
|
|
|
|
.called.should.equal false
|
|
|
|
|
|
|
|
it "should call the callback", ->
|
|
|
|
@callback.called.should.equal true
|
|
|
|
|
|
|
|
describe "when the root doc is not set", ->
|
|
|
|
beforeEach ->
|
|
|
|
@ProjectRootDocManager.ensureRootDocumentIsSet(@project_id, @callback)
|
|
|
|
|
|
|
|
it "should find the project with only the rootDoc_id fiel", ->
|
|
|
|
@ProjectGetter.getProject
|
|
|
|
.calledWith(@project_id, rootDoc_id: 1)
|
|
|
|
.should.equal true
|
|
|
|
|
|
|
|
it "should update the project rootDoc_id", ->
|
|
|
|
@ProjectRootDocManager.setRootDocAutomatically
|
|
|
|
.calledWith(@project_id)
|
|
|
|
.should.equal true
|
|
|
|
|
|
|
|
it "should call the callback", ->
|
|
|
|
@callback.called.should.equal true
|
|
|
|
|
|
|
|
describe "when the project does not exist", ->
|
|
|
|
beforeEach ->
|
|
|
|
@ProjectGetter.getProject = sinon.stub().callsArgWith(2, null, null)
|
|
|
|
@ProjectRootDocManager.ensureRootDocumentIsSet(@project_id, @callback)
|
|
|
|
|
|
|
|
it "should call the callback with an error", ->
|
|
|
|
@callback.calledWith(new Error("project not found")).should.equal true
|
|
|
|
|
2018-11-09 03:09:13 -05:00
|
|
|
describe "ensureRootDocumentIsValid", ->
|
|
|
|
beforeEach ->
|
|
|
|
@project = {}
|
|
|
|
@ProjectGetter.getProject = sinon.stub().callsArgWith(2, null, @project)
|
|
|
|
@ProjectEntityUpdateHandler.setRootDoc = sinon.stub().yields()
|
|
|
|
@ProjectEntityHandler.getAllDocPathsFromProjectById = sinon.stub().callsArgWith(1, null, @docPaths)
|
|
|
|
@ProjectRootDocManager.setRootDocAutomatically = sinon.stub().callsArgWith(1, null)
|
|
|
|
|
|
|
|
describe "when the root doc is set", ->
|
|
|
|
describe "when the root doc is valid", ->
|
|
|
|
beforeEach ->
|
|
|
|
@project.rootDoc_id = "doc-id-2"
|
|
|
|
@ProjectRootDocManager.ensureRootDocumentIsValid(@project_id, @callback)
|
|
|
|
|
|
|
|
it "should find the project fetching only the rootDoc_id field", ->
|
|
|
|
@ProjectGetter.getProject
|
|
|
|
.calledWith(@project_id, rootDoc_id: 1)
|
|
|
|
.should.equal true
|
|
|
|
|
|
|
|
it "should not try to update the project rootDoc_id", ->
|
|
|
|
@ProjectRootDocManager.setRootDocAutomatically
|
|
|
|
.called.should.equal false
|
|
|
|
|
|
|
|
it "should call the callback", ->
|
|
|
|
@callback.called.should.equal true
|
|
|
|
|
|
|
|
describe "when the root doc is not valid", ->
|
|
|
|
beforeEach ->
|
|
|
|
@project.rootDoc_id = "bogus-doc-id"
|
|
|
|
@ProjectRootDocManager.ensureRootDocumentIsValid(@project_id, @callback)
|
|
|
|
|
|
|
|
it "should find the project fetching only the rootDoc_id field", ->
|
|
|
|
@ProjectGetter.getProject
|
|
|
|
.calledWith(@project_id, rootDoc_id: 1)
|
|
|
|
.should.equal true
|
|
|
|
|
|
|
|
it "should null the rootDoc_id field", ->
|
|
|
|
@ProjectEntityUpdateHandler.setRootDoc
|
|
|
|
.calledWith(@project_id, null)
|
|
|
|
.should.equal true
|
|
|
|
|
|
|
|
it "should try to find a new rootDoc", ->
|
|
|
|
@ProjectRootDocManager.setRootDocAutomatically
|
|
|
|
.called.should.equal true
|
|
|
|
|
|
|
|
it "should call the callback", ->
|
|
|
|
@callback.called.should.equal true
|
|
|
|
|
|
|
|
describe "when the root doc is not set", ->
|
|
|
|
beforeEach ->
|
|
|
|
@ProjectRootDocManager.ensureRootDocumentIsSet(@project_id, @callback)
|
|
|
|
|
|
|
|
it "should find the project fetching only the rootDoc_id fiel", ->
|
|
|
|
@ProjectGetter.getProject
|
|
|
|
.calledWith(@project_id, rootDoc_id: 1)
|
|
|
|
.should.equal true
|
|
|
|
|
|
|
|
it "should update the project rootDoc_id", ->
|
|
|
|
@ProjectRootDocManager.setRootDocAutomatically
|
|
|
|
.calledWith(@project_id)
|
|
|
|
.should.equal true
|
|
|
|
|
|
|
|
it "should call the callback", ->
|
|
|
|
@callback.called.should.equal true
|
|
|
|
|
|
|
|
describe "when the project does not exist", ->
|
|
|
|
beforeEach ->
|
|
|
|
@ProjectGetter.getProject = sinon.stub().callsArgWith(2, null, null)
|
|
|
|
@ProjectRootDocManager.ensureRootDocumentIsSet(@project_id, @callback)
|
|
|
|
|
|
|
|
it "should call the callback with an error", ->
|
|
|
|
@callback.calledWith(new Error("project not found")).should.equal true
|
|
|
|
|