overleaf/services/web/test/frontend/features/chat/components/chat-pane.test.js
Miguel Serrano 3b1c4e19a4 Merge pull request #3300 from overleaf/msm-chat-react-store
React chat store

GitOrigin-RevId: 204009eb5798b02a41e621b33b05ef0cb9d10b15
2020-11-25 03:04:29 +00:00

83 lines
2.2 KiB
JavaScript

import React from 'react'
import { expect } from 'chai'
import {
render,
screen,
waitForElementToBeRemoved
} from '@testing-library/react'
import fetchMock from 'fetch-mock'
import ChatPane from '../../../../../frontend/js/features/chat/components/chat-pane'
import {
stubChatStore,
stubMathJax,
stubUIConfig,
tearDownChatStore,
tearDownMathJaxStubs,
tearDownUIConfigStubs
} from './stubs'
describe('<ChatPane />', function() {
const currentUser = {
id: 'fake_user',
first_name: 'fake_user_first_name',
email: 'fake@example.com'
}
const testMessages = [
{
content: 'a message',
user: currentUser,
timestamp: new Date().getTime()
},
{
content: 'another message',
user: currentUser,
timestamp: new Date().getTime()
}
]
beforeEach(function() {
stubChatStore({ user: currentUser })
stubUIConfig()
stubMathJax()
fetchMock.reset()
})
afterEach(function() {
tearDownChatStore()
tearDownUIConfigStubs()
tearDownMathJaxStubs()
fetchMock.reset()
})
it('renders multiple messages', async function() {
fetchMock.get(/messages/, testMessages)
render(<ChatPane resetUnreadMessages={() => {}} />)
await screen.findByText('a message')
await screen.findByText('another message')
})
it('A loading spinner is rendered while the messages are loading, then disappears', async function() {
fetchMock.get(/messages/, [])
render(<ChatPane resetUnreadMessages={() => {}} />)
await waitForElementToBeRemoved(() => screen.getByText('Loading…'))
})
describe('"send your first message" placeholder', function() {
it('is rendered when there are no messages ', async function() {
fetchMock.get(/messages/, [])
render(<ChatPane resetUnreadMessages={() => {}} />)
await screen.findByText('Send your first message to your collaborators')
})
it('is not rendered when messages are displayed', function() {
fetchMock.get(/messages/, testMessages)
render(<ChatPane resetUnreadMessages={() => {}} />)
expect(
screen.queryByText('Send your first message to your collaborators')
).to.not.exist
})
})
})