| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589 |
- /* eslint-disable
- handle-callback-err,
- no-unused-vars,
- */
- // TODO: This file was created by bulk-decaffeinate.
- // Fix any style issues and re-enable lint.
- /*
- * decaffeinate suggestions:
- * 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
- */
- const sinon = require('sinon')
- const chai = require('chai')
- chai.should()
- const { expect } = chai
- const { ObjectId } = require('../../../app/js/mongodb')
- const Settings = require('settings-sharelatex')
- const request = require('request')
- const rclient = require('redis').createClient(Settings.redis.history) // Only works locally for now
- const TrackChangesApp = require('./helpers/TrackChangesApp')
- const TrackChangesClient = require('./helpers/TrackChangesClient')
- const MockWebApi = require('./helpers/MockWebApi')
- describe('Appending doc ops to the history', function () {
- before(function (done) {
- return TrackChangesApp.ensureRunning(done)
- })
- describe('when the history does not exist yet', function () {
- before(function (done) {
- this.project_id = ObjectId().toString()
- this.doc_id = ObjectId().toString()
- this.user_id = ObjectId().toString()
- MockWebApi.projects[this.project_id] = { features: { versioning: false } }
- TrackChangesClient.pushRawUpdates(
- this.project_id,
- this.doc_id,
- [
- {
- op: [{ i: 'f', p: 3 }],
- meta: { ts: Date.now(), user_id: this.user_id },
- v: 3
- },
- {
- op: [{ i: 'o', p: 4 }],
- meta: { ts: Date.now(), user_id: this.user_id },
- v: 4
- },
- {
- op: [{ i: 'o', p: 5 }],
- meta: { ts: Date.now(), user_id: this.user_id },
- v: 5
- }
- ],
- (error) => {
- if (error != null) {
- throw error
- }
- return TrackChangesClient.flushAndGetCompressedUpdates(
- this.project_id,
- this.doc_id,
- (error, updates) => {
- this.updates = updates
- if (error != null) {
- throw error
- }
- return done()
- }
- )
- }
- )
- return null
- })
- it('should insert the compressed op into mongo', function () {
- return expect(this.updates[0].pack[0].op).to.deep.equal([
- {
- p: 3,
- i: 'foo'
- }
- ])
- })
- it('should insert the correct version number into mongo', function () {
- return expect(this.updates[0].v).to.equal(5)
- })
- it('should store the doc id', function () {
- return expect(this.updates[0].doc_id.toString()).to.equal(this.doc_id)
- })
- it('should store the project id', function () {
- return expect(this.updates[0].project_id.toString()).to.equal(
- this.project_id
- )
- })
- return it('should clear the doc from the DocsWithHistoryOps set', function (done) {
- rclient.sismember(
- `DocsWithHistoryOps:${this.project_id}`,
- this.doc_id,
- (error, member) => {
- member.should.equal(0)
- return done()
- }
- )
- return null
- })
- })
- describe('when the history has already been started', function () {
- beforeEach(function (done) {
- this.project_id = ObjectId().toString()
- this.doc_id = ObjectId().toString()
- this.user_id = ObjectId().toString()
- MockWebApi.projects[this.project_id] = { features: { versioning: false } }
- TrackChangesClient.pushRawUpdates(
- this.project_id,
- this.doc_id,
- [
- {
- op: [{ i: 'f', p: 3 }],
- meta: { ts: Date.now(), user_id: this.user_id },
- v: 3
- },
- {
- op: [{ i: 'o', p: 4 }],
- meta: { ts: Date.now(), user_id: this.user_id },
- v: 4
- },
- {
- op: [{ i: 'o', p: 5 }],
- meta: { ts: Date.now(), user_id: this.user_id },
- v: 5
- }
- ],
- (error) => {
- if (error != null) {
- throw error
- }
- return TrackChangesClient.flushAndGetCompressedUpdates(
- this.project_id,
- this.doc_id,
- (error, updates) => {
- if (error != null) {
- throw error
- }
- return done()
- }
- )
- }
- )
- return null
- })
- describe('when the updates are recent and from the same user', function () {
- beforeEach(function (done) {
- TrackChangesClient.pushRawUpdates(
- this.project_id,
- this.doc_id,
- [
- {
- op: [{ i: 'b', p: 6 }],
- meta: { ts: Date.now(), user_id: this.user_id },
- v: 6
- },
- {
- op: [{ i: 'a', p: 7 }],
- meta: { ts: Date.now(), user_id: this.user_id },
- v: 7
- },
- {
- op: [{ i: 'r', p: 8 }],
- meta: { ts: Date.now(), user_id: this.user_id },
- v: 8
- }
- ],
- (error) => {
- if (error != null) {
- throw error
- }
- return TrackChangesClient.flushAndGetCompressedUpdates(
- this.project_id,
- this.doc_id,
- (error, updates) => {
- this.updates = updates
- if (error != null) {
- throw error
- }
- return done()
- }
- )
- }
- )
- return null
- })
- it('should combine all the updates into one pack', function () {
- return expect(this.updates[0].pack[1].op).to.deep.equal([
- {
- p: 6,
- i: 'bar'
- }
- ])
- })
- return it('should insert the correct version number into mongo', function () {
- return expect(this.updates[0].v_end).to.equal(8)
- })
- })
- return describe('when the updates are far apart', function () {
- beforeEach(function (done) {
- const oneDay = 24 * 60 * 60 * 1000
- TrackChangesClient.pushRawUpdates(
- this.project_id,
- this.doc_id,
- [
- {
- op: [{ i: 'b', p: 6 }],
- meta: { ts: Date.now() + oneDay, user_id: this.user_id },
- v: 6
- },
- {
- op: [{ i: 'a', p: 7 }],
- meta: { ts: Date.now() + oneDay, user_id: this.user_id },
- v: 7
- },
- {
- op: [{ i: 'r', p: 8 }],
- meta: { ts: Date.now() + oneDay, user_id: this.user_id },
- v: 8
- }
- ],
- (error) => {
- if (error != null) {
- throw error
- }
- return TrackChangesClient.flushAndGetCompressedUpdates(
- this.project_id,
- this.doc_id,
- (error, updates) => {
- this.updates = updates
- if (error != null) {
- throw error
- }
- return done()
- }
- )
- }
- )
- return null
- })
- return it('should combine the updates into one pack', function () {
- expect(this.updates[0].pack[0].op).to.deep.equal([
- {
- p: 3,
- i: 'foo'
- }
- ])
- return expect(this.updates[0].pack[1].op).to.deep.equal([
- {
- p: 6,
- i: 'bar'
- }
- ])
- })
- })
- })
- describe('when the updates need processing in batches', function () {
- before(function (done) {
- this.project_id = ObjectId().toString()
- this.doc_id = ObjectId().toString()
- this.user_id = ObjectId().toString()
- MockWebApi.projects[this.project_id] = { features: { versioning: false } }
- const updates = []
- this.expectedOp = [{ p: 0, i: '' }]
- for (let i = 0; i <= 250; i++) {
- updates.push({
- op: [{ i: 'a', p: 0 }],
- meta: { ts: Date.now(), user_id: this.user_id },
- v: i
- })
- this.expectedOp[0].i = `a${this.expectedOp[0].i}`
- }
- TrackChangesClient.pushRawUpdates(
- this.project_id,
- this.doc_id,
- updates,
- (error) => {
- if (error != null) {
- throw error
- }
- return TrackChangesClient.flushAndGetCompressedUpdates(
- this.project_id,
- this.doc_id,
- (error, updates1) => {
- this.updates = updates1
- if (error != null) {
- throw error
- }
- return done()
- }
- )
- }
- )
- return null
- })
- it('should concat the compressed op into mongo', function () {
- return expect(this.updates[0].pack.length).to.deep.equal(3)
- }) // batch size is 100
- return it('should insert the correct version number into mongo', function () {
- return expect(this.updates[0].v_end).to.equal(250)
- })
- })
- describe('when there are multiple ops in each update', function () {
- before(function (done) {
- this.project_id = ObjectId().toString()
- this.doc_id = ObjectId().toString()
- this.user_id = ObjectId().toString()
- MockWebApi.projects[this.project_id] = { features: { versioning: false } }
- const oneDay = 24 * 60 * 60 * 1000
- TrackChangesClient.pushRawUpdates(
- this.project_id,
- this.doc_id,
- [
- {
- op: [
- { i: 'f', p: 3 },
- { i: 'o', p: 4 },
- { i: 'o', p: 5 }
- ],
- meta: { ts: Date.now(), user_id: this.user_id },
- v: 3
- },
- {
- op: [
- { i: 'b', p: 6 },
- { i: 'a', p: 7 },
- { i: 'r', p: 8 }
- ],
- meta: { ts: Date.now() + oneDay, user_id: this.user_id },
- v: 4
- }
- ],
- (error) => {
- if (error != null) {
- throw error
- }
- return TrackChangesClient.flushAndGetCompressedUpdates(
- this.project_id,
- this.doc_id,
- (error, updates) => {
- this.updates = updates
- if (error != null) {
- throw error
- }
- return done()
- }
- )
- }
- )
- return null
- })
- it('should insert the compressed ops into mongo', function () {
- expect(this.updates[0].pack[0].op).to.deep.equal([
- {
- p: 3,
- i: 'foo'
- }
- ])
- return expect(this.updates[0].pack[1].op).to.deep.equal([
- {
- p: 6,
- i: 'bar'
- }
- ])
- })
- return it('should insert the correct version numbers into mongo', function () {
- expect(this.updates[0].pack[0].v).to.equal(3)
- return expect(this.updates[0].pack[1].v).to.equal(4)
- })
- })
- describe('when there is a no-op update', function () {
- before(function (done) {
- this.project_id = ObjectId().toString()
- this.doc_id = ObjectId().toString()
- this.user_id = ObjectId().toString()
- MockWebApi.projects[this.project_id] = { features: { versioning: false } }
- const oneDay = 24 * 60 * 60 * 1000
- TrackChangesClient.pushRawUpdates(
- this.project_id,
- this.doc_id,
- [
- {
- op: [],
- meta: { ts: Date.now(), user_id: this.user_id },
- v: 3
- },
- {
- op: [{ i: 'foo', p: 3 }],
- meta: { ts: Date.now() + oneDay, user_id: this.user_id },
- v: 4
- }
- ],
- (error) => {
- if (error != null) {
- throw error
- }
- return TrackChangesClient.flushAndGetCompressedUpdates(
- this.project_id,
- this.doc_id,
- (error, updates) => {
- this.updates = updates
- if (error != null) {
- throw error
- }
- return done()
- }
- )
- }
- )
- return null
- })
- it('should insert the compressed no-op into mongo', function () {
- return expect(this.updates[0].pack[0].op).to.deep.equal([])
- })
- it('should insert the compressed next update into mongo', function () {
- return expect(this.updates[0].pack[1].op).to.deep.equal([
- {
- p: 3,
- i: 'foo'
- }
- ])
- })
- return it('should insert the correct version numbers into mongo', function () {
- expect(this.updates[0].pack[0].v).to.equal(3)
- return expect(this.updates[0].pack[1].v).to.equal(4)
- })
- })
- describe('when there is a comment update', function () {
- before(function (done) {
- this.project_id = ObjectId().toString()
- this.doc_id = ObjectId().toString()
- this.user_id = ObjectId().toString()
- MockWebApi.projects[this.project_id] = { features: { versioning: false } }
- TrackChangesClient.pushRawUpdates(
- this.project_id,
- this.doc_id,
- [
- {
- op: [
- { c: 'foo', p: 3 },
- { d: 'bar', p: 6 }
- ],
- meta: { ts: Date.now(), user_id: this.user_id },
- v: 3
- }
- ],
- (error) => {
- if (error != null) {
- throw error
- }
- return TrackChangesClient.flushAndGetCompressedUpdates(
- this.project_id,
- this.doc_id,
- (error, updates) => {
- this.updates = updates
- if (error != null) {
- throw error
- }
- return done()
- }
- )
- }
- )
- return null
- })
- it('should ignore the comment op', function () {
- return expect(this.updates[0].pack[0].op).to.deep.equal([
- { d: 'bar', p: 6 }
- ])
- })
- return it('should insert the correct version numbers into mongo', function () {
- return expect(this.updates[0].pack[0].v).to.equal(3)
- })
- })
- describe('when the project has versioning enabled', function () {
- before(function (done) {
- this.project_id = ObjectId().toString()
- this.doc_id = ObjectId().toString()
- this.user_id = ObjectId().toString()
- MockWebApi.projects[this.project_id] = { features: { versioning: true } }
- TrackChangesClient.pushRawUpdates(
- this.project_id,
- this.doc_id,
- [
- {
- op: [{ i: 'f', p: 3 }],
- meta: { ts: Date.now(), user_id: this.user_id },
- v: 3
- }
- ],
- (error) => {
- if (error != null) {
- throw error
- }
- return TrackChangesClient.flushAndGetCompressedUpdates(
- this.project_id,
- this.doc_id,
- (error, updates) => {
- this.updates = updates
- if (error != null) {
- throw error
- }
- return done()
- }
- )
- }
- )
- return null
- })
- return it('should not add a expiresAt entry in the update in mongo', function () {
- return expect(this.updates[0].expiresAt).to.be.undefined
- })
- })
- return describe('when the project does not have versioning enabled', function () {
- before(function (done) {
- this.project_id = ObjectId().toString()
- this.doc_id = ObjectId().toString()
- this.user_id = ObjectId().toString()
- MockWebApi.projects[this.project_id] = { features: { versioning: false } }
- TrackChangesClient.pushRawUpdates(
- this.project_id,
- this.doc_id,
- [
- {
- op: [{ i: 'f', p: 3 }],
- meta: { ts: Date.now(), user_id: this.user_id },
- v: 3
- }
- ],
- (error) => {
- if (error != null) {
- throw error
- }
- return TrackChangesClient.flushAndGetCompressedUpdates(
- this.project_id,
- this.doc_id,
- (error, updates) => {
- this.updates = updates
- if (error != null) {
- throw error
- }
- return done()
- }
- )
- }
- )
- return null
- })
- return it('should add a expiresAt entry in the update in mongo', function () {
- return expect(this.updates[0].expiresAt).to.exist
- })
- })
- })
|