# # Copyright 2026 The InfiniFlow Authors. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # import importlib.util import sys import types from pathlib import Path import pytest _REPO = Path(__file__).parents[4] @pytest.fixture def markdown_element_extractor(monkeypatch): try: import markdown # noqa: F401 except ModuleNotFoundError: markdown_stub = types.ModuleType("markdown") markdown_stub.markdown = lambda text, extensions=None: text monkeypatch.setitem(sys.modules, "markdown", markdown_stub) spec = importlib.util.spec_from_file_location( "test_markdown_parser_dynamic", _REPO / "deepdoc" / "parser" / "markdown_parser.py", ) assert spec and spec.loader mod = importlib.util.module_from_spec(spec) spec.loader.exec_module(mod) return mod.MarkdownElementExtractor @pytest.fixture def markdown_parser_module(monkeypatch): try: import markdown # noqa: F401 except ModuleNotFoundError: markdown_stub = types.ModuleType("markdown") markdown_stub.markdown = lambda text, extensions=None: text monkeypatch.setitem(sys.modules, "markdown", markdown_stub) spec = importlib.util.spec_from_file_location( "test_markdown_parser_dynamic_module", _REPO / "deepdoc" / "parser" / "markdown_parser.py", ) assert spec and spec.loader mod = importlib.util.module_from_spec(spec) spec.loader.exec_module(mod) return mod @pytest.mark.p2 class TestMarkdownElementExtractorFences: def test_custom_delimiter_preserves_backtick_fence(self, markdown_element_extractor): text = "# Title\n```python\nprint('a')\nprint('b')\n```\nAfter" sections = markdown_element_extractor(text).extract_elements(delimiter="`\n`", include_meta=True) assert [section["content"] for section in sections] == [ "# Title", "```python\nprint('a')\nprint('b')\n```", "After", ] assert sections[1]["start_line"] == 1 assert sections[1]["end_line"] == 4 def test_custom_delimiter_still_splits_outside_fences(self, markdown_element_extractor): text = "Before\n~~~python\nprint('inside')\n~~~\nAfter" sections = markdown_element_extractor(text).extract_elements(delimiter="`\n`") assert sections == [ "Before", "~~~python\nprint('inside')\n~~~", "After", ] def test_tilde_fence_is_code_block_without_custom_delimiter(self, markdown_element_extractor): text = "# Title\n~~~python\nprint('a')\n~~~\nAfter" sections = markdown_element_extractor(text).extract_elements(include_meta=True) assert [section["content"] for section in sections] == [ "# Title", "~~~python\nprint('a')\n~~~", "After", ] assert sections[1]["type"] == "code_block" assert sections[1]["start_line"] == 1 assert sections[1]["end_line"] == 3 def test_longer_outer_fence_preserves_nested_shorter_fence(self, markdown_element_extractor): text = "````markdown\n```python\nprint('inner')\n```\n````\nAfter" sections = markdown_element_extractor(text).extract_elements(include_meta=True) assert [section["content"] for section in sections] == [ "````markdown\n```python\nprint('inner')\n```\n````", "After", ] assert sections[0]["type"] == "code_block" assert sections[0]["start_line"] == 0 assert sections[0]["end_line"] == 4 def test_custom_delimiter_preserves_longer_outer_fence(self, markdown_element_extractor): text = "Before\n````markdown\n```python\nprint('inner')\n```\n````\nAfter" sections = markdown_element_extractor(text).extract_elements(delimiter="`\n`") assert sections == [ "Before", "````markdown\n```python\nprint('inner')\n```\n````", "After", ] @pytest.mark.p2 class TestMarkdownElementExtractorTables: def test_custom_delimiter_preserves_pipe_table(self, markdown_element_extractor): text = "# Title\n\n| Name | Value |\n| --- | --- |\n| A | 1 |\n| B | 2 |\n\nAfter" sections = markdown_element_extractor(text).extract_elements(delimiter="`\n`", include_meta=True) assert [section["content"] for section in sections] == [ "# Title", "| Name | Value |\n| --- | --- |\n| A | 1 |\n| B | 2 |", "After", ] assert sections[1]["start_line"] == 2 assert sections[1]["end_line"] == 5 def test_custom_delimiter_preserves_borderless_pipe_table(self, markdown_element_extractor): text = "Before\nName | Value\n--- | ---\nA | 1\nB | 2\nAfter" sections = markdown_element_extractor(text).extract_elements(delimiter="`\n`") assert sections == [ "Before", "Name | Value\n--- | ---\nA | 1\nB | 2", "After", ] @pytest.mark.p2 def test_custom_delimiter_preserves_gfm_short_separator_table(self, markdown_element_extractor): text = "Before\n| Name | Value |\n| :-- | --: |\n| A | 1 |\nAfter" sections = markdown_element_extractor(text).extract_elements(delimiter="`\n`") assert sections == [ "Before", "| Name | Value |\n| :-- | --: |\n| A | 1 |", "After", ] def test_custom_delimiter_preserves_html_table(self, markdown_element_extractor): text = "Before\n\n\n\n
A
B
\nAfter" sections = markdown_element_extractor(text).extract_elements(delimiter="`\n`") assert sections == [ "Before", "\n\n\n
A
B
", "After", ] @pytest.mark.p2 class TestMarkdownTableDedup: def test_separate_tables_removes_pipe_table_from_text_sections(self, markdown_parser_module): """Ensure separated pipe tables do not leak back into text chunks.""" text = "Before\n\n| Name | Value |\n| --- | --- |\n| A | 1 |\n| B | 2 |\n\nAfter" parser = markdown_parser_module.RAGFlowMarkdownParser() remainder, tables = parser.extract_tables_and_remainder(f"{text}\n", separate_tables=True) sections = markdown_parser_module.MarkdownElementExtractor(remainder).extract_elements(include_meta=False) assert len(tables) == 1 assert "| Name | Value |" not in remainder assert len(sections) == 1 assert "Before" in sections[0] assert "After" in sections[0] assert "| Name | Value |" not in sections[0] def test_pipe_table_inside_code_fence_is_not_extracted(self, markdown_parser_module): """A pipe table shown as an example inside a fenced code block must stay put; extracting it would hollow out the fence and emit a bogus table chunk.""" text = "# Guide\n\nWrite a table like this:\n\n```markdown\n| Name | Value |\n| --- | --- |\n| A | 1 |\n```\n\nDone.\n" parser = markdown_parser_module.RAGFlowMarkdownParser() remainder, tables = parser.extract_tables_and_remainder(text, separate_tables=True) assert tables == [] assert "| Name | Value |" in remainder assert "```markdown" in remainder def test_html_table_inside_code_fence_is_left_intact(self, markdown_parser_module): """An HTML example inside a fence must keep its attributes and its body: the tag-stripping and html-table passes have to respect fences too.""" text = '# Guide\n\nEmbed a table like this:\n\n```html\n\n\n
A
\n```\n\nDone.\n' parser = markdown_parser_module.RAGFlowMarkdownParser() remainder, tables = parser.extract_tables_and_remainder(text, separate_tables=True) assert tables == [] assert 'border="1"' in remainder assert "A" in remainder def test_bare_html_table_inside_code_fence_is_not_extracted(self, markdown_parser_module): """A bare (no attributes) inside a fence hits the html-table extraction pass (the `
` fast-path guard fires); that pass must skip fenced matches too, not just the tag-stripping pass.""" text = "# Guide\n\n```html\n
\n\n
A
\n```\n\nDone.\n" parser = markdown_parser_module.RAGFlowMarkdownParser() remainder, tables = parser.extract_tables_and_remainder(text, separate_tables=True) assert tables == [] assert "" in remainder assert "" in remainder def test_real_table_still_extracted_alongside_a_fenced_example(self, markdown_parser_module): """Shielding fences must not stop genuine tables outside them from being split.""" text = "```markdown\n| Name | Value |\n| --- | --- |\n| A | 1 |\n```\n\n| X | Y |\n| --- | --- |\n| 9 | 8 |\n\ntail\n" parser = markdown_parser_module.RAGFlowMarkdownParser() remainder, tables = parser.extract_tables_and_remainder(text, separate_tables=True) assert len(tables) == 1 assert "| X | Y |" in tables[0] assert "| X | Y |" not in remainder assert "| Name | Value |" in remainder class TestMarkdownElementExtractorDelimiterHeaders: def test_custom_delimiter_merges_consecutive_lone_headers_with_body(self, markdown_element_extractor): text = "# Title\n## Intro\nBody paragraph" sections = markdown_element_extractor(text).extract_elements(delimiter="`\n`") assert sections == ["# Title\n## Intro\nBody paragraph"] def test_custom_delimiter_merges_single_lone_header_with_body(self, markdown_element_extractor): text = "## Section\nBody paragraph" sections = markdown_element_extractor(text).extract_elements(delimiter="`\n`") assert sections == ["## Section\nBody paragraph"]
A