chore: update backend tests

This commit is contained in:
2026-06-16 12:01:03 +03:00
parent 6162fc824f
commit 508377f7a7
16 changed files with 149 additions and 89 deletions

View File

@@ -1,3 +1,11 @@
# #region Test.SmokePlugins [C:3] [TYPE Module] [SEMANTICS test,plugin,smoke,loader,integration]
# @BRIEF Smoke tests verifying plugin discovery, instantiation, and TaskManager integration.
# @RELATION BINDS_TO -> [PluginLoader]
# @RELATION BINDS_TO -> [TaskManager]
# @TEST_EDGE: missing_plugin -> Missing expected plugins detected
# @TEST_EDGE: plugin_import_error -> Plugin load fails gracefully
# @TEST_EDGE: task_manager_init_failure -> TaskManager initialization error handled
# @RATIONALE Smoke tests exercise the full plugin loading chain without external deps.
import os
from pathlib import Path
import pytest
@@ -86,3 +94,4 @@ class TestPluginSmoke:
manager._flusher_thread.join(timeout=2)
assert manager is not None
# #endregion Test.SmokePlugins