mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
87 lines
2.9 KiB
CoffeeScript
87 lines
2.9 KiB
CoffeeScript
|
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
|