2020-10-27 06:52:40 -04:00
|
|
|
import React from 'react'
|
|
|
|
import { expect } from 'chai'
|
2020-12-14 06:44:10 -05:00
|
|
|
import { screen, waitForElementToBeRemoved } from '@testing-library/react'
|
2020-11-24 06:58:08 -05:00
|
|
|
import fetchMock from 'fetch-mock'
|
2020-10-27 06:52:40 -04:00
|
|
|
|
|
|
|
import ChatPane from '../../../../../frontend/js/features/chat/components/chat-pane'
|
|
|
|
import {
|
2021-02-17 05:05:33 -05:00
|
|
|
renderWithChatContext,
|
|
|
|
cleanUpContext
|
|
|
|
} from '../../../helpers/render-with-context'
|
|
|
|
import {
|
2020-10-27 06:52:40 -04:00
|
|
|
stubMathJax,
|
|
|
|
stubUIConfig,
|
|
|
|
tearDownMathJaxStubs,
|
|
|
|
tearDownUIConfigStubs
|
|
|
|
} from './stubs'
|
|
|
|
|
|
|
|
describe('<ChatPane />', function() {
|
2021-02-17 05:05:33 -05:00
|
|
|
const user = {
|
2020-10-27 06:52:40 -04:00
|
|
|
id: 'fake_user',
|
|
|
|
first_name: 'fake_user_first_name',
|
|
|
|
email: 'fake@example.com'
|
|
|
|
}
|
|
|
|
|
2020-11-24 06:58:08 -05:00
|
|
|
const testMessages = [
|
|
|
|
{
|
2021-02-03 05:23:37 -05:00
|
|
|
id: 'msg_1',
|
2020-11-24 06:58:08 -05:00
|
|
|
content: 'a message',
|
2021-02-17 05:05:33 -05:00
|
|
|
user,
|
2020-11-24 06:58:08 -05:00
|
|
|
timestamp: new Date().getTime()
|
|
|
|
},
|
|
|
|
{
|
2021-02-03 05:23:37 -05:00
|
|
|
id: 'msg_2',
|
2020-11-24 06:58:08 -05:00
|
|
|
content: 'another message',
|
2021-02-17 05:05:33 -05:00
|
|
|
user,
|
2020-11-24 06:58:08 -05:00
|
|
|
timestamp: new Date().getTime()
|
|
|
|
}
|
|
|
|
]
|
2020-10-27 06:52:40 -04:00
|
|
|
|
2020-11-24 06:58:08 -05:00
|
|
|
beforeEach(function() {
|
2021-02-17 05:05:33 -05:00
|
|
|
fetchMock.reset()
|
|
|
|
cleanUpContext()
|
|
|
|
|
2020-10-27 06:52:40 -04:00
|
|
|
stubUIConfig()
|
|
|
|
stubMathJax()
|
|
|
|
})
|
|
|
|
|
2020-11-24 06:58:08 -05:00
|
|
|
afterEach(function() {
|
2020-10-27 06:52:40 -04:00
|
|
|
tearDownUIConfigStubs()
|
|
|
|
tearDownMathJaxStubs()
|
|
|
|
})
|
|
|
|
|
2020-11-24 06:58:08 -05:00
|
|
|
it('renders multiple messages', async function() {
|
|
|
|
fetchMock.get(/messages/, testMessages)
|
2021-02-17 05:05:33 -05:00
|
|
|
|
|
|
|
renderWithChatContext(<ChatPane />, { user })
|
2020-10-27 06:52:40 -04:00
|
|
|
|
2020-11-24 06:58:08 -05:00
|
|
|
await screen.findByText('a message')
|
|
|
|
await screen.findByText('another message')
|
2020-10-27 06:52:40 -04:00
|
|
|
})
|
|
|
|
|
2020-11-24 06:58:08 -05:00
|
|
|
it('A loading spinner is rendered while the messages are loading, then disappears', async function() {
|
|
|
|
fetchMock.get(/messages/, [])
|
2021-02-17 05:05:33 -05:00
|
|
|
|
|
|
|
renderWithChatContext(<ChatPane />, { user })
|
|
|
|
|
2020-11-24 06:58:08 -05:00
|
|
|
await waitForElementToBeRemoved(() => screen.getByText('Loading…'))
|
2020-10-27 06:52:40 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
describe('"send your first message" placeholder', function() {
|
2020-11-24 06:58:08 -05:00
|
|
|
it('is rendered when there are no messages ', async function() {
|
|
|
|
fetchMock.get(/messages/, [])
|
2021-02-17 05:05:33 -05:00
|
|
|
|
|
|
|
renderWithChatContext(<ChatPane />, { user })
|
|
|
|
|
2020-11-24 06:58:08 -05:00
|
|
|
await screen.findByText('Send your first message to your collaborators')
|
2020-10-27 06:52:40 -04:00
|
|
|
})
|
|
|
|
|
2020-11-24 06:58:08 -05:00
|
|
|
it('is not rendered when messages are displayed', function() {
|
|
|
|
fetchMock.get(/messages/, testMessages)
|
2021-02-17 05:05:33 -05:00
|
|
|
|
|
|
|
renderWithChatContext(<ChatPane />, { user })
|
|
|
|
|
2020-11-24 06:58:08 -05:00
|
|
|
expect(
|
|
|
|
screen.queryByText('Send your first message to your collaborators')
|
|
|
|
).to.not.exist
|
2020-10-27 06:52:40 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|