Fix FileStore unit tests

This commit is contained in:
James Allen 2016-03-23 15:13:32 +00:00
parent bad9a0282d
commit a95c941cb9

View file

@ -19,7 +19,7 @@ describe "FileStoreHandler", ->
on: (type, cb)->
if type == "end"
cb()
@readStream = {my:"readStream"}
@readStream = {my:"readStream", on: sinon.stub()}
@request = sinon.stub()
@settings = apis:{filestore:{url:"http//filestore.sharelatex.test"}}
@handler = SandboxedModule.require modulePath, requires:
@ -128,6 +128,12 @@ describe "FileStoreHandler", ->
@handler.getFileStream @project_id, @file_id, {}, (err, stream)=>
@handler._buildUrl.calledWith(@project_id, @file_id).should.equal true
done()
it "should add an error handler", (done) ->
@handler.getFileStream @project_id, @file_id, {}, (err, stream)=>
stream.on.calledWith("error").should.equal true
done()
describe "copyFile", ->