fix(dms): 3 von 4 Vorbestand-Testfailures behoben — Suite 125->128 gruen
Check Cross-Plugin Imports / check (push) Has been cancelled

1. shared_with_me Leerpfad gab Envelope {items,total} zurueck waehrend Erfolgspfad pures Array liefert (self-inconsistent) -> jetzt konsistent [] wie /search; Frontend dms.ts vertraegt beide Shapes
2+3. CHUNK_SIZE historischer Kontrakt wiederhergestellt: Originaltest importierte CHUNK_SIZE aus dms.routes (727d866), a614ab3 entfernte den Import statt das Symbol zu liefern -> NameError x2. Jetzt: oeffentliche Konstante in common.py + Re-Export + Importzeile im Test restauriert

Beweis: Full-DMS-Suite 129 Tests = 128 passed + 1 failed (nur multiple_files, s. Follow-up) vs Baseline 125+4
This commit is contained in:
Agent Zero
2026-08-26 23:17:38 +02:00
parent 4cf7a91416
commit e0255412ac
4 changed files with 6 additions and 2 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ from unittest.mock import AsyncMock, MagicMock
import pytest
from app.core.storage import LocalStorage, StorageBackend
from app.plugins.builtins.dms.routes import _sanitize_filename
from app.plugins.builtins.dms.routes import CHUNK_SIZE, _sanitize_filename
class TestSanitizeFilename: