Spaces:
Sleeping
Sleeping
File size: 9,208 Bytes
04653e2 | 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 | """Integration tests to validate all resume claims."""
import sys
import os
sys.path.append('..')
import pytest
import torch
from pathlib import Path
class TestResumeClaimValidation:
"""Validate each claim from the resume."""
def test_sentence_transformers_integration(self):
"""Verify Sentence Transformers is properly integrated."""
from app.vector_store import VectorStore
vector_store = VectorStore()
assert vector_store.model is not None
assert hasattr(vector_store.model, 'encode')
# Test encoding
test_text = "def hello(): return 'world'"
embedding = vector_store.model.encode([test_text])
assert embedding.shape[0] == 1
assert embedding.shape[1] > 0 # Has dimensions
print("✅ Sentence Transformers integration verified")
def test_faiss_integration(self):
"""Verify FAISS indexing works."""
from app.vector_store import VectorStore
vector_store = VectorStore()
test_files = [
("test1.py", "def func1(): pass"),
("test2.py", "def func2(): pass")
]
embeddings, files = vector_store.add_documents(test_files)
assert embeddings.shape[0] == 2
# Test search
indices = vector_store.search("function definition", k=1)
assert len(indices) > 0
print("✅ FAISS integration verified")
def test_langchain_integration(self):
"""Verify LangChain RAG pipeline exists."""
from app.langchain_rag import LangChainRAGPipeline, HuggingFaceLLM
# Check classes exist
assert HuggingFaceLLM is not None
assert LangChainRAGPipeline is not None
# Check LangChain imports
from langchain.prompts import PromptTemplate
from langchain.chains import LLMChain
assert PromptTemplate is not None
assert LLMChain is not None
print("✅ LangChain integration verified")
def test_vector_store_configuration(self):
"""Verify vector store configuration."""
from app.config import Config
assert hasattr(Config, 'FAISS_INDEX_PATH')
assert Config.FAISS_INDEX_PATH == "code_index"
print("✅ Vector store configuration verified")
def test_lora_configuration(self):
"""Verify LoRA fine-tuning support."""
from app.lora_model import OptimizedModelLoader
from peft import LoraConfig
assert OptimizedModelLoader is not None
assert LoraConfig is not None
# Check LoRA config parameters
from app.config import Config
assert hasattr(Config, 'LORA_R')
assert hasattr(Config, 'LORA_ALPHA')
assert hasattr(Config, 'LORA_TARGET_MODULES')
assert Config.LORA_R == 8
assert Config.LORA_ALPHA == 16
print("✅ LoRA configuration verified")
def test_quantization_support(self):
"""Verify 8-bit quantization is configured."""
from transformers import BitsAndBytesConfig
from app.config import Config
assert BitsAndBytesConfig is not None
assert hasattr(Config, 'ENABLE_QUANTIZATION')
assert hasattr(Config, 'USE_GPU_OFFLOAD')
print("✅ Quantization support verified")
def test_performance_tracking(self):
"""Verify performance tracking system."""
from app.performance_tracker import PerformanceTracker
tracker = PerformanceTracker()
# Test tracking
start = tracker.start_query()
import time
time.sleep(0.1)
metric = tracker.end_query(start, "test query", tokens_generated=50)
assert 'latency_seconds' in metric
assert 'tokens_per_second' in metric
assert metric['latency_seconds'] > 0
# Test improvement calculation
stats = tracker.get_summary_stats()
assert 'total_queries' in stats
print("✅ Performance tracking verified")
def test_benchmark_script_exists(self):
"""Verify benchmarking infrastructure."""
benchmark_path = Path("scripts/benchmark.py")
assert benchmark_path.exists()
# Check it has the right functions
with open(benchmark_path) as f:
content = f.read()
assert 'benchmark_inference' in content
assert 'improvement' in content
print("✅ Benchmark script verified")
def test_training_script_exists(self):
"""Verify LoRA training script."""
train_path = Path("scripts/train_lora.py")
assert train_path.exists()
with open(train_path) as f:
content = f.read()
assert 'train_lora_model' in content
assert 'LoraConfig' in content
print("✅ Training script verified")
def test_deployment_documentation(self):
"""Verify deployment docs exist."""
assert Path("DEPLOYMENT.md").exists()
assert Path("QUICKSTART.md").exists()
assert Path("RESUME_VALIDATION.md").exists()
assert Path(".env.example").exists()
print("✅ Documentation verified")
def test_project_structure(self):
"""Verify all required files exist."""
required_files = [
"app/assistant_v2.py",
"app/langchain_rag.py",
"app/vector_store.py",
"app/lora_model.py",
"app/performance_tracker.py",
"app/config.py",
"requirements.txt",
"README.md"
]
for file_path in required_files:
assert Path(file_path).exists(), f"Missing: {file_path}"
print("✅ Project structure verified")
class TestPerformanceMetrics:
"""Test performance measurement capabilities."""
def test_latency_measurement(self):
"""Verify latency can be measured."""
from app.performance_tracker import PerformanceTracker
import time
tracker = PerformanceTracker()
start = tracker.start_query()
time.sleep(0.05) # Simulate work
metric = tracker.end_query(start, "test", 100)
assert metric['latency_seconds'] >= 0.05
assert metric['latency_seconds'] < 0.1
print(f"✅ Measured latency: {metric['latency_seconds']:.3f}s")
def test_improvement_calculation(self):
"""Verify improvement percentage calculation."""
from app.performance_tracker import PerformanceTracker
tracker = PerformanceTracker()
tracker.baseline_latency = 3.0
# Simulate queries
tracker.current_session["queries"] = [
{"latency_seconds": 3.0},
{"latency_seconds": 1.8},
{"latency_seconds": 1.9}
]
improvement = tracker.calculate_improvement()
expected_improvement = ((3.0 - 1.85) / 3.0) * 100
assert abs(improvement['improvement_percentage'] - expected_improvement) < 1
assert improvement['improvement_percentage'] > 35 # Should be ~38%
print(f"✅ Calculated improvement: {improvement['improvement_percentage']:.1f}%")
def run_all_tests():
"""Run all validation tests."""
print("\n" + "="*60)
print("RESUME CLAIMS VALIDATION TEST SUITE")
print("="*60 + "\n")
test_suite = TestResumeClaimValidation()
performance_tests = TestPerformanceMetrics()
tests = [
("Sentence Transformers", test_suite.test_sentence_transformers_integration),
("FAISS", test_suite.test_faiss_integration),
("LangChain", test_suite.test_langchain_integration),
("Qdrant Cloud", test_suite.test_qdrant_integration),
("LoRA", test_suite.test_lora_configuration),
("Quantization", test_suite.test_quantization_support),
("Performance Tracking", test_suite.test_performance_tracking),
("Benchmark Script", test_suite.test_benchmark_script_exists),
("Training Script", test_suite.test_training_script_exists),
("Documentation", test_suite.test_deployment_documentation),
("Project Structure", test_suite.test_project_structure),
("Latency Measurement", performance_tests.test_latency_measurement),
("Improvement Calculation", performance_tests.test_improvement_calculation),
]
passed = 0
failed = 0
for name, test_func in tests:
try:
print(f"\nTesting: {name}")
test_func()
passed += 1
except Exception as e:
print(f"❌ FAILED: {name}")
print(f" Error: {str(e)}")
failed += 1
print("\n" + "="*60)
print(f"RESULTS: {passed} passed, {failed} failed")
print("="*60)
if failed == 0:
print("\n🎉 ALL TESTS PASSED! Your resume claims are validated!")
else:
print(f"\n⚠️ {failed} test(s) failed. Check the errors above.")
return failed == 0
if __name__ == "__main__":
success = run_all_tests()
sys.exit(0 if success else 1)
|