mirror of
https://github.com/koel/koel
synced 2024-12-20 09:33:23 +00:00
29 lines
1 KiB
TypeScript
29 lines
1 KiB
TypeScript
import { screen } from '@testing-library/vue'
|
|
import { expect, it } from 'vitest'
|
|
import UnitTestCase from '@/__tests__/UnitTestCase'
|
|
import SidebarManageSection from './SidebarManageSection.vue'
|
|
|
|
new class extends UnitTestCase {
|
|
protected test () {
|
|
it('shows all menu items if current user is an admin', () => {
|
|
this.beAdmin().render(SidebarManageSection)
|
|
screen.getByText('Settings')
|
|
screen.getByText('Users')
|
|
screen.getByText('Upload')
|
|
})
|
|
|
|
it('shows nothing if current user is not an admin', () => {
|
|
this.be().render(SidebarManageSection)
|
|
expect(screen.queryByText('Settings')).toBeNull()
|
|
expect(screen.queryByText('Upload')).toBeNull()
|
|
expect(screen.queryByText('Users')).toBeNull()
|
|
})
|
|
|
|
it('shows only the upload menu item if current user is a Plus user', () => {
|
|
this.be().enablePlusEdition().render(SidebarManageSection)
|
|
screen.getByText('Upload')
|
|
expect(screen.queryByText('Settings')).toBeNull()
|
|
expect(screen.queryByText('Users')).toBeNull()
|
|
})
|
|
}
|
|
}
|