Every ticket as the root of its provenance graph — goal, patch, approval, runs and (as the ticket-class build lands) mandate, manifestations, guarantees, journey, artifacts and children. Rendered through the <<<TicketGraphList>>> tag.
goal
THIS UNIT SUPERSEDES #304 — it is the SAME module and the same work, re-filed to be
SELF-CONTAINED. The superseded unit named its source only as a `git cat-file` command
against the forge's bare repos, which the sandboxed pair_loop worker that executes these
tickets cannot run, so it could not be done as filed (#346; #259 is the proof). A ticket body
is permanent in SQL (tg_tickets_immutable_identity, migrations/0029_ticket_authorization
.sql:111-117), so that body could not be repaired — this ticket carries the fix instead, and
the original is halted by a stop ticket rather than erased. Do the work HERE.
Rewrite ONE unique forge module as entirely new, behavior-preserving, installable,
control-config'd Python, per the FORGE-wide refactor standard #200 (#std).
This ticket covers ONE module — the one identified below — and nothing else. It was filed
against the module's DEDUPLICATED identity, so if that module was copy-pasted across the
forge, every copy is covered by this single ticket.
MODULE KEY : forge-rw:3cc7504c5d6bab73
(the ticketer's idempotency marker — it lives in this ticket's TITLE. Do
not edit the title, or the module will be re-filed as a duplicate.)
IDENTITY : AST-NORMALIZED — codebean's `_ast_norm` (#183), i.e.
ast.dump(ast.parse(ast.unparse(ast.parse(src)))).
Copies of this module that differ only in comments, blank lines,
quoting or spacing carry the SAME module-sha and are covered by THIS
ticket. A differing docstring is real content, so a module whose
docstring differs is a DIFFERENT module with its own ticket.
SIZE : 2855 bytes
EXTENSION : .py
CANONICAL SOURCE (the location this ticket is named for):
repo : code__code__jazz__kokoro__dz_debug
path : dz_debug/tests/test_dz_debug.py
ref : refs/heads/main (as recorded when this module was first filed)
blob : f64f023222a1d8278a818c817eef13f385d5f331 (git blob sha1)
REFERENCE ONLY — you do NOT need this command. This module's bytes are embedded
COMPLETE in THE ORIGINAL SOURCE block below, and that is what the rewrite is based
on. For a reader who does have forge access:
git --git-dir=/Users/stevenpeterson/code/installed/jazz-project/config/forge/remotes/code__code__jazz__kokoro__dz_debug.git cat-file blob f64f023222a1d8278a818c817eef13f385d5f331
THE SAME MODULE ALSO LIVES AT THESE FORGE TIPS — 2 copy/copies. They SHARE THIS
ticket: this module is rewritten ONCE, and every location below is satisfied by
that one rewrite. Do not file a ticket per copy.
dz_debug:dz_debug/tests/test_dz_debug.py
gitlab__testmonkeyalpha__dz_debug:dz_debug/tests/test_dz_debug.py
HISTORICAL OCCURRENCES of this exact blob — every OTHER DISTINCT {repo, path}
the omni-git index (`occ`, joined on the git blob sha1) records this
byte-identical file at, with the index's own `ts` for the first row of each.
Any place this run enumerated LIVE is listed under the forge tips above, not
here. Context for the rewrite, not extra work:
testmonkeyalpha/dz_debug:dz_debug/tests/test_dz_debug.py [occ.ts gitlab]
THE ORIGINAL SOURCE, EMBEDDED — YOU NEED NO FORGE ACCESS TO DO THIS TICKET.
The module's own bytes are reproduced below, inside this ticket. THEY are the
authoritative copy and the behavior-preserving basis: rewrite from them. The
`git --git-dir=... cat-file blob` command under CANONICAL SOURCE above is kept only as a
REFERENCE for a reader who happens to have forge access — running it is NOT part of this
ticket. (Why the bytes are here at all: the pair_loop worker that executes this ticket is
sandboxed to the ticket's own congruency worktree and cannot read the forge's bare repos.
Ticket #346 is the fix that put them on the ticket.)
The block BEGINS at the line
===ORIGINAL SOURCE (verbatim, the behavior-preserving basis)===
and ENDS at the first line
===END SOURCE===
Everything strictly between those two lines is the module — 2855 byte(s), byte for byte, with no re-indentation, no re-wrapping and nothing
elided.
===ORIGINAL SOURCE (verbatim, the behavior-preserving basis)===
# SPDX-License-Identifier: Apache-2.0
# Copyright 2026 testmonkeyalpha — Claude & Co.
"""Unit tests for dz_debug Logger — redirects log output to tmp_path."""
import pytest
from dz_debug.log import Logger
@pytest.fixture
def log(tmp_path):
return Logger("test-svc", build_id="test-build", config={
"log_root": tmp_path,
"build_json": tmp_path / "build.json",
"mirror_to_stderr": False,
"profile": "debug",
})
def test_logger_creates_log_file(tmp_path):
Logger("svc", build_id="b1", config={
"log_root": tmp_path, "build_json": tmp_path / "x.json",
"mirror_to_stderr": False, "profile": "standard",
})
assert (tmp_path / "b1" / "svc.log").exists()
def test_logger_writes_info(log, tmp_path):
log.info("hello world")
log.close()
content = (tmp_path / "test-build" / "test-svc.log").read_text()
assert "hello world" in content
assert "INFO" in content
def test_logger_writes_warn(log, tmp_path):
log.warn("watch out")
log.close()
content = (tmp_path / "test-build" / "test-svc.log").read_text()
assert "watch out" in content
assert "WARN" in content
def test_logger_writes_error(log, tmp_path):
log.error("something broke")
log.close()
content = (tmp_path / "test-build" / "test-svc.log").read_text()
assert "something broke" in content
assert "ERROR" in content
def test_logger_writes_debug(log, tmp_path):
log.debug("verbose detail")
log.close()
content = (tmp_path / "test-build" / "test-svc.log").read_text()
assert "verbose detail" in content
def test_logger_none_profile_suppresses_info(tmp_path):
log = Logger("svc", build_id="b", config={
"log_root": tmp_path, "build_json": tmp_path / "x.json",
"mirror_to_stderr": False, "profile": "none",
})
log.info("should not appear")
log.close()
content = (tmp_path / "b" / "svc.log").read_text()
assert "should not appear" not in content
def test_logger_unknown_profile_raises(tmp_path):
with pytest.raises(ValueError, match="Unknown profile"):
Logger("svc", build_id="b", config={
"log_root": tmp_path, "build_json": tmp_path / "x.json",
"mirror_to_stderr": False, "profile": "fantasy",
})
def test_logger_path_property(log, tmp_path):
assert log.path == tmp_path / "test-build" / "test-svc.log"
log.close()
def test_logger_channels_property(log):
ch = log.channels
assert isinstance(ch, dict)
assert "payload" in ch
def test_logger_error_with_exception(log, tmp_path):
try:
raise ValueError("boom")
except ValueError as e:
log.error("caught it", exc=e)
log.close()
content = (tmp_path / "test-build" / "test-svc.log").read_text()
assert "caught it" in content
assert "ValueError" in content
===END SOURCE===
THE CALLABLE SURFACE — every callable in the original, lowered with codebean's
`lower_node` (#183). The rewrite must present THIS surface (same names, same
parameters, same defaults) so callers of the original keep working:
log(tmp_path)
test_logger_creates_log_file(tmp_path)
test_logger_writes_info(log, tmp_path)
test_logger_writes_warn(log, tmp_path)
test_logger_writes_error(log, tmp_path)
test_logger_writes_debug(log, tmp_path)
test_logger_none_profile_suppresses_info(tmp_path)
test_logger_unknown_profile_raises(tmp_path)
test_logger_path_property(log, tmp_path)
test_logger_channels_property(log)
test_logger_error_with_exception(log, tmp_path)
CAPTURED BEHAVIORAL EXEMPLARS: none. no function in this module is minable — criteria_miner mines only
self-contained pure functions (it refuses anything that mentions a
world-touching or non-deterministic name, plus methods and no-arg
functions), and nothing here qualified
This does NOT weaken the ticket's bar — it MOVES the work: you must write the
equivalence exemplars by hand from the original's behavior before rewriting, and
they are what settles this ticket.
THE STANDARD — #200's four requirements, which this ticket exists to enforce. All four are
the standard's own words; none is optional:
1. BEHAVIOR-PRESERVING, VERIFIED NOT ASSERTED — the deliverable is ENTIRELY NEW source
code (rewritten, not copied). It must reproduce the ORIGINAL's behavior, and the proof
is the exemplars above (captured via codebean lower_* #183 + criteria_miner
IO-exemplars, exactly as #200 specifies).
2. A PYTHON MODULE — regardless of the source language. This module's source is `.py`;
the rewrite is Python either way.
3. INSTALLABLE — a proper package: pyproject.toml, `pip install -e .` works, console
entry points where applicable.
4. CONTROL-CONFIG'D — NO hardcoded paths or params. A JSON/registry config object drives
it (the install.json / registry.json idiom of this repo), and per note-for-claude a
tool that cannot see its config THROWS rather than guessing a default.
ACCEPTANCE (#200's, per rewrite ticket) — this ticket settles when ALL of:
a. the new source reproduces every captured exemplar above, plus the edge cases you add
for what sampling cannot reach (paste the runs as evidence);
b. it presents the callable surface above, so existing callers keep working;
c. `pip install -e .` installs it clean from its own pyproject.toml;
d. it runs off a config object with ZERO hardcoded settings, and throws without one.
Kind is `build` (a pair: coder + adversarial tester). This ticket hangs off #200 by a
`spawned` edge, so a stop ticket aimed at #200 brakes every rewrite in this programme.
Filed mechanically by checkouts/current/congruency/tools/forge_refactor_ticketer.py under ticket #201, from the forge bare repos at
/Users/stevenpeterson/code/installed/jazz-project/config/forge/remotes. Its original source is embedded above (#346), so this ticket is complete on its own.