2014-03-05 11:31:52 -05:00
|
|
|
chai = require('chai')
|
|
|
|
chai.should()
|
|
|
|
sinon = require("sinon")
|
|
|
|
modulePath = "../../../../app/js/Features/TrackChanges/TrackChangesController"
|
|
|
|
SandboxedModule = require('sandboxed-module')
|
|
|
|
|
|
|
|
describe "TrackChangesController", ->
|
|
|
|
beforeEach ->
|
|
|
|
@TrackChangesController = SandboxedModule.require modulePath, requires:
|
2014-03-11 08:13:46 -04:00
|
|
|
"request" : @request = sinon.stub()
|
2014-03-05 11:31:52 -05:00
|
|
|
"settings-sharelatex": @settings = {}
|
|
|
|
"logger-sharelatex": @logger = {log: sinon.stub(), error: sinon.stub()}
|
|
|
|
|
|
|
|
describe "proxyToTrackChangesApi", ->
|
|
|
|
beforeEach ->
|
2014-03-11 08:13:46 -04:00
|
|
|
@req = { url: "/mock/url", method: "POST" }
|
2014-03-05 11:31:52 -05:00
|
|
|
@res = "mock-res"
|
|
|
|
@next = sinon.stub()
|
|
|
|
@settings.apis =
|
|
|
|
trackchanges:
|
|
|
|
url: "http://trackchanges.example.com"
|
|
|
|
@proxy =
|
|
|
|
events: {}
|
|
|
|
pipe: sinon.stub()
|
|
|
|
on: (event, handler) -> @events[event] = handler
|
2014-03-11 08:13:46 -04:00
|
|
|
@request.returns @proxy
|
2014-03-05 11:31:52 -05:00
|
|
|
@TrackChangesController.proxyToTrackChangesApi @req, @res, @next
|
|
|
|
|
|
|
|
describe "successfully", ->
|
|
|
|
it "should call the track changes api", ->
|
2014-03-11 08:13:46 -04:00
|
|
|
@request
|
|
|
|
.calledWith({
|
|
|
|
url: "#{@settings.apis.trackchanges.url}#{@req.url}"
|
|
|
|
method: @req.method
|
|
|
|
})
|
2014-03-05 11:31:52 -05:00
|
|
|
.should.equal true
|
|
|
|
|
|
|
|
it "should pipe the response to the client", ->
|
|
|
|
@proxy.pipe
|
|
|
|
.calledWith(@res)
|
|
|
|
.should.equal true
|
|
|
|
|
|
|
|
describe "with an error", ->
|
|
|
|
beforeEach ->
|
|
|
|
@proxy.events["error"].call(@proxy, @error = new Error("oops"))
|
|
|
|
|
|
|
|
it "should pass the error up the call chain", ->
|
|
|
|
@next.calledWith(@error).should.equal true
|
|
|
|
|