overleaf/services/chat/test/acceptance/js/DestroyingAProjectTests.js
Eric Mc Sween 0a12c47b35 Merge pull request #10815 from overleaf/em-esm-chat
Move chat service to ES modules

GitOrigin-RevId: c08ae8328b8f3b539e6cfe052834b84bb3756330
2022-12-14 09:03:03 +00:00

67 lines
2.2 KiB
JavaScript

import { ObjectId } from '../../../app/js/mongodb.js'
import { expect } from 'chai'
import * as ChatClient from './helpers/ChatClient.js'
import * as ChatApp from './helpers/ChatApp.js'
const db = ChatApp.db
async function getMessage(messageId) {
return await db.messages.findOne({
_id: ObjectId(messageId),
})
}
describe('Destroying a project', async function () {
const projectId = ObjectId().toString()
const userId = ObjectId().toString()
before(async function () {
await ChatApp.ensureRunning()
})
describe('with a project that has threads and messages', async function () {
const threadId = ObjectId().toString()
before(async function () {
const { response } = await ChatClient.sendMessage(
projectId,
threadId,
userId,
'destroyed thread message'
)
expect(response.statusCode).to.equal(201)
this.threadMessageId = response.body.id
const { response: response2 } = await ChatClient.sendGlobalMessage(
projectId,
userId,
'destroyed global message'
)
expect(response2.statusCode).to.equal(201)
this.globalThreadMessageId = response2.body.id
const threadRooms = await db.rooms
.find({ project_id: ObjectId(projectId) })
.toArray()
expect(threadRooms.length).to.equal(2)
const threadMessage = await getMessage(this.threadMessageId)
expect(threadMessage).to.exist
const globalThreadMessage = await getMessage(this.globalThreadMessageId)
expect(globalThreadMessage).to.exist
const { response: responseDestroy } = await ChatClient.destroyProject(
projectId
)
expect(responseDestroy.statusCode).to.equal(204)
})
it('should remove the messages and threads from the database', async function () {
const threadRooms = await db.rooms
.find({ project_id: ObjectId(projectId) })
.toArray()
expect(threadRooms.length).to.equal(0)
const threadMessage = await getMessage(this.threadMessageId)
expect(threadMessage).to.be.null
const globalThreadMessage = await getMessage(this.globalThreadMessageId)
expect(globalThreadMessage).to.be.null
})
})
})