Initial commit: hardened DeerFlow factory
Vendored deer-flow upstream (bytedance/deer-flow) plus prompt-injection hardening: - New deerflow.security package: content_delimiter, html_cleaner, sanitizer (8 layers — invisible chars, control chars, symbols, NFC, PUA, tag chars, horizontal whitespace collapse with newline/tab preservation, length cap) - New deerflow.community.searx package: web_search, web_fetch, image_search backed by a private SearX instance, every external string sanitized and wrapped in <<<EXTERNAL_UNTRUSTED_CONTENT>>> delimiters - All native community web providers (ddg_search, tavily, exa, firecrawl, jina_ai, infoquest, image_search) replaced with hard-fail stubs that raise NativeWebToolDisabledError at import time, so a misconfigured tool.use path fails loud rather than silently falling back to unsanitized output - Native client back-doors (jina_client.py, infoquest_client.py) stubbed too - Native-tool tests quarantined under tests/_disabled_native/ (collect_ignore_glob via local conftest.py) - Sanitizer Layer 7 fix: only collapse horizontal whitespace, preserve newlines and tabs so list/table structure survives - Hardened runtime config.yaml references only the searx-backed tools - Factory overlay (backend/) kept in sync with deer-flow tree as a reference / source See HARDENING.md for the full audit trail and verification steps.
This commit is contained in:
230
deer-flow/backend/tests/test_tool_output_truncation.py
Normal file
230
deer-flow/backend/tests/test_tool_output_truncation.py
Normal file
@@ -0,0 +1,230 @@
|
||||
"""Unit tests for tool output truncation functions.
|
||||
|
||||
These functions truncate long tool outputs to prevent context window overflow.
|
||||
- _truncate_bash_output: middle-truncation (head + tail), for bash tool
|
||||
- _truncate_read_file_output: head-truncation, for read_file tool
|
||||
- _truncate_ls_output: head-truncation, for ls tool
|
||||
"""
|
||||
|
||||
from deerflow.sandbox.tools import _truncate_bash_output, _truncate_ls_output, _truncate_read_file_output
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# _truncate_bash_output
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
|
||||
class TestTruncateBashOutput:
|
||||
def test_short_output_returned_unchanged(self):
|
||||
output = "hello world"
|
||||
assert _truncate_bash_output(output, 20000) == output
|
||||
|
||||
def test_output_equal_to_limit_returned_unchanged(self):
|
||||
output = "A" * 20000
|
||||
assert _truncate_bash_output(output, 20000) == output
|
||||
|
||||
def test_long_output_is_truncated(self):
|
||||
output = "A" * 30000
|
||||
result = _truncate_bash_output(output, 20000)
|
||||
assert len(result) < len(output)
|
||||
|
||||
def test_result_never_exceeds_max_chars(self):
|
||||
output = "A" * 30000
|
||||
max_chars = 20000
|
||||
result = _truncate_bash_output(output, max_chars)
|
||||
assert len(result) <= max_chars
|
||||
|
||||
def test_head_is_preserved(self):
|
||||
head = "HEAD_CONTENT"
|
||||
output = head + "M" * 30000
|
||||
result = _truncate_bash_output(output, 20000)
|
||||
assert result.startswith(head)
|
||||
|
||||
def test_tail_is_preserved(self):
|
||||
tail = "TAIL_CONTENT"
|
||||
output = "M" * 30000 + tail
|
||||
result = _truncate_bash_output(output, 20000)
|
||||
assert result.endswith(tail)
|
||||
|
||||
def test_middle_truncation_marker_present(self):
|
||||
output = "A" * 30000
|
||||
result = _truncate_bash_output(output, 20000)
|
||||
assert "[middle truncated:" in result
|
||||
assert "chars skipped" in result
|
||||
|
||||
def test_skipped_chars_count_is_correct(self):
|
||||
output = "A" * 25000
|
||||
result = _truncate_bash_output(output, 20000)
|
||||
# Extract the reported skipped count and verify it equals len(output) - kept.
|
||||
# (kept = max_chars - marker_max_len, where marker_max_len is computed from
|
||||
# the worst-case marker string — so the exact value is implementation-defined,
|
||||
# but it must equal len(output) minus the chars actually preserved.)
|
||||
import re
|
||||
|
||||
m = re.search(r"(\d+) chars skipped", result)
|
||||
assert m is not None
|
||||
reported_skipped = int(m.group(1))
|
||||
# Verify the number is self-consistent: head + skipped + tail == total
|
||||
assert reported_skipped > 0
|
||||
# The marker reports exactly the chars between head and tail
|
||||
head_and_tail = len(output) - reported_skipped
|
||||
assert result.startswith(output[: head_and_tail // 2])
|
||||
|
||||
def test_max_chars_zero_disables_truncation(self):
|
||||
output = "A" * 100000
|
||||
assert _truncate_bash_output(output, 0) == output
|
||||
|
||||
def test_50_50_split(self):
|
||||
# head and tail should each be roughly max_chars // 2
|
||||
output = "H" * 20000 + "M" * 10000 + "T" * 20000
|
||||
result = _truncate_bash_output(output, 20000)
|
||||
assert result[:100] == "H" * 100
|
||||
assert result[-100:] == "T" * 100
|
||||
|
||||
def test_small_max_chars_does_not_crash(self):
|
||||
output = "A" * 1000
|
||||
result = _truncate_bash_output(output, 10)
|
||||
assert len(result) <= 10
|
||||
|
||||
def test_result_never_exceeds_max_chars_various_sizes(self):
|
||||
output = "X" * 50000
|
||||
for max_chars in [100, 1000, 5000, 20000, 49999]:
|
||||
result = _truncate_bash_output(output, max_chars)
|
||||
assert len(result) <= max_chars, f"failed for max_chars={max_chars}"
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# _truncate_read_file_output
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
|
||||
class TestTruncateReadFileOutput:
|
||||
def test_short_output_returned_unchanged(self):
|
||||
output = "def foo():\n pass\n"
|
||||
assert _truncate_read_file_output(output, 50000) == output
|
||||
|
||||
def test_output_equal_to_limit_returned_unchanged(self):
|
||||
output = "X" * 50000
|
||||
assert _truncate_read_file_output(output, 50000) == output
|
||||
|
||||
def test_long_output_is_truncated(self):
|
||||
output = "X" * 60000
|
||||
result = _truncate_read_file_output(output, 50000)
|
||||
assert len(result) < len(output)
|
||||
|
||||
def test_result_never_exceeds_max_chars(self):
|
||||
output = "X" * 60000
|
||||
max_chars = 50000
|
||||
result = _truncate_read_file_output(output, max_chars)
|
||||
assert len(result) <= max_chars
|
||||
|
||||
def test_head_is_preserved(self):
|
||||
head = "import os\nimport sys\n"
|
||||
output = head + "X" * 60000
|
||||
result = _truncate_read_file_output(output, 50000)
|
||||
assert result.startswith(head)
|
||||
|
||||
def test_truncation_marker_present(self):
|
||||
output = "X" * 60000
|
||||
result = _truncate_read_file_output(output, 50000)
|
||||
assert "[truncated:" in result
|
||||
assert "showing first" in result
|
||||
|
||||
def test_total_chars_reported_correctly(self):
|
||||
output = "X" * 60000
|
||||
result = _truncate_read_file_output(output, 50000)
|
||||
assert "of 60000 chars" in result
|
||||
|
||||
def test_start_line_hint_present(self):
|
||||
output = "X" * 60000
|
||||
result = _truncate_read_file_output(output, 50000)
|
||||
assert "start_line" in result
|
||||
assert "end_line" in result
|
||||
|
||||
def test_max_chars_zero_disables_truncation(self):
|
||||
output = "X" * 100000
|
||||
assert _truncate_read_file_output(output, 0) == output
|
||||
|
||||
def test_tail_is_not_preserved(self):
|
||||
# head-truncation: tail should be cut off
|
||||
output = "H" * 50000 + "TAIL_SHOULD_NOT_APPEAR"
|
||||
result = _truncate_read_file_output(output, 50000)
|
||||
assert "TAIL_SHOULD_NOT_APPEAR" not in result
|
||||
|
||||
def test_small_max_chars_does_not_crash(self):
|
||||
output = "X" * 1000
|
||||
result = _truncate_read_file_output(output, 10)
|
||||
assert len(result) <= 10
|
||||
|
||||
def test_result_never_exceeds_max_chars_various_sizes(self):
|
||||
output = "X" * 50000
|
||||
for max_chars in [100, 1000, 5000, 20000, 49999]:
|
||||
result = _truncate_read_file_output(output, max_chars)
|
||||
assert len(result) <= max_chars, f"failed for max_chars={max_chars}"
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# _truncate_ls_output
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
|
||||
class TestTruncateLsOutput:
|
||||
def test_short_output_returned_unchanged(self):
|
||||
output = "dir1\ndir2\nfile1.txt"
|
||||
assert _truncate_ls_output(output, 20000) == output
|
||||
|
||||
def test_output_equal_to_limit_returned_unchanged(self):
|
||||
output = "X" * 20000
|
||||
assert _truncate_ls_output(output, 20000) == output
|
||||
|
||||
def test_long_output_is_truncated(self):
|
||||
output = "\n".join(f"file_{i}.txt" for i in range(5000))
|
||||
result = _truncate_ls_output(output, 20000)
|
||||
assert len(result) < len(output)
|
||||
|
||||
def test_result_never_exceeds_max_chars(self):
|
||||
output = "\n".join(f"subdir/file_{i}.txt" for i in range(5000))
|
||||
max_chars = 20000
|
||||
result = _truncate_ls_output(output, max_chars)
|
||||
assert len(result) <= max_chars
|
||||
|
||||
def test_head_is_preserved(self):
|
||||
head = "first_dir\nsecond_dir\n"
|
||||
output = head + "\n".join(f"file_{i}" for i in range(5000))
|
||||
result = _truncate_ls_output(output, 20000)
|
||||
assert result.startswith(head)
|
||||
|
||||
def test_truncation_marker_present(self):
|
||||
output = "\n".join(f"file_{i}.txt" for i in range(5000))
|
||||
result = _truncate_ls_output(output, 20000)
|
||||
assert "[truncated:" in result
|
||||
assert "showing first" in result
|
||||
|
||||
def test_total_chars_reported_correctly(self):
|
||||
output = "X" * 30000
|
||||
result = _truncate_ls_output(output, 20000)
|
||||
assert "of 30000 chars" in result
|
||||
|
||||
def test_hint_suggests_specific_path(self):
|
||||
output = "X" * 30000
|
||||
result = _truncate_ls_output(output, 20000)
|
||||
assert "Use a more specific path" in result
|
||||
|
||||
def test_max_chars_zero_disables_truncation(self):
|
||||
output = "\n".join(f"file_{i}.txt" for i in range(10000))
|
||||
assert _truncate_ls_output(output, 0) == output
|
||||
|
||||
def test_tail_is_not_preserved(self):
|
||||
output = "H" * 20000 + "TAIL_SHOULD_NOT_APPEAR"
|
||||
result = _truncate_ls_output(output, 20000)
|
||||
assert "TAIL_SHOULD_NOT_APPEAR" not in result
|
||||
|
||||
def test_small_max_chars_does_not_crash(self):
|
||||
output = "\n".join(f"file_{i}.txt" for i in range(100))
|
||||
result = _truncate_ls_output(output, 10)
|
||||
assert len(result) <= 10
|
||||
|
||||
def test_result_never_exceeds_max_chars_various_sizes(self):
|
||||
output = "\n".join(f"file_{i}.txt" for i in range(5000))
|
||||
for max_chars in [100, 1000, 5000, 20000, len(output) - 1]:
|
||||
result = _truncate_ls_output(output, max_chars)
|
||||
assert len(result) <= max_chars, f"failed for max_chars={max_chars}"
|
||||
Reference in New Issue
Block a user