Treat `banger`, `bangerd`, and `banger-vsock-agent` as one release by stamping the same version, commit SHA, and build timestamp into every binary through a shared ldflag-backed `internal/buildinfo` package. Add `banger version`, extend daemon ping/status to report the running daemon's build tuple, and keep the guest helper linked to the same build metadata without adding a new public version surface for it. Validate with `GOCACHE=/tmp/banger-gocache go test ./...`, `make build`, `./build/bin/banger version`, and `./build/bin/banger daemon status` after the daemon restarts onto the new binary.
33 lines
818 B
Go
33 lines
818 B
Go
package buildinfo
|
|
|
|
import "testing"
|
|
|
|
func TestNormalizeUsesFallbacks(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
info := Normalize("", " ", "\t")
|
|
if info.Version != "dev" {
|
|
t.Fatalf("Version = %q, want dev", info.Version)
|
|
}
|
|
if info.Commit != "unknown" {
|
|
t.Fatalf("Commit = %q, want unknown", info.Commit)
|
|
}
|
|
if info.BuiltAt != "unknown" {
|
|
t.Fatalf("BuiltAt = %q, want unknown", info.BuiltAt)
|
|
}
|
|
}
|
|
|
|
func TestNormalizeTrimsValues(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
info := Normalize(" v1.2.3 ", " abc123 ", " 2026-03-22T12:00:00Z ")
|
|
if info.Version != "v1.2.3" {
|
|
t.Fatalf("Version = %q, want v1.2.3", info.Version)
|
|
}
|
|
if info.Commit != "abc123" {
|
|
t.Fatalf("Commit = %q, want abc123", info.Commit)
|
|
}
|
|
if info.BuiltAt != "2026-03-22T12:00:00Z" {
|
|
t.Fatalf("BuiltAt = %q, want 2026-03-22T12:00:00Z", info.BuiltAt)
|
|
}
|
|
}
|