mirror of
https://github.com/semantica-agi/semantica.git
synced 2026-08-29 04:26:20 +00:00
* fix(ingest): import sqlalchemy text where DBIngestor and DataExporter use it sqlalchemy.text was imported function-locally in DatabaseConnector.connect and test_connection, but called in DataExporter.export_table_data and DBIngestor.execute_query, which never imported it. Both raised NameError, re-wrapped by their except handlers into a ProcessingError reading 'Failed to execute query: name text is not defined' -- a message that looks like a database fault rather than a missing import. No test exercised either method, so this also repairs a pre-existing failure in tests/ingest/test_notebook_02.py::test_08_database_ingestion. Add SQLite-backed coverage for all three call sites, including the SELECT COUNT(*) branch that only runs when no limit is passed and would otherwise stay untested. Closes #1015 * test(ingest): register setUp cleanups with addCleanup TemporaryDirectory and the SQLAlchemy engine were released only in tearDown, which unittest skips when setUp raises partway through. Register each cleanup as soon as its resource exists so a failed setUp still disposes the engine and removes the temp directory. LIFO ordering keeps dispose before cleanup, as tearDown had it. --------- Co-authored-by: Pravit Ampapathini <pravitampapathini@Pravits-MacBook-Air-3.local> Co-authored-by: Pravit Ampapathini <pravit.amp@gmail.com>