mirror of
https://github.com/langgenius/dify.git
synced 2026-07-29 16:29:36 +08:00
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: yyh <yuanyouhuilyz@gmail.com> Co-authored-by: Joel <iamjoel007@gmail.com> Co-authored-by: hjlarry <hjlarry@163.com> Co-authored-by: fatelei <fatelei@gmail.com> Co-authored-by: Asuka Minato <i@asukaminato.eu.org> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Xiyuan Chen <52963600+GareArc@users.noreply.github.com> Co-authored-by: gigglewang <gigglewang@dify.ai> Co-authored-by: Yunlu Wen <yunlu.wen@dify.ai> Co-authored-by: chariri <w@chariri.moe> Co-authored-by: Evan <2869018789@qq.com> Co-authored-by: yyh <92089059+lyzno1@users.noreply.github.com>
255 lines
10 KiB
TypeScript
255 lines
10 KiB
TypeScript
import type { ReactElement, ReactNode } from 'react'
|
|
import { fireEvent, screen } from '@testing-library/react'
|
|
import { cloneElement } from 'react'
|
|
import { beforeEach, describe, expect, it, vi } from 'vitest'
|
|
import { renderWithSystemFeatures } from '@/__tests__/utils/mock-system-features'
|
|
import { PluginSource } from '../../types'
|
|
import OperationDropdown from '../operation-dropdown'
|
|
|
|
const render = (ui: ReactElement) =>
|
|
renderWithSystemFeatures(ui, { systemFeatures: { enable_marketplace: true } })
|
|
|
|
vi.mock('@langgenius/dify-ui/cn', () => ({
|
|
cn: (...args: (string | undefined | false | null)[]) => args.filter(Boolean).join(' '),
|
|
}))
|
|
|
|
vi.mock('@langgenius/dify-ui/dropdown-menu', () => ({
|
|
DropdownMenu: ({ children, open }: { children: ReactNode, open: boolean }) => (
|
|
<div data-testid="dropdown-menu" data-open={open}>{children}</div>
|
|
),
|
|
DropdownMenuTrigger: ({ children, className }: { children: ReactNode, className?: string }) => (
|
|
<button data-testid="dropdown-trigger" className={className}>{children}</button>
|
|
),
|
|
DropdownMenuContent: ({ children, popupClassName }: { children: ReactNode, popupClassName?: string }) => (
|
|
<div data-testid="dropdown-content" className={popupClassName}>{children}</div>
|
|
),
|
|
DropdownMenuItem: ({ children, className, onClick, render, variant }: { children: ReactNode, className?: string, onClick?: () => void, render?: ReactElement, variant?: string }) => {
|
|
if (render)
|
|
return cloneElement(render, { className, onClick, 'data-variant': variant } as Record<string, unknown>, children)
|
|
return <div data-testid="dropdown-item" className={className} data-variant={variant} onClick={onClick}>{children}</div>
|
|
},
|
|
DropdownMenuSeparator: ({ className }: { className?: string }) => <hr data-testid="dropdown-separator" className={className} />,
|
|
}))
|
|
|
|
describe('OperationDropdown', () => {
|
|
const mockOnInfo = vi.fn()
|
|
const mockOnCheckVersion = vi.fn()
|
|
const mockOnRemove = vi.fn()
|
|
const mockOnViewReadme = vi.fn()
|
|
const defaultProps = {
|
|
source: PluginSource.github,
|
|
detailUrl: 'https://github.com/test/repo',
|
|
onInfo: mockOnInfo,
|
|
onCheckVersion: mockOnCheckVersion,
|
|
onRemove: mockOnRemove,
|
|
}
|
|
|
|
beforeEach(() => {
|
|
vi.clearAllMocks()
|
|
})
|
|
|
|
describe('Rendering', () => {
|
|
it('should render trigger button', () => {
|
|
render(<OperationDropdown {...defaultProps} />)
|
|
|
|
expect(screen.getByTestId('dropdown-trigger')).toBeInTheDocument()
|
|
})
|
|
|
|
it('should render dropdown content', () => {
|
|
render(<OperationDropdown {...defaultProps} />)
|
|
|
|
expect(screen.getByTestId('dropdown-content')).toBeInTheDocument()
|
|
})
|
|
|
|
it('should render figma-aligned dropdown surface and rows', () => {
|
|
render(<OperationDropdown {...defaultProps} />)
|
|
|
|
expect(screen.getByTestId('dropdown-content')).toHaveClass('w-[192px]', 'py-1')
|
|
expect(screen.getByText('plugin.detailPanel.operation.viewDetail').closest('a')).toHaveClass('px-2', 'py-1', 'system-md-regular')
|
|
expect(screen.getByText('plugin.detailPanel.operation.remove').closest('[data-testid="dropdown-item"]')).toHaveClass('px-2', 'py-1', 'system-md-regular')
|
|
expect(screen.getByTestId('dropdown-separator')).toHaveClass('my-0')
|
|
})
|
|
|
|
it('should render info option for github source', () => {
|
|
render(<OperationDropdown {...defaultProps} source={PluginSource.github} />)
|
|
|
|
expect(screen.getByText('plugin.detailPanel.operation.info')).toBeInTheDocument()
|
|
})
|
|
|
|
it('should render check update option for github source', () => {
|
|
render(<OperationDropdown {...defaultProps} source={PluginSource.github} />)
|
|
|
|
expect(screen.getByText('plugin.detailPanel.operation.checkUpdate')).toBeInTheDocument()
|
|
})
|
|
|
|
it('should render view detail option for github source with marketplace enabled', () => {
|
|
render(<OperationDropdown {...defaultProps} source={PluginSource.github} />)
|
|
|
|
expect(screen.getByText('plugin.detailPanel.operation.viewDetail')).toBeInTheDocument()
|
|
})
|
|
|
|
it('should render view detail option for marketplace source', () => {
|
|
render(<OperationDropdown {...defaultProps} source={PluginSource.marketplace} />)
|
|
|
|
expect(screen.getByText('plugin.detailPanel.operation.viewDetail')).toBeInTheDocument()
|
|
})
|
|
|
|
it('should render view README option when provided', () => {
|
|
render(<OperationDropdown {...defaultProps} onViewReadme={mockOnViewReadme} />)
|
|
|
|
expect(screen.getByText('plugin.detailPanel.operation.viewReadme')).toBeInTheDocument()
|
|
})
|
|
|
|
it('should render view README below view marketplace', () => {
|
|
render(<OperationDropdown {...defaultProps} onViewReadme={mockOnViewReadme} source={PluginSource.marketplace} />)
|
|
|
|
const viewMarketplace = screen.getByText('plugin.detailPanel.operation.viewDetail').closest('a')!
|
|
const viewReadme = screen.getByText('plugin.detailPanel.operation.viewReadme').closest('[data-testid="dropdown-item"]')!
|
|
|
|
expect(viewMarketplace.compareDocumentPosition(viewReadme)).toBe(Node.DOCUMENT_POSITION_FOLLOWING)
|
|
})
|
|
|
|
it('should not render view README option when it is unavailable', () => {
|
|
render(<OperationDropdown {...defaultProps} />)
|
|
|
|
expect(screen.queryByText('plugin.detailPanel.operation.viewReadme')).not.toBeInTheDocument()
|
|
})
|
|
|
|
it('should always render remove option', () => {
|
|
render(<OperationDropdown {...defaultProps} />)
|
|
|
|
expect(screen.getByText('plugin.detailPanel.operation.remove')).toBeInTheDocument()
|
|
})
|
|
|
|
it('should render remove option with normal text color', () => {
|
|
render(<OperationDropdown {...defaultProps} />)
|
|
|
|
expect(screen.getByText('plugin.detailPanel.operation.remove').closest('[data-testid="dropdown-item"]')).not.toHaveAttribute('data-variant', 'destructive')
|
|
})
|
|
|
|
it('should render destructive hover styles for remove option when requested', () => {
|
|
render(<OperationDropdown {...defaultProps} destructiveRemove />)
|
|
|
|
expect(screen.getByText('plugin.detailPanel.operation.remove').closest('[data-testid="dropdown-item"]')).toHaveClass(
|
|
'data-highlighted:bg-state-destructive-hover',
|
|
'data-highlighted:text-text-destructive',
|
|
)
|
|
})
|
|
|
|
it('should not render info option for marketplace source', () => {
|
|
render(<OperationDropdown {...defaultProps} source={PluginSource.marketplace} />)
|
|
|
|
expect(screen.queryByText('plugin.detailPanel.operation.info')).not.toBeInTheDocument()
|
|
})
|
|
|
|
it('should not render check update option for marketplace source', () => {
|
|
render(<OperationDropdown {...defaultProps} source={PluginSource.marketplace} />)
|
|
|
|
expect(screen.queryByText('plugin.detailPanel.operation.checkUpdate')).not.toBeInTheDocument()
|
|
})
|
|
|
|
it('should not render view detail for local source', () => {
|
|
render(<OperationDropdown {...defaultProps} source={PluginSource.local} />)
|
|
|
|
expect(screen.queryByText('plugin.detailPanel.operation.viewDetail')).not.toBeInTheDocument()
|
|
})
|
|
|
|
it('should not render view detail for debugging source', () => {
|
|
render(<OperationDropdown {...defaultProps} source={PluginSource.debugging} />)
|
|
|
|
expect(screen.queryByText('plugin.detailPanel.operation.viewDetail')).not.toBeInTheDocument()
|
|
})
|
|
})
|
|
|
|
describe('User Interactions', () => {
|
|
it('should render dropdown menu root', () => {
|
|
render(<OperationDropdown {...defaultProps} />)
|
|
|
|
expect(screen.getByTestId('dropdown-menu')).toBeInTheDocument()
|
|
})
|
|
|
|
it('should call onInfo when info option is clicked', () => {
|
|
render(<OperationDropdown {...defaultProps} source={PluginSource.github} />)
|
|
|
|
fireEvent.click(screen.getByText('plugin.detailPanel.operation.info'))
|
|
|
|
expect(mockOnInfo).toHaveBeenCalledTimes(1)
|
|
})
|
|
|
|
it('should call onCheckVersion when check update option is clicked', () => {
|
|
render(<OperationDropdown {...defaultProps} source={PluginSource.github} />)
|
|
|
|
fireEvent.click(screen.getByText('plugin.detailPanel.operation.checkUpdate'))
|
|
|
|
expect(mockOnCheckVersion).toHaveBeenCalledTimes(1)
|
|
})
|
|
|
|
it('should call onRemove when remove option is clicked', () => {
|
|
render(<OperationDropdown {...defaultProps} />)
|
|
|
|
fireEvent.click(screen.getByText('plugin.detailPanel.operation.remove'))
|
|
|
|
expect(mockOnRemove).toHaveBeenCalledTimes(1)
|
|
})
|
|
|
|
it('should call onViewReadme when view README option is clicked', () => {
|
|
render(<OperationDropdown {...defaultProps} onViewReadme={mockOnViewReadme} />)
|
|
|
|
fireEvent.click(screen.getByText('plugin.detailPanel.operation.viewReadme'))
|
|
|
|
expect(mockOnViewReadme).toHaveBeenCalledTimes(1)
|
|
})
|
|
|
|
it('should have correct href for view detail link', () => {
|
|
render(<OperationDropdown {...defaultProps} source={PluginSource.github} />)
|
|
|
|
const link = screen.getByText('plugin.detailPanel.operation.viewDetail').closest('a')
|
|
expect(link).toHaveAttribute('href', 'https://github.com/test/repo')
|
|
expect(link).toHaveAttribute('target', '_blank')
|
|
})
|
|
})
|
|
|
|
describe('Props Variations', () => {
|
|
it('should handle all plugin sources', () => {
|
|
const sources = [
|
|
PluginSource.github,
|
|
PluginSource.marketplace,
|
|
PluginSource.local,
|
|
PluginSource.debugging,
|
|
]
|
|
|
|
sources.forEach((source) => {
|
|
const { unmount } = render(
|
|
<OperationDropdown {...defaultProps} source={source} />,
|
|
)
|
|
expect(screen.getByTestId('dropdown-menu')).toBeInTheDocument()
|
|
expect(screen.getByText('plugin.detailPanel.operation.remove')).toBeInTheDocument()
|
|
unmount()
|
|
})
|
|
})
|
|
|
|
it('should handle different detail URLs', () => {
|
|
const urls = [
|
|
'https://github.com/owner/repo',
|
|
'https://marketplace.example.com/plugin/123',
|
|
]
|
|
|
|
urls.forEach((url) => {
|
|
const { unmount } = render(
|
|
<OperationDropdown {...defaultProps} detailUrl={url} source={PluginSource.github} />,
|
|
)
|
|
const link = screen.getByText('plugin.detailPanel.operation.viewDetail').closest('a')
|
|
expect(link).toHaveAttribute('href', url)
|
|
unmount()
|
|
})
|
|
})
|
|
})
|
|
|
|
describe('Memoization', () => {
|
|
it('should be wrapped with React.memo', () => {
|
|
expect(OperationDropdown).toBeDefined()
|
|
expect((OperationDropdown as { $$typeof?: symbol }).$$typeof).toBeDefined()
|
|
})
|
|
})
|
|
})
|