File size: 7,093 Bytes
f120be8 |
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 |
"""
Test suite for Sentiment Evolution Tracker
Basic tests to verify core functionality
"""
import sys
import os
sys.path.insert(0, os.path.join(os.path.dirname(__file__), '..', 'src'))
from sentiment_analyzer import SentimentAnalyzer
from pattern_detector import PatternDetector
from risk_predictor import RiskPredictor
class TestSentimentAnalyzer:
"""Test sentiment analysis functionality"""
def test_positive_sentiment(self):
"""Test positive sentiment detection"""
analyzer = SentimentAnalyzer()
result = analyzer.analyze_evolution([
{"content": "Excelente servicio, muy satisfecho", "timestamp": "2025-11-27 10:00"}
])
score = result.get("current_sentiment", 0)
assert 60 <= score <= 100, f"Expected positive score, got {score}"
print(f"β Positive sentiment: {score}/100")
def test_negative_sentiment(self):
"""Test negative sentiment detection"""
analyzer = SentimentAnalyzer()
result = analyzer.analyze_evolution([
{"content": "Terrible servicio, muy insatisfecho", "timestamp": "2025-11-27 10:00"}
])
score = result.get("current_sentiment", 50)
assert score < 40, f"Expected negative score, got {score}"
print(f"β Negative sentiment: {score}/100")
def test_neutral_sentiment(self):
"""Test neutral sentiment detection"""
analyzer = SentimentAnalyzer()
result = analyzer.analyze_evolution([
{"content": "El servicio existe", "timestamp": "2025-11-27 10:00"}
])
score = result.get("current_sentiment", 50)
assert 40 <= score <= 60, f"Expected neutral score, got {score}"
print(f"β Neutral sentiment: {score}/100")
def test_score_range(self):
"""Test that scores are in valid range"""
analyzer = SentimentAnalyzer()
test_messages = [
"IncreΓble",
"Bueno",
"Normal",
"Malo",
"Terrible"
]
for message in test_messages:
result = analyzer.analyze_evolution([
{"content": message, "timestamp": "2025-11-27 10:00"}
])
score = result.get("current_sentiment", 0)
assert 0 <= score <= 100, f"Score out of range: {score}"
print(f"β All scores in valid range [0-100]")
class TestPatternDetector:
"""Test pattern detection functionality"""
def test_declining_trend(self):
"""Test declining trend detection"""
detector = PatternDetector()
timeline = [
{"score": 80, "time": "10:00"},
{"score": 75, "time": "11:00"},
{"score": 70, "time": "12:00"},
{"score": 65, "time": "13:00"},
{"score": 60, "time": "14:00"}
]
trend = detector.detect_trend([t["score"] for t in timeline])
assert trend == "DECLINING", f"Expected DECLINING, got {trend}"
print(f"β Declining trend detected")
def test_rising_trend(self):
"""Test rising trend detection"""
detector = PatternDetector()
timeline = [
{"score": 30, "time": "10:00"},
{"score": 40, "time": "11:00"},
{"score": 50, "time": "12:00"},
{"score": 60, "time": "13:00"},
{"score": 70, "time": "14:00"}
]
trend = detector.detect_trend([t["score"] for t in timeline])
assert trend == "RISING", f"Expected RISING, got {trend}"
print(f"β Rising trend detected")
def test_stable_trend(self):
"""Test stable trend detection"""
detector = PatternDetector()
timeline = [
{"score": 50, "time": "10:00"},
{"score": 50, "time": "11:00"},
{"score": 50, "time": "12:00"},
{"score": 50, "time": "13:00"},
{"score": 50, "time": "14:00"}
]
trend = detector.detect_trend([t["score"] for t in timeline])
assert trend == "STABLE", f"Expected STABLE, got {trend}"
print(f"β Stable trend detected")
class TestRiskPredictor:
"""Test risk prediction functionality"""
def test_high_risk(self):
"""Test high risk prediction"""
predictor = RiskPredictor()
risk = predictor.predict_churn_risk(30.0, "DECLINING")
assert risk > 0.5, f"Expected high risk, got {risk}"
print(f"β High risk detected: {risk:.1%}")
def test_low_risk(self):
"""Test low risk prediction"""
predictor = RiskPredictor()
risk = predictor.predict_churn_risk(80.0, "RISING")
assert risk < 0.3, f"Expected low risk, got {risk}"
print(f"β Low risk detected: {risk:.1%}")
def test_medium_risk(self):
"""Test medium risk prediction"""
predictor = RiskPredictor()
risk = predictor.predict_churn_risk(50.0, "STABLE")
assert 0.2 <= risk <= 0.8, f"Expected medium risk, got {risk}"
print(f"β Medium risk detected: {risk:.1%}")
def run_all_tests():
"""Run all test suites"""
print("\n" + "="*60)
print("SENTIMENT EVOLUTION TRACKER - TEST SUITE")
print("="*60 + "\n")
tests_passed = 0
tests_total = 0
# Test SentimentAnalyzer
print("Testing SentimentAnalyzer:")
print("-" * 40)
try:
test_sa = TestSentimentAnalyzer()
test_sa.test_positive_sentiment()
tests_passed += 1
test_sa.test_negative_sentiment()
tests_passed += 1
test_sa.test_neutral_sentiment()
tests_passed += 1
test_sa.test_score_range()
tests_passed += 1
tests_total += 4
except Exception as e:
print(f"β Error: {e}")
tests_total += 4
# Test PatternDetector
print("\nTesting PatternDetector:")
print("-" * 40)
try:
test_pd = TestPatternDetector()
test_pd.test_declining_trend()
tests_passed += 1
test_pd.test_rising_trend()
tests_passed += 1
test_pd.test_stable_trend()
tests_passed += 1
tests_total += 3
except Exception as e:
print(f"β Error: {e}")
tests_total += 3
# Test RiskPredictor
print("\nTesting RiskPredictor:")
print("-" * 40)
try:
test_rp = TestRiskPredictor()
test_rp.test_high_risk()
tests_passed += 1
test_rp.test_low_risk()
tests_passed += 1
test_rp.test_medium_risk()
tests_passed += 1
tests_total += 3
except Exception as e:
print(f"β Error: {e}")
tests_total += 3
# Summary
print("\n" + "="*60)
print(f"RESULTS: {tests_passed}/{tests_total} tests passed")
print("="*60 + "\n")
if tests_passed == tests_total:
print("β
All tests passed!")
return True
else:
print(f"β {tests_total - tests_passed} tests failed")
return False
if __name__ == "__main__":
success = run_all_tests()
sys.exit(0 if success else 1)
|