overleaf/services/document-updater/test/acceptance/coffee/DeletingADocumentTests.coffee

110 lines
3.5 KiB
CoffeeScript
Raw Normal View History

2014-02-12 05:40:42 -05:00
sinon = require "sinon"
chai = require("chai")
chai.should()
MockTrackChangesApi = require "./helpers/MockTrackChangesApi"
MockProjectHistoryApi = require "./helpers/MockProjectHistoryApi"
2014-02-12 05:40:42 -05:00
MockWebApi = require "./helpers/MockWebApi"
DocUpdaterClient = require "./helpers/DocUpdaterClient"
2018-02-15 11:28:40 -05:00
DocUpdaterApp = require "./helpers/DocUpdaterApp"
2014-02-12 05:40:42 -05:00
describe "Deleting a document", ->
2018-02-15 11:28:40 -05:00
before (done) ->
2014-02-12 05:40:42 -05:00
@lines = ["one", "two", "three"]
@version = 42
2014-02-12 05:40:42 -05:00
@update =
doc: @doc_id
op: [{
i: "one and a half\n"
p: 4
}]
v: @version
2014-02-12 05:40:42 -05:00
@result = ["one", "one and a half", "two", "three"]
sinon.spy MockTrackChangesApi, "flushDoc"
sinon.spy MockProjectHistoryApi, "flushProject"
2018-02-15 11:28:40 -05:00
DocUpdaterApp.ensureRunning(done)
after ->
MockTrackChangesApi.flushDoc.restore()
MockProjectHistoryApi.flushProject.restore()
2014-02-12 05:40:42 -05:00
describe "when the updated doc exists in the doc updater", ->
before (done) ->
[@project_id, @doc_id] = [DocUpdaterClient.randomId(), DocUpdaterClient.randomId()]
sinon.spy MockWebApi, "setDocument"
2014-02-12 05:40:42 -05:00
sinon.spy MockWebApi, "getDocument"
MockWebApi.insertDoc @project_id, @doc_id, {lines: @lines, version: @version}
DocUpdaterClient.preloadDoc @project_id, @doc_id, (error) =>
2014-02-12 05:40:42 -05:00
throw error if error?
DocUpdaterClient.sendUpdate @project_id, @doc_id, @update, (error) =>
2014-02-12 05:40:42 -05:00
throw error if error?
setTimeout () =>
DocUpdaterClient.deleteDoc @project_id, @doc_id, (error, res, body) =>
@statusCode = res.statusCode
setTimeout done, 200
, 200
2014-02-12 05:40:42 -05:00
after ->
MockWebApi.setDocument.restore()
2014-02-12 05:40:42 -05:00
MockWebApi.getDocument.restore()
it "should return a 204 status code", ->
@statusCode.should.equal 204
it "should send the updated document and version to the web api", ->
MockWebApi.setDocument
.calledWith(@project_id, @doc_id, @result, @version + 1)
2014-02-12 05:40:42 -05:00
.should.equal true
it "should need to reload the doc if read again", (done) ->
MockWebApi.getDocument.called.should.equal.false
DocUpdaterClient.getDoc @project_id, @doc_id, (error, res, doc) =>
MockWebApi.getDocument
.calledWith(@project_id, @doc_id)
.should.equal true
done()
it "should flush track changes", ->
MockTrackChangesApi.flushDoc.calledWith(@doc_id).should.equal true
2014-02-12 05:40:42 -05:00
it "should flush project history", ->
MockProjectHistoryApi.flushProject.calledWith(@project_id).should.equal true
2014-02-12 05:40:42 -05:00
describe "when the doc is not in the doc updater", ->
before (done) ->
[@project_id, @doc_id] = [DocUpdaterClient.randomId(), DocUpdaterClient.randomId()]
MockWebApi.insertDoc @project_id, @doc_id, {
lines: @lines
}
sinon.spy MockWebApi, "setDocument"
2014-02-12 05:40:42 -05:00
sinon.spy MockWebApi, "getDocument"
DocUpdaterClient.deleteDoc @project_id, @doc_id, (error, res, body) =>
@statusCode = res.statusCode
setTimeout done, 200
2014-02-12 05:40:42 -05:00
after ->
MockWebApi.setDocument.restore()
2014-02-12 05:40:42 -05:00
MockWebApi.getDocument.restore()
it "should return a 204 status code", ->
@statusCode.should.equal 204
it "should not need to send the updated document to the web api", ->
MockWebApi.setDocument.called.should.equal false
2014-02-12 05:40:42 -05:00
it "should need to reload the doc if read again", (done) ->
MockWebApi.getDocument.called.should.equal.false
DocUpdaterClient.getDoc @project_id, @doc_id, (error, res, doc) =>
MockWebApi.getDocument
.calledWith(@project_id, @doc_id)
.should.equal true
done()
it "should flush track changes", ->
MockTrackChangesApi.flushDoc.calledWith(@doc_id).should.equal true
2014-02-12 05:40:42 -05:00
it "should flush project history", ->
MockProjectHistoryApi.flushProject.calledWith(@project_id).should.equal true