Spaces:
Sleeping
Sleeping
File size: 12,525 Bytes
aa69d4c | 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 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 | #!/usr/bin/env python3
"""
Production simulation test to validate all deployment fixes.
Simulates the HuggingFace Spaces environment and tests the complete system.
"""
import os
import sys
import time
import subprocess
import threading
import requests
from datetime import datetime
# Add the parent directory to Python path
current_dir = os.path.dirname(os.path.abspath(__file__))
sys.path.insert(0, current_dir)
class ProductionSimulator:
def __init__(self):
self.original_env = {}
self.test_results = {}
def setup_production_environment(self):
"""Set up environment variables to simulate HuggingFace Spaces deployment."""
print("π§ Setting up production environment simulation...")
# Store original environment
env_vars_to_set = {
"AUTO_INGEST": "true",
"LANGUAGE_FILTER": "English",
"PORT": "7860",
"HF_HOME": "/tmp/huggingface",
"TRANSFORMERS_CACHE": "/tmp/transformers",
"VECTOR_PERSIST_DIR": "/tmp/vector_db"
}
for key, value in env_vars_to_set.items():
self.original_env[key] = os.environ.get(key)
os.environ[key] = value
print(f" β
{key}={value}")
def cleanup_environment(self):
"""Restore original environment."""
print("π§Ή Cleaning up environment...")
for key, original_value in self.original_env.items():
if original_value is None:
os.environ.pop(key, None)
else:
os.environ[key] = original_value
def test_app_initialization(self):
"""Test Flask app initialization with production settings."""
print("\nπ Testing App Initialization...")
try:
# Clear any existing lock files
lock_file = "/tmp/ingest.lock" if os.name != 'nt' else "ingest.lock"
if os.path.exists(lock_file):
os.remove(lock_file)
print(" ποΈ Cleared existing lock file")
# Import and test app components
from cve_factchecker.app import app, _safe_initialize_system, INGEST_STATUS, AUTO_INGEST
print(f" π AUTO_INGEST: {AUTO_INGEST}")
print(f" π INGEST_STATUS: {INGEST_STATUS}")
# Test system initialization
_safe_initialize_system()
print(" β
System initialization completed")
# Check if background thread should start
from cve_factchecker.app import should_start_ingestion
print(f" π Should start ingestion: {should_start_ingestion}")
self.test_results["app_initialization"] = {
"success": True,
"auto_ingest_enabled": AUTO_INGEST,
"ingestion_status": INGEST_STATUS.copy()
}
except Exception as e:
print(f" β App initialization failed: {e}")
self.test_results["app_initialization"] = {
"success": False,
"error": str(e)
}
return False
return True
def test_health_endpoint_behavior(self):
"""Test the enhanced health endpoint."""
print("\nπ Testing Health Endpoint...")
try:
from cve_factchecker.app import app
with app.test_client() as client:
# Test basic health check
response = client.get('/health')
health_data = response.get_json()
print(f" π Health Status: {health_data.get('status')}")
print(f" π Vector Store Populated: {health_data.get('vector_store_populated', 'unknown')}")
print(f" π Sample Documents: {health_data.get('sample_documents', 0)}")
# Test ingestion trigger if vector store is empty
if not health_data.get('vector_store_populated', False):
print(" π Testing ingestion trigger...")
trigger_response = client.get('/health?trigger_ingestion=true')
trigger_data = trigger_response.get_json()
print(f" π Trigger Response: {trigger_data.get('message', 'No message')}")
self.test_results["health_endpoint"] = {
"success": True,
"health_data": health_data,
"trigger_tested": not health_data.get('vector_store_populated', False)
}
except Exception as e:
print(f" β Health endpoint test failed: {e}")
self.test_results["health_endpoint"] = {
"success": False,
"error": str(e)
}
return False
return True
def test_background_ingestion_flow(self):
"""Test the complete background ingestion flow."""
print("\nπ Testing Background Ingestion Flow...")
try:
from cve_factchecker.app import _background_ingest, INGEST_STATUS, _cleanup_stale_locks
# Test stale lock cleanup
print(" π§Ή Testing stale lock cleanup...")
_cleanup_stale_locks()
# Reset ingestion status
INGEST_STATUS.update({"finished": False, "test_mode": True})
# Run background ingestion in test mode
print(" π Running background ingestion...")
start_time = time.time()
# Use a thread to avoid blocking
ingestion_thread = threading.Thread(target=_background_ingest, daemon=True)
ingestion_thread.start()
# Wait for completion with timeout
timeout = 60 # 1 minute timeout
while not INGEST_STATUS.get("finished") and (time.time() - start_time) < timeout:
time.sleep(1)
print(f" β³ Waiting for ingestion... ({time.time() - start_time:.0f}s)")
ingestion_time = time.time() - start_time
if INGEST_STATUS.get("finished"):
print(f" β
Ingestion completed in {ingestion_time:.1f}s")
print(f" π Synced articles: {INGEST_STATUS.get('synced', 0)}")
if INGEST_STATUS.get("error"):
print(f" β οΈ Ingestion error: {INGEST_STATUS.get('error')}")
self.test_results["background_ingestion"] = {
"success": True,
"completion_time": ingestion_time,
"final_status": INGEST_STATUS.copy()
}
else:
print(f" β Ingestion timed out after {timeout}s")
self.test_results["background_ingestion"] = {
"success": False,
"error": "Timeout",
"partial_status": INGEST_STATUS.copy()
}
return False
except Exception as e:
print(f" β Background ingestion test failed: {e}")
self.test_results["background_ingestion"] = {
"success": False,
"error": str(e)
}
return False
return True
def test_fact_checking_after_ingestion(self):
"""Test fact-checking functionality after ingestion."""
print("\nπ Testing Fact-Checking After Ingestion...")
try:
from cve_factchecker.app import app
with app.test_client() as client:
test_claims = [
"Security researchers discovered a new vulnerability",
"Cyberattack hits major corporation",
"Malware targets government systems"
]
for claim in test_claims:
print(f" π Testing claim: {claim[:50]}...")
response = client.post('/fact-check', json={"claim": claim})
result = response.get_json()
print(f" π Verdict: {result.get('verdict', 'Unknown')}")
print(f" π Sources: {result.get('sources_used', 0)}")
print(f" π Confidence: {result.get('confidence', 0)}")
if result.get('verdict') not in ['ERROR', 'INITIALIZING']:
print(f" β
Fact-check working")
break
else:
print(f" β No successful fact-checks")
return False
self.test_results["fact_checking"] = {
"success": True,
"test_claims": len(test_claims),
"sample_result": result
}
except Exception as e:
print(f" β Fact-checking test failed: {e}")
self.test_results["fact_checking"] = {
"success": False,
"error": str(e)
}
return False
return True
def test_production_simulation(self):
"""Run complete production simulation test."""
print("π CVE Fact Checker - Production Simulation Test")
print("=" * 80)
success = True
try:
self.setup_production_environment()
# Run tests in sequence
tests = [
("App Initialization", self.test_app_initialization),
("Health Endpoint", self.test_health_endpoint_behavior),
("Background Ingestion", self.test_background_ingestion_flow),
("Fact-Checking", self.test_fact_checking_after_ingestion)
]
for test_name, test_func in tests:
print(f"\n{'='*20} {test_name} {'='*20}")
test_success = test_func()
success = success and test_success
if not test_success:
print(f"β {test_name} failed - stopping tests")
break
else:
print(f"β
{test_name} passed")
finally:
self.cleanup_environment()
return success
def print_summary(self):
"""Print test summary."""
print("\nπ Production Simulation Summary")
print("=" * 50)
total_tests = len(self.test_results)
passed_tests = sum(1 for result in self.test_results.values() if result.get("success"))
print(f"Tests Run: {total_tests}")
print(f"Tests Passed: {passed_tests}")
print(f"Tests Failed: {total_tests - passed_tests}")
for test_name, result in self.test_results.items():
status = "β
PASS" if result.get("success") else "β FAIL"
print(f"{status} {test_name.replace('_', ' ').title()}")
if not result.get("success") and result.get("error"):
print(f" Error: {result['error']}")
overall_success = passed_tests == total_tests
print(f"\nOverall Result: {'β
SUCCESS' if overall_success else 'β FAILURE'}")
return overall_success
def main():
"""Main test function."""
simulator = ProductionSimulator()
try:
success = simulator.test_production_simulation()
simulator.print_summary()
if success:
print("\nπ Production simulation successful!")
print("π‘ System is ready for deployment to HuggingFace Spaces")
else:
print("\nπ¨ Production simulation failed!")
print("π‘ Issues need to be resolved before deployment")
return success
except KeyboardInterrupt:
print("\nβΉοΈ Test interrupted by user")
return False
except Exception as e:
print(f"\nβ Test suite failed: {e}")
return False
if __name__ == "__main__":
success = main()
sys.exit(0 if success else 1) |