mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
175 lines
4.8 KiB
JavaScript
175 lines
4.8 KiB
JavaScript
|
import React from 'react'
|
||
|
import { expect } from 'chai'
|
||
|
import sinon from 'sinon'
|
||
|
import { screen, render, fireEvent } from '@testing-library/react'
|
||
|
|
||
|
import PreviewLogEntry from '../../../../../frontend/js/features/preview/components/preview-log-entry.js'
|
||
|
|
||
|
describe('<PreviewLogEntry />', function() {
|
||
|
const level = 'error'
|
||
|
const noOp = () => {}
|
||
|
|
||
|
describe('log entry description', function() {
|
||
|
for (const level of ['error', 'warning', 'typesetting']) {
|
||
|
it(`describes the log entry with ${level} information`, function() {
|
||
|
render(<PreviewLogEntry level={level} onLogEntryLinkClick={noOp} />)
|
||
|
screen.getByLabelText(`Log entry with level: "${level}"`)
|
||
|
})
|
||
|
}
|
||
|
})
|
||
|
|
||
|
describe('log location link', function() {
|
||
|
const file = 'foo.tex'
|
||
|
const line = 42
|
||
|
const column = 21
|
||
|
const onLogEntryLinkClick = sinon.stub()
|
||
|
|
||
|
afterEach(function() {
|
||
|
onLogEntryLinkClick.reset()
|
||
|
})
|
||
|
|
||
|
it('renders both file and line', function() {
|
||
|
render(
|
||
|
<PreviewLogEntry
|
||
|
file={file}
|
||
|
line={line}
|
||
|
level={level}
|
||
|
onLogEntryLinkClick={noOp}
|
||
|
/>
|
||
|
)
|
||
|
screen.getByRole('button', {
|
||
|
name: `Navigate to log position in source code: ${file}, ${line}`
|
||
|
})
|
||
|
})
|
||
|
|
||
|
it('renders only file when line information is not available', function() {
|
||
|
render(
|
||
|
<PreviewLogEntry file={file} level={level} onLogEntryLinkClick={noOp} />
|
||
|
)
|
||
|
screen.getByRole('button', {
|
||
|
name: `Navigate to log position in source code: ${file}`
|
||
|
})
|
||
|
})
|
||
|
|
||
|
it('does not render when file information is not available', function() {
|
||
|
render(<PreviewLogEntry level={level} onLogEntryLinkClick={noOp} />)
|
||
|
expect(
|
||
|
screen.queryByRole('button', {
|
||
|
name: `Navigate to log position in source code: `
|
||
|
})
|
||
|
).to.not.exist
|
||
|
})
|
||
|
|
||
|
it('calls the callback with file, line and column on click', function() {
|
||
|
render(
|
||
|
<PreviewLogEntry
|
||
|
file={file}
|
||
|
line={line}
|
||
|
column={column}
|
||
|
level={level}
|
||
|
onLogEntryLinkClick={onLogEntryLinkClick}
|
||
|
/>
|
||
|
)
|
||
|
const linkToSourceButton = screen.getByRole('button', {
|
||
|
name: `Navigate to log position in source code: ${file}, ${line}`
|
||
|
})
|
||
|
|
||
|
fireEvent.click(linkToSourceButton)
|
||
|
expect(onLogEntryLinkClick).to.be.calledOnce
|
||
|
expect(onLogEntryLinkClick).to.be.calledWith({
|
||
|
file,
|
||
|
line: line,
|
||
|
column: column
|
||
|
})
|
||
|
})
|
||
|
})
|
||
|
|
||
|
describe('log entry contents', function() {
|
||
|
const logContent = 'foo bar latex error stuff baz'
|
||
|
|
||
|
it('renders collapsed contents by default', function() {
|
||
|
render(
|
||
|
<PreviewLogEntry
|
||
|
content={logContent}
|
||
|
level={level}
|
||
|
onLogEntryLinkClick={noOp}
|
||
|
/>
|
||
|
)
|
||
|
screen.getByText(logContent)
|
||
|
screen.getByRole('button', {
|
||
|
name: 'Expand'
|
||
|
})
|
||
|
})
|
||
|
|
||
|
it('supports expanding contents', function() {
|
||
|
render(
|
||
|
<PreviewLogEntry
|
||
|
content={logContent}
|
||
|
level={level}
|
||
|
onLogEntryLinkClick={noOp}
|
||
|
/>
|
||
|
)
|
||
|
screen.getByText(logContent)
|
||
|
const expandCollapseBtn = screen.getByRole('button', {
|
||
|
name: 'Expand'
|
||
|
})
|
||
|
fireEvent.click(expandCollapseBtn)
|
||
|
screen.getByRole('button', {
|
||
|
name: 'Collapse'
|
||
|
})
|
||
|
})
|
||
|
|
||
|
it('should not render at all when there are no log contents', function() {
|
||
|
const { container } = render(
|
||
|
<PreviewLogEntry level={level} onLogEntryLinkClick={noOp} />
|
||
|
)
|
||
|
expect(container.querySelector('.log-entry-content')).to.not.exist
|
||
|
})
|
||
|
})
|
||
|
|
||
|
describe('human-readable hints', function() {
|
||
|
const logContent = 'foo bar latex error stuff baz'
|
||
|
const logHintText = 'foo bar baz'
|
||
|
const logHint = <>{logHintText}</>
|
||
|
const infoURL = 'www.overleaf.com/learn/latex'
|
||
|
|
||
|
it('renders the hint', function() {
|
||
|
render(
|
||
|
<PreviewLogEntry
|
||
|
content={logContent}
|
||
|
humanReadableHintComponent={logHint}
|
||
|
extraInfoURL={infoURL}
|
||
|
level={level}
|
||
|
onLogEntryLinkClick={noOp}
|
||
|
/>
|
||
|
)
|
||
|
screen.getByText(logHintText)
|
||
|
})
|
||
|
|
||
|
it('renders the link to learn more', function() {
|
||
|
render(
|
||
|
<PreviewLogEntry
|
||
|
content={logContent}
|
||
|
humanReadableHintComponent={logHint}
|
||
|
extraInfoURL={infoURL}
|
||
|
level={level}
|
||
|
onLogEntryLinkClick={noOp}
|
||
|
/>
|
||
|
)
|
||
|
screen.getByRole('link', { name: 'Learn more' })
|
||
|
})
|
||
|
|
||
|
it('does not render the link when it is not available', function() {
|
||
|
render(
|
||
|
<PreviewLogEntry
|
||
|
content={logContent}
|
||
|
humanReadableHintComponent={logHint}
|
||
|
level={level}
|
||
|
onLogEntryLinkClick={noOp}
|
||
|
/>
|
||
|
)
|
||
|
expect(screen.queryByRole('link', { name: 'Learn more' })).to.not.exist
|
||
|
})
|
||
|
})
|
||
|
})
|