mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-24 21:12:38 -04:00
69482d9d3c
GitOrigin-RevId: 03f5164d117713efd78c9806bdda6e6d5c90f6dc
177 lines
4.5 KiB
JavaScript
177 lines
4.5 KiB
JavaScript
import { fireEvent, screen, waitFor } from '@testing-library/react'
|
|
import { expect } from 'chai'
|
|
import sinon from 'sinon'
|
|
import fetchMock from 'fetch-mock'
|
|
import CloneProjectModal from '../../../../../frontend/js/features/clone-project-modal/components/clone-project-modal'
|
|
import { renderWithEditorContext } from '../../../helpers/render-with-context'
|
|
|
|
describe('<CloneProjectModal />', function () {
|
|
beforeEach(function () {
|
|
fetchMock.reset()
|
|
})
|
|
|
|
after(function () {
|
|
fetchMock.reset()
|
|
})
|
|
|
|
const project = {
|
|
_id: 'project-1',
|
|
name: 'Test Project',
|
|
}
|
|
|
|
it('renders the translated modal title', async function () {
|
|
const handleHide = sinon.stub()
|
|
const openProject = sinon.stub()
|
|
|
|
renderWithEditorContext(
|
|
<CloneProjectModal
|
|
handleHide={handleHide}
|
|
openProject={openProject}
|
|
show
|
|
/>,
|
|
{ scope: { project } }
|
|
)
|
|
|
|
await screen.findByText('Copy Project')
|
|
})
|
|
|
|
it('posts the generated project name', async function () {
|
|
fetchMock.post(
|
|
'express:/project/:projectId/clone',
|
|
{
|
|
status: 200,
|
|
body: { project_id: 'cloned-project' },
|
|
},
|
|
{ delay: 10 }
|
|
)
|
|
|
|
const handleHide = sinon.stub()
|
|
const openProject = sinon.stub()
|
|
|
|
renderWithEditorContext(
|
|
<CloneProjectModal
|
|
handleHide={handleHide}
|
|
openProject={openProject}
|
|
show
|
|
/>,
|
|
{ scope: { project } }
|
|
)
|
|
|
|
const cancelButton = await screen.findByRole('button', { name: 'Cancel' })
|
|
expect(cancelButton.disabled).to.be.false
|
|
|
|
const submitButton = await screen.findByRole('button', { name: 'Copy' })
|
|
expect(submitButton.disabled).to.be.false
|
|
|
|
const input = await screen.getByLabelText('New Name')
|
|
|
|
fireEvent.change(input, {
|
|
target: { value: '' },
|
|
})
|
|
expect(submitButton.disabled).to.be.true
|
|
|
|
fireEvent.change(input, {
|
|
target: { value: 'A Cloned Project' },
|
|
})
|
|
expect(submitButton.disabled).to.be.false
|
|
|
|
fireEvent.click(submitButton)
|
|
expect(submitButton.disabled).to.be.true
|
|
|
|
await fetchMock.flush(true)
|
|
expect(fetchMock.done()).to.be.true
|
|
const [url, options] = fetchMock.lastCall(
|
|
'express:/project/:projectId/clone'
|
|
)
|
|
expect(url).to.equal('/project/project-1/clone')
|
|
|
|
expect(JSON.parse(options.body)).to.deep.equal({
|
|
projectName: 'A Cloned Project',
|
|
})
|
|
|
|
expect(openProject).to.be.calledOnce
|
|
|
|
const errorMessage = screen.queryByText('Sorry, something went wrong')
|
|
expect(errorMessage).to.be.null
|
|
|
|
await waitFor(() => {
|
|
expect(submitButton.disabled).to.be.false
|
|
expect(cancelButton.disabled).to.be.false
|
|
})
|
|
})
|
|
|
|
it('handles a generic error response', async function () {
|
|
const matcher = 'express:/project/:projectId/clone'
|
|
|
|
fetchMock.postOnce(matcher, {
|
|
status: 500,
|
|
body: 'There was an error!',
|
|
})
|
|
|
|
const handleHide = sinon.stub()
|
|
const openProject = sinon.stub()
|
|
|
|
renderWithEditorContext(
|
|
<CloneProjectModal
|
|
handleHide={handleHide}
|
|
openProject={openProject}
|
|
show
|
|
/>,
|
|
{ scope: { project } }
|
|
)
|
|
|
|
const button = await screen.findByRole('button', { name: 'Copy' })
|
|
expect(button.disabled).to.be.false
|
|
|
|
const cancelButton = await screen.findByRole('button', { name: 'Cancel' })
|
|
expect(cancelButton.disabled).to.be.false
|
|
|
|
fireEvent.click(button)
|
|
|
|
expect(fetchMock.done(matcher)).to.be.true
|
|
expect(openProject).not.to.be.called
|
|
|
|
await screen.findByText('Sorry, something went wrong')
|
|
|
|
expect(button.disabled).to.be.false
|
|
expect(cancelButton.disabled).to.be.false
|
|
})
|
|
|
|
it('handles a specific error response', async function () {
|
|
const matcher = 'express:/project/:projectId/clone'
|
|
|
|
fetchMock.postOnce(matcher, {
|
|
status: 400,
|
|
body: 'There was an error!',
|
|
})
|
|
|
|
const handleHide = sinon.stub()
|
|
const openProject = sinon.stub()
|
|
|
|
renderWithEditorContext(
|
|
<CloneProjectModal
|
|
handleHide={handleHide}
|
|
openProject={openProject}
|
|
show
|
|
/>,
|
|
{ scope: { project } }
|
|
)
|
|
|
|
const button = await screen.findByRole('button', { name: 'Copy' })
|
|
expect(button.disabled).to.be.false
|
|
|
|
const cancelButton = await screen.findByRole('button', { name: 'Cancel' })
|
|
expect(cancelButton.disabled).to.be.false
|
|
|
|
fireEvent.click(button)
|
|
await fetchMock.flush(true)
|
|
|
|
expect(fetchMock.done(matcher)).to.be.true
|
|
expect(openProject).not.to.be.called
|
|
|
|
await screen.findByText('There was an error!')
|
|
|
|
expect(button.disabled).to.be.false
|
|
expect(cancelButton.disabled).to.be.false
|
|
})
|
|
})
|