mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
cda947d1ac
GitOrigin-RevId: c3d9601256af8720ab41264609cb5c5c810afbba
78 lines
2.1 KiB
TypeScript
78 lines
2.1 KiB
TypeScript
import PdfPreviewDetachedRoot from '../../../../frontend/js/features/pdf-preview/components/pdf-preview-detached-root'
|
|
import { User } from '../../../../types/user'
|
|
import { detachChannel, testDetachChannel } from '../../helpers/detach-channel'
|
|
|
|
describe('<PdfPreviewDetachedRoot/>', function () {
|
|
beforeEach(function () {
|
|
window.user = { id: 'user1' } as User
|
|
|
|
window.metaAttributesCache = new Map<string, unknown>([
|
|
['ol-user', window.user],
|
|
['ol-project_id', 'project1'],
|
|
['ol-detachRole', 'detached'],
|
|
['ol-projectName', 'Project Name'],
|
|
])
|
|
|
|
cy.interceptCompile()
|
|
cy.interceptEvents()
|
|
})
|
|
|
|
afterEach(function () {
|
|
window.metaAttributesCache = new Map()
|
|
})
|
|
|
|
it('syncs compiling state', function () {
|
|
cy.mount(<PdfPreviewDetachedRoot />)
|
|
|
|
cy.wrap(null).then(() => {
|
|
testDetachChannel.postMessage({
|
|
role: 'detacher',
|
|
event: 'connected',
|
|
})
|
|
|
|
testDetachChannel.postMessage({
|
|
role: 'detacher',
|
|
event: 'state-compiling',
|
|
data: { value: true },
|
|
})
|
|
})
|
|
|
|
cy.findByRole('button', { name: 'Compiling…' })
|
|
cy.findByRole('button', { name: 'Recompile' }).should('not.exist')
|
|
cy.wrap(null).then(() => {
|
|
testDetachChannel.postMessage({
|
|
role: 'detacher',
|
|
event: 'state-compiling',
|
|
data: { value: false },
|
|
})
|
|
})
|
|
cy.findByRole('button', { name: 'Recompile' })
|
|
cy.findByRole('button', { name: 'Compiling…' }).should('not.exist')
|
|
})
|
|
|
|
it('sends a clear cache request when the button is pressed', function () {
|
|
cy.mount(<PdfPreviewDetachedRoot />)
|
|
|
|
cy.wrap(null).then(() => {
|
|
testDetachChannel.postMessage({
|
|
role: 'detacher',
|
|
event: 'state-showLogs',
|
|
data: { value: true },
|
|
})
|
|
})
|
|
|
|
cy.spy(detachChannel, 'postMessage').as('postDetachMessage')
|
|
|
|
cy.findByRole('button', { name: 'Clear cached files' })
|
|
.should('not.be.disabled')
|
|
.click()
|
|
|
|
cy.get('@postDetachMessage').should('be.calledWith', {
|
|
role: 'detached',
|
|
event: 'action-clearCache',
|
|
data: {
|
|
args: [],
|
|
},
|
|
})
|
|
})
|
|
})
|