mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
8af372aff3
This reverts commit a700665650b5984fdb3afe5565d62ba810100ebe.
87 lines
3 KiB
CoffeeScript
87 lines
3 KiB
CoffeeScript
chai = require('chai')
|
|
chai.should()
|
|
sinon = require("sinon")
|
|
modulePath = "../../../../app/js/Features/Docstore/DocstoreManager"
|
|
SandboxedModule = require('sandboxed-module')
|
|
|
|
describe "DocstoreManager", ->
|
|
beforeEach ->
|
|
@requestDefaults = sinon.stub().returns(@request = sinon.stub())
|
|
@DocstoreManager = SandboxedModule.require modulePath, requires:
|
|
"request" : defaults: @requestDefaults
|
|
"settings-sharelatex": @settings =
|
|
apis:
|
|
docstore:
|
|
url: "docstore.sharelatex.com"
|
|
"logger-sharelatex": @logger = {log: sinon.stub(), error: sinon.stub()}
|
|
|
|
@requestDefaults.calledWith(jar: false).should.equal true
|
|
|
|
@project_id = "project-id-123"
|
|
@doc_id = "doc-id-123"
|
|
@callback = sinon.stub()
|
|
|
|
describe "deleteDoc", ->
|
|
describe "with a successful response code", ->
|
|
beforeEach ->
|
|
@request.del = sinon.stub().callsArgWith(1, null, statusCode: 204, "")
|
|
@DocstoreManager.deleteDoc @project_id, @doc_id, @callback
|
|
|
|
it "should delete the doc in the docstore api", ->
|
|
@request.del
|
|
.calledWith("#{@settings.apis.docstore.url}/project/#{@project_id}/doc/#{@doc_id}")
|
|
.should.equal true
|
|
|
|
it "should call the callback without an error", ->
|
|
@callback.calledWith(null).should.equal true
|
|
|
|
describe "with a failed response code", ->
|
|
beforeEach ->
|
|
@request.del = sinon.stub().callsArgWith(1, null, statusCode: 500, "")
|
|
@DocstoreManager.deleteDoc @project_id, @doc_id, @callback
|
|
|
|
it "should call the callback with an error", ->
|
|
@callback.calledWith(new Error("docstore api responded with non-success code: 500")).should.equal true
|
|
|
|
it "should log the error", ->
|
|
@logger.error
|
|
.calledWith({
|
|
err: new Error("docstore api responded with a non-success code: 500")
|
|
project_id: @project_id
|
|
doc_id: @doc_id
|
|
}, "error deleting doc in docstore")
|
|
.should.equal true
|
|
|
|
|
|
describe "getAllDocs", ->
|
|
describe "with a successful response code", ->
|
|
beforeEach ->
|
|
@request.get = sinon.stub().callsArgWith(1, null, statusCode: 204, @docs = [{ _id: "mock-doc-id" }])
|
|
@DocstoreManager.getAllDocs @project_id, @callback
|
|
|
|
it "should get all the project docs in the docstore api", ->
|
|
@request.get
|
|
.calledWith({
|
|
url: "#{@settings.apis.docstore.url}/project/#{@project_id}/doc"
|
|
json: true
|
|
})
|
|
.should.equal true
|
|
|
|
it "should call the callback with the docs", ->
|
|
@callback.calledWith(null, @docs).should.equal true
|
|
|
|
describe "with a failed response code", ->
|
|
beforeEach ->
|
|
@request.get = sinon.stub().callsArgWith(1, null, statusCode: 500, "")
|
|
@DocstoreManager.getAllDocs @project_id, @callback
|
|
|
|
it "should call the callback with an error", ->
|
|
@callback.calledWith(new Error("docstore api responded with non-success code: 500")).should.equal true
|
|
|
|
it "should log the error", ->
|
|
@logger.error
|
|
.calledWith({
|
|
err: new Error("docstore api responded with a non-success code: 500")
|
|
project_id: @project_id
|
|
}, "error getting all docs in docstore")
|
|
.should.equal true
|