Spaces:
Sleeping
Sleeping
File size: 3,073 Bytes
0c591a7 53fe655 0c591a7 53fe655 0c591a7 53fe655 0c591a7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 |
#!/usr/bin/env python3
"""
Comprehensive test for self-correction mechanisms in the SWOT Analysis Agent
Tests multiple failure scenarios to verify the self-correcting loop functionality.
"""
import sys
import os
sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), "..")))
from src.graph_cyclic import run_self_correcting_workflow
def test_analyzer_failure():
"""Test self-correction when analyzer produces poor quality output"""
print("π§ͺ Testing Analyzer Failure Scenario...")
# Monkey patch the analyzer node to force poor quality
def force_poor_analyzer(state):
"""Force a poor quality draft to trigger revision loop"""
state["draft_report"] = "Bad analysis. No details. Incomplete."
print("β οΈ FORCED POOR QUALITY: Overriding with very weak content")
return state
# Temporarily replace analyzer in the workflow
import src.nodes.analyzer
original_analyzer = src.nodes.analyzer.analyzer_node
src.nodes.analyzer.analyzer_node = force_poor_analyzer
try:
result = run_self_correcting_workflow("Test Company")
print(f"β
Test completed with {result['revision_count']} revisions")
print(f"π Final score: {result['score']}/10")
finally:
# Restore original function
src.nodes.analyzer.analyzer_node = original_analyzer
def test_critic_failure():
"""Test self-correction when critic gives low scores"""
print("\nπ§ͺ Testing Critic Failure Scenario...")
# Monkey patch the critic to force a low score
def force_low_score_critic(state):
"""Force a low score to trigger revision loop"""
state["score"] = 3 # Low score to force revision
state["critique"] = "Forced low score for testing self-correction loop"
print("β οΈ FORCED LOW SCORE: 3/10 to trigger revision loop")
return state
# Temporarily replace critic in the workflow
import src.nodes.critic
original_critic = src.nodes.critic.critic_node
src.nodes.critic.critic_node = force_low_score_critic
try:
result = run_self_correcting_workflow("Test Company")
print(f"β
Test completed with {result['revision_count']} revisions")
print(f"π Final score: {result['score']}/10")
finally:
# Restore original function
src.nodes.critic.critic_node = original_critic
def test_workflow_failure():
"""Test self-correction with custom workflow manipulation"""
print("\nπ§ͺ Testing Workflow Failure Scenario...")
# This test would implement the custom workflow approach from test_force_failure.py
# For brevity, we'll just indicate this as a placeholder
print("π Custom workflow failure test placeholder")
print("β
Test framework ready for custom workflow testing")
if __name__ == "__main__":
print("π Running Self-Correction Test Suite")
print("=" * 50)
test_analyzer_failure()
test_critic_failure()
test_workflow_failure()
print("\nπ All self-correction tests completed!")
|