"""Canonical wall-clock helpers for the AEAT domain.A single, testable entry-point for obtaining the current UTC time.Call-sites must import :func:`now` from :mod:`aeat.core.time` ratherthan inlining ``datetime.now(tz=UTC)`` directly, so the productionclock can be traced and call-sites stay uniform.Deterministic-output seam-------------------------:func:`now` consults a context-variable frozen instant so a replay orgolden-capture scope can make every call site that routes through itdeterministic. The seam is DEFAULT-OFF: production never enters:func:`frozen_clock`, so :func:`now` returns real``datetime.now(tz=UTC)`` with zero behaviour change. The seam iscontext-var scoped — never process-global — so it cannot leak acrosstasks the way ``freezegun`` / ``time_machine`` global freezing does, thepattern banned in live-marked tests by:data:`aeat-tests.conftest.BANNED_LIVE_IMPORTS`. :func:`frozen_clock`additionally refuses to activate while the pytest live-read opt-in(:attr:`aeat.core.config.Settings.live_tests_enabled`) is set, keepinglive-marked tests on real wall-clock plus explicit ``clock=`` injectionexactly as today."""from__future__importannotationsfromcollections.abcimportIteratorfromcontextlibimportcontextmanagerfromcontextvarsimportContextVarfromdatetimeimportUTC,datetimefrom..errorsimportCoreValidationErrorfrom..loggingimportget_loggerfrom._utcimportvalidate_utc_aware_logger=get_logger(__name__)_FROZEN_INSTANT:ContextVar[datetime|None]=ContextVar("_aeat_frozen_clock_instant",default=None,)"""Replay/test-scoped frozen instant consulted by :func:`now`; ``None`` in production."""
[docs]defnow()->datetime:"""Return the current UTC-aware datetime, or the frozen instant when the seam is active. In production :data:`_FROZEN_INSTANT` is never set, so this returns real wall-clock ``datetime.now(tz=UTC)`` with zero behaviour change. Under a :func:`frozen_clock` scope it returns the frozen instant, making every call site that routes through this function deterministic for the duration of the scope. Returns: A :class:`datetime.datetime` instance with :data:`datetime.UTC` as its ``tzinfo``. """frozen=_FROZEN_INSTANT.get()iffrozenisnotNone:returnfrozenreturndatetime.now(tz=UTC)
[docs]defclock_is_frozen()->bool:"""Return whether a :func:`frozen_clock` scope is active for the current context."""return_FROZEN_INSTANT.get()isnotNone
def_refuse_under_live_opt_in()->None:"""Raise :class:`CoreValidationError` when the live-test opt-in is active. The seam must stay off in live-marked tests: those run against real external services on real wall-clock, and freezing the clock there is the exact global-freeze anti-pattern the live-import ban exists to prevent. ``load_settings`` is imported lazily to avoid a module-load cycle between ``core.config`` and ``core.time``. """from..configimportload_settingsifload_settings().live_tests_enabled:raiseCoreValidationError("frozen_clock is forbidden while the live-test opt-in ""is set: live-marked tests must run on ""real wall-clock plus explicit clock= injection",)
[docs]@contextmanagerdeffrozen_clock(instant:datetime)->Iterator[datetime]:"""Freeze :func:`now` to ``instant`` for the duration of the scope. This is the replay/golden-capture-only seam behind the deterministic-output substrate. It is DEFAULT-OFF (production never enters it) and context-var scoped (never process-global), and it refuses to activate under the pytest live-read opt-in. Args: instant: The UTC-aware instant :func:`now` returns while active. Yields: The frozen ``instant``. Raises: CoreValidationError: When ``instant`` is naive or not UTC, or when the pytest live-read opt-in is enabled. """validate_utc_aware(instant)_refuse_under_live_opt_in()token=_FROZEN_INSTANT.set(instant)try:yieldinstantfinally:_FROZEN_INSTANT.reset(token)