[test] e2e domain-module integration: sqlite CRUD, markdown, gum (STAR-53)#21
Merged
Conversation
…R-53) Extend the e2e golden suite to prove the offline-testable domain modules actually do their job through the CLI, not merely load (the last P0 gap from the cost-price audit's "domain modules only load-verified" finding): - sqlite: a real local in-memory CRUD round-trip (connect ":memory:" -> CREATE/insert/query) returns the stored value - markdown: convert() renders HTML - gum: the headless table renders without a TTY Full -race green; Docker golang:1.25 floor builds + runs the binary in-container.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Extend the e2e golden suite (#20) to prove the offline-testable domain modules actually do their job through the CLI, not merely load — closing the cost-price audit's "domain modules only load-verified, never function-verified" finding.
TestDomainModuleIntegrationruns through the real binary:connect(":memory:")→CREATE/insert/query) returns the stored valueAda.convert()renders HTML (<h1>…Hi</h1>).tablerenders without a TTY (contains the header + cell).Verification
-racegreen; Dockergolang:1.25(go floor) builds + runs the binary in-container and passes.Tracks STAR-53 P0 ③ — completes the P0 test-gap trio (① web httptest #19, ② e2e golden #20, ③ this). Remaining STAR-53: P1 distribution (goreleaser + STAR-57 tzdata/CA) + footprint baseline.