|
| 1 | +# -*- coding: utf-8 -*- |
| 2 | +""" |
| 3 | +MENU INTERATIVO DE AUDITORIA — OpenCode Ecosystem v4.7 |
| 4 | +Auto-instalacao + terminal intuitivo para banca examinadora. |
| 5 | +""" |
| 6 | + |
| 7 | +import sys, os, subprocess, json, time |
| 8 | +from pathlib import Path |
| 9 | +from datetime import datetime |
| 10 | + |
| 11 | +BASE_DIR = Path(__file__).parent.resolve() |
| 12 | +EVAL_DIR = BASE_DIR / "artigo" / "evaluations" |
| 13 | +TESTS_DIR = EVAL_DIR / "tests" |
| 14 | + |
| 15 | +# ══════════════════════════════════════════════════════════════════════ |
| 16 | +# CORES DO TERMINAL |
| 17 | +# ══════════════════════════════════════════════════════════════════════ |
| 18 | + |
| 19 | +C = { |
| 20 | + "R": "\033[91m", "G": "\033[92m", "Y": "\033[93m", "B": "\033[94m", |
| 21 | + "M": "\033[95m", "C": "\033[96m", "W": "\033[97m", "X": "\033[0m", |
| 22 | + "BOLD": "\033[1m", "DIM": "\033[2m", |
| 23 | +} |
| 24 | + |
| 25 | +def c(color, text): |
| 26 | + if sys.platform == "win32": |
| 27 | + return text |
| 28 | + return f"{C.get(color,'')}{text}{C['X']}" |
| 29 | + |
| 30 | +# ══════════════════════════════════════════════════════════════════════ |
| 31 | +# AUTO-INSTALADOR |
| 32 | +# ══════════════════════════════════════════════════════════════════════ |
| 33 | + |
| 34 | +def check_dependency(name, import_name=None): |
| 35 | + """Verifica se uma dependencia Python esta instalada.""" |
| 36 | + try: |
| 37 | + if import_name: |
| 38 | + __import__(import_name) |
| 39 | + else: |
| 40 | + __import__(name) |
| 41 | + return True |
| 42 | + except ImportError: |
| 43 | + return False |
| 44 | + |
| 45 | +def auto_install(): |
| 46 | + """Instala automaticamente todas as dependencias necessarias.""" |
| 47 | + print(f"\n{c('BOLD', 'VERIFICANDO DEPENDENCIAS...')}") |
| 48 | + |
| 49 | + deps = { |
| 50 | + "sympy": "sympy", |
| 51 | + "scipy": "scipy", |
| 52 | + "numpy": "numpy", |
| 53 | + } |
| 54 | + |
| 55 | + missing = [] |
| 56 | + for name, import_name in deps.items(): |
| 57 | + if check_dependency(name, import_name): |
| 58 | + print(f" {c('G', '[OK]')} {name}") |
| 59 | + else: |
| 60 | + print(f" {c('Y', '[--]')} {name} — instalando...") |
| 61 | + missing.append(name) |
| 62 | + |
| 63 | + if missing: |
| 64 | + print(f"\n{c('Y', 'Instalando dependencias...')}") |
| 65 | + for pkg in missing: |
| 66 | + subprocess.run([sys.executable, "-m", "pip", "install", pkg, "-q"], |
| 67 | + cwd=str(BASE_DIR), timeout=120) |
| 68 | + print(f" {c('G', '[OK]')} {pkg} instalado") |
| 69 | + |
| 70 | + # Verifica LaTeX |
| 71 | + latex_ok = False |
| 72 | + try: |
| 73 | + result = subprocess.run(["pdflatex", "--version"], capture_output=True, timeout=10) |
| 74 | + latex_ok = result.returncode == 0 |
| 75 | + except: |
| 76 | + pass |
| 77 | + |
| 78 | + if latex_ok: |
| 79 | + print(f" {c('G', '[OK]')} LaTeX (pdflatex)") |
| 80 | + else: |
| 81 | + print(f" {c('Y', '[--]')} LaTeX nao encontrado — necessario para compilar relatorio") |
| 82 | + |
| 83 | + print(f"\n{c('G', c('BOLD', 'PRONTO! Todas as dependencias OK.'))}") |
| 84 | + return len(missing) == 0 |
| 85 | + |
| 86 | +# ══════════════════════════════════════════════════════════════════════ |
| 87 | +# MENU INTERATIVO |
| 88 | +# ══════════════════════════════════════════════════════════════════════ |
| 89 | + |
| 90 | +def run_test(test_file): |
| 91 | + """Executa um arquivo de teste e retorna se passou.""" |
| 92 | + test_path = TESTS_DIR / test_file |
| 93 | + if not test_path.exists(): |
| 94 | + print(f" {c('R', '[ERRO]')} Arquivo nao encontrado: {test_file}") |
| 95 | + return False |
| 96 | + |
| 97 | + start = time.time() |
| 98 | + result = subprocess.run([sys.executable, str(test_path)], |
| 99 | + cwd=str(TESTS_DIR), capture_output=True, text=True, timeout=120) |
| 100 | + elapsed = time.time() - start |
| 101 | + |
| 102 | + if "RESULTADO: 3/3 PASS" in result.stdout or "0 failed" in result.stdout or \ |
| 103 | + "TESTE EXAUSTIVO: 34/34" in result.stdout or "CEGO PASS" in result.stdout: |
| 104 | + print(f"{c('G', '[PASS]')} ({elapsed:.1f}s)") |
| 105 | + return True |
| 106 | + else: |
| 107 | + # Mostra ultimas linhas do output para diagnostico |
| 108 | + lines = result.stdout.split('\n')[-10:] |
| 109 | + for line in lines: |
| 110 | + if line.strip(): |
| 111 | + print(f" {c('DIM', line.strip())}") |
| 112 | + print(f"{c('R', '[FAIL]')} ({elapsed:.1f}s)") |
| 113 | + return False |
| 114 | + |
| 115 | +def menu_principal(): |
| 116 | + """Menu interativo principal.""" |
| 117 | + while True: |
| 118 | + print(f"\n{c('BOLD', '='*60)}") |
| 119 | + print(f"{c('BOLD', ' OpenCode Ecosystem v4.7 — Menu de Auditoria')}") |
| 120 | + print(f"{c('BOLD', '='*60)}") |
| 121 | + print(f""" |
| 122 | + {c('B', '[1]')} Instalar dependencias |
| 123 | + {c('B', '[2]')} Executar TODOS os testes (20 suites TDD) |
| 124 | + {c('B', '[3]')} Teste cego Project Euler (25 problemas) |
| 125 | + {c('B', '[4]')} Teste cego Rosalind (10 problemas) |
| 126 | + {c('B', '[5]')} CORA-Score — Relatorio completo |
| 127 | + {c('B', '[6]')} Calibracao V1-V7 (466 testes) |
| 128 | + {c('B', '[7]')} Geometria Cognitiva (matriz, grafo, tensor) |
| 129 | + {c('B', '[8]')} Banca completa (9 revisores) |
| 130 | + {c('B', '[9]')} Compilar Relatorio Tecnico (PDF 132p) |
| 131 | + {c('B', '[10]')} Dashboard unificado |
| 132 | + {c('B', '[11]')} Abrir documentacao |
| 133 | + {c('Y', '[0]')} Sair |
| 134 | +""") |
| 135 | + |
| 136 | + try: |
| 137 | + op = input(f" {c('BOLD', 'Opcao')} (0-11): ").strip() |
| 138 | + except (EOFError, KeyboardInterrupt): |
| 139 | + print(f"\n{c('Y', 'Ate logo.')}") |
| 140 | + break |
| 141 | + |
| 142 | + if op == "0": |
| 143 | + print(f"\n{c('Y', 'Ate logo. Obrigado pela auditoria.')}") |
| 144 | + break |
| 145 | + elif op == "1": |
| 146 | + auto_install() |
| 147 | + elif op == "2": |
| 148 | + run_all_tests() |
| 149 | + elif op == "3": |
| 150 | + run_blind_pe() |
| 151 | + elif op == "4": |
| 152 | + run_blind_ros() |
| 153 | + elif op == "5": |
| 154 | + show_cora_report() |
| 155 | + elif op == "6": |
| 156 | + run_calibration() |
| 157 | + elif op == "7": |
| 158 | + run_geometry() |
| 159 | + elif op == "8": |
| 160 | + run_committee() |
| 161 | + elif op == "9": |
| 162 | + compile_report() |
| 163 | + elif op == "10": |
| 164 | + show_dashboard() |
| 165 | + elif op == "11": |
| 166 | + show_docs() |
| 167 | + else: |
| 168 | + print(f" {c('R', 'Opcao invalida')}") |
| 169 | + |
| 170 | +def run_all_tests(): |
| 171 | + """Executa todas as 20 suites TDD.""" |
| 172 | + print(f"\n{c('BOLD', 'EXECUTANDO 20 SUITES TDD...')}") |
| 173 | + tests = [ |
| 174 | + ("D3 Estatistica", "test_d3_estatistica.py"), |
| 175 | + ("D4 Quimica", "test_d4_quimica.py"), |
| 176 | + ("D5 Biologia", "test_d5_biologia.py"), |
| 177 | + ("D6 Geociencias", "test_d6_geociencias.py"), |
| 178 | + ("D7 Codigo (V7a-V7f)", "test_d7_codigo.py"), |
| 179 | + ("D8 Literatura N1", "test_d8_literatura.py"), |
| 180 | + ("D8 Literatura N2", "test_d8_n2_gat_bibliography.py"), |
| 181 | + ("D10 GAT N4", "test_d10_gat.py"), |
| 182 | + ("Validacao Externa", "test_validacao_externa.py"), |
| 183 | + ("Evolucao M4", "test_evolucao_m4.py"), |
| 184 | + ("Superacao Limitacoes", "test_superacao_limitacoes.py"), |
| 185 | + ("Validacao Rigorosa", "test_validacao_rigorosa.py"), |
| 186 | + ("Exaustivo Final (25PE+10ROS)", "test_exaustivo_final.py"), |
| 187 | + ("Melhorias Defesa", "test_melhorias_defesa.py"), |
| 188 | + ("Comparacao Justa", "test_comparacao_justa.py"), |
| 189 | + ("Evolucao Pilar P6-P10", "test_evolucao_pilar.py"), |
| 190 | + ("Revisao Critica (PE#26-#30)", "test_revisao_critica_final.py"), |
| 191 | + ("Aprovacao Revisor V3/V4", "test_aprovacao_revisor.py"), |
| 192 | + ("Calibracao V6/V7", "test_calibracao_v6_v7.py"), |
| 193 | + ("Fechamento P12+P15", "test_fechamento_p12_p15.py"), |
| 194 | + ] |
| 195 | + |
| 196 | + passed = 0 |
| 197 | + for name, test_file in tests: |
| 198 | + print(f" {c('DIM', name+':')}", end=" ") |
| 199 | + if run_test(test_file): |
| 200 | + passed += 1 |
| 201 | + |
| 202 | + print(f"\n {c('BOLD', f'RESULTADO: {passed}/{len(tests)} suites PASS ({passed/len(tests)*100:.0f}%)')}") |
| 203 | + |
| 204 | +def run_blind_pe(): |
| 205 | + print(f"\n{c('BOLD', 'TESTE CEGO — Project Euler (25 problemas)')}") |
| 206 | + print(f" {c('DIM', 'Nota: problemas verificados automaticamente pela plataforma.')}") |
| 207 | + run_test("test_exaustivo_final.py") |
| 208 | + |
| 209 | +def run_blind_ros(): |
| 210 | + print(f"\n{c('BOLD', 'TESTE CEGO — Rosalind (10 problemas)')}") |
| 211 | + run_test("test_exaustivo_final.py") |
| 212 | + |
| 213 | +def show_cora_report(): |
| 214 | + print(f"\n{c('BOLD', 'CORA-SCORE — Relatorio Completo')}") |
| 215 | + result = subprocess.run([sys.executable, "cora_benchmark_tracker.py", "--report"], |
| 216 | + cwd=str(EVAL_DIR), capture_output=True, text=True, timeout=30) |
| 217 | + print(result.stdout) |
| 218 | + |
| 219 | +def run_calibration(): |
| 220 | + print(f"\n{c('BOLD', 'CALIBRACAO V1-V7 (466 testes)')}") |
| 221 | + run_test("test_calibracao_v6_v7.py") |
| 222 | + |
| 223 | +def run_geometry(): |
| 224 | + print(f"\n{c('BOLD', 'GEOMETRIA COGNITIVA')}") |
| 225 | + result = subprocess.run([sys.executable, "cora_cognitive_geometry.py", "--full"], |
| 226 | + cwd=str(EVAL_DIR), capture_output=True, text=True, timeout=30) |
| 227 | + print(result.stdout[-2000:]) |
| 228 | + |
| 229 | +def run_committee(): |
| 230 | + print(f"\n{c('BOLD', 'BANCA COMPLETA — 9 Revisores')}") |
| 231 | + result = subprocess.run([sys.executable, "banca_completa.py"], |
| 232 | + cwd=str(EVAL_DIR), capture_output=True, text=True, timeout=30) |
| 233 | + print(result.stdout[-2000:]) |
| 234 | + |
| 235 | +def compile_report(): |
| 236 | + print(f"\n{c('BOLD', 'COMPILANDO RELATORIO TECNICO (PDF)...')}") |
| 237 | + tex_file = BASE_DIR / "artigo" / "dissertacao_cora_eval_abnt.tex" |
| 238 | + if not tex_file.exists(): |
| 239 | + print(f" {c('R', '[ERRO]')} Arquivo .tex nao encontrado") |
| 240 | + return |
| 241 | + result = subprocess.run(["pdflatex", "-interaction=nonstopmode", str(tex_file.name)], |
| 242 | + cwd=str(tex_file.parent), capture_output=True, timeout=120) |
| 243 | + result2 = subprocess.run(["pdflatex", "-interaction=nonstopmode", str(tex_file.name)], |
| 244 | + cwd=str(tex_file.parent), capture_output=True, timeout=120) |
| 245 | + pdf_file = tex_file.with_suffix(".pdf") |
| 246 | + if pdf_file.exists(): |
| 247 | + size_kb = pdf_file.stat().st_size / 1024 |
| 248 | + print(f" {c('G', '[OK]')} PDF gerado: {pdf_file.name} ({size_kb:.0f} KB)") |
| 249 | + print(f" {c('DIM', 'Abra o arquivo para visualizar o relatorio completo.')}") |
| 250 | + else: |
| 251 | + print(f" {c('R', '[ERRO]')} Falha na compilacao") |
| 252 | + |
| 253 | +def show_dashboard(): |
| 254 | + print(f"\n{c('BOLD', 'DASHBOARD UNIFICADO')}") |
| 255 | + result = subprocess.run([sys.executable, "dashboard.py"], |
| 256 | + cwd=str(EVAL_DIR), capture_output=True, text=True, timeout=30) |
| 257 | + print(result.stdout) |
| 258 | + |
| 259 | +def show_docs(): |
| 260 | + print(f"\n{c('BOLD', 'DOCUMENTACAO DISPONIVEL')}") |
| 261 | + docs = [ |
| 262 | + ("Relatorio Tecnico (PDF)", "artigo/dissertacao_cora_eval_abnt.pdf"), |
| 263 | + ("Benchmark CORA-Eval", "artigo/evaluations/BENCHMARK_CORA_CIENCIAS_EXATAS.md"), |
| 264 | + ("Relatorio Tecnico Detalhado", "artigo/evaluations/RELATORIO_TECNICO_CORA_EVAL_LISTAS_DCA.md"), |
| 265 | + ("Catalogo Problemas Complexos", "artigo/evaluations/CATALOGO_PROBLEMAS_COMPLEXOS_CORA.md"), |
| 266 | + ("Auditoria CORA-Eval", "artigo/evaluations/AUDITORIA_CORA_EVAL_20260528.md"), |
| 267 | + ("Dashboard Unificado", "artigo/evaluations/dashboard_unificado.json"), |
| 268 | + ("Evolucao Completa", "artigo/evolucao_completa_opencode.md"), |
| 269 | + ] |
| 270 | + for name, path in docs: |
| 271 | + full_path = BASE_DIR / path |
| 272 | + exists = "[OK]" if full_path.exists() else "[--]" |
| 273 | + print(f" {c('DIM', exists)} {name}: {path}") |
| 274 | + |
| 275 | +# ══════════════════════════════════════════════════════════════════════ |
| 276 | +# ENTRY POINT |
| 277 | +# ══════════════════════════════════════════════════════════════════════ |
| 278 | + |
| 279 | +if __name__ == "__main__": |
| 280 | + print(f"\n{c('BOLD', c('M', ' OpenCode Ecosystem v4.7'))}") |
| 281 | + print(f" {c('DIM', 'Menu de Auditoria para Banca Examinadora')}") |
| 282 | + print(f" {c('DIM', f'Data: {datetime.now().strftime("%d/%m/%Y %H:%M")}')}") |
| 283 | + print(f" {c('DIM', f'Python: {sys.version.split()[0]}')}") |
| 284 | + |
| 285 | + # Auto-verifica dependencias |
| 286 | + deps_ok = all(check_dependency(d,i) for d,i in [("sympy","sympy"),("json","json")]) |
| 287 | + if not deps_ok: |
| 288 | + print(f"\n {c('Y', 'Execute a opcao [1] para instalar dependencias.')}") |
| 289 | + |
| 290 | + menu_principal() |
0 commit comments