mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
d121b81896
[ReactFileTree] Fix Initial State When Selected File Doesn't Exist GitOrigin-RevId: 92ee8573203e66abf26c9b3afab2fccd90ec8c2e
52 lines
1.6 KiB
JavaScript
52 lines
1.6 KiB
JavaScript
import { expect } from 'chai'
|
|
import React from 'react'
|
|
import { screen } from '@testing-library/react'
|
|
import renderWithContext from '../helpers/render-with-context'
|
|
|
|
import FileTreeToolbar from '../../../../../frontend/js/features/file-tree/components/file-tree-toolbar'
|
|
|
|
describe('<FileTreeToolbar/>', function() {
|
|
beforeEach(function() {
|
|
global.localStorage.clear()
|
|
})
|
|
|
|
it('without selected files', function() {
|
|
renderWithContext(<FileTreeToolbar />)
|
|
|
|
screen.getByRole('button', { name: 'New File' })
|
|
screen.getByRole('button', { name: 'New Folder' })
|
|
screen.getByRole('button', { name: 'Upload' })
|
|
expect(screen.queryByRole('button', { name: 'Rename' })).to.not.exist
|
|
expect(screen.queryByRole('button', { name: 'Delete' })).to.not.exist
|
|
})
|
|
|
|
it('read-only', function() {
|
|
renderWithContext(<FileTreeToolbar />, {
|
|
contextProps: { hasWritePermissions: false }
|
|
})
|
|
|
|
expect(screen.queryByRole('button')).to.not.exist
|
|
})
|
|
|
|
it('with one selected file', function() {
|
|
renderWithContext(<FileTreeToolbar />, {
|
|
contextProps: {
|
|
rootDocId: '456def',
|
|
rootFolder: [
|
|
{
|
|
_id: 'root-folder-id',
|
|
docs: [{ _id: '456def', name: 'main.tex' }],
|
|
folders: [],
|
|
fileRefs: []
|
|
}
|
|
]
|
|
}
|
|
})
|
|
|
|
screen.getByRole('button', { name: 'New File' })
|
|
screen.getByRole('button', { name: 'New Folder' })
|
|
screen.getByRole('button', { name: 'Upload' })
|
|
screen.getByRole('button', { name: 'Rename' })
|
|
screen.getByRole('button', { name: 'Delete' })
|
|
})
|
|
})
|