mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
90 lines
2.8 KiB
CoffeeScript
90 lines
2.8 KiB
CoffeeScript
|
sinon = require('sinon')
|
||
|
chai = require('chai')
|
||
|
should = chai.should()
|
||
|
expect = chai.expect
|
||
|
modulePath = "../../../../app/js/Features/Documents/DocumentController.js"
|
||
|
SandboxedModule = require('sandboxed-module')
|
||
|
events = require "events"
|
||
|
MockRequest = require "../helpers/MockRequest"
|
||
|
MockResponse = require "../helpers/MockResponse"
|
||
|
Errors = require "../../../../app/js/errors"
|
||
|
|
||
|
describe "DocumentController", ->
|
||
|
beforeEach ->
|
||
|
@DocumentController = SandboxedModule.require modulePath, requires:
|
||
|
"../Project/ProjectLocator": @ProjectLocator = {}
|
||
|
"../Project/ProjectEntityHandler": @ProjectEntityHandler = {}
|
||
|
@res = new MockResponse()
|
||
|
@req = new MockRequest()
|
||
|
@next = sinon.stub()
|
||
|
@project_id = "project-id-123"
|
||
|
@doc_id = "doc-id-123"
|
||
|
@doc_lines = ["one", "two", "three"]
|
||
|
|
||
|
describe "getDocument", ->
|
||
|
beforeEach ->
|
||
|
@req.params =
|
||
|
Project_id: @project_id
|
||
|
doc_id: @doc_id
|
||
|
|
||
|
|
||
|
describe "when the document exists", ->
|
||
|
beforeEach ->
|
||
|
@ProjectLocator.findElement = sinon.stub().callsArgWith(1, null, lines: @doc_lines)
|
||
|
@DocumentController.getDocument(@req, @res, @next)
|
||
|
|
||
|
it "should get the document from Mongo", ->
|
||
|
@ProjectLocator.findElement
|
||
|
.calledWith(project_id: @project_id, element_id: @doc_id, type: "doc")
|
||
|
.should.equal true
|
||
|
|
||
|
it "should return the document data to the client as JSON", ->
|
||
|
@res.type.should.equal "json"
|
||
|
@res.body.should.equal JSON.stringify
|
||
|
lines: @doc_lines
|
||
|
|
||
|
describe "when the document doesn't exist", ->
|
||
|
beforeEach ->
|
||
|
@ProjectLocator.findElement = sinon.stub().callsArgWith(1, new Errors.NotFoundError("not found"), null)
|
||
|
@DocumentController.getDocument(@req, @res, @next)
|
||
|
|
||
|
it "should call next with the NotFoundError", ->
|
||
|
@next.calledWith(new Errors.NotFoundError("not found"))
|
||
|
.should.equal true
|
||
|
|
||
|
describe "setDocument", ->
|
||
|
beforeEach ->
|
||
|
@req.params =
|
||
|
Project_id: @project_id
|
||
|
doc_id: @doc_id
|
||
|
|
||
|
describe "when the document exists", ->
|
||
|
beforeEach ->
|
||
|
@ProjectEntityHandler.updateDocLines = sinon.stub().callsArg(3)
|
||
|
@req.body =
|
||
|
lines: @doc_lines
|
||
|
@DocumentController.setDocument(@req, @res, @next)
|
||
|
|
||
|
it "should update the document in Mongo", ->
|
||
|
@ProjectEntityHandler.updateDocLines
|
||
|
.calledWith(@project_id, @doc_id, @doc_lines)
|
||
|
.should.equal true
|
||
|
|
||
|
it "should return a successful response", ->
|
||
|
@res.success.should.equal true
|
||
|
|
||
|
describe "when the document doesn't exist", ->
|
||
|
beforeEach ->
|
||
|
@ProjectEntityHandler.updateDocLines = sinon.stub().callsArgWith(3, new Errors.NotFoundError("document does not exist"))
|
||
|
@req.body =
|
||
|
lines: @doc_lines
|
||
|
@DocumentController.setDocument(@req, @res, @next)
|
||
|
|
||
|
it "should call next with the NotFoundError", ->
|
||
|
@next.calledWith(new Errors.NotFoundError("not found"))
|
||
|
.should.equal true
|
||
|
|
||
|
|
||
|
|
||
|
|