2014-02-12 05:40:42 -05:00
|
|
|
sinon = require "sinon"
|
|
|
|
chai = require("chai")
|
|
|
|
chai.should()
|
|
|
|
async = require "async"
|
|
|
|
|
|
|
|
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 "Flushing a project", ->
|
2018-02-15 11:28:40 -05:00
|
|
|
before (done) ->
|
2014-02-12 05:40:42 -05:00
|
|
|
@project_id = DocUpdaterClient.randomId()
|
|
|
|
@docs = [{
|
|
|
|
id: doc_id0 = DocUpdaterClient.randomId()
|
|
|
|
lines: ["one", "two", "three"]
|
|
|
|
update:
|
|
|
|
doc: doc_id0
|
|
|
|
op: [{
|
|
|
|
i: "one and a half\n"
|
|
|
|
p: 4
|
|
|
|
}]
|
|
|
|
v: 0
|
|
|
|
updatedLines: ["one", "one and a half", "two", "three"]
|
|
|
|
}, {
|
|
|
|
id: doc_id1 = DocUpdaterClient.randomId()
|
|
|
|
lines: ["four", "five", "six"]
|
|
|
|
update:
|
|
|
|
doc: doc_id1
|
|
|
|
op: [{
|
|
|
|
i: "four and a half\n"
|
|
|
|
p: 5
|
|
|
|
}]
|
|
|
|
v: 0
|
|
|
|
updatedLines: ["four", "four and a half", "five", "six"]
|
|
|
|
}]
|
|
|
|
for doc in @docs
|
|
|
|
MockWebApi.insertDoc @project_id, doc.id, {
|
|
|
|
lines: doc.lines
|
2014-02-10 10:17:08 -05:00
|
|
|
version: doc.update.v
|
2014-02-12 05:40:42 -05:00
|
|
|
}
|
2018-02-15 11:28:40 -05:00
|
|
|
DocUpdaterApp.ensureRunning(done)
|
2014-02-12 05:40:42 -05:00
|
|
|
|
|
|
|
describe "with documents which have been updated", ->
|
|
|
|
before (done) ->
|
2016-11-29 12:06:23 -05:00
|
|
|
sinon.spy MockWebApi, "setDocument"
|
2014-02-26 10:56:52 -05:00
|
|
|
|
2014-02-12 05:40:42 -05:00
|
|
|
async.series @docs.map((doc) =>
|
|
|
|
(callback) =>
|
|
|
|
DocUpdaterClient.preloadDoc @project_id, doc.id, (error) =>
|
|
|
|
return callback(error) if error?
|
|
|
|
DocUpdaterClient.sendUpdate @project_id, doc.id, doc.update, (error) =>
|
|
|
|
callback(error)
|
|
|
|
), (error) =>
|
|
|
|
throw error if error?
|
|
|
|
setTimeout () =>
|
|
|
|
DocUpdaterClient.flushProject @project_id, (error, res, body) =>
|
|
|
|
@statusCode = res.statusCode
|
|
|
|
done()
|
|
|
|
, 200
|
|
|
|
|
|
|
|
after ->
|
2016-11-29 12:06:23 -05:00
|
|
|
MockWebApi.setDocument.restore()
|
2014-02-12 05:40:42 -05:00
|
|
|
|
|
|
|
it "should return a 204 status code", ->
|
|
|
|
@statusCode.should.equal 204
|
|
|
|
|
|
|
|
it "should send each document to the web api", ->
|
|
|
|
for doc in @docs
|
2016-11-29 12:06:23 -05:00
|
|
|
MockWebApi.setDocument
|
2014-02-12 05:40:42 -05:00
|
|
|
.calledWith(@project_id, doc.id, doc.updatedLines)
|
|
|
|
.should.equal true
|
|
|
|
|
|
|
|
it "should update the lines in the doc updater", (done) ->
|
|
|
|
async.series @docs.map((doc) =>
|
|
|
|
(callback) =>
|
|
|
|
DocUpdaterClient.getDoc @project_id, doc.id, (error, res, returnedDoc) =>
|
|
|
|
returnedDoc.lines.should.deep.equal doc.updatedLines
|
|
|
|
callback()
|
|
|
|
), done
|
|
|
|
|