| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159 |
- /* eslint-disable
- no-return-assign,
- 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 { expect } = require('chai')
- const modulePath = '../../../../app/js/ShareJsDB.js'
- const SandboxedModule = require('sandboxed-module')
- const Errors = require('../../../../app/js/Errors')
- describe('ShareJsDB', function () {
- beforeEach(function () {
- this.doc_id = 'document-id'
- this.project_id = 'project-id'
- this.doc_key = `${this.project_id}:${this.doc_id}`
- this.callback = sinon.stub()
- this.ShareJsDB = SandboxedModule.require(modulePath, {
- requires: {
- './RedisManager': (this.RedisManager = {}),
- './Errors': Errors,
- '@overleaf/metrics': {
- inc: sinon.stub(),
- histogram: sinon.stub(),
- Timer: class Timer {
- done() {}
- },
- },
- },
- })
- this.version = 42
- this.lines = ['one', 'two', 'three']
- return (this.db = new this.ShareJsDB(
- this.project_id,
- this.doc_id,
- this.lines,
- this.version
- ))
- })
- describe('getSnapshot', function () {
- describe('successfully', function () {
- beforeEach(function () {
- return this.db.getSnapshot(this.doc_key, this.callback)
- })
- it('should return the doc lines', function () {
- return this.callback.args[0][1].snapshot.should.equal(
- this.lines.join('\n')
- )
- })
- it('should return the doc version', function () {
- return this.callback.args[0][1].v.should.equal(this.version)
- })
- return it('should return the type as text', function () {
- return this.callback.args[0][1].type.should.equal('text')
- })
- })
- return describe('when the key does not match', function () {
- beforeEach(function () {
- return this.db.getSnapshot('bad:key', this.callback)
- })
- return it('should return the callback with a NotFoundError', function () {
- return this.callback
- .calledWith(sinon.match.instanceOf(Errors.NotFoundError))
- .should.equal(true)
- })
- })
- })
- describe('getOps', function () {
- describe('with start == end', function () {
- beforeEach(function () {
- this.start = this.end = 42
- return this.db.getOps(this.doc_key, this.start, this.end, this.callback)
- })
- return it('should return an empty array', function () {
- return this.callback.calledWith(null, []).should.equal(true)
- })
- })
- describe('with a non empty range', function () {
- beforeEach(function () {
- this.start = 35
- this.end = 42
- this.ops = new Array(this.end - this.start)
- this.RedisManager.getPreviousDocOps = sinon
- .stub()
- .callsArgWith(3, null, this.ops)
- return this.db.getOps(this.doc_key, this.start, this.end, this.callback)
- })
- it('should get the range from redis', function () {
- return this.RedisManager.getPreviousDocOps
- .calledWith(this.doc_id, this.start, this.end - 1)
- .should.equal(true)
- })
- return it('should return the ops', function () {
- return this.callback.calledWith(null, this.ops).should.equal(true)
- })
- })
- return describe('with no specified end', function () {
- beforeEach(function () {
- this.start = 35
- this.end = null
- this.ops = []
- this.RedisManager.getPreviousDocOps = sinon
- .stub()
- .callsArgWith(3, null, this.ops)
- return this.db.getOps(this.doc_key, this.start, this.end, this.callback)
- })
- return it('should get until the end of the list', function () {
- return this.RedisManager.getPreviousDocOps
- .calledWith(this.doc_id, this.start, -1)
- .should.equal(true)
- })
- })
- })
- return describe('writeOps', function () {
- return describe('writing an op', function () {
- beforeEach(function () {
- this.opData = {
- op: { p: 20, t: 'foo' },
- meta: { source: 'bar' },
- v: this.version,
- }
- return this.db.writeOp(this.doc_key, this.opData, this.callback)
- })
- it('should write into appliedOps', function () {
- return expect(this.db.appliedOps[this.doc_key]).to.deep.equal([
- this.opData,
- ])
- })
- return it('should call the callback without an error', function () {
- this.callback.called.should.equal(true)
- return (this.callback.args[0][0] != null).should.equal(false)
- })
- })
- })
- })
|