feat: initial scaffold of osint_web — backend Python sobre el grupo obsidian
Fase 5b del issue 0172. Backend stdlib http (solo 127.0.0.1) que orquesta las funciones del grupo obsidian del fn_registry para servir el vault OSINT: grafo agregado (/api/graph), tablas por tipo (/api/nodes), fichas con attachments (/api/node, /api/attachment con bloqueo de path traversal) y busqueda (/api/search). Cache en memoria con POST /api/refresh. Tests pytest (10) sobre vault fixture: grafo golden, tipo filtrado, ficha con attachments, wikilink dangling, slug con acentos, traversal bloqueado, vault inexistente (exit 2) y e2e HTTP en puerto efimero. Frontend (React + Vite + Mantine + sigma.js) queda para la fase siguiente. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
+426
@@ -0,0 +1,426 @@
|
||||
#!/usr/bin/env python3
|
||||
"""Backend de osint_web: sirve el vault OSINT de Obsidian como API JSON local.
|
||||
|
||||
Lee directamente los ``.md`` del vault (sin BD intermedia, decisión KISS del
|
||||
issue 0172) y expone el grafo agregado, las tablas por tipo, las fichas con
|
||||
attachments y la búsqueda global. Registry-first: todo el parseo del vault lo
|
||||
hacen las funciones del grupo de capacidad ``obsidian`` del fn_registry — este
|
||||
módulo solo orquesta y sirve HTTP.
|
||||
|
||||
Seguridad: el vault contiene datos personales sensibles (DNIs, fotos), por lo
|
||||
que el servidor escucha exclusivamente en ``127.0.0.1`` (no hay flag para
|
||||
exponerlo) y el endpoint de attachments bloquea cualquier path fuera del vault
|
||||
(path traversal). No es un service desplegable a VPS.
|
||||
|
||||
Uso:
|
||||
python3 server/main.py --vault /home/enmanuel/Obsidian/osint --port 8470
|
||||
|
||||
Endpoints (JSON salvo /api/attachment):
|
||||
GET /api/health estado + tamaño del grafo cacheado
|
||||
GET /api/graph grafo completo {nodes, edges} para sigma.js
|
||||
GET /api/nodes?tipo=persona filas de la tabla de ese tipo
|
||||
GET /api/node/<slug> ficha: frontmatter + body + attachments
|
||||
GET /api/attachment?path=.. binario del attachment (path relativo al vault)
|
||||
GET /api/search?q=... nodos cuyo contenido matchea la query
|
||||
POST /api/refresh re-escanea el vault y reconstruye la caché
|
||||
"""
|
||||
|
||||
import argparse
|
||||
import datetime
|
||||
import json
|
||||
import mimetypes
|
||||
import os
|
||||
import sys
|
||||
import threading
|
||||
from http.server import BaseHTTPRequestHandler, ThreadingHTTPServer
|
||||
from urllib.parse import parse_qs, unquote, urlparse
|
||||
|
||||
|
||||
def _registry_functions_dir() -> str:
|
||||
"""Localiza ``python/functions`` del fn_registry sin paths hardcodeados.
|
||||
|
||||
Prueba primero la variable de entorno ``FN_REGISTRY_ROOT`` y después sube
|
||||
por los directorios padre de este archivo hasta encontrar una raíz que
|
||||
contenga ``python/functions/obsidian``. Así el backend funciona en
|
||||
cualquier PC con el layout estándar del registry (la app vive en
|
||||
``<root>/projects/osint/apps/osint_web/server/``).
|
||||
"""
|
||||
candidates = []
|
||||
env_root = os.environ.get("FN_REGISTRY_ROOT")
|
||||
if env_root:
|
||||
candidates.append(env_root)
|
||||
current = os.path.dirname(os.path.abspath(__file__))
|
||||
while True:
|
||||
candidates.append(current)
|
||||
parent = os.path.dirname(current)
|
||||
if parent == current:
|
||||
break
|
||||
current = parent
|
||||
for root in candidates:
|
||||
functions_dir = os.path.join(root, "python", "functions")
|
||||
if os.path.isdir(os.path.join(functions_dir, "obsidian")):
|
||||
return functions_dir
|
||||
raise RuntimeError(
|
||||
"no se encontró python/functions/obsidian subiendo desde "
|
||||
f"{os.path.abspath(__file__)}; define FN_REGISTRY_ROOT con la raíz "
|
||||
"del fn_registry"
|
||||
)
|
||||
|
||||
|
||||
sys.path.insert(0, _registry_functions_dir())
|
||||
|
||||
from obsidian import ( # noqa: E402 (sys.path debe resolverse antes)
|
||||
build_obsidian_graph,
|
||||
extract_obsidian_embeds,
|
||||
list_obsidian_notes,
|
||||
read_obsidian_note,
|
||||
resolve_obsidian_embed,
|
||||
search_obsidian_notes,
|
||||
slugify_obsidian_name,
|
||||
)
|
||||
|
||||
# Extensiones de imagen que el frontend muestra en la galería con lightbox.
|
||||
_IMAGE_EXTS = {".jpg", ".jpeg", ".png", ".gif", ".webp", ".bmp", ".svg"}
|
||||
|
||||
|
||||
def _json_default(value):
|
||||
"""Serializa tipos no-JSON del frontmatter YAML (fechas, etc.).
|
||||
|
||||
PyYAML parsea ``fecha_nacimiento: 1980-05-01`` como ``datetime.date``;
|
||||
sin esto ``json.dumps`` revienta con el vault real. Las fechas viajan en
|
||||
ISO (``YYYY-MM-DD``, ordenable); el frontend las muestra en formato
|
||||
europeo DD/MM/AAAA. Cualquier otro tipo raro cae a ``str``.
|
||||
"""
|
||||
if isinstance(value, (datetime.date, datetime.datetime)):
|
||||
return value.isoformat()
|
||||
return str(value)
|
||||
|
||||
|
||||
def _attachment_kind(name: str) -> str:
|
||||
"""Clasifica un attachment por extensión: ``image`` | ``pdf`` | ``other``."""
|
||||
ext = os.path.splitext(name)[1].lower()
|
||||
if ext in _IMAGE_EXTS:
|
||||
return "image"
|
||||
if ext == ".pdf":
|
||||
return "pdf"
|
||||
return "other"
|
||||
|
||||
|
||||
class VaultState:
|
||||
"""Caché en memoria del vault: grafo agregado + índice slug → nota.
|
||||
|
||||
Se construye al arrancar y se reconstruye bajo demanda con ``refresh()``
|
||||
(botón "refrescar" del frontend → ``POST /api/refresh``). Thread-safe
|
||||
para el ThreadingHTTPServer mediante un lock sobre la reconstrucción.
|
||||
|
||||
Raises:
|
||||
FileNotFoundError: si ``vault_dir`` no existe (error claro al
|
||||
arrancar, nunca un 500 silencioso).
|
||||
NotADirectoryError: si ``vault_dir`` no es un directorio.
|
||||
"""
|
||||
|
||||
def __init__(self, vault_dir: str):
|
||||
if not os.path.exists(vault_dir):
|
||||
raise FileNotFoundError(f"el vault no existe: {vault_dir}")
|
||||
if not os.path.isdir(vault_dir):
|
||||
raise NotADirectoryError(f"el vault no es un directorio: {vault_dir}")
|
||||
self.vault_dir = os.path.abspath(vault_dir)
|
||||
self._vault_real = os.path.realpath(self.vault_dir)
|
||||
self._lock = threading.Lock()
|
||||
self.graph: dict = {"nodes": [], "edges": []}
|
||||
self.note_index: dict = {} # slug -> {"path", "tipo", "label"}
|
||||
self.refresh()
|
||||
|
||||
def refresh(self) -> dict:
|
||||
"""Re-escanea el vault: reconstruye grafo + índice de notas.
|
||||
|
||||
Devuelve un resumen ``{"nodes": N, "edges": M}`` para el frontend.
|
||||
"""
|
||||
with self._lock:
|
||||
graph = build_obsidian_graph(self.vault_dir, include_dangling=True)
|
||||
nodes_by_id = {n["id"]: n for n in graph["nodes"]}
|
||||
note_index: dict = {}
|
||||
for path in list_obsidian_notes(self.vault_dir):
|
||||
slug = os.path.splitext(os.path.basename(path))[0]
|
||||
if not slug or slug in note_index:
|
||||
continue
|
||||
node = nodes_by_id.get(slug, {})
|
||||
note_index[slug] = {
|
||||
"path": path,
|
||||
"tipo": node.get("tipo", "nota"),
|
||||
"label": node.get("label", slug),
|
||||
}
|
||||
self.graph = graph
|
||||
self.note_index = note_index
|
||||
return {"nodes": len(graph["nodes"]), "edges": len(graph["edges"])}
|
||||
|
||||
def rows_by_tipo(self, tipo: str) -> list:
|
||||
"""Filas de la tabla de un tipo: nodos reales (no fantasma) filtrados.
|
||||
|
||||
Cada fila lleva ``id``, ``label``, ``tipo`` y el ``frontmatter``
|
||||
completo — el frontend aplana las columnas que le interesen.
|
||||
Sin ``tipo`` devuelve todos los nodos reales.
|
||||
"""
|
||||
rows = []
|
||||
for node in self.graph["nodes"]:
|
||||
if node.get("dangling"):
|
||||
continue
|
||||
if tipo and node["tipo"] != tipo:
|
||||
continue
|
||||
rows.append(
|
||||
{
|
||||
"id": node["id"],
|
||||
"label": node["label"],
|
||||
"tipo": node["tipo"],
|
||||
"frontmatter": node["frontmatter"],
|
||||
}
|
||||
)
|
||||
return rows
|
||||
|
||||
def node_detail(self, slug: str):
|
||||
"""Ficha completa de un nodo: frontmatter + body + attachments.
|
||||
|
||||
Los attachments salen de los embeds ``![[...]]`` del cuerpo, resueltos
|
||||
a paths reales con ``resolve_obsidian_embed`` y devueltos como paths
|
||||
**relativos al vault** (lo que consume ``/api/attachment``). Un embed
|
||||
que no resuelve se reporta con ``kind: "missing"`` y path vacío.
|
||||
|
||||
Devuelve ``None`` si el slug no corresponde a ninguna nota del vault.
|
||||
"""
|
||||
info = self.note_index.get(slug)
|
||||
if info is None:
|
||||
# Tolerancia: aceptar también nombres sin slugificar.
|
||||
info = self.note_index.get(slugify_obsidian_name(slug))
|
||||
if info is None:
|
||||
return None
|
||||
note = read_obsidian_note(info["path"])
|
||||
attachments = []
|
||||
for name in extract_obsidian_embeds(note["body"]):
|
||||
abs_path = resolve_obsidian_embed(self.vault_dir, name)
|
||||
if not abs_path:
|
||||
attachments.append({"name": name, "path": "", "kind": "missing"})
|
||||
continue
|
||||
rel = os.path.relpath(os.path.realpath(abs_path), self._vault_real)
|
||||
attachments.append(
|
||||
{"name": name, "path": rel, "kind": _attachment_kind(abs_path)}
|
||||
)
|
||||
return {
|
||||
"id": os.path.splitext(os.path.basename(info["path"]))[0],
|
||||
"tipo": info["tipo"],
|
||||
"label": info["label"],
|
||||
"frontmatter": note["frontmatter"],
|
||||
"body": note["body"],
|
||||
"tags": note["tags"],
|
||||
"wikilinks": note["wikilinks"],
|
||||
"attachments": attachments,
|
||||
}
|
||||
|
||||
def resolve_attachment_path(self, rel_path: str):
|
||||
"""Resuelve un path relativo de attachment a absoluto, SOLO dentro del vault.
|
||||
|
||||
Bloquea path traversal: normaliza con ``realpath`` y exige que el
|
||||
resultado quede estrictamente bajo la raíz real del vault. Devuelve
|
||||
``None`` (→ 403/404) ante cualquier intento de salir del vault, paths
|
||||
absolutos, o archivos inexistentes.
|
||||
"""
|
||||
if not rel_path:
|
||||
return None
|
||||
candidate = os.path.realpath(os.path.join(self._vault_real, rel_path))
|
||||
if candidate == self._vault_real:
|
||||
return None
|
||||
if not candidate.startswith(self._vault_real + os.sep):
|
||||
return None
|
||||
if not os.path.isfile(candidate):
|
||||
return None
|
||||
return candidate
|
||||
|
||||
def search(self, query: str) -> list:
|
||||
"""Búsqueda global: nodos cuyas notas matchean la query (substring).
|
||||
|
||||
Compone ``search_obsidian_notes`` y mapea cada hit a su nodo
|
||||
(slug, label, tipo) + las líneas que matchean.
|
||||
"""
|
||||
results = []
|
||||
for hit in search_obsidian_notes(self.vault_dir, query):
|
||||
slug = os.path.splitext(os.path.basename(hit["path"]))[0]
|
||||
info = self.note_index.get(slug, {})
|
||||
results.append(
|
||||
{
|
||||
"id": slug,
|
||||
"label": info.get("label", slug),
|
||||
"tipo": info.get("tipo", "nota"),
|
||||
"matches": hit.get("matches", []),
|
||||
}
|
||||
)
|
||||
return results
|
||||
|
||||
|
||||
class OsintWebHandler(BaseHTTPRequestHandler):
|
||||
"""Router HTTP fino sobre VaultState. Solo GET (+ POST /api/refresh)."""
|
||||
|
||||
# Inyectado por make_server(); class attribute para que cada request
|
||||
# (instancia nueva por conexión) comparta la misma caché.
|
||||
state: VaultState = None
|
||||
quiet = False
|
||||
|
||||
# --- helpers de respuesta -------------------------------------------------
|
||||
|
||||
def _send_json(self, status: int, payload) -> None:
|
||||
body = json.dumps(payload, ensure_ascii=False, default=_json_default).encode(
|
||||
"utf-8"
|
||||
)
|
||||
self.send_response(status)
|
||||
self.send_header("Content-Type", "application/json; charset=utf-8")
|
||||
self.send_header("Content-Length", str(len(body)))
|
||||
# El frontend (vite dev server en otro puerto local) necesita CORS.
|
||||
self.send_header("Access-Control-Allow-Origin", "*")
|
||||
self.end_headers()
|
||||
self.wfile.write(body)
|
||||
|
||||
def _send_file(self, abs_path: str) -> None:
|
||||
ctype = mimetypes.guess_type(abs_path)[0] or "application/octet-stream"
|
||||
with open(abs_path, "rb") as f:
|
||||
data = f.read()
|
||||
self.send_response(200)
|
||||
self.send_header("Content-Type", ctype)
|
||||
self.send_header("Content-Length", str(len(data)))
|
||||
self.send_header("Access-Control-Allow-Origin", "*")
|
||||
self.end_headers()
|
||||
self.wfile.write(data)
|
||||
|
||||
# --- rutas ----------------------------------------------------------------
|
||||
|
||||
def do_GET(self) -> None: # noqa: N802 (API de BaseHTTPRequestHandler)
|
||||
parsed = urlparse(self.path)
|
||||
route = parsed.path
|
||||
params = parse_qs(parsed.query)
|
||||
try:
|
||||
if route == "/" or route == "/api":
|
||||
self._send_json(
|
||||
200,
|
||||
{
|
||||
"app": "osint_web",
|
||||
"vault": self.state.vault_dir,
|
||||
"endpoints": [
|
||||
"/api/health",
|
||||
"/api/graph",
|
||||
"/api/nodes?tipo=<tipo>",
|
||||
"/api/node/<slug>",
|
||||
"/api/attachment?path=<rel>",
|
||||
"/api/search?q=<query>",
|
||||
"POST /api/refresh",
|
||||
],
|
||||
},
|
||||
)
|
||||
elif route == "/api/health":
|
||||
self._send_json(
|
||||
200,
|
||||
{
|
||||
"status": "ok",
|
||||
"vault": self.state.vault_dir,
|
||||
"nodes": len(self.state.graph["nodes"]),
|
||||
"edges": len(self.state.graph["edges"]),
|
||||
},
|
||||
)
|
||||
elif route == "/api/graph":
|
||||
self._send_json(200, self.state.graph)
|
||||
elif route == "/api/nodes":
|
||||
tipo = params.get("tipo", [""])[0]
|
||||
self._send_json(200, self.state.rows_by_tipo(tipo))
|
||||
elif route.startswith("/api/node/"):
|
||||
slug = unquote(route[len("/api/node/") :]).strip("/")
|
||||
detail = self.state.node_detail(slug)
|
||||
if detail is None:
|
||||
self._send_json(404, {"error": f"nodo no encontrado: {slug}"})
|
||||
else:
|
||||
self._send_json(200, detail)
|
||||
elif route == "/api/attachment":
|
||||
rel = params.get("path", [""])[0]
|
||||
abs_path = self.state.resolve_attachment_path(rel)
|
||||
if abs_path is None:
|
||||
self._send_json(
|
||||
403, {"error": "attachment fuera del vault o inexistente"}
|
||||
)
|
||||
else:
|
||||
self._send_file(abs_path)
|
||||
elif route == "/api/search":
|
||||
query = params.get("q", [""])[0]
|
||||
if not query:
|
||||
self._send_json(400, {"error": "falta el parámetro q"})
|
||||
else:
|
||||
self._send_json(200, self.state.search(query))
|
||||
else:
|
||||
self._send_json(404, {"error": f"ruta desconocida: {route}"})
|
||||
except BrokenPipeError:
|
||||
pass
|
||||
except Exception as exc: # noqa: BLE001 — nunca tumbar el server
|
||||
self._send_json(500, {"error": f"{type(exc).__name__}: {exc}"})
|
||||
|
||||
def do_POST(self) -> None: # noqa: N802
|
||||
route = urlparse(self.path).path
|
||||
try:
|
||||
if route == "/api/refresh":
|
||||
summary = self.state.refresh()
|
||||
self._send_json(200, {"status": "refreshed", **summary})
|
||||
else:
|
||||
self._send_json(404, {"error": f"ruta desconocida: {route}"})
|
||||
except Exception as exc: # noqa: BLE001
|
||||
self._send_json(500, {"error": f"{type(exc).__name__}: {exc}"})
|
||||
|
||||
def log_message(self, fmt, *args): # noqa: A003
|
||||
if not self.quiet:
|
||||
sys.stderr.write(
|
||||
"%s - %s\n" % (self.address_string(), fmt % args)
|
||||
)
|
||||
|
||||
|
||||
def make_server(vault_dir: str, port: int, quiet: bool = False) -> ThreadingHTTPServer:
|
||||
"""Construye el HTTPServer ligado a 127.0.0.1 con la caché del vault lista.
|
||||
|
||||
Separado de ``main()`` para que los tests arranquen el server en un puerto
|
||||
efímero (``port=0``) sin pasar por argparse.
|
||||
"""
|
||||
state = VaultState(vault_dir)
|
||||
handler = type(
|
||||
"BoundOsintWebHandler", (OsintWebHandler,), {"state": state, "quiet": quiet}
|
||||
)
|
||||
return ThreadingHTTPServer(("127.0.0.1", port), handler)
|
||||
|
||||
|
||||
def main(argv=None) -> int:
|
||||
parser = argparse.ArgumentParser(
|
||||
description="Backend local de osint_web: sirve el vault OSINT como API JSON."
|
||||
)
|
||||
parser.add_argument(
|
||||
"--vault",
|
||||
default=os.path.expanduser("~/Obsidian/osint"),
|
||||
help="ruta a la raíz del vault de Obsidian (default: ~/Obsidian/osint)",
|
||||
)
|
||||
parser.add_argument(
|
||||
"--port", type=int, default=8470, help="puerto local (default: 8470)"
|
||||
)
|
||||
args = parser.parse_args(argv)
|
||||
|
||||
try:
|
||||
server = make_server(args.vault, args.port)
|
||||
except (FileNotFoundError, NotADirectoryError) as exc:
|
||||
print(f"error: {exc}", file=sys.stderr)
|
||||
return 2
|
||||
|
||||
state = server.RequestHandlerClass.state
|
||||
print(
|
||||
f"osint_web backend en http://127.0.0.1:{args.port} — vault: "
|
||||
f"{state.vault_dir} ({len(state.graph['nodes'])} nodos, "
|
||||
f"{len(state.graph['edges'])} aristas)"
|
||||
)
|
||||
try:
|
||||
server.serve_forever()
|
||||
except KeyboardInterrupt:
|
||||
print("\nparando osint_web backend")
|
||||
finally:
|
||||
server.server_close()
|
||||
return 0
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
sys.exit(main())
|
||||
@@ -0,0 +1,241 @@
|
||||
"""Tests del backend osint_web sobre un vault fixture efímero.
|
||||
|
||||
Cubre los escenarios del Definition of Done del issue 0172 que aplican al
|
||||
backend: grafo golden, tabla filtrada por tipo, ficha con attachments,
|
||||
wikilink dangling, slug con acentos, path traversal bloqueado y vault
|
||||
inexistente con error claro. Incluye un test e2e que levanta el servidor en
|
||||
un puerto efímero y golpea los endpoints reales por HTTP.
|
||||
"""
|
||||
|
||||
import importlib.util
|
||||
import json
|
||||
import os
|
||||
import subprocess
|
||||
import sys
|
||||
import threading
|
||||
import urllib.error
|
||||
import urllib.request
|
||||
|
||||
import pytest
|
||||
|
||||
HERE = os.path.dirname(os.path.abspath(__file__))
|
||||
|
||||
_spec = importlib.util.spec_from_file_location(
|
||||
"osint_web_main", os.path.join(HERE, "main.py")
|
||||
)
|
||||
main = importlib.util.module_from_spec(_spec)
|
||||
_spec.loader.exec_module(main)
|
||||
|
||||
|
||||
# --- fixture: vault mínimo con personas, organizaciones y attachments --------
|
||||
|
||||
|
||||
@pytest.fixture()
|
||||
def vault(tmp_path):
|
||||
"""Vault Obsidian efímero: 2 notas reales conectadas + 1 wikilink roto."""
|
||||
root = tmp_path / "vault_osint"
|
||||
(root / ".obsidian").mkdir(parents=True)
|
||||
(root / ".obsidian" / "app.json").write_text("{}", encoding="utf-8")
|
||||
|
||||
persona_dir = root / "personas"
|
||||
persona_dir.mkdir()
|
||||
(persona_dir / "maria-del-mar-perez.md").write_text(
|
||||
"---\n"
|
||||
"tipo: persona\n"
|
||||
"nombre: María del Mar Pérez\n"
|
||||
"dni: 12345678Z\n"
|
||||
"fecha_nacimiento: 1980-05-01\n"
|
||||
"tags: [objetivo]\n"
|
||||
"---\n"
|
||||
"\n"
|
||||
"Ficha de prueba.\n"
|
||||
"\n"
|
||||
"## Relaciones\n"
|
||||
"\n"
|
||||
"- [[ACME SL]]\n"
|
||||
"- [[Persona-Inexistente]]\n"
|
||||
"\n"
|
||||
"## Documentos\n"
|
||||
"\n"
|
||||
"![[dni-maria.jpg]]\n"
|
||||
"![[certificado-perdido.pdf]]\n",
|
||||
encoding="utf-8",
|
||||
)
|
||||
|
||||
org_dir = root / "organizaciones"
|
||||
org_dir.mkdir()
|
||||
(org_dir / "acme-sl.md").write_text(
|
||||
"---\n"
|
||||
"tipo: organizacion\n"
|
||||
"nombre: ACME SL\n"
|
||||
"cif: B00000000\n"
|
||||
"---\n"
|
||||
"\n"
|
||||
"## Relaciones\n"
|
||||
"\n"
|
||||
"- [[María del Mar Pérez]]\n",
|
||||
encoding="utf-8",
|
||||
)
|
||||
|
||||
attach_dir = root / "attachments" / "personas" / "maria-del-mar-perez"
|
||||
attach_dir.mkdir(parents=True)
|
||||
(attach_dir / "dni-maria.jpg").write_bytes(b"\xff\xd8\xff" + b"fakejpegdata")
|
||||
|
||||
return str(root)
|
||||
|
||||
|
||||
# --- VaultState: grafo, tablas, fichas ----------------------------------------
|
||||
|
||||
|
||||
def test_graph_golden(vault):
|
||||
state = main.VaultState(vault)
|
||||
ids = {n["id"] for n in state.graph["nodes"]}
|
||||
assert {"maria-del-mar-perez", "acme-sl"} <= ids
|
||||
# Arista de la sección ## Relaciones con kind correcto y destino resuelto.
|
||||
assert {
|
||||
"source": "maria-del-mar-perez",
|
||||
"target": "acme-sl",
|
||||
"kind": "relacion",
|
||||
} in state.graph["edges"]
|
||||
|
||||
|
||||
def test_wikilink_acentos_resuelve_por_slug(vault):
|
||||
"""[[María del Mar Pérez]] (acentos, mayúsculas) → maria-del-mar-perez.md."""
|
||||
state = main.VaultState(vault)
|
||||
assert {
|
||||
"source": "acme-sl",
|
||||
"target": "maria-del-mar-perez",
|
||||
"kind": "relacion",
|
||||
} in state.graph["edges"]
|
||||
|
||||
|
||||
def test_wikilink_dangling_genera_nodo_fantasma(vault):
|
||||
state = main.VaultState(vault)
|
||||
ghosts = [n for n in state.graph["nodes"] if n.get("dangling")]
|
||||
assert any(n["id"] == "persona-inexistente" for n in ghosts)
|
||||
# Y no aparece en las tablas (solo nodos reales).
|
||||
assert all(r["id"] != "persona-inexistente" for r in state.rows_by_tipo(""))
|
||||
|
||||
|
||||
def test_rows_filtradas_por_tipo(vault):
|
||||
state = main.VaultState(vault)
|
||||
rows = state.rows_by_tipo("organizacion")
|
||||
assert [r["id"] for r in rows] == ["acme-sl"]
|
||||
assert rows[0]["frontmatter"]["cif"] == "B00000000"
|
||||
|
||||
|
||||
def test_node_detail_con_attachments(vault):
|
||||
state = main.VaultState(vault)
|
||||
detail = state.node_detail("maria-del-mar-perez")
|
||||
assert detail is not None
|
||||
assert detail["frontmatter"]["dni"] == "12345678Z"
|
||||
assert "Ficha de prueba" in detail["body"]
|
||||
by_name = {a["name"]: a for a in detail["attachments"]}
|
||||
dni = by_name["dni-maria.jpg"]
|
||||
assert dni["kind"] == "image"
|
||||
assert dni["path"] == os.path.join(
|
||||
"attachments", "personas", "maria-del-mar-perez", "dni-maria.jpg"
|
||||
)
|
||||
# Embed que no resuelve a archivo → marcado missing, sin crash.
|
||||
assert by_name["certificado-perdido.pdf"]["kind"] == "missing"
|
||||
|
||||
|
||||
def test_node_detail_desconocido(vault):
|
||||
state = main.VaultState(vault)
|
||||
assert state.node_detail("no-existe-este-slug") is None
|
||||
|
||||
|
||||
# --- seguridad: path traversal + vault inexistente ----------------------------
|
||||
|
||||
|
||||
def test_attachment_path_traversal_bloqueado(vault):
|
||||
state = main.VaultState(vault)
|
||||
assert state.resolve_attachment_path("../../etc/passwd") is None
|
||||
assert state.resolve_attachment_path("/etc/passwd") is None
|
||||
assert state.resolve_attachment_path("") is None
|
||||
assert state.resolve_attachment_path(".") is None
|
||||
# Un path legítimo dentro del vault sí resuelve.
|
||||
ok = state.resolve_attachment_path(
|
||||
"attachments/personas/maria-del-mar-perez/dni-maria.jpg"
|
||||
)
|
||||
assert ok is not None and ok.endswith("dni-maria.jpg")
|
||||
|
||||
|
||||
def test_vault_inexistente_error_claro():
|
||||
with pytest.raises(FileNotFoundError, match="el vault no existe"):
|
||||
main.VaultState("/no/existe/este/vault")
|
||||
|
||||
|
||||
def test_cli_vault_inexistente_exit_2():
|
||||
proc = subprocess.run(
|
||||
[sys.executable, os.path.join(HERE, "main.py"), "--vault", "/no/existe"],
|
||||
capture_output=True,
|
||||
text=True,
|
||||
timeout=30,
|
||||
)
|
||||
assert proc.returncode == 2
|
||||
assert "el vault no existe" in proc.stderr
|
||||
|
||||
|
||||
# --- e2e HTTP: server real en puerto efímero ----------------------------------
|
||||
|
||||
|
||||
def _get(base, path):
|
||||
try:
|
||||
with urllib.request.urlopen(base + path, timeout=10) as resp:
|
||||
return resp.status, resp.headers.get("Content-Type", ""), resp.read()
|
||||
except urllib.error.HTTPError as err:
|
||||
return err.code, err.headers.get("Content-Type", ""), err.read()
|
||||
|
||||
|
||||
def test_http_endpoints(vault):
|
||||
server = main.make_server(vault, 0, quiet=True)
|
||||
port = server.server_address[1]
|
||||
base = f"http://127.0.0.1:{port}"
|
||||
thread = threading.Thread(target=server.serve_forever, daemon=True)
|
||||
thread.start()
|
||||
try:
|
||||
status, _, body = _get(base, "/api/health")
|
||||
assert status == 200
|
||||
health = json.loads(body)
|
||||
assert health["status"] == "ok" and health["nodes"] >= 2
|
||||
|
||||
status, _, body = _get(base, "/api/graph")
|
||||
graph = json.loads(body)
|
||||
assert status == 200 and len(graph["edges"]) >= 2
|
||||
|
||||
status, _, body = _get(base, "/api/nodes?tipo=persona")
|
||||
rows = json.loads(body)
|
||||
assert status == 200 and [r["id"] for r in rows] == ["maria-del-mar-perez"]
|
||||
|
||||
status, _, body = _get(base, "/api/node/maria-del-mar-perez")
|
||||
detail = json.loads(body)
|
||||
assert status == 200 and detail["label"] == "María del Mar Pérez"
|
||||
# PyYAML parsea la fecha como datetime.date → debe serializar a ISO.
|
||||
assert detail["frontmatter"]["fecha_nacimiento"] == "1980-05-01"
|
||||
|
||||
status, ctype, body = _get(
|
||||
base,
|
||||
"/api/attachment?path=attachments/personas/maria-del-mar-perez/dni-maria.jpg",
|
||||
)
|
||||
assert status == 200 and ctype.startswith("image/") and body[:3] == b"\xff\xd8\xff"
|
||||
|
||||
# Error path del DoD: traversal jamás sirve fuera del vault.
|
||||
status, _, _ = _get(base, "/api/attachment?path=../../etc/passwd")
|
||||
assert status == 403
|
||||
|
||||
status, _, body = _get(base, "/api/search?q=ACME")
|
||||
hits = json.loads(body)
|
||||
assert status == 200 and any(h["id"] == "acme-sl" for h in hits)
|
||||
|
||||
status, _, _ = _get(base, "/api/node/slug-fantasma")
|
||||
assert status == 404
|
||||
|
||||
# POST /api/refresh reconstruye la caché.
|
||||
req = urllib.request.Request(base + "/api/refresh", method="POST")
|
||||
with urllib.request.urlopen(req, timeout=10) as resp:
|
||||
refreshed = json.loads(resp.read())
|
||||
assert resp.status == 200 and refreshed["status"] == "refreshed"
|
||||
finally:
|
||||
server.shutdown()
|
||||
server.server_close()
|
||||
Reference in New Issue
Block a user