2020-06-23 13:30:34 -04:00
|
|
|
/* eslint-disable
|
|
|
|
camelcase,
|
|
|
|
no-return-assign,
|
|
|
|
*/
|
|
|
|
// TODO: This file was created by bulk-decaffeinate.
|
|
|
|
// Fix any style issues and re-enable lint.
|
2020-06-23 13:30:29 -04:00
|
|
|
/*
|
|
|
|
* 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
|
|
|
|
*/
|
2021-03-18 16:19:31 -04:00
|
|
|
const { expect } = require('chai')
|
2020-06-23 13:30:45 -04:00
|
|
|
|
|
|
|
const RealTimeClient = require('./helpers/RealTimeClient')
|
|
|
|
const MockDocUpdaterServer = require('./helpers/MockDocUpdaterServer')
|
|
|
|
const FixturesManager = require('./helpers/FixturesManager')
|
|
|
|
|
|
|
|
const async = require('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(
|
|
|
|
[
|
2021-07-13 07:04:45 -04:00
|
|
|
cb => {
|
2020-06-23 13:30:45 -04:00
|
|
|
return FixturesManager.setUpProject(
|
|
|
|
{
|
2021-07-13 07:04:45 -04:00
|
|
|
privilegeLevel: 'readAndWrite',
|
2020-06-23 13:30:45 -04:00
|
|
|
},
|
|
|
|
(e, { project_id, user_id }) => {
|
|
|
|
this.project_id = project_id
|
|
|
|
this.user_id = user_id
|
|
|
|
return cb(e)
|
|
|
|
}
|
|
|
|
)
|
|
|
|
},
|
|
|
|
|
2021-07-13 07:04:45 -04:00
|
|
|
cb => {
|
2020-06-23 13:30:45 -04:00
|
|
|
return FixturesManager.setUpDoc(
|
|
|
|
this.project_id,
|
|
|
|
{
|
|
|
|
lines: this.lines,
|
|
|
|
version: this.version,
|
|
|
|
ops: this.ops,
|
2021-07-13 07:04:45 -04:00
|
|
|
ranges: this.ranges,
|
2020-06-23 13:30:45 -04:00
|
|
|
},
|
|
|
|
(e, { doc_id }) => {
|
|
|
|
this.doc_id = doc_id
|
|
|
|
return cb(e)
|
|
|
|
}
|
|
|
|
)
|
|
|
|
},
|
|
|
|
|
2021-07-13 07:04:45 -04:00
|
|
|
cb => {
|
2020-06-23 13:30:45 -04:00
|
|
|
this.client = RealTimeClient.connect()
|
|
|
|
return this.client.on('connectionAccepted', cb)
|
|
|
|
},
|
|
|
|
|
2021-07-13 07:04:45 -04:00
|
|
|
cb => {
|
2020-06-23 13:30:45 -04:00
|
|
|
return this.client.emit(
|
|
|
|
'joinProject',
|
|
|
|
{ project_id: this.project_id },
|
|
|
|
cb
|
|
|
|
)
|
|
|
|
},
|
|
|
|
|
2021-07-13 07:04:45 -04:00
|
|
|
cb => {
|
2020-06-23 13:30:45 -04:00
|
|
|
return this.client.emit(
|
|
|
|
'joinDoc',
|
|
|
|
this.doc_id,
|
|
|
|
(error, ...rest) => {
|
|
|
|
;[...this.returnedArgs] = Array.from(rest)
|
|
|
|
return cb(error)
|
|
|
|
}
|
|
|
|
)
|
2021-07-13 07:04:45 -04:00
|
|
|
},
|
2020-06-23 13:30:45 -04:00
|
|
|
],
|
|
|
|
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,
|
2021-07-13 07:04:45 -04:00
|
|
|
this.ranges,
|
2020-06-23 13:30:45 -04:00
|
|
|
])
|
|
|
|
})
|
|
|
|
|
|
|
|
return it('should have joined the doc room', function (done) {
|
|
|
|
return RealTimeClient.getConnectedClient(
|
|
|
|
this.client.socket.sessionid,
|
|
|
|
(error, client) => {
|
2021-10-27 05:49:18 -04:00
|
|
|
if (error) return done(error)
|
2020-06-23 13:30:45 -04:00
|
|
|
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(
|
|
|
|
[
|
2021-07-13 07:04:45 -04:00
|
|
|
cb => {
|
2020-06-23 13:30:45 -04:00
|
|
|
return FixturesManager.setUpProject(
|
|
|
|
{
|
2021-07-13 07:04:45 -04:00
|
|
|
privilegeLevel: 'readOnly',
|
2020-06-23 13:30:45 -04:00
|
|
|
},
|
|
|
|
(e, { project_id, user_id }) => {
|
|
|
|
this.project_id = project_id
|
|
|
|
this.user_id = user_id
|
|
|
|
return cb(e)
|
|
|
|
}
|
|
|
|
)
|
|
|
|
},
|
|
|
|
|
2021-07-13 07:04:45 -04:00
|
|
|
cb => {
|
2020-06-23 13:30:45 -04:00
|
|
|
return FixturesManager.setUpDoc(
|
|
|
|
this.project_id,
|
|
|
|
{
|
|
|
|
lines: this.lines,
|
|
|
|
version: this.version,
|
|
|
|
ops: this.ops,
|
2021-07-13 07:04:45 -04:00
|
|
|
ranges: this.ranges,
|
2020-06-23 13:30:45 -04:00
|
|
|
},
|
|
|
|
(e, { doc_id }) => {
|
|
|
|
this.doc_id = doc_id
|
|
|
|
return cb(e)
|
|
|
|
}
|
|
|
|
)
|
|
|
|
},
|
|
|
|
|
2021-07-13 07:04:45 -04:00
|
|
|
cb => {
|
2020-06-23 13:30:45 -04:00
|
|
|
this.client = RealTimeClient.connect()
|
|
|
|
return this.client.on('connectionAccepted', cb)
|
|
|
|
},
|
|
|
|
|
2021-07-13 07:04:45 -04:00
|
|
|
cb => {
|
2020-06-23 13:30:45 -04:00
|
|
|
return this.client.emit(
|
|
|
|
'joinProject',
|
|
|
|
{ project_id: this.project_id },
|
|
|
|
cb
|
|
|
|
)
|
|
|
|
},
|
|
|
|
|
2021-07-13 07:04:45 -04:00
|
|
|
cb => {
|
2020-06-23 13:30:45 -04:00
|
|
|
return this.client.emit(
|
|
|
|
'joinDoc',
|
|
|
|
this.doc_id,
|
|
|
|
(error, ...rest) => {
|
|
|
|
;[...this.returnedArgs] = Array.from(rest)
|
|
|
|
return cb(error)
|
|
|
|
}
|
|
|
|
)
|
2021-07-13 07:04:45 -04:00
|
|
|
},
|
2020-06-23 13:30:45 -04:00
|
|
|
],
|
|
|
|
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,
|
2021-07-13 07:04:45 -04:00
|
|
|
this.ranges,
|
2020-06-23 13:30:45 -04:00
|
|
|
])
|
|
|
|
})
|
|
|
|
|
|
|
|
return it('should have joined the doc room', function (done) {
|
|
|
|
return RealTimeClient.getConnectedClient(
|
|
|
|
this.client.socket.sessionid,
|
|
|
|
(error, client) => {
|
2021-10-27 05:49:18 -04:00
|
|
|
if (error) return done(error)
|
2020-06-23 13:30:45 -04:00
|
|
|
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(
|
|
|
|
[
|
2021-07-13 07:04:45 -04:00
|
|
|
cb => {
|
2020-06-23 13:30:45 -04:00
|
|
|
return FixturesManager.setUpProject(
|
|
|
|
{
|
2021-07-13 07:04:45 -04:00
|
|
|
privilegeLevel: 'owner',
|
2020-06-23 13:30:45 -04:00
|
|
|
},
|
|
|
|
(e, { project_id, user_id }) => {
|
|
|
|
this.project_id = project_id
|
|
|
|
this.user_id = user_id
|
|
|
|
return cb(e)
|
|
|
|
}
|
|
|
|
)
|
|
|
|
},
|
|
|
|
|
2021-07-13 07:04:45 -04:00
|
|
|
cb => {
|
2020-06-23 13:30:45 -04:00
|
|
|
return FixturesManager.setUpDoc(
|
|
|
|
this.project_id,
|
|
|
|
{
|
|
|
|
lines: this.lines,
|
|
|
|
version: this.version,
|
|
|
|
ops: this.ops,
|
2021-07-13 07:04:45 -04:00
|
|
|
ranges: this.ranges,
|
2020-06-23 13:30:45 -04:00
|
|
|
},
|
|
|
|
(e, { doc_id }) => {
|
|
|
|
this.doc_id = doc_id
|
|
|
|
return cb(e)
|
|
|
|
}
|
|
|
|
)
|
|
|
|
},
|
|
|
|
|
2021-07-13 07:04:45 -04:00
|
|
|
cb => {
|
2020-06-23 13:30:45 -04:00
|
|
|
this.client = RealTimeClient.connect()
|
|
|
|
return this.client.on('connectionAccepted', cb)
|
|
|
|
},
|
|
|
|
|
2021-07-13 07:04:45 -04:00
|
|
|
cb => {
|
2020-06-23 13:30:45 -04:00
|
|
|
return this.client.emit(
|
|
|
|
'joinProject',
|
|
|
|
{ project_id: this.project_id },
|
|
|
|
cb
|
|
|
|
)
|
|
|
|
},
|
|
|
|
|
2021-07-13 07:04:45 -04:00
|
|
|
cb => {
|
2020-06-23 13:30:45 -04:00
|
|
|
return this.client.emit(
|
|
|
|
'joinDoc',
|
|
|
|
this.doc_id,
|
|
|
|
(error, ...rest) => {
|
|
|
|
;[...this.returnedArgs] = Array.from(rest)
|
|
|
|
return cb(error)
|
|
|
|
}
|
|
|
|
)
|
2021-07-13 07:04:45 -04:00
|
|
|
},
|
2020-06-23 13:30:45 -04:00
|
|
|
],
|
|
|
|
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,
|
2021-07-13 07:04:45 -04:00
|
|
|
this.ranges,
|
2020-06-23 13:30:45 -04:00
|
|
|
])
|
|
|
|
})
|
|
|
|
|
|
|
|
return it('should have joined the doc room', function (done) {
|
|
|
|
return RealTimeClient.getConnectedClient(
|
|
|
|
this.client.socket.sessionid,
|
|
|
|
(error, client) => {
|
2021-10-27 05:49:18 -04:00
|
|
|
if (error) return done(error)
|
2020-06-23 13:30:45 -04:00
|
|
|
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.
|
|
|
|
|
2021-09-01 05:10:10 -04:00
|
|
|
describe('for an invalid doc', function () {
|
|
|
|
before(function (done) {
|
|
|
|
return async.series(
|
|
|
|
[
|
|
|
|
cb => {
|
|
|
|
return FixturesManager.setUpProject(
|
|
|
|
{
|
|
|
|
privilegeLevel: 'owner',
|
|
|
|
},
|
|
|
|
(e, { project_id, user_id }) => {
|
|
|
|
this.project_id = project_id
|
|
|
|
this.user_id = user_id
|
|
|
|
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 }) => {
|
|
|
|
this.doc_id = doc_id
|
|
|
|
return cb(e)
|
|
|
|
}
|
|
|
|
)
|
|
|
|
},
|
|
|
|
|
|
|
|
cb => {
|
|
|
|
this.client = RealTimeClient.connect()
|
|
|
|
return this.client.on('connectionAccepted', cb)
|
|
|
|
},
|
|
|
|
|
|
|
|
cb => {
|
|
|
|
return this.client.emit(
|
|
|
|
'joinProject',
|
|
|
|
{ project_id: 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 id')
|
|
|
|
})
|
|
|
|
|
|
|
|
return it('should not have joined the doc room', function (done) {
|
|
|
|
return RealTimeClient.getConnectedClient(
|
|
|
|
this.client.socket.sessionid,
|
|
|
|
(error, client) => {
|
2021-10-27 05:49:18 -04:00
|
|
|
if (error) return done(error)
|
2021-09-01 05:10:10 -04:00
|
|
|
expect(Array.from(client.rooms).includes('invalid-doc-id')).to.equal(
|
|
|
|
false
|
|
|
|
)
|
|
|
|
return done()
|
|
|
|
}
|
|
|
|
)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2020-06-23 13:30:45 -04:00
|
|
|
describe('with a fromVersion', function () {
|
|
|
|
before(function (done) {
|
|
|
|
this.fromVersion = 36
|
|
|
|
return async.series(
|
|
|
|
[
|
2021-07-13 07:04:45 -04:00
|
|
|
cb => {
|
2020-06-23 13:30:45 -04:00
|
|
|
return FixturesManager.setUpProject(
|
|
|
|
{
|
2021-07-13 07:04:45 -04:00
|
|
|
privilegeLevel: 'readAndWrite',
|
2020-06-23 13:30:45 -04:00
|
|
|
},
|
|
|
|
(e, { project_id, user_id }) => {
|
|
|
|
this.project_id = project_id
|
|
|
|
this.user_id = user_id
|
|
|
|
return cb(e)
|
|
|
|
}
|
|
|
|
)
|
|
|
|
},
|
|
|
|
|
2021-07-13 07:04:45 -04:00
|
|
|
cb => {
|
2020-06-23 13:30:45 -04:00
|
|
|
return FixturesManager.setUpDoc(
|
|
|
|
this.project_id,
|
|
|
|
{
|
|
|
|
lines: this.lines,
|
|
|
|
version: this.version,
|
|
|
|
ops: this.ops,
|
2021-07-13 07:04:45 -04:00
|
|
|
ranges: this.ranges,
|
2020-06-23 13:30:45 -04:00
|
|
|
},
|
|
|
|
(e, { doc_id }) => {
|
|
|
|
this.doc_id = doc_id
|
|
|
|
return cb(e)
|
|
|
|
}
|
|
|
|
)
|
|
|
|
},
|
|
|
|
|
2021-07-13 07:04:45 -04:00
|
|
|
cb => {
|
2020-06-23 13:30:45 -04:00
|
|
|
this.client = RealTimeClient.connect()
|
|
|
|
return this.client.on('connectionAccepted', cb)
|
|
|
|
},
|
|
|
|
|
2021-07-13 07:04:45 -04:00
|
|
|
cb => {
|
2020-06-23 13:30:45 -04:00
|
|
|
return this.client.emit(
|
|
|
|
'joinProject',
|
|
|
|
{ project_id: this.project_id },
|
|
|
|
cb
|
|
|
|
)
|
|
|
|
},
|
|
|
|
|
2021-07-13 07:04:45 -04:00
|
|
|
cb => {
|
2020-06-23 13:30:45 -04:00
|
|
|
return this.client.emit(
|
|
|
|
'joinDoc',
|
|
|
|
this.doc_id,
|
|
|
|
this.fromVersion,
|
|
|
|
(error, ...rest) => {
|
|
|
|
;[...this.returnedArgs] = Array.from(rest)
|
|
|
|
return cb(error)
|
|
|
|
}
|
|
|
|
)
|
2021-07-13 07:04:45 -04:00
|
|
|
},
|
2020-06-23 13:30:45 -04:00
|
|
|
],
|
|
|
|
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,
|
2021-07-13 07:04:45 -04:00
|
|
|
this.ranges,
|
2020-06-23 13:30:45 -04:00
|
|
|
])
|
|
|
|
})
|
|
|
|
|
|
|
|
return it('should have joined the doc room', function (done) {
|
|
|
|
return RealTimeClient.getConnectedClient(
|
|
|
|
this.client.socket.sessionid,
|
|
|
|
(error, client) => {
|
2021-10-27 05:49:18 -04:00
|
|
|
if (error) return done(error)
|
2020-06-23 13:30:45 -04:00
|
|
|
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(
|
|
|
|
[
|
2021-07-13 07:04:45 -04:00
|
|
|
cb => {
|
2020-06-23 13:30:45 -04:00
|
|
|
return FixturesManager.setUpProject(
|
|
|
|
{
|
2021-07-13 07:04:45 -04:00
|
|
|
privilegeLevel: 'readAndWrite',
|
2020-06-23 13:30:45 -04:00
|
|
|
},
|
|
|
|
(e, { project_id, user_id }) => {
|
|
|
|
this.project_id = project_id
|
|
|
|
this.user_id = user_id
|
|
|
|
return cb(e)
|
|
|
|
}
|
|
|
|
)
|
|
|
|
},
|
|
|
|
|
2021-07-13 07:04:45 -04:00
|
|
|
cb => {
|
2020-06-23 13:30:45 -04:00
|
|
|
return FixturesManager.setUpDoc(
|
|
|
|
this.project_id,
|
|
|
|
{
|
|
|
|
lines: this.lines,
|
|
|
|
version: this.version,
|
|
|
|
ops: this.ops,
|
2021-07-13 07:04:45 -04:00
|
|
|
ranges: this.ranges,
|
2020-06-23 13:30:45 -04:00
|
|
|
},
|
|
|
|
(e, { doc_id }) => {
|
|
|
|
this.doc_id = doc_id
|
|
|
|
return cb(e)
|
|
|
|
}
|
|
|
|
)
|
|
|
|
},
|
|
|
|
|
2021-07-13 07:04:45 -04:00
|
|
|
cb => {
|
2020-06-23 13:30:45 -04:00
|
|
|
this.client = RealTimeClient.connect()
|
|
|
|
return this.client.on('connectionAccepted', cb)
|
|
|
|
},
|
|
|
|
|
2021-07-13 07:04:45 -04:00
|
|
|
cb => {
|
2020-06-23 13:30:45 -04:00
|
|
|
return this.client.emit(
|
|
|
|
'joinProject',
|
|
|
|
{ project_id: this.project_id },
|
|
|
|
cb
|
|
|
|
)
|
|
|
|
},
|
|
|
|
|
2021-07-13 07:04:45 -04:00
|
|
|
cb => {
|
2020-06-23 13:30:45 -04:00
|
|
|
return this.client.emit(
|
|
|
|
'joinDoc',
|
|
|
|
this.doc_id,
|
|
|
|
this.options,
|
|
|
|
(error, ...rest) => {
|
|
|
|
;[...this.returnedArgs] = Array.from(rest)
|
|
|
|
return cb(error)
|
|
|
|
}
|
|
|
|
)
|
2021-07-13 07:04:45 -04:00
|
|
|
},
|
2020-06-23 13:30:45 -04:00
|
|
|
],
|
|
|
|
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,
|
2021-07-13 07:04:45 -04:00
|
|
|
this.ranges,
|
2020-06-23 13:30:45 -04:00
|
|
|
])
|
|
|
|
})
|
|
|
|
|
|
|
|
return it('should have joined the doc room', function (done) {
|
|
|
|
return RealTimeClient.getConnectedClient(
|
|
|
|
this.client.socket.sessionid,
|
|
|
|
(error, client) => {
|
2021-10-27 05:49:18 -04:00
|
|
|
if (error) return done(error)
|
2020-06-23 13:30:45 -04:00
|
|
|
expect(Array.from(client.rooms).includes(this.doc_id)).to.equal(true)
|
|
|
|
return done()
|
|
|
|
}
|
|
|
|
)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
return describe('with fromVersion and options', function () {
|
|
|
|
before(function (done) {
|
|
|
|
this.fromVersion = 36
|
|
|
|
this.options = { encodeRanges: true }
|
|
|
|
return async.series(
|
|
|
|
[
|
2021-07-13 07:04:45 -04:00
|
|
|
cb => {
|
2020-06-23 13:30:45 -04:00
|
|
|
return FixturesManager.setUpProject(
|
|
|
|
{
|
2021-07-13 07:04:45 -04:00
|
|
|
privilegeLevel: 'readAndWrite',
|
2020-06-23 13:30:45 -04:00
|
|
|
},
|
|
|
|
(e, { project_id, user_id }) => {
|
|
|
|
this.project_id = project_id
|
|
|
|
this.user_id = user_id
|
|
|
|
return cb(e)
|
|
|
|
}
|
|
|
|
)
|
|
|
|
},
|
|
|
|
|
2021-07-13 07:04:45 -04:00
|
|
|
cb => {
|
2020-06-23 13:30:45 -04:00
|
|
|
return FixturesManager.setUpDoc(
|
|
|
|
this.project_id,
|
|
|
|
{
|
|
|
|
lines: this.lines,
|
|
|
|
version: this.version,
|
|
|
|
ops: this.ops,
|
2021-07-13 07:04:45 -04:00
|
|
|
ranges: this.ranges,
|
2020-06-23 13:30:45 -04:00
|
|
|
},
|
|
|
|
(e, { doc_id }) => {
|
|
|
|
this.doc_id = doc_id
|
|
|
|
return cb(e)
|
|
|
|
}
|
|
|
|
)
|
|
|
|
},
|
|
|
|
|
2021-07-13 07:04:45 -04:00
|
|
|
cb => {
|
2020-06-23 13:30:45 -04:00
|
|
|
this.client = RealTimeClient.connect()
|
|
|
|
return this.client.on('connectionAccepted', cb)
|
|
|
|
},
|
|
|
|
|
2021-07-13 07:04:45 -04:00
|
|
|
cb => {
|
2020-06-23 13:30:45 -04:00
|
|
|
return this.client.emit(
|
|
|
|
'joinProject',
|
|
|
|
{ project_id: this.project_id },
|
|
|
|
cb
|
|
|
|
)
|
|
|
|
},
|
|
|
|
|
2021-07-13 07:04:45 -04:00
|
|
|
cb => {
|
2020-06-23 13:30:45 -04:00
|
|
|
return this.client.emit(
|
|
|
|
'joinDoc',
|
|
|
|
this.doc_id,
|
|
|
|
this.fromVersion,
|
|
|
|
this.options,
|
|
|
|
(error, ...rest) => {
|
|
|
|
;[...this.returnedArgs] = Array.from(rest)
|
|
|
|
return cb(error)
|
|
|
|
}
|
|
|
|
)
|
2021-07-13 07:04:45 -04:00
|
|
|
},
|
2020-06-23 13:30:45 -04:00
|
|
|
],
|
|
|
|
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,
|
2021-07-13 07:04:45 -04:00
|
|
|
this.ranges,
|
2020-06-23 13:30:45 -04:00
|
|
|
])
|
|
|
|
})
|
|
|
|
|
|
|
|
return it('should have joined the doc room', function (done) {
|
|
|
|
return RealTimeClient.getConnectedClient(
|
|
|
|
this.client.socket.sessionid,
|
|
|
|
(error, client) => {
|
2021-10-27 05:49:18 -04:00
|
|
|
if (error) return done(error)
|
2020-06-23 13:30:45 -04:00
|
|
|
expect(Array.from(client.rooms).includes(this.doc_id)).to.equal(true)
|
|
|
|
return done()
|
|
|
|
}
|
|
|
|
)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|