| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365 |
- /* eslint-disable
- 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
- */
- import { expect } from 'chai'
- import RealTimeClient from './helpers/RealTimeClient.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('receiveEditorEvent', function () {
- beforeEach(function (done) {
- this.lines = ['test', 'doc', 'lines']
- this.version = 42
- this.ops = ['mock', 'doc', 'ops']
- /**
- * We will set up a project, a doc, and three users: the owner, user 'a' and user 'b'
- */
- this.project_id = null
- this.doc_id = null
- this.owner_user_id = null
- this.owner_client = null
- this.user_a_id = null
- this.user_a_client = null
- this.user_b_id = null
- this.user_b_client = null
- this.user_c_id = null
- this.user_c_client = null
- async.series(
- [
- /**
- * Create the project, doc, and owner
- */
- cb => {
- return FixturesManager.setUpProject(
- {
- privilegeLevel: 'owner',
- project: { name: 'Test Project' },
- userMetadata: { isInvitedMember: true },
- },
- (error, { user_id: userId, project_id: projectId }) => {
- if (error) return done(error)
- this.owner_user_id = userId
- this.project_id = projectId
- return cb()
- }
- )
- },
- 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)
- }
- )
- },
- /**
- * Connect owner to project/doc
- */
- cb => {
- this.owner_client = RealTimeClient.connect(this.project_id, cb)
- },
- cb => {
- return this.owner_client.emit('joinDoc', this.doc_id, cb)
- },
- /**
- * add user_a to project, as an invited member
- */
- cb => {
- return FixturesManager.setUpProject(
- {
- privilegeLevel: 'readAndWrite',
- project_id: this.project_id,
- userMetadata: { isTokenMember: false, isInvitedMember: true },
- },
- (error, { user_id: userIdSecond }) => {
- if (error) return done(error)
- this.user_a_id = userIdSecond
- return cb()
- }
- )
- },
- /**
- * Connect user_a to project/doc
- */
- cb => {
- this.user_a_client = RealTimeClient.connect(this.project_id, cb)
- },
- cb => {
- return this.user_a_client.emit('joinDoc', this.doc_id, cb)
- },
- /**
- * Set up user_b, as a token-access/link-sharing user
- */
- cb => {
- return FixturesManager.setUpProject(
- {
- privilegeLevel: 'readAndWrite',
- project_id: this.project_id,
- userMetadata: { isTokenMember: true, isInvitedMember: false },
- },
- (error, { user_id: userIdThird }) => {
- if (error) return done(error)
- this.user_b_id = userIdThird
- return cb()
- }
- )
- },
- /**
- * Connect user_b to project/doc
- */
- cb => {
- this.user_b_client = RealTimeClient.connect(this.project_id, cb)
- },
- cb => {
- return this.user_b_client.emit('joinDoc', this.doc_id, cb)
- },
- /**
- * Set up user_c, as a 'restricted' user (anonymous read-only link-sharing)
- */
- cb => {
- return FixturesManager.setUpProject(
- {
- privilegeLevel: 'readAndWrite',
- project_id: this.project_id,
- userMetadata: {
- isTokenMember: false,
- isInvitedMember: false,
- isRestrictedUser: true,
- },
- },
- (error, { user_id: userIdFourth }) => {
- if (error) return done(error)
- this.user_c_id = userIdFourth
- return cb()
- }
- )
- },
- /**
- * Connect user_c to project/doc
- */
- cb => {
- this.user_c_client = RealTimeClient.connect(this.project_id, cb)
- },
- cb => {
- return this.user_c_client.emit('joinDoc', this.doc_id, cb)
- },
- // --------------
- /**
- * Listen for updates
- */
- cb => {
- this.owner_updates = []
- this.user_a_updates = []
- this.user_b_updates = []
- this.user_c_updates = []
- const eventNames = [
- 'userRemovedFromProject',
- 'project:publicAccessLevel:changed',
- 'project:access:revoked',
- ]
- for (const eventName of eventNames) {
- this.owner_client.on(eventName, update =>
- this.owner_updates.push({ [eventName]: update })
- )
- this.user_a_client.on(eventName, update =>
- this.user_a_updates.push({ [eventName]: update })
- )
- this.user_b_client.on(eventName, update =>
- this.user_b_updates.push({ [eventName]: update })
- )
- this.user_c_client.on(eventName, update =>
- this.user_c_updates.push({ [eventName]: update })
- )
- }
- return cb()
- },
- ],
- done
- )
- })
- afterEach(function () {
- if (this.owner_client) {
- this.owner_client.disconnect()
- }
- if (this.user_a_client) {
- this.user_a_client.disconnect()
- }
- if (this.user_b_client) {
- this.user_b_client.disconnect()
- }
- if (this.user_c_client) {
- this.user_c_client.disconnect()
- }
- })
- describe('event: project:publicAccessLevel:changed, set to private', function () {
- beforeEach(function (done) {
- /**
- * We turn off link sharing
- */
- rclient.publish(
- 'editor-events',
- JSON.stringify({
- room_id: this.project_id,
- message: 'project:publicAccessLevel:changed',
- payload: [{ newAccessLevel: 'private' }],
- })
- )
- setTimeout(done, 200)
- })
- it('should disconnect the token-access user, and restricted users', function () {
- expect(this.user_b_client.socket.connected).to.equal(false)
- expect(this.user_c_client.socket.connected).to.equal(false)
- })
- it('should not disconnect the other users', function () {
- expect(this.owner_client.socket.connected).to.equal(true)
- expect(this.user_a_client.socket.connected).to.equal(true)
- })
- it('should send the event to the remaining connected clients', function () {
- expect(this.owner_updates).to.deep.equal([
- { 'project:publicAccessLevel:changed': { newAccessLevel: 'private' } },
- ])
- expect(this.user_a_updates).to.deep.equal([
- { 'project:publicAccessLevel:changed': { newAccessLevel: 'private' } },
- ])
- })
- it('should send a project:access:revoked message to the disconnected clients', function () {
- expect(this.user_b_updates).to.deep.equal([
- { 'project:access:revoked': undefined },
- ])
- expect(this.user_c_updates).to.deep.equal([
- { 'project:access:revoked': undefined },
- ])
- })
- })
- describe('event: project:publicAccessLevel:changed, set to tokenBased', function () {
- beforeEach(function (done) {
- /**
- * We turn on link sharing
- */
- rclient.publish(
- 'editor-events',
- JSON.stringify({
- room_id: this.project_id,
- message: 'project:publicAccessLevel:changed',
- payload: [{ newAccessLevel: 'tokenBased' }],
- })
- )
- setTimeout(done, 200)
- })
- it('should not disconnect anyone', function () {
- expect(this.owner_client.socket.connected).to.equal(true)
- expect(this.user_a_client.socket.connected).to.equal(true)
- expect(this.user_b_client.socket.connected).to.equal(true)
- expect(this.user_c_client.socket.connected).to.equal(true)
- })
- it('should send the event to all non-restricted clients', function () {
- expect(this.owner_updates).to.deep.equal([
- {
- 'project:publicAccessLevel:changed': { newAccessLevel: 'tokenBased' },
- },
- ])
- expect(this.user_a_updates).to.deep.equal([
- {
- 'project:publicAccessLevel:changed': { newAccessLevel: 'tokenBased' },
- },
- ])
- expect(this.user_b_updates).to.deep.equal([
- {
- 'project:publicAccessLevel:changed': { newAccessLevel: 'tokenBased' },
- },
- ])
- // restricted users don't receive this type of message
- expect(this.user_c_updates.length).to.equal(0)
- })
- })
- describe('event: userRemovedFromProject', function () {
- let removedUserId
- beforeEach(function (done) {
- /**
- * We remove user_a from the project
- */
- removedUserId = `${this.user_a_id}`
- rclient.publish(
- 'editor-events',
- JSON.stringify({
- room_id: this.project_id,
- message: 'userRemovedFromProject',
- payload: [removedUserId],
- })
- )
- setTimeout(done, 200)
- })
- it('should disconnect the removed user', function () {
- expect(this.user_a_client.socket.connected).to.equal(false)
- })
- it('should not disconnect the other users', function () {
- expect(this.owner_client.socket.connected).to.equal(true)
- expect(this.user_b_client.socket.connected).to.equal(true)
- })
- it('should send the event to the remaining connected clients', function () {
- expect(this.owner_updates).to.deep.equal([
- { userRemovedFromProject: removedUserId },
- ])
- expect(this.user_b_updates).to.deep.equal([
- { userRemovedFromProject: removedUserId },
- ])
- })
- it('should send a project:access:revoked message to the disconnected clients', function () {
- expect(this.user_a_updates).to.deep.equal([
- { 'project:access:revoked': undefined },
- ])
- })
- })
- })
|