mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
3c01402bbd
PDF Detach v2 GitOrigin-RevId: 3deb76474185f9176cde23ab32ef51b90df6e8e9
129 lines
3.3 KiB
JavaScript
129 lines
3.3 KiB
JavaScript
import { expect } from 'chai'
|
|
import {
|
|
fireEvent,
|
|
screen,
|
|
waitForElementToBeRemoved,
|
|
} from '@testing-library/react'
|
|
import fetchMock from 'fetch-mock'
|
|
|
|
import ChatPane from '../../../../../frontend/js/features/chat/components/chat-pane'
|
|
import {
|
|
renderWithChatContext,
|
|
cleanUpContext,
|
|
} from '../../../helpers/render-with-context'
|
|
import { stubMathJax, tearDownMathJaxStubs } from './stubs'
|
|
import sinon from 'sinon'
|
|
|
|
describe('<ChatPane />', function () {
|
|
const user = {
|
|
id: 'fake_user',
|
|
first_name: 'fake_user_first_name',
|
|
email: 'fake@example.com',
|
|
}
|
|
|
|
beforeEach(function () {
|
|
this.clock = sinon.useFakeTimers({
|
|
toFake: ['setTimeout', 'clearTimeout', 'setInterval', 'clearInterval'],
|
|
})
|
|
window.metaAttributesCache = new Map()
|
|
window.metaAttributesCache.set('ol-user', user)
|
|
})
|
|
|
|
afterEach(function () {
|
|
this.clock.runAll()
|
|
this.clock.restore()
|
|
fetchMock.reset()
|
|
window.metaAttributesCache = new Map()
|
|
})
|
|
|
|
const testMessages = [
|
|
{
|
|
id: 'msg_1',
|
|
content: 'a message',
|
|
user,
|
|
timestamp: new Date().getTime(),
|
|
},
|
|
{
|
|
id: 'msg_2',
|
|
content: 'another message',
|
|
user,
|
|
timestamp: new Date().getTime(),
|
|
},
|
|
]
|
|
|
|
beforeEach(function () {
|
|
fetchMock.reset()
|
|
cleanUpContext()
|
|
|
|
stubMathJax()
|
|
})
|
|
|
|
afterEach(function () {
|
|
tearDownMathJaxStubs()
|
|
})
|
|
|
|
it('renders multiple messages', async function () {
|
|
fetchMock.get(/messages/, testMessages)
|
|
|
|
renderWithChatContext(<ChatPane />, { user })
|
|
|
|
await screen.findByText('a message')
|
|
await screen.findByText('another message')
|
|
})
|
|
|
|
it('provides error message with reload button on FetchError', async function () {
|
|
fetchMock.get(/messages/, 500)
|
|
|
|
renderWithChatContext(<ChatPane />, { user })
|
|
|
|
// should have hit a FetchError and will prompt user to reconnect
|
|
await screen.findByText('Try again')
|
|
|
|
// bring chat back up
|
|
fetchMock.reset()
|
|
fetchMock.get(/messages/, [])
|
|
|
|
const reconnectButton = screen.getByRole('button', {
|
|
name: 'Try again',
|
|
})
|
|
expect(reconnectButton).to.exist
|
|
|
|
// should now reconnect with placeholder message
|
|
fireEvent.click(reconnectButton)
|
|
await screen.findByText('Send your first message to your collaborators')
|
|
})
|
|
|
|
it('a loading spinner is rendered while the messages are loading, then disappears', async function () {
|
|
fetchMock.get(/messages/, [], { delay: 1000 })
|
|
|
|
renderWithChatContext(<ChatPane />, { user })
|
|
|
|
this.clock.tick(600) // wait for spinner to be displayed
|
|
|
|
await screen.findByText('Loading…')
|
|
|
|
this.clock.tick(1000) // wait for response to be received
|
|
|
|
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/, [])
|
|
|
|
renderWithChatContext(<ChatPane />, { user })
|
|
|
|
await screen.findByText('Send your first message to your collaborators')
|
|
})
|
|
|
|
it('is not rendered when messages are displayed', function () {
|
|
fetchMock.get(/messages/, testMessages)
|
|
|
|
renderWithChatContext(<ChatPane />, { user })
|
|
|
|
expect(
|
|
screen.queryByText('Send your first message to your collaborators')
|
|
).to.not.exist
|
|
})
|
|
})
|
|
})
|