Import AITURK IDE 1.0.0-beta.1 from Hermes 63279301; preserve MIT license

This commit is contained in:
2026-09-05 13:26:46 +03:00
commit 03634b1ca3
11340 changed files with 3442369 additions and 0 deletions
@@ -0,0 +1,29 @@
"""Tests for live auto-decompose settings resolution (issue #49638).
The gateway dispatcher used to capture ``kanban.auto_decompose`` once at boot,
so a user who flipped it to ``false`` to STOP runaway auto-decompose (which had
created and launched tasks they didn't intend) found the flag had no effect
without a full gateway restart. ``_resolve_auto_decompose_settings`` is now
called every tick, reading the current config.
"""
from __future__ import annotations
import pytest
from gateway.kanban_watchers import _resolve_auto_decompose_settings
def test_enabled_by_default_when_key_absent():
enabled, per_tick = _resolve_auto_decompose_settings(lambda: {"kanban": {}})
assert enabled is True
assert per_tick == 3
def test_disabled_when_flag_false():
enabled, per_tick = _resolve_auto_decompose_settings(
lambda: {"kanban": {"auto_decompose": False}}
)
assert enabled is False