| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729 |
- /* eslint-disable
- no-return-assign,
- */
- // TODO: This file was created by bulk-decaffeinate.
- // Fix any style issues and re-enable lint.
- /*
- * decaffeinate suggestions:
- * DS101: Remove unnecessary use of Array.from
- * DS102: Remove unnecessary code created because of implicit returns
- * Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md
- */
- import { expect } from 'chai'
- import RealTimeClient from './helpers/RealTimeClient.js'
- import MockDocUpdaterServer from './helpers/MockDocUpdaterServer.js'
- import FixturesManager from './helpers/FixturesManager.js'
- import async from 'async'
- describe('joinDoc', function () {
- before(function () {
- this.lines = ['test', 'doc', 'lines']
- this.version = 42
- this.ops = ['mock', 'doc', 'ops']
- return (this.ranges = { mock: 'ranges' })
- })
- describe('when authorised readAndWrite', function () {
- before(function (done) {
- return async.series(
- [
- cb => {
- return FixturesManager.setUpProject(
- {
- privilegeLevel: 'readAndWrite',
- },
- (e, { project_id: projectId, user_id: userId }) => {
- this.project_id = projectId
- this.user_id = userId
- return cb(e)
- }
- )
- },
- cb => {
- return FixturesManager.setUpDoc(
- this.project_id,
- {
- lines: this.lines,
- version: this.version,
- ops: this.ops,
- ranges: this.ranges,
- },
- (e, { doc_id: docId }) => {
- this.doc_id = docId
- return cb(e)
- }
- )
- },
- cb => {
- this.client = RealTimeClient.connect(this.project_id, cb)
- },
- cb => {
- return this.client.emit(
- 'joinDoc',
- this.doc_id,
- (error, ...rest) => {
- ;[...this.returnedArgs] = Array.from(rest)
- return cb(error)
- }
- )
- },
- ],
- done
- )
- })
- it('should get the doc from the doc updater', function () {
- return MockDocUpdaterServer.getDocument
- .calledWith(this.project_id, this.doc_id, -1)
- .should.equal(true)
- })
- it('should return the doc lines, version, ranges and ops', function () {
- return this.returnedArgs.should.deep.equal([
- this.lines,
- this.version,
- this.ops,
- this.ranges,
- 'sharejs-text-ot',
- ])
- })
- return it('should have joined the doc room', function (done) {
- return RealTimeClient.getConnectedClient(
- this.client.socket.sessionid,
- (error, client) => {
- if (error) return done(error)
- expect(Array.from(client.rooms).includes(this.doc_id)).to.equal(true)
- return done()
- }
- )
- })
- })
- describe('when authorised readOnly', function () {
- before(function (done) {
- return async.series(
- [
- cb => {
- return FixturesManager.setUpProject(
- {
- privilegeLevel: 'readOnly',
- },
- (e, { project_id: projectId, user_id: userId }) => {
- this.project_id = projectId
- this.user_id = userId
- return cb(e)
- }
- )
- },
- cb => {
- return FixturesManager.setUpDoc(
- this.project_id,
- {
- lines: this.lines,
- version: this.version,
- ops: this.ops,
- ranges: this.ranges,
- },
- (e, { doc_id: docId }) => {
- this.doc_id = docId
- return cb(e)
- }
- )
- },
- cb => {
- this.client = RealTimeClient.connect(this.project_id, cb)
- },
- cb => {
- return this.client.emit(
- 'joinDoc',
- this.doc_id,
- (error, ...rest) => {
- ;[...this.returnedArgs] = Array.from(rest)
- return cb(error)
- }
- )
- },
- ],
- done
- )
- })
- it('should get the doc from the doc updater', function () {
- return MockDocUpdaterServer.getDocument
- .calledWith(this.project_id, this.doc_id, -1)
- .should.equal(true)
- })
- it('should return the doc lines, version, ranges and ops', function () {
- return this.returnedArgs.should.deep.equal([
- this.lines,
- this.version,
- this.ops,
- this.ranges,
- 'sharejs-text-ot',
- ])
- })
- return it('should have joined the doc room', function (done) {
- return RealTimeClient.getConnectedClient(
- this.client.socket.sessionid,
- (error, client) => {
- if (error) return done(error)
- expect(Array.from(client.rooms).includes(this.doc_id)).to.equal(true)
- return done()
- }
- )
- })
- })
- describe('when authorised as owner', function () {
- before(function (done) {
- return async.series(
- [
- cb => {
- return FixturesManager.setUpProject(
- {
- privilegeLevel: 'owner',
- },
- (e, { project_id: projectId, user_id: userId }) => {
- this.project_id = projectId
- this.user_id = userId
- return cb(e)
- }
- )
- },
- cb => {
- return FixturesManager.setUpDoc(
- this.project_id,
- {
- lines: this.lines,
- version: this.version,
- ops: this.ops,
- ranges: this.ranges,
- },
- (e, { doc_id: docId }) => {
- this.doc_id = docId
- return cb(e)
- }
- )
- },
- cb => {
- this.client = RealTimeClient.connect(this.project_id, cb)
- },
- cb => {
- return this.client.emit(
- 'joinDoc',
- this.doc_id,
- (error, ...rest) => {
- ;[...this.returnedArgs] = Array.from(rest)
- return cb(error)
- }
- )
- },
- ],
- done
- )
- })
- it('should get the doc from the doc updater', function () {
- return MockDocUpdaterServer.getDocument
- .calledWith(this.project_id, this.doc_id, -1)
- .should.equal(true)
- })
- it('should return the doc lines, version, ranges and ops', function () {
- return this.returnedArgs.should.deep.equal([
- this.lines,
- this.version,
- this.ops,
- this.ranges,
- 'sharejs-text-ot',
- ])
- })
- return it('should have joined the doc room', function (done) {
- return RealTimeClient.getConnectedClient(
- this.client.socket.sessionid,
- (error, client) => {
- if (error) return done(error)
- expect(Array.from(client.rooms).includes(this.doc_id)).to.equal(true)
- return done()
- }
- )
- })
- })
- // It is impossible to write an acceptance test to test joining an unauthorized
- // project, since joinProject already catches that. If you can join a project,
- // then you can join a doc in that project.
- describe('for an invalid doc', function () {
- before(function (done) {
- return async.series(
- [
- cb => {
- return FixturesManager.setUpProject(
- {
- privilegeLevel: 'owner',
- },
- (e, { project_id: projectId, user_id: userId }) => {
- this.project_id = projectId
- this.user_id = userId
- return cb(e)
- }
- )
- },
- cb => {
- return FixturesManager.setUpDoc(
- this.project_id,
- {
- lines: this.lines,
- version: this.version,
- ops: this.ops,
- ranges: this.ranges,
- },
- (e, { doc_id: docId }) => {
- this.doc_id = docId
- return cb(e)
- }
- )
- },
- cb => {
- this.client = RealTimeClient.connect(this.project_id, cb)
- },
- cb => {
- return this.client.emit(
- 'joinDoc',
- 'invalid-doc-id',
- (error, ...rest) => {
- this.error = error
- return cb()
- }
- )
- },
- ],
- done
- )
- })
- it('should not get the doc from the doc updater', function () {
- return MockDocUpdaterServer.getDocument
- .calledWith(this.project_id, 'invalid-doc-id')
- .should.equal(false)
- })
- it('should return an invalid id error', function () {
- this.error.message.should.equal('invalid Mongo ObjectId')
- })
- return it('should not have joined the doc room', function (done) {
- return RealTimeClient.getConnectedClient(
- this.client.socket.sessionid,
- (error, client) => {
- if (error) return done(error)
- expect(Array.from(client.rooms).includes('invalid-doc-id')).to.equal(
- false
- )
- return done()
- }
- )
- })
- })
- describe('with a fromVersion', function () {
- before(function (done) {
- this.fromVersion = 36
- return async.series(
- [
- cb => {
- return FixturesManager.setUpProject(
- {
- privilegeLevel: 'readAndWrite',
- },
- (e, { project_id: projectId, user_id: userId }) => {
- this.project_id = projectId
- this.user_id = userId
- return cb(e)
- }
- )
- },
- cb => {
- return FixturesManager.setUpDoc(
- this.project_id,
- {
- lines: this.lines,
- version: this.version,
- ops: this.ops,
- ranges: this.ranges,
- },
- (e, { doc_id: docId }) => {
- this.doc_id = docId
- return cb(e)
- }
- )
- },
- cb => {
- this.client = RealTimeClient.connect(this.project_id, cb)
- },
- cb => {
- return this.client.emit(
- 'joinDoc',
- this.doc_id,
- this.fromVersion,
- (error, ...rest) => {
- ;[...this.returnedArgs] = Array.from(rest)
- return cb(error)
- }
- )
- },
- ],
- done
- )
- })
- it('should get the doc from the doc updater with the fromVersion', function () {
- return MockDocUpdaterServer.getDocument
- .calledWith(this.project_id, this.doc_id, this.fromVersion)
- .should.equal(true)
- })
- it('should return the doc lines, version, ranges and ops', function () {
- return this.returnedArgs.should.deep.equal([
- this.lines,
- this.version,
- this.ops,
- this.ranges,
- 'sharejs-text-ot',
- ])
- })
- return it('should have joined the doc room', function (done) {
- return RealTimeClient.getConnectedClient(
- this.client.socket.sessionid,
- (error, client) => {
- if (error) return done(error)
- expect(Array.from(client.rooms).includes(this.doc_id)).to.equal(true)
- return done()
- }
- )
- })
- })
- describe('with options', function () {
- before(function (done) {
- this.options = { encodeRanges: true }
- return async.series(
- [
- cb => {
- return FixturesManager.setUpProject(
- {
- privilegeLevel: 'readAndWrite',
- },
- (e, { project_id: projectId, user_id: userId }) => {
- this.project_id = projectId
- this.user_id = userId
- return cb(e)
- }
- )
- },
- cb => {
- return FixturesManager.setUpDoc(
- this.project_id,
- {
- lines: this.lines,
- version: this.version,
- ops: this.ops,
- ranges: this.ranges,
- },
- (e, { doc_id: docId }) => {
- this.doc_id = docId
- return cb(e)
- }
- )
- },
- cb => {
- this.client = RealTimeClient.connect(this.project_id, cb)
- },
- cb => {
- return this.client.emit(
- 'joinDoc',
- this.doc_id,
- this.options,
- (error, ...rest) => {
- ;[...this.returnedArgs] = Array.from(rest)
- return cb(error)
- }
- )
- },
- ],
- done
- )
- })
- it('should get the doc from the doc updater with the default fromVersion', function () {
- return MockDocUpdaterServer.getDocument
- .calledWith(this.project_id, this.doc_id, -1)
- .should.equal(true)
- })
- it('should return the doc lines, version, ranges and ops', function () {
- return this.returnedArgs.should.deep.equal([
- this.lines,
- this.version,
- this.ops,
- this.ranges,
- 'sharejs-text-ot',
- ])
- })
- return it('should have joined the doc room', function (done) {
- return RealTimeClient.getConnectedClient(
- this.client.socket.sessionid,
- (error, client) => {
- if (error) return done(error)
- expect(Array.from(client.rooms).includes(this.doc_id)).to.equal(true)
- return done()
- }
- )
- })
- })
- describe('with fromVersion and options', function () {
- before(function (done) {
- this.fromVersion = 36
- this.options = { encodeRanges: true }
- return async.series(
- [
- cb => {
- return FixturesManager.setUpProject(
- {
- privilegeLevel: 'readAndWrite',
- },
- (e, { project_id: projectId, user_id: userId }) => {
- this.project_id = projectId
- this.user_id = userId
- return cb(e)
- }
- )
- },
- cb => {
- return FixturesManager.setUpDoc(
- this.project_id,
- {
- lines: this.lines,
- version: this.version,
- ops: this.ops,
- ranges: this.ranges,
- },
- (e, { doc_id: docId }) => {
- this.doc_id = docId
- return cb(e)
- }
- )
- },
- cb => {
- this.client = RealTimeClient.connect(this.project_id, cb)
- },
- cb => {
- return this.client.emit(
- 'joinDoc',
- this.doc_id,
- this.fromVersion,
- this.options,
- (error, ...rest) => {
- ;[...this.returnedArgs] = Array.from(rest)
- return cb(error)
- }
- )
- },
- ],
- done
- )
- })
- it('should get the doc from the doc updater with the fromVersion', function () {
- return MockDocUpdaterServer.getDocument
- .calledWith(this.project_id, this.doc_id, this.fromVersion)
- .should.equal(true)
- })
- it('should return the doc lines, version, ranges and ops', function () {
- return this.returnedArgs.should.deep.equal([
- this.lines,
- this.version,
- this.ops,
- this.ranges,
- 'sharejs-text-ot',
- ])
- })
- return it('should have joined the doc room', function (done) {
- return RealTimeClient.getConnectedClient(
- this.client.socket.sessionid,
- (error, client) => {
- if (error) return done(error)
- expect(Array.from(client.rooms).includes(this.doc_id)).to.equal(true)
- return done()
- }
- )
- })
- })
- describe('with type=history-ot', function () {
- before(function (done) {
- async.series(
- [
- cb => {
- FixturesManager.setUpProject(
- { privilegeLevel: 'owner' },
- (e, { project_id: projectId, user_id: userId }) => {
- this.project_id = projectId
- this.user_id = userId
- cb(e)
- }
- )
- },
- cb => {
- FixturesManager.setUpDoc(
- this.project_id,
- {
- lines: this.lines,
- version: this.version,
- ops: this.ops,
- ranges: this.ranges,
- type: 'history-ot',
- },
- (e, { doc_id: docId }) => {
- this.doc_id = docId
- cb(e)
- }
- )
- },
- ],
- done
- )
- })
- describe('when support is indicated', function () {
- before(function (done) {
- MockDocUpdaterServer.getDocument.resetHistory()
- async.series(
- [
- cb => {
- this.client = RealTimeClient.connect(this.project_id, cb)
- },
- cb =>
- this.client.emit(
- 'joinDoc',
- this.doc_id,
- { supportsHistoryOT: true },
- (error, ...rest) => {
- ;[...this.returnedArgs] = Array.from(rest)
- cb(error)
- }
- ),
- ],
- done
- )
- })
- it('should get the doc from the doc updater', function () {
- MockDocUpdaterServer.getDocument
- .calledWith(this.project_id, this.doc_id, -1)
- .should.equal(true)
- })
- it('should return the doc lines, version, ranges and ops', function () {
- this.returnedArgs.should.deep.equal([
- this.lines,
- this.version,
- this.ops,
- this.ranges,
- 'history-ot',
- ])
- })
- it('should have joined the doc room', function (done) {
- RealTimeClient.getConnectedClient(
- this.client.socket.sessionid,
- (error, client) => {
- if (error) return done(error)
- expect(client.rooms).to.deep.equal([this.project_id, this.doc_id])
- done()
- }
- )
- })
- })
- describe('when support is not indicated', function () {
- before(function (done) {
- MockDocUpdaterServer.getDocument.resetHistory()
- async.series(
- [
- cb => {
- this.client = RealTimeClient.connect(this.project_id, cb)
- },
- cb =>
- this.client.emit('joinDoc', this.doc_id, (error, ...rest) => {
- this.error = error
- ;[...this.returnedArgs] = Array.from(rest)
- cb()
- }),
- ],
- done
- )
- })
- it('should get the doc from the doc updater', function () {
- MockDocUpdaterServer.getDocument
- .calledWith(this.project_id, this.doc_id, -1)
- .should.equal(true)
- })
- it('should return an error', function () {
- expect(this.error).to.deep.equal({
- message: 'client does not support history-ot',
- })
- })
- it('should not return the doc lines, version, ranges and ops', function () {
- this.returnedArgs.should.deep.equal([])
- })
- it('should leave the doc room again', function (done) {
- RealTimeClient.getConnectedClient(
- this.client.socket.sessionid,
- (error, client) => {
- if (error) return done(error)
- expect(client.rooms).to.deep.equal([this.project_id])
- done()
- }
- )
- })
- })
- })
- })
|