mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-05-31 10:35:04 +08:00
71 lines
2.3 KiB
TypeScript
71 lines
2.3 KiB
TypeScript
import type { AbstractNode } from './utils'
|
|
import { generate, normalizeAttrs } from './utils'
|
|
import { render } from '@testing-library/react'
|
|
import '@testing-library/jest-dom'
|
|
|
|
describe('generate icon base utils', () => {
|
|
describe('normalizeAttrs', () => {
|
|
it('should normalize class to className', () => {
|
|
const attrs = { class: 'test-class' }
|
|
const result = normalizeAttrs(attrs)
|
|
expect(result).toEqual({ className: 'test-class' })
|
|
})
|
|
|
|
it('should normalize style string to style object', () => {
|
|
const attrs = { style: 'color:red;font-size:14px;' }
|
|
const result = normalizeAttrs(attrs)
|
|
expect(result).toEqual({ style: { color: 'red', fontSize: '14px' } })
|
|
})
|
|
|
|
it('should handle attributes with dashes and colons', () => {
|
|
const attrs = { 'data-test': 'value', 'xlink:href': 'url' }
|
|
const result = normalizeAttrs(attrs)
|
|
expect(result).toEqual({ dataTest: 'value', xlinkHref: 'url' })
|
|
})
|
|
})
|
|
|
|
describe('generate', () => {
|
|
it('should generate React elements from AbstractNode', () => {
|
|
const node: AbstractNode = {
|
|
name: 'div',
|
|
attributes: { class: 'container' },
|
|
children: [
|
|
{
|
|
name: 'span',
|
|
attributes: { style: 'color:blue;' },
|
|
children: [],
|
|
},
|
|
],
|
|
}
|
|
|
|
const { container } = render(generate(node, 'key'))
|
|
// to svg element
|
|
expect(container.firstChild).toHaveClass('container')
|
|
expect(container.querySelector('span')).toHaveStyle({ color: 'blue' })
|
|
})
|
|
|
|
// add not has children
|
|
it('should generate React elements without children', () => {
|
|
const node: AbstractNode = {
|
|
name: 'div',
|
|
attributes: { class: 'container' },
|
|
}
|
|
const { container } = render(generate(node, 'key'))
|
|
// to svg element
|
|
expect(container.firstChild).toHaveClass('container')
|
|
})
|
|
|
|
it('should merge rootProps when provided', () => {
|
|
const node: AbstractNode = {
|
|
name: 'div',
|
|
attributes: { class: 'container' },
|
|
children: [],
|
|
}
|
|
|
|
const rootProps = { id: 'root' }
|
|
const { container } = render(generate(node, 'key', rootProps))
|
|
expect(container.querySelector('div')).toHaveAttribute('id', 'root')
|
|
})
|
|
})
|
|
})
|