dify/web/app/components/base/prompt-editor/plugins/query-block/query-block-replacement-block.spec.tsx
Poojan b5f62b98f9
test: add unit tests for base-components-part-5 (#32457)
Co-authored-by: sahil-infocusp <73810410+sahil-infocusp@users.noreply.github.com>
2026-02-25 22:13:10 +08:00

93 lines
2.8 KiB
TypeScript

import { LexicalComposer } from '@lexical/react/LexicalComposer'
import { render, waitFor } from '@testing-library/react'
import { QUERY_PLACEHOLDER_TEXT } from '../../constants'
import { CustomTextNode } from '../custom-text/node'
import {
getNodeCount,
renderLexicalEditor,
setEditorRootText,
waitForEditorReady,
} from '../test-helpers'
import { QueryBlockNode } from './index'
import QueryBlockReplacementBlock from './query-block-replacement-block'
const renderReplacementPlugin = (props: {
onInsert?: () => void
} = {}) => {
return renderLexicalEditor({
namespace: 'query-block-replacement-plugin-test',
nodes: [CustomTextNode, QueryBlockNode],
children: (
<QueryBlockReplacementBlock {...props} />
),
})
}
describe('QueryBlockReplacementBlock', () => {
beforeEach(() => {
vi.clearAllMocks()
})
describe('Replacement behavior', () => {
it('should replace placeholder text with query block and call onInsert', async () => {
const onInsert = vi.fn()
const { getEditor } = renderReplacementPlugin({ onInsert })
const editor = await waitForEditorReady(getEditor)
setEditorRootText(editor, `prefix ${QUERY_PLACEHOLDER_TEXT} suffix`, text => new CustomTextNode(text))
await waitFor(() => {
expect(getNodeCount(editor, QueryBlockNode)).toBe(1)
})
expect(onInsert).toHaveBeenCalledTimes(1)
})
it('should not replace text when placeholder is missing', async () => {
const onInsert = vi.fn()
const { getEditor } = renderReplacementPlugin({ onInsert })
const editor = await waitForEditorReady(getEditor)
setEditorRootText(editor, 'plain text without placeholder', text => new CustomTextNode(text))
await waitFor(() => {
expect(getNodeCount(editor, QueryBlockNode)).toBe(0)
})
expect(onInsert).not.toHaveBeenCalled()
})
it('should replace placeholder text without onInsert callback', async () => {
const { getEditor } = renderReplacementPlugin()
const editor = await waitForEditorReady(getEditor)
setEditorRootText(editor, QUERY_PLACEHOLDER_TEXT, text => new CustomTextNode(text))
await waitFor(() => {
expect(getNodeCount(editor, QueryBlockNode)).toBe(1)
})
})
})
describe('Node registration guard', () => {
it('should throw when query node is not registered on editor', () => {
expect(() => {
render(
<LexicalComposer
initialConfig={{
namespace: 'query-block-replacement-plugin-missing-node-test',
onError: (error: Error) => {
throw error
},
nodes: [CustomTextNode],
}}
>
<QueryBlockReplacementBlock />
</LexicalComposer>,
)
}).toThrow('QueryBlockNodePlugin: QueryBlockNode not registered on editor')
})
})
})