| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234 |
- /* eslint-disable
- no-throw-literal,
- */
- // 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 RealTimeClient from './helpers/RealTimeClient.js'
- import MockDocUpdaterServer from './helpers/MockDocUpdaterServer.js'
- import FixturesManager from './helpers/FixturesManager.js'
- import async from 'async'
- import settings from '@overleaf/settings'
- import redis from '@overleaf/redis-wrapper'
- const rclient = redis.createClient(settings.redis.pubsub)
- describe('leaveProject', function () {
- before(function (done) {
- return MockDocUpdaterServer.run(done)
- })
- describe('with other clients in the project', function () {
- before(function (done) {
- return async.series(
- [
- cb => {
- return FixturesManager.setUpProject(
- {
- privilegeLevel: 'owner',
- project: {
- name: 'Test Project',
- },
- },
- (e, { project_id: projectId, user_id: userId }) => {
- this.project_id = projectId
- this.user_id = userId
- return cb()
- }
- )
- },
- cb => {
- this.clientA = RealTimeClient.connect(this.project_id, cb)
- },
- cb => {
- this.clientB = RealTimeClient.connect(this.project_id, cb)
- this.clientBDisconnectMessages = []
- return this.clientB.on(
- 'clientTracking.clientDisconnected',
- data => {
- return this.clientBDisconnectMessages.push(data)
- }
- )
- },
- cb => {
- return FixturesManager.setUpDoc(
- this.project_id,
- { lines: this.lines, version: this.version, ops: this.ops },
- (e, { doc_id: docId }) => {
- this.doc_id = docId
- return cb(e)
- }
- )
- },
- cb => {
- return this.clientA.emit('joinDoc', this.doc_id, cb)
- },
- cb => {
- return this.clientB.emit('joinDoc', this.doc_id, cb)
- },
- cb => {
- // leaveProject is called when the client disconnects
- this.clientA.on('disconnect', () => cb())
- return this.clientA.disconnect()
- },
- cb => {
- // The API waits a little while before flushing changes
- return setTimeout(done, 1000)
- },
- ],
- done
- )
- })
- it('should emit a disconnect message to the room', function () {
- return this.clientBDisconnectMessages.should.deep.equal([
- this.clientA.publicId,
- ])
- })
- it('should no longer list the client in connected users', function (done) {
- return this.clientB.emit(
- 'clientTracking.getConnectedUsers',
- (error, users) => {
- if (error) return done(error)
- for (const user of Array.from(users)) {
- if (user.client_id === this.clientA.publicId) {
- throw 'Expected clientA to not be listed in connected users'
- }
- }
- return done()
- }
- )
- })
- it('should not flush the project to the document updater', function () {
- return MockDocUpdaterServer.deleteProject
- .calledWith(this.project_id)
- .should.equal(false)
- })
- it('should remain subscribed to the editor-events channels', function (done) {
- rclient.pubsub('CHANNELS', (err, resp) => {
- if (err) {
- return done(err)
- }
- resp.should.include(`editor-events:${this.project_id}`)
- return done()
- })
- return null
- })
- return it('should remain subscribed to the applied-ops channels', function (done) {
- rclient.pubsub('CHANNELS', (err, resp) => {
- if (err) {
- return done(err)
- }
- resp.should.include(`applied-ops:${this.doc_id}`)
- return done()
- })
- return null
- })
- })
- return describe('with no other clients in the project', function () {
- before(function (done) {
- return async.series(
- [
- cb => {
- return FixturesManager.setUpProject(
- {
- privilegeLevel: 'owner',
- project: {
- name: 'Test Project',
- },
- },
- (e, { project_id: projectId, user_id: userId }) => {
- this.project_id = projectId
- this.user_id = userId
- return cb()
- }
- )
- },
- cb => {
- this.clientA = RealTimeClient.connect(
- this.project_id,
- (error, project, privilegeLevel, protocolVersion) => {
- this.project = project
- this.privilegeLevel = privilegeLevel
- this.protocolVersion = protocolVersion
- return cb(error)
- }
- )
- },
- cb => {
- return FixturesManager.setUpDoc(
- this.project_id,
- { lines: this.lines, version: this.version, ops: this.ops },
- (e, { doc_id: docId }) => {
- this.doc_id = docId
- return cb(e)
- }
- )
- },
- cb => {
- return this.clientA.emit('joinDoc', this.doc_id, cb)
- },
- cb => {
- // leaveProject is called when the client disconnects
- this.clientA.on('disconnect', () => cb())
- return this.clientA.disconnect()
- },
- cb => {
- // The API waits a little while before flushing changes
- return setTimeout(done, 1000)
- },
- ],
- done
- )
- })
- it('should flush the project to the document updater', function () {
- return MockDocUpdaterServer.deleteProject
- .calledWith(this.project_id)
- .should.equal(true)
- })
- it('should not subscribe to the editor-events channels anymore', function (done) {
- rclient.pubsub('CHANNELS', (err, resp) => {
- if (err) {
- return done(err)
- }
- resp.should.not.include(`editor-events:${this.project_id}`)
- return done()
- })
- return null
- })
- return it('should not subscribe to the applied-ops channels anymore', function (done) {
- rclient.pubsub('CHANNELS', (err, resp) => {
- if (err) {
- return done(err)
- }
- resp.should.not.include(`applied-ops:${this.doc_id}`)
- return done()
- })
- return null
- })
- })
- })
|