2020-05-06 06:12:36 -04:00
|
|
|
/* eslint-disable
|
|
|
|
camelcase,
|
|
|
|
*/
|
|
|
|
// TODO: This file was created by bulk-decaffeinate.
|
|
|
|
// Fix any style issues and re-enable lint.
|
2020-05-06 06:12:17 -04:00
|
|
|
/*
|
|
|
|
* decaffeinate suggestions:
|
|
|
|
* DS101: Remove unnecessary use of Array.from
|
|
|
|
* DS102: Remove unnecessary code created because of implicit returns
|
|
|
|
* DS207: Consider shorter variations of null checks
|
|
|
|
* Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md
|
|
|
|
*/
|
2020-05-06 06:12:47 -04:00
|
|
|
const sinon = require('sinon')
|
|
|
|
const async = require('async')
|
2014-02-12 05:40:42 -05:00
|
|
|
|
2020-05-06 06:12:47 -04:00
|
|
|
const MockWebApi = require('./helpers/MockWebApi')
|
|
|
|
const DocUpdaterClient = require('./helpers/DocUpdaterClient')
|
|
|
|
const DocUpdaterApp = require('./helpers/DocUpdaterApp')
|
2014-02-12 05:40:42 -05:00
|
|
|
|
2020-05-06 06:12:47 -04:00
|
|
|
describe('Flushing a project', function () {
|
|
|
|
before(function (done) {
|
|
|
|
let doc_id0, doc_id1
|
|
|
|
this.project_id = DocUpdaterClient.randomId()
|
|
|
|
this.docs = [
|
|
|
|
{
|
|
|
|
id: (doc_id0 = DocUpdaterClient.randomId()),
|
|
|
|
lines: ['one', 'two', 'three'],
|
|
|
|
update: {
|
|
|
|
doc: doc_id0,
|
|
|
|
op: [
|
|
|
|
{
|
|
|
|
i: 'one and a half\n',
|
2021-07-13 07:04:42 -04:00
|
|
|
p: 4,
|
|
|
|
},
|
2020-05-06 06:12:47 -04:00
|
|
|
],
|
2021-07-13 07:04:42 -04:00
|
|
|
v: 0,
|
2020-05-06 06:12:47 -04:00
|
|
|
},
|
2021-07-13 07:04:42 -04:00
|
|
|
updatedLines: ['one', 'one and a half', 'two', 'three'],
|
2020-05-06 06:12:47 -04:00
|
|
|
},
|
|
|
|
{
|
|
|
|
id: (doc_id1 = DocUpdaterClient.randomId()),
|
|
|
|
lines: ['four', 'five', 'six'],
|
|
|
|
update: {
|
|
|
|
doc: doc_id1,
|
|
|
|
op: [
|
|
|
|
{
|
|
|
|
i: 'four and a half\n',
|
2021-07-13 07:04:42 -04:00
|
|
|
p: 5,
|
|
|
|
},
|
2020-05-06 06:12:47 -04:00
|
|
|
],
|
2021-07-13 07:04:42 -04:00
|
|
|
v: 0,
|
2020-05-06 06:12:47 -04:00
|
|
|
},
|
2021-07-13 07:04:42 -04:00
|
|
|
updatedLines: ['four', 'four and a half', 'five', 'six'],
|
|
|
|
},
|
2020-05-06 06:12:47 -04:00
|
|
|
]
|
|
|
|
for (const doc of Array.from(this.docs)) {
|
|
|
|
MockWebApi.insertDoc(this.project_id, doc.id, {
|
|
|
|
lines: doc.lines,
|
2021-07-13 07:04:42 -04:00
|
|
|
version: doc.update.v,
|
2020-05-06 06:12:47 -04:00
|
|
|
})
|
|
|
|
}
|
|
|
|
return DocUpdaterApp.ensureRunning(done)
|
|
|
|
})
|
2014-02-12 05:40:42 -05:00
|
|
|
|
2020-05-06 06:12:47 -04:00
|
|
|
return describe('with documents which have been updated', function () {
|
|
|
|
before(function (done) {
|
|
|
|
sinon.spy(MockWebApi, 'setDocument')
|
2014-02-26 10:56:52 -05:00
|
|
|
|
2020-05-06 06:12:47 -04:00
|
|
|
return async.series(
|
2021-07-13 07:04:42 -04:00
|
|
|
this.docs.map(doc => {
|
|
|
|
return callback => {
|
2020-05-06 06:12:47 -04:00
|
|
|
return DocUpdaterClient.preloadDoc(
|
|
|
|
this.project_id,
|
|
|
|
doc.id,
|
2021-07-13 07:04:42 -04:00
|
|
|
error => {
|
2020-05-06 06:12:47 -04:00
|
|
|
if (error != null) {
|
|
|
|
return callback(error)
|
|
|
|
}
|
|
|
|
return DocUpdaterClient.sendUpdate(
|
|
|
|
this.project_id,
|
|
|
|
doc.id,
|
|
|
|
doc.update,
|
2021-07-13 07:04:42 -04:00
|
|
|
error => {
|
2020-05-06 06:12:47 -04:00
|
|
|
return callback(error)
|
|
|
|
}
|
|
|
|
)
|
|
|
|
}
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}),
|
2021-07-13 07:04:42 -04:00
|
|
|
error => {
|
2020-05-06 06:12:47 -04:00
|
|
|
if (error != null) {
|
|
|
|
throw error
|
|
|
|
}
|
|
|
|
return setTimeout(() => {
|
|
|
|
return DocUpdaterClient.flushProject(
|
|
|
|
this.project_id,
|
|
|
|
(error, res, body) => {
|
2021-10-27 05:49:18 -04:00
|
|
|
if (error) return done(error)
|
2020-05-06 06:12:47 -04:00
|
|
|
this.statusCode = res.statusCode
|
|
|
|
return done()
|
|
|
|
}
|
|
|
|
)
|
|
|
|
}, 200)
|
|
|
|
}
|
|
|
|
)
|
|
|
|
})
|
2014-02-12 05:40:42 -05:00
|
|
|
|
2020-05-06 06:12:47 -04:00
|
|
|
after(function () {
|
|
|
|
return MockWebApi.setDocument.restore()
|
|
|
|
})
|
2014-02-12 05:40:42 -05:00
|
|
|
|
2020-05-06 06:12:47 -04:00
|
|
|
it('should return a 204 status code', function () {
|
|
|
|
return this.statusCode.should.equal(204)
|
|
|
|
})
|
2014-02-12 05:40:42 -05:00
|
|
|
|
2020-05-06 06:12:47 -04:00
|
|
|
it('should send each document to the web api', function () {
|
2021-07-13 07:04:42 -04:00
|
|
|
return Array.from(this.docs).map(doc =>
|
2020-05-06 06:12:47 -04:00
|
|
|
MockWebApi.setDocument
|
|
|
|
.calledWith(this.project_id, doc.id, doc.updatedLines)
|
|
|
|
.should.equal(true)
|
|
|
|
)
|
|
|
|
})
|
2014-02-12 05:40:42 -05:00
|
|
|
|
2020-05-06 06:12:47 -04:00
|
|
|
return it('should update the lines in the doc updater', function (done) {
|
|
|
|
return async.series(
|
2021-07-13 07:04:42 -04:00
|
|
|
this.docs.map(doc => {
|
|
|
|
return callback => {
|
2020-05-06 06:12:47 -04:00
|
|
|
return DocUpdaterClient.getDoc(
|
|
|
|
this.project_id,
|
|
|
|
doc.id,
|
|
|
|
(error, res, returnedDoc) => {
|
2021-10-27 05:49:18 -04:00
|
|
|
if (error) return done(error)
|
2020-05-06 06:12:47 -04:00
|
|
|
returnedDoc.lines.should.deep.equal(doc.updatedLines)
|
|
|
|
return callback()
|
|
|
|
}
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
done
|
|
|
|
)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|