File size: 7,862 Bytes
86fce4f |
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 |
#!/usr/bin/env python3
"""
Test script for the enhanced DOCX to PDF conversion system
Tests all the new advanced features and quality verification
"""
import os
import sys
import tempfile
import shutil
from pathlib import Path
# Add the current directory to Python path to import app modules
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
from app import (
validate_docx_structure,
preprocess_docx_for_perfect_conversion,
post_process_pdf_for_perfect_formatting,
generate_comprehensive_quality_report,
calculate_quality_score,
setup_libreoffice,
setup_font_environment
)
def create_test_docx():
"""
Create a test DOCX file with Arabic content for testing
This would normally require python-docx, but for testing we'll create a simple structure
"""
print("📝 Creating test DOCX file...")
# For this test, we'll assume a DOCX file exists or create a simple one
test_content = """
Test DOCX content with Arabic text: مرحبا بكم في اختبار التحويل المتقدم
This document contains:
- Arabic RTL text: النص العربي من اليمين إلى اليسار
- Placeholders: {{name}}, {{date}}, {{company}}
- Tables with Arabic content
- Mixed language content
Table example:
| English | العربية | Notes |
|---------|---------|-------|
| Hello | مرحبا | Greeting |
| World | العالم | Noun |
"""
print("✅ Test content prepared")
return test_content
def test_docx_analysis():
"""Test the enhanced DOCX structure analysis"""
print("\n🔍 Testing DOCX Structure Analysis...")
# This would test with a real DOCX file
# For now, we'll simulate the analysis results
mock_docx_info = {
'page_count': 1,
'has_tables': True,
'has_images': False,
'text_content_length': 500,
'font_families': {'Arial', 'Traditional Arabic', 'Calibri'},
'has_textboxes': False,
'has_smartart': False,
'has_complex_shapes': False,
'table_structure_issues': [],
'rtl_content_detected': True,
'placeholder_count': 3,
'error': None
}
print("📊 Analysis Results:")
print(f" • Tables: {mock_docx_info['has_tables']}")
print(f" • RTL Content: {mock_docx_info['rtl_content_detected']}")
print(f" • Placeholders: {mock_docx_info['placeholder_count']}")
print(f" • Font Families: {len(mock_docx_info['font_families'])}")
return mock_docx_info
def test_quality_scoring():
"""Test the quality scoring system"""
print("\n📊 Testing Quality Scoring System...")
# Mock validation results
mock_pdf_validation = {
'file_size_mb': 0.5,
'file_exists': True,
'size_reasonable': True,
'warnings': [],
'success_metrics': ['PDF file size is reasonable', 'Font substitution applied']
}
# Mock post-processing results
mock_post_process = {
'pages_processed': 1,
'placeholders_verified': 3,
'tables_verified': 1,
'arabic_text_verified': 150,
'layout_issues_fixed': 0,
'warnings': [],
'success_metrics': ['All 3 placeholders preserved', 'Arabic RTL text verified: 150 characters']
}
# Mock DOCX info
mock_docx_info = {
'has_tables': True,
'has_images': False,
'rtl_content_detected': True,
'placeholder_count': 3,
'has_textboxes': False,
'has_smartart': False,
'has_complex_shapes': False,
'table_structure_issues': []
}
# Test quality score calculation
quality_score = calculate_quality_score(mock_docx_info, mock_pdf_validation, mock_post_process)
print(f"🏆 Quality Score: {quality_score:.1f}%")
# Test comprehensive report generation
quality_report = generate_comprehensive_quality_report(mock_docx_info, mock_pdf_validation, mock_post_process)
print("\n📋 Quality Report:")
print(quality_report)
return quality_score
def test_font_system():
"""Test the enhanced Arabic font system"""
print("\n🔤 Testing Enhanced Arabic Font System...")
try:
setup_font_environment()
print("✅ Font environment setup completed")
# Test font availability
import subprocess
result = subprocess.run(['fc-list'], capture_output=True, text=True, timeout=10)
available_fonts = result.stdout.lower()
arabic_fonts = ['amiri', 'noto naskh arabic', 'scheherazade', 'cairo']
found_fonts = []
for font in arabic_fonts:
if font in available_fonts:
found_fonts.append(font)
print(f"📊 Arabic Fonts Available: {len(found_fonts)}/{len(arabic_fonts)}")
for font in found_fonts:
print(f" ✓ {font}")
return len(found_fonts) > 0
except Exception as e:
print(f"❌ Font system test failed: {e}")
return False
def test_libreoffice_setup():
"""Test LibreOffice configuration"""
print("\n⚙️ Testing LibreOffice Setup...")
try:
libreoffice_available = setup_libreoffice()
if libreoffice_available:
print("✅ LibreOffice is properly configured")
# Test version
import subprocess
result = subprocess.run(['libreoffice', '--version'],
capture_output=True, text=True, timeout=10)
if result.returncode == 0:
print(f"📊 LibreOffice Version: {result.stdout.strip()}")
return True
else:
print("❌ LibreOffice setup failed")
return False
except Exception as e:
print(f"❌ LibreOffice test failed: {e}")
return False
def run_comprehensive_test():
"""Run all tests for the enhanced conversion system"""
print("🚀 ENHANCED DOCX TO PDF CONVERSION SYSTEM TEST")
print("=" * 60)
test_results = {}
# Test 1: DOCX Analysis
test_results['docx_analysis'] = test_docx_analysis()
# Test 2: Quality Scoring
test_results['quality_score'] = test_quality_scoring()
# Test 3: Font System
test_results['font_system'] = test_font_system()
# Test 4: LibreOffice Setup
test_results['libreoffice'] = test_libreoffice_setup()
# Summary
print("\n" + "=" * 60)
print("📊 TEST SUMMARY")
print("=" * 60)
passed_tests = 0
total_tests = len(test_results)
for test_name, result in test_results.items():
status = "✅ PASS" if result else "❌ FAIL"
print(f"{test_name.replace('_', ' ').title()}: {status}")
if result:
passed_tests += 1
success_rate = (passed_tests / total_tests) * 100
print(f"\n🎯 Overall Success Rate: {success_rate:.1f}% ({passed_tests}/{total_tests})")
if success_rate >= 75:
print("🌟 EXCELLENT: Enhanced conversion system is ready!")
elif success_rate >= 50:
print("👍 GOOD: Most features are working correctly")
else:
print("⚠️ NEEDS ATTENTION: Several components need fixing")
return test_results
if __name__ == "__main__":
# Run the comprehensive test
results = run_comprehensive_test()
# Exit with appropriate code
success_rate = sum(1 for r in results.values() if r) / len(results) * 100
sys.exit(0 if success_rate >= 75 else 1)
|