overleaf/services/web/test/frontend/features/pdf-preview/components/detach-compile-button.test.js
Timothée Alby 44eca312ff Merge pull request #6053 from overleaf/ta-pdf-detach-tests
PDF Detach Misc Tests

GitOrigin-RevId: 9615c8fdfd8964a9c63d7c91e4596d397a1d35dc
2021-12-15 09:04:46 +00:00

70 lines
2.1 KiB
JavaScript

import DetachCompileButton from '../../../../../frontend/js/features/pdf-preview/components/detach-compile-button'
import { renderWithEditorContext } from '../../../helpers/render-with-context'
import { screen, fireEvent } from '@testing-library/react'
import sysendTestHelper from '../../../helpers/sysend'
import { expect } from 'chai'
describe('<DetachCompileButton/>', function () {
afterEach(function () {
window.metaAttributesCache = new Map()
sysendTestHelper.resetHistory()
})
it('detacher mode and linked: show button ', async function () {
window.metaAttributesCache.set('ol-detachRole', 'detacher')
renderWithEditorContext(<DetachCompileButton />)
sysendTestHelper.receiveMessage({
role: 'detached',
event: 'connected',
})
await screen.getByRole('button', {
name: 'Recompile',
})
})
it('detacher mode and not linked: does not show button ', async function () {
window.metaAttributesCache.set('ol-detachRole', 'detacher')
renderWithEditorContext(<DetachCompileButton />)
expect(
await screen.queryByRole('button', {
name: 'Recompile',
})
).to.not.exist
})
it('not detacher mode and linked: does not show button ', async function () {
window.metaAttributesCache.set('ol-detachRole', 'detached')
renderWithEditorContext(<DetachCompileButton />)
sysendTestHelper.receiveMessage({
role: 'detacher',
event: 'connected',
})
expect(
await screen.queryByRole('button', {
name: 'Recompile',
})
).to.not.exist
})
it('send compile clicks via detached action', async function () {
window.metaAttributesCache.set('ol-detachRole', 'detacher')
renderWithEditorContext(<DetachCompileButton />)
sysendTestHelper.receiveMessage({
role: 'detached',
event: 'connected',
})
const compileButton = await screen.getByRole('button', {
name: 'Recompile',
})
fireEvent.click(compileButton)
expect(sysendTestHelper.getLastBroacastMessage()).to.deep.equal({
role: 'detacher',
event: 'action-start-compile',
data: { args: [] },
})
})
})