harness: conform binary, fixture, gate, tap, runner, report - #1
Merged
Conversation
- cmd/conform: CLI with --host, --token, --only, --parallel, --report, --tap, --list flags - fixture: Fixture struct + FromEnv() + Env() for passing to runner subprocesses - gate: all 191 gate IDs with client, operation, and criterion metadata - tap: TAP v14 parser and Writer for runner output - runner: Runner definitions and Run() — exec subprocess, parse TAP, return results - report: JSON report with per-gate status, duration, and summary counts - ci.yml: build + vet + test + gate-inventory CI job
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
Core conformance infrastructure — the
conformbinary and all supporting packages.Packages
fixture/—Fixturestruct read from env;Env()passes all connection params to runner subprocesses as key=valuegate/— All 191 gate IDs with client, operation, and criterion metadata;gate.All()andgate.Categories()for reportingtap/— TAP v14 parser (Parse(r io.Reader)) andWriterfor runner subprocesses to emit structured resultsrunner/—Runnerstruct withRun(ctx, env) Result; runners are subprocess invocations that output TAP; all 8 runners registeredreport/—Reportstruct withAddTAP(),Finalize(),Write(w)for JSON outputcmd/conform/— CLI entry point; flags:--only,--parallel,--report,--tap,--list,--versionCI
ci.ymlrunsgo build,go vet,go test, andconform --liston every push.Usage