mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
44eca312ff
PDF Detach Misc Tests GitOrigin-RevId: 9615c8fdfd8964a9c63d7c91e4596d397a1d35dc
70 lines
2.1 KiB
JavaScript
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: [] },
|
|
})
|
|
})
|
|
})
|