wwf
2025-05-20 938c3e5a587ce950a94964ea509b9e7f8834dfae
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
import { fireEvent, render, screen } from '@testing-library/react'
import ConfigSelect from './index'
 
jest.mock('react-sortablejs', () => ({
  ReactSortable: ({ children }: { children: React.ReactNode }) => <div>{children}</div>,
}))
 
jest.mock('react-i18next', () => ({
  useTranslation: () => ({
    t: (key: string) => key,
  }),
}))
 
describe('ConfigSelect Component', () => {
  const defaultProps = {
    options: ['Option 1', 'Option 2'],
    onChange: jest.fn(),
  }
 
  afterEach(() => {
    jest.clearAllMocks()
  })
 
  it('renders all options', () => {
    render(<ConfigSelect {...defaultProps} />)
 
    defaultProps.options.forEach((option) => {
      expect(screen.getByDisplayValue(option)).toBeInTheDocument()
    })
  })
 
  it('renders add button', () => {
    render(<ConfigSelect {...defaultProps} />)
 
    expect(screen.getByText('appDebug.variableConfig.addOption')).toBeInTheDocument()
  })
 
  it('handles option deletion', () => {
    render(<ConfigSelect {...defaultProps} />)
    const optionContainer = screen.getByDisplayValue('Option 1').closest('div')
    const deleteButton = optionContainer?.querySelector('div[role="button"]')
 
    if (!deleteButton) return
    fireEvent.click(deleteButton)
    expect(defaultProps.onChange).toHaveBeenCalledWith(['Option 2'])
  })
 
  it('handles adding new option', () => {
    render(<ConfigSelect {...defaultProps} />)
    const addButton = screen.getByText('appDebug.variableConfig.addOption')
 
    fireEvent.click(addButton)
 
    expect(defaultProps.onChange).toHaveBeenCalledWith([...defaultProps.options, ''])
  })
 
  it('applies focus styles on input focus', () => {
    render(<ConfigSelect {...defaultProps} />)
    const firstInput = screen.getByDisplayValue('Option 1')
 
    fireEvent.focus(firstInput)
 
    expect(firstInput.closest('div')).toHaveClass('border-components-input-border-active')
  })
 
  it('applies delete hover styles', () => {
    render(<ConfigSelect {...defaultProps} />)
    const optionContainer = screen.getByDisplayValue('Option 1').closest('div')
    const deleteButton = optionContainer?.querySelector('div[role="button"]')
 
    if (!deleteButton) return
    fireEvent.mouseEnter(deleteButton)
    expect(optionContainer).toHaveClass('border-components-input-border-destructive')
  })
 
  it('renders empty state correctly', () => {
    render(<ConfigSelect options={[]} onChange={defaultProps.onChange} />)
 
    expect(screen.queryByRole('textbox')).not.toBeInTheDocument()
    expect(screen.getByText('appDebug.variableConfig.addOption')).toBeInTheDocument()
  })
})