Spaces:
Running
Running
File size: 8,511 Bytes
24f95f0 | 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 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 | """
Test script to verify all requirements for Task 7 are met.
Requirements being tested:
- 4.1: Switchboard classifies using four dimensions (task_family, domain_pack, complexity, execution_mode)
- 4.2: Simple queries (β€5 words) route to solo mode
- 4.3: Medium queries (β€25 words) route to standard mode
- 4.4: Complex queries (>25 words) route to deep mode
- 4.5: Simulation trigger keywords detected
- 4.6: Keywords are environment-configurable
- 4.7: task_family="simulation" when keywords detected
- 5.6: Domain pack detection using domain registry
"""
from app.agents.switchboard import decide_route
from app.domain_packs.init_packs import init_domain_packs
from app.domain_packs.registry import get_registry
from app.config import SIMULATION_TRIGGER_KEYWORDS
def test_requirement_4_1():
"""Test Requirement 4.1: Four-dimension classification"""
print("\n" + "="*60)
print("Testing Requirement 4.1: Four-dimension classification")
print("="*60)
init_domain_packs()
result = decide_route("What is the stock market doing today?")
required_keys = ["task_family", "domain_pack", "complexity", "execution_mode"]
for key in required_keys:
if key in result:
print(f"β
{key}: {result[key]}")
else:
print(f"β Missing dimension: {key}")
return False
print("β
Requirement 4.1 PASSED: All four dimensions present")
return True
def test_requirement_4_2():
"""Test Requirement 4.2: Simple queries (β€5 words) route to solo mode"""
print("\n" + "="*60)
print("Testing Requirement 4.2: Simple queries route to solo mode")
print("="*60)
init_domain_packs()
test_cases = [
"Hello",
"Hi there",
"What is this?",
"Tell me more",
"Show me data",
]
all_passed = True
for query in test_cases:
result = decide_route(query)
word_count = len(query.split())
if word_count <= 5:
if result["complexity"] == "simple" and result["execution_mode"] == "solo":
print(f"β
'{query}' ({word_count} words) -> solo mode")
else:
print(f"β '{query}' ({word_count} words) -> {result['execution_mode']} (expected solo)")
all_passed = False
if all_passed:
print("β
Requirement 4.2 PASSED")
return all_passed
def test_requirement_4_3():
"""Test Requirement 4.3: Medium queries (β€25 words) route to standard mode"""
print("\n" + "="*60)
print("Testing Requirement 4.3: Medium queries route to standard mode")
print("="*60)
init_domain_packs()
test_cases = [
"Can you tell me about the weather today?",
"What are the latest developments in artificial intelligence and machine learning?",
"I would like to know more about the current economic situation in the United States.",
]
all_passed = True
for query in test_cases:
result = decide_route(query)
word_count = len(query.split())
if 5 < word_count <= 25:
if result["complexity"] == "medium" and result["execution_mode"] == "standard":
print(f"β
'{query[:50]}...' ({word_count} words) -> standard mode")
else:
print(f"β '{query[:50]}...' ({word_count} words) -> {result['execution_mode']} (expected standard)")
all_passed = False
if all_passed:
print("β
Requirement 4.3 PASSED")
return all_passed
def test_requirement_4_4():
"""Test Requirement 4.4: Complex queries (>25 words) route to deep mode"""
print("\n" + "="*60)
print("Testing Requirement 4.4: Complex queries route to deep mode")
print("="*60)
init_domain_packs()
query = "I need a comprehensive analysis of the current market conditions including economic indicators, sector performance, and potential risks that could impact my investment portfolio over the next quarter with detailed recommendations."
result = decide_route(query)
word_count = len(query.split())
if word_count > 25:
if result["complexity"] == "complex" and result["execution_mode"] == "deep":
print(f"β
Query ({word_count} words) -> deep mode")
print("β
Requirement 4.4 PASSED")
return True
else:
print(f"β Query ({word_count} words) -> {result['execution_mode']} (expected deep)")
return False
else:
print(f"β Test query has only {word_count} words (need >25)")
return False
def test_requirement_4_5_and_4_7():
"""Test Requirements 4.5 & 4.7: Simulation keyword detection and task_family setting"""
print("\n" + "="*60)
print("Testing Requirements 4.5 & 4.7: Simulation keyword detection")
print("="*60)
init_domain_packs()
# Test with various simulation keywords
test_cases = [
"simulate the market reaction",
"predict the outcome",
"what if scenario analysis",
"model the reaction",
"test different scenarios",
]
all_passed = True
for query in test_cases:
result = decide_route(query)
if result["task_family"] == "simulation":
print(f"β
'{query}' -> task_family=simulation")
else:
print(f"β '{query}' -> task_family={result['task_family']} (expected simulation)")
all_passed = False
if all_passed:
print("β
Requirements 4.5 & 4.7 PASSED")
return all_passed
def test_requirement_4_6():
"""Test Requirement 4.6: Keywords are environment-configurable"""
print("\n" + "="*60)
print("Testing Requirement 4.6: Keywords are environment-configurable")
print("="*60)
# Check that keywords are loaded from config
if SIMULATION_TRIGGER_KEYWORDS:
print(f"β
Simulation keywords loaded from config: {len(SIMULATION_TRIGGER_KEYWORDS)} keywords")
print(f" Sample keywords: {SIMULATION_TRIGGER_KEYWORDS[:5]}")
print("β
Requirement 4.6 PASSED")
return True
else:
print("β No simulation keywords found in config")
return False
def test_requirement_5_6():
"""Test Requirement 5.6: Domain pack detection using domain registry"""
print("\n" + "="*60)
print("Testing Requirement 5.6: Domain pack detection")
print("="*60)
init_domain_packs()
registry = get_registry()
# Test finance domain detection
test_cases = [
("What is the stock market doing?", "finance"),
("Tell me about NASDAQ", "finance"),
("How is the weather?", "general"),
("What are earnings reports?", "finance"),
]
all_passed = True
for query, expected_domain in test_cases:
result = decide_route(query)
detected = result["domain_pack"]
if detected == expected_domain:
print(f"β
'{query}' -> domain={detected}")
else:
print(f"β '{query}' -> domain={detected} (expected {expected_domain})")
all_passed = False
if all_passed:
print("β
Requirement 5.6 PASSED")
return all_passed
def run_all_tests():
"""Run all requirement tests"""
print("\n" + "="*60)
print("TASK 7 REQUIREMENTS VERIFICATION")
print("="*60)
tests = [
("4.1", test_requirement_4_1),
("4.2", test_requirement_4_2),
("4.3", test_requirement_4_3),
("4.4", test_requirement_4_4),
("4.5 & 4.7", test_requirement_4_5_and_4_7),
("4.6", test_requirement_4_6),
("5.6", test_requirement_5_6),
]
results = {}
for req_id, test_func in tests:
try:
results[req_id] = test_func()
except Exception as e:
print(f"\nβ Requirement {req_id} FAILED with exception: {e}")
results[req_id] = False
# Summary
print("\n" + "="*60)
print("SUMMARY")
print("="*60)
passed = sum(1 for v in results.values() if v)
total = len(results)
for req_id, passed_test in results.items():
status = "β
PASSED" if passed_test else "β FAILED"
print(f"Requirement {req_id}: {status}")
print(f"\nTotal: {passed}/{total} requirements passed")
return all(results.values())
if __name__ == "__main__":
success = run_all_tests()
exit(0 if success else 1)
|