overleaf/services/chat/test/acceptance/js/GettingMessagesTests.js

95 lines
3 KiB
JavaScript
Raw Normal View History

2020-08-19 08:00:01 -04:00
const { ObjectId } = require('../../../app/js/mongodb')
const { expect } = require('chai')
const ChatClient = require('./helpers/ChatClient')
const ChatApp = require('./helpers/ChatApp')
describe('Getting messages', async function () {
before(async function () {
this.user_id1 = ObjectId().toString()
this.user_id2 = ObjectId().toString()
this.content1 = 'foo bar'
this.content2 = 'hello world'
await ChatApp.ensureRunning()
})
describe('globally', async function () {
before(async function () {
this.project_id = ObjectId().toString()
await ChatClient.sendGlobalMessage(
this.project_id,
this.user_id1,
this.content1
)
await ChatClient.sendGlobalMessage(
this.project_id,
this.user_id2,
this.content2
)
})
it('should contain the messages and populated users when getting the messages', async function () {
const { body: messages } = await ChatClient.getGlobalMessages(
this.project_id
)
expect(messages.length).to.equal(2)
messages.reverse()
expect(messages[0].content).to.equal(this.content1)
expect(messages[0].user_id).to.equal(this.user_id1)
expect(messages[1].content).to.equal(this.content2)
expect(messages[1].user_id).to.equal(this.user_id2)
})
})
describe('from all the threads', async function () {
before(async function () {
this.project_id = ObjectId().toString()
this.thread_id1 = ObjectId().toString()
this.thread_id2 = ObjectId().toString()
await ChatClient.sendMessage(
this.project_id,
this.thread_id1,
this.user_id1,
'one'
)
await ChatClient.sendMessage(
this.project_id,
this.thread_id2,
this.user_id2,
'two'
)
await ChatClient.sendMessage(
this.project_id,
this.thread_id1,
this.user_id1,
'three'
)
await ChatClient.sendMessage(
this.project_id,
this.thread_id2,
this.user_id2,
'four'
)
})
it('should contain a dictionary of threads with messages with populated users', async function () {
const { body: threads } = await ChatClient.getThreads(this.project_id)
expect(Object.keys(threads).length).to.equal(2)
const thread1 = threads[this.thread_id1]
expect(thread1.messages.length).to.equal(2)
const thread2 = threads[this.thread_id2]
expect(thread2.messages.length).to.equal(2)
expect(thread1.messages[0].content).to.equal('one')
expect(thread1.messages[0].user_id).to.equal(this.user_id1)
expect(thread1.messages[1].content).to.equal('three')
expect(thread1.messages[1].user_id).to.equal(this.user_id1)
expect(thread2.messages[0].content).to.equal('two')
expect(thread2.messages[0].user_id).to.equal(this.user_id2)
expect(thread2.messages[1].content).to.equal('four')
expect(thread2.messages[1].user_id).to.equal(this.user_id2)
})
})
})