mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
392410390e
File Tree Misc Code Changes GitOrigin-RevId: dce64a5378ecee5c8a2e25e02502ae631d87f36b
83 lines
2.5 KiB
JavaScript
83 lines
2.5 KiB
JavaScript
import { expect } from 'chai'
|
|
import { screen, waitFor, cleanup } from '@testing-library/react'
|
|
import sinon from 'sinon'
|
|
|
|
import renderWithContext from '../../helpers/render-with-context'
|
|
|
|
import FileTreeCreateNameInput from '../../../../../../frontend/js/features/file-tree/components/file-tree-create/file-tree-create-name-input'
|
|
import FileTreeCreateNameProvider from '../../../../../../frontend/js/features/file-tree/contexts/file-tree-create-name'
|
|
|
|
describe('<FileTreeCreateNameInput/>', function () {
|
|
const sandbox = sinon.createSandbox()
|
|
|
|
beforeEach(function () {
|
|
sandbox.spy(window, 'requestAnimationFrame')
|
|
})
|
|
|
|
afterEach(function () {
|
|
sandbox.restore()
|
|
cleanup()
|
|
})
|
|
|
|
it('renders an empty input', async function () {
|
|
renderWithContext(
|
|
<FileTreeCreateNameProvider>
|
|
<FileTreeCreateNameInput />
|
|
</FileTreeCreateNameProvider>
|
|
)
|
|
|
|
await screen.getByLabelText('File Name')
|
|
await screen.getByPlaceholderText('File Name')
|
|
})
|
|
|
|
it('renders a custom label and placeholder', async function () {
|
|
renderWithContext(
|
|
<FileTreeCreateNameProvider>
|
|
<FileTreeCreateNameInput
|
|
label="File name in this project"
|
|
placeholder="Enter a file name…"
|
|
/>
|
|
</FileTreeCreateNameProvider>
|
|
)
|
|
|
|
await screen.getByLabelText('File name in this project')
|
|
await screen.getByPlaceholderText('Enter a file name…')
|
|
})
|
|
|
|
it('uses an initial name', async function () {
|
|
renderWithContext(
|
|
<FileTreeCreateNameProvider initialName="test.tex">
|
|
<FileTreeCreateNameInput />
|
|
</FileTreeCreateNameProvider>
|
|
)
|
|
|
|
const input = await screen.getByLabelText('File Name')
|
|
expect(input.value).to.equal('test.tex')
|
|
})
|
|
|
|
it('focuses the name', async function () {
|
|
renderWithContext(
|
|
<FileTreeCreateNameProvider initialName="test.tex">
|
|
<FileTreeCreateNameInput focusName />
|
|
</FileTreeCreateNameProvider>
|
|
)
|
|
|
|
const input = await screen.getByLabelText('File Name')
|
|
expect(input.value).to.equal('test.tex')
|
|
|
|
await waitFor(
|
|
() => expect(window.requestAnimationFrame).to.have.been.calledOnce
|
|
)
|
|
|
|
// https://github.com/jsdom/jsdom/issues/2995
|
|
// "window.getSelection doesn't work with selection of <input> element"
|
|
// const selection = window.getSelection().toString()
|
|
// expect(selection).to.equal('test')
|
|
|
|
// wait for the selection to update
|
|
await new Promise(resolve => window.setTimeout(resolve, 100))
|
|
|
|
expect(input.selectionStart).to.equal(0)
|
|
expect(input.selectionEnd).to.equal(4)
|
|
})
|
|
})
|