File size: 12,783 Bytes
2469150 |
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 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 |
#!/usr/bin/env python3
"""
Enterprise-grade cleanup script for FRED ML
Identifies and removes redundant files to improve project organization
"""
import os
import shutil
import sys
from pathlib import Path
from typing import List, Dict, Set
import argparse
class ProjectCleaner:
"""Enterprise-grade project cleanup utility"""
def __init__(self, dry_run: bool = True):
self.project_root = Path(__file__).parent.parent
self.dry_run = dry_run
self.redundant_files = []
self.removed_files = []
self.kept_files = []
def identify_redundant_test_files(self) -> List[Path]:
"""Identify redundant test files in root directory"""
redundant_files = []
# Files to be removed (redundant test files)
redundant_patterns = [
"test_analytics.py",
"test_analytics_fix.py",
"test_real_analytics.py",
"test_mathematical_fixes.py",
"test_mathematical_fixes_fixed.py",
"test_app.py",
"test_local_app.py",
"test_enhanced_app.py",
"test_app_features.py",
"test_frontend_data.py",
"test_data_accuracy.py",
"test_fred_frequency_issue.py",
"test_imports.py",
"test_gdp_scale.py",
"test_data_validation.py",
"test_alignment_divergence.py",
"test_fixes_demonstration.py",
"test_dynamic_scoring.py",
"test_real_data_analysis.py",
"test_math_issues.py",
"simple_local_test.py",
"debug_analytics.py",
"debug_data_structure.py",
"check_deployment.py"
]
for pattern in redundant_patterns:
file_path = self.project_root / pattern
if file_path.exists():
redundant_files.append(file_path)
print(f"π Found redundant file: {pattern}")
return redundant_files
def identify_debug_files(self) -> List[Path]:
"""Identify debug and temporary files"""
debug_files = []
# Debug and temporary files
debug_patterns = [
"alignment_divergence_insights.txt",
"MATH_ISSUES_ANALYSIS.md",
"test_report.json"
]
for pattern in debug_patterns:
file_path = self.project_root / pattern
if file_path.exists():
debug_files.append(file_path)
print(f"π Found debug file: {pattern}")
return debug_files
def identify_cache_directories(self) -> List[Path]:
"""Identify cache and temporary directories"""
cache_dirs = []
# Cache directories
cache_patterns = [
"__pycache__",
".pytest_cache",
"htmlcov",
"logs",
"test_output"
]
for pattern in cache_patterns:
dir_path = self.project_root / pattern
if dir_path.exists() and dir_path.is_dir():
cache_dirs.append(dir_path)
print(f"π Found cache directory: {pattern}")
return cache_dirs
def backup_file(self, file_path: Path) -> Path:
"""Create backup of file before removal"""
backup_dir = self.project_root / "backup" / "redundant_files"
backup_dir.mkdir(parents=True, exist_ok=True)
backup_path = backup_dir / file_path.name
if not self.dry_run:
shutil.copy2(file_path, backup_path)
print(f"π¦ Backed up: {file_path.name}")
return backup_path
def remove_file(self, file_path: Path) -> bool:
"""Remove a file with backup"""
try:
if not self.dry_run:
# Create backup first
self.backup_file(file_path)
# Remove the file
file_path.unlink()
print(f"ποΈ Removed: {file_path.name}")
self.removed_files.append(file_path)
else:
print(f"π Would remove: {file_path.name}")
self.redundant_files.append(file_path)
return True
except Exception as e:
print(f"β Failed to remove {file_path.name}: {e}")
return False
def remove_directory(self, dir_path: Path) -> bool:
"""Remove a directory with backup"""
try:
if not self.dry_run:
# Create backup first
backup_dir = self.project_root / "backup" / "redundant_dirs"
backup_dir.mkdir(parents=True, exist_ok=True)
backup_path = backup_dir / dir_path.name
shutil.copytree(dir_path, backup_path, dirs_exist_ok=True)
print(f"π¦ Backed up directory: {dir_path.name}")
# Remove the directory
shutil.rmtree(dir_path)
print(f"ποΈ Removed directory: {dir_path.name}")
self.removed_files.append(dir_path)
else:
print(f"π Would remove directory: {dir_path.name}")
self.redundant_files.append(dir_path)
return True
except Exception as e:
print(f"β Failed to remove directory {dir_path.name}: {e}")
return False
def cleanup_redundant_files(self) -> Dict:
"""Clean up redundant files"""
print("π§Ή Starting Enterprise-Grade Cleanup")
print("=" * 50)
# Identify redundant files
redundant_test_files = self.identify_redundant_test_files()
debug_files = self.identify_debug_files()
cache_dirs = self.identify_cache_directories()
total_files = len(redundant_test_files) + len(debug_files) + len(cache_dirs)
if total_files == 0:
print("β
No redundant files found!")
return {"removed": 0, "kept": 0, "errors": 0}
print(f"\nπ Found {total_files} redundant files/directories:")
print(f" - Redundant test files: {len(redundant_test_files)}")
print(f" - Debug files: {len(debug_files)}")
print(f" - Cache directories: {len(cache_dirs)}")
if self.dry_run:
print("\nπ DRY RUN MODE - No files will be removed")
else:
print("\nβ οΈ LIVE MODE - Files will be removed and backed up")
# Remove redundant test files
print(f"\nποΈ Processing redundant test files...")
for file_path in redundant_test_files:
self.remove_file(file_path)
# Remove debug files
print(f"\nποΈ Processing debug files...")
for file_path in debug_files:
self.remove_file(file_path)
# Remove cache directories
print(f"\nποΈ Processing cache directories...")
for dir_path in cache_dirs:
self.remove_directory(dir_path)
# Summary
removed_count = len(self.removed_files) if not self.dry_run else len(self.redundant_files)
print(f"\nπ Cleanup Summary:")
print(f" - Files processed: {total_files}")
print(f" - Files {'would be removed' if self.dry_run else 'removed'}: {removed_count}")
return {
"total_found": total_files,
"removed": removed_count,
"dry_run": self.dry_run
}
def verify_test_structure(self) -> Dict:
"""Verify that proper test structure is in place"""
print("\nπ Verifying Test Structure...")
print("=" * 50)
test_structure = {
"tests/unit/": ["test_analytics.py", "test_core_functionality.py"],
"tests/integration/": ["test_system_integration.py"],
"tests/e2e/": ["test_complete_workflow.py"],
"tests/": ["run_tests.py"]
}
missing_files = []
existing_files = []
for directory, expected_files in test_structure.items():
dir_path = self.project_root / directory
if dir_path.exists():
for expected_file in expected_files:
file_path = dir_path / expected_file
if file_path.exists():
existing_files.append(f"{directory}{expected_file}")
print(f"β
Found: {directory}{expected_file}")
else:
missing_files.append(f"{directory}{expected_file}")
print(f"β Missing: {directory}{expected_file}")
else:
print(f"β Missing directory: {directory}")
for expected_file in expected_files:
missing_files.append(f"{directory}{expected_file}")
return {
"existing": existing_files,
"missing": missing_files,
"structure_valid": len(missing_files) == 0
}
def generate_cleanup_report(self, cleanup_results: Dict, test_structure: Dict) -> Dict:
"""Generate comprehensive cleanup report"""
report = {
"timestamp": __import__('datetime').datetime.now().isoformat(),
"cleanup_results": cleanup_results,
"test_structure": test_structure,
"recommendations": []
}
# Generate recommendations
if cleanup_results["total_found"] > 0:
report["recommendations"].append(
f"Removed {cleanup_results['removed']} redundant files to improve project organization"
)
if not test_structure["structure_valid"]:
report["recommendations"].append(
"Test structure needs improvement - some expected test files are missing"
)
else:
report["recommendations"].append(
"Test structure is properly organized"
)
if cleanup_results["dry_run"]:
report["recommendations"].append(
"Run with --live flag to actually remove files"
)
return report
def print_report(self, report: Dict):
"""Print cleanup report"""
print("\n" + "=" * 60)
print("π CLEANUP REPORT")
print("=" * 60)
cleanup_results = report["cleanup_results"]
test_structure = report["test_structure"]
print(f"Cleanup Results:")
print(f" - Total files found: {cleanup_results['total_found']}")
print(f" - Files {'would be removed' if cleanup_results['dry_run'] else 'removed'}: {cleanup_results['removed']}")
print(f"\nTest Structure:")
print(f" - Existing test files: {len(test_structure['existing'])}")
print(f" - Missing test files: {len(test_structure['missing'])}")
print(f" - Structure valid: {'β
Yes' if test_structure['structure_valid'] else 'β No'}")
print(f"\nRecommendations:")
for rec in report["recommendations"]:
print(f" - {rec}")
if test_structure["structure_valid"] and cleanup_results["removed"] > 0:
print("\nπ Project cleanup successful! The project is now enterprise-grade.")
else:
print("\nβ οΈ Some issues remain. Please review the recommendations above.")
def main():
"""Main entry point"""
parser = argparse.ArgumentParser(description="FRED ML Project Cleanup")
parser.add_argument("--live", action="store_true", help="Actually remove files (default is dry run)")
parser.add_argument("--verify-only", action="store_true", help="Only verify test structure")
args = parser.parse_args()
cleaner = ProjectCleaner(dry_run=not args.live)
if args.verify_only:
# Only verify test structure
test_structure = cleaner.verify_test_structure()
report = cleaner.generate_cleanup_report({"total_found": 0, "removed": 0, "dry_run": True}, test_structure)
cleaner.print_report(report)
else:
# Full cleanup
cleanup_results = cleaner.cleanup_redundant_files()
test_structure = cleaner.verify_test_structure()
report = cleaner.generate_cleanup_report(cleanup_results, test_structure)
cleaner.print_report(report)
# Exit with appropriate code
test_structure = cleaner.verify_test_structure()
if not test_structure["structure_valid"]:
sys.exit(1)
else:
sys.exit(0)
if __name__ == "__main__":
main() |