mirror of
https://github.com/langgenius/dify.git
synced 2026-03-27 23:30:54 +08:00
Signed-off-by: edvatar <88481784+toroleapinc@users.noreply.github.com> Signed-off-by: -LAN- <laipz8200@outlook.com> Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: majiayu000 <1835304752@qq.com> Co-authored-by: Poojan <poojan@infocusp.com> Co-authored-by: sahil-infocusp <73810410+sahil-infocusp@users.noreply.github.com> Co-authored-by: 非法操作 <hjlarry@163.com> Co-authored-by: Pandaaaa906 <ye.pandaaaa906@gmail.com> Co-authored-by: Asuka Minato <i@asukaminato.eu.org> Co-authored-by: heyszt <270985384@qq.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: Ijas <ijas.ahmd.ap@gmail.com> Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Co-authored-by: 木之本澪 <kinomotomiovo@gmail.com> Co-authored-by: KinomotoMio <200703522+KinomotoMio@users.noreply.github.com> Co-authored-by: 不做了睡大觉 <64798754+stakeswky@users.noreply.github.com> Co-authored-by: User <user@example.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: edvatar <88481784+toroleapinc@users.noreply.github.com> Co-authored-by: -LAN- <laipz8200@outlook.com> Co-authored-by: Leilei <138381132+Inlei@users.noreply.github.com> Co-authored-by: HaKu <104669497+haku-ink@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: wangxiaolei <fatelei@gmail.com> Co-authored-by: Varun Chawla <34209028+veeceey@users.noreply.github.com> Co-authored-by: Stephen Zhou <38493346+hyoban@users.noreply.github.com> Co-authored-by: yyh <yuanyouhuilyz@gmail.com> Co-authored-by: yyh <92089059+lyzno1@users.noreply.github.com> Co-authored-by: tda <95275462+tda1017@users.noreply.github.com> Co-authored-by: root <root@DESKTOP-KQLO90N> Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai> Co-authored-by: Niels Kaspers <153818647+nielskaspers@users.noreply.github.com> Co-authored-by: hj24 <mambahj24@gmail.com> Co-authored-by: Tyson Cung <45380903+tysoncung@users.noreply.github.com> Co-authored-by: Stephen Zhou <hi@hyoban.cc> Co-authored-by: FFXN <31929997+FFXN@users.noreply.github.com> Co-authored-by: slegarraga <64795732+slegarraga@users.noreply.github.com> Co-authored-by: 99 <wh2099@pm.me> Co-authored-by: Br1an <932039080@qq.com> Co-authored-by: L1nSn0w <l1nsn0w@qq.com> Co-authored-by: Yunlu Wen <yunlu.wen@dify.ai> Co-authored-by: akkoaya <151345394+akkoaya@users.noreply.github.com> Co-authored-by: 盐粒 Yanli <yanli@dify.ai> Co-authored-by: lif <1835304752@qq.com> Co-authored-by: weiguang li <codingpunk@gmail.com> Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com> Co-authored-by: crazywoola <100913391+crazywoola@users.noreply.github.com> Co-authored-by: HanWenbo <124024253+hwb96@users.noreply.github.com> Co-authored-by: Coding On Star <447357187@qq.com> Co-authored-by: CodingOnStar <hanxujiang@dify.com> Co-authored-by: Stable Genius <stablegenius043@gmail.com> Co-authored-by: Stable Genius <259448942+stablegenius49@users.noreply.github.com> Co-authored-by: ふるい <46769295+Echo0ff@users.noreply.github.com> Co-authored-by: Xiyuan Chen <52963600+GareArc@users.noreply.github.com>
104 lines
3.4 KiB
TypeScript
104 lines
3.4 KiB
TypeScript
import type { AbstractNode } from '../utils'
|
|
import { render } from '@testing-library/react'
|
|
import { generate, normalizeAttrs } from '../utils'
|
|
|
|
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' })
|
|
})
|
|
|
|
it('should filter out editor metadata attributes', () => {
|
|
const attrs = {
|
|
'inkscape:version': '1.0',
|
|
'sodipodi:docname': 'icon.svg',
|
|
'xmlns:inkscape': 'http...',
|
|
'xmlns:sodipodi': 'http...',
|
|
'xmlns:svg': 'http...',
|
|
'data-name': 'Layer 1',
|
|
'xmlns-inkscape': 'http...',
|
|
'xmlns-sodipodi': 'http...',
|
|
'xmlns-svg': 'http...',
|
|
'dataName': 'Layer 1',
|
|
'valid': 'value',
|
|
}
|
|
expect(normalizeAttrs(attrs)).toEqual({ valid: 'value' })
|
|
})
|
|
|
|
it('should ignore undefined attribute values and handle default argument', () => {
|
|
expect(normalizeAttrs()).toEqual({})
|
|
expect(normalizeAttrs({ missing: undefined, valid: 'true' })).toEqual({ valid: 'true' })
|
|
})
|
|
})
|
|
|
|
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: 'rgb(0, 0, 255)' })
|
|
})
|
|
|
|
// 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: [{ name: 'span', attributes: {} }],
|
|
}
|
|
|
|
const rootProps = { id: 'root' }
|
|
const { container } = render(generate(node, 'key', rootProps))
|
|
expect(container.querySelector('div')).toHaveAttribute('id', 'root')
|
|
expect(container.querySelector('span')).toBeInTheDocument()
|
|
})
|
|
|
|
it('should handle undefined children with rootProps', () => {
|
|
const node: AbstractNode = {
|
|
name: 'div',
|
|
attributes: { class: 'container' },
|
|
}
|
|
|
|
const rootProps = { id: 'root' }
|
|
const { container } = render(generate(node, 'key', rootProps))
|
|
expect(container.querySelector('div')).toHaveAttribute('id', 'root')
|
|
})
|
|
})
|
|
})
|