mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
1fcf94c3b9
React shared context GitOrigin-RevId: ebc6fa90dd8c65ddf803fd457c99a30f0e8e3c9c
93 lines
2.6 KiB
JavaScript
93 lines
2.6 KiB
JavaScript
import React from 'react'
|
|
import { expect } from 'chai'
|
|
import { screen, waitForElementToBeRemoved } from '@testing-library/react'
|
|
import fetchMock from 'fetch-mock'
|
|
|
|
import ChatPane from '../../../../../frontend/js/features/chat/components/chat-pane'
|
|
import { renderWithEditorContext } from '../../../helpers/render-with-context'
|
|
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)
|
|
// unmounting before `beforeEach` block is executed is required to prevent cleanup errors
|
|
const { unmount } = renderWithEditorContext(
|
|
<ChatPane resetUnreadMessages={() => {}} />
|
|
)
|
|
|
|
await screen.findByText('a message')
|
|
await screen.findByText('another message')
|
|
unmount()
|
|
})
|
|
|
|
it('A loading spinner is rendered while the messages are loading, then disappears', async function() {
|
|
fetchMock.get(/messages/, [])
|
|
const { unmount } = renderWithEditorContext(
|
|
<ChatPane resetUnreadMessages={() => {}} />
|
|
)
|
|
await waitForElementToBeRemoved(() => screen.getByText('Loading…'))
|
|
unmount()
|
|
})
|
|
|
|
describe('"send your first message" placeholder', function() {
|
|
it('is rendered when there are no messages ', async function() {
|
|
fetchMock.get(/messages/, [])
|
|
const { unmount } = renderWithEditorContext(
|
|
<ChatPane resetUnreadMessages={() => {}} />
|
|
)
|
|
await screen.findByText('Send your first message to your collaborators')
|
|
unmount()
|
|
})
|
|
|
|
it('is not rendered when messages are displayed', function() {
|
|
fetchMock.get(/messages/, testMessages)
|
|
const { unmount } = renderWithEditorContext(
|
|
<ChatPane resetUnreadMessages={() => {}} />
|
|
)
|
|
expect(
|
|
screen.queryByText('Send your first message to your collaborators')
|
|
).to.not.exist
|
|
unmount()
|
|
})
|
|
})
|
|
})
|