39 lines
1.0 KiB
Go
39 lines
1.0 KiB
Go
package witness
|
|
|
|
import (
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/steveyegge/gastown/internal/beads"
|
|
)
|
|
|
|
func TestBuildWitnessStartCommand_UsesRoleConfig(t *testing.T) {
|
|
roleConfig := &beads.RoleConfig{
|
|
StartCommand: "exec run --town {town} --rig {rig} --role {role}",
|
|
}
|
|
|
|
got, err := buildWitnessStartCommand("/town/rig", "gastown", "/town", "", roleConfig)
|
|
if err != nil {
|
|
t.Fatalf("buildWitnessStartCommand: %v", err)
|
|
}
|
|
|
|
want := "exec run --town /town --rig gastown --role witness"
|
|
if got != want {
|
|
t.Errorf("buildWitnessStartCommand = %q, want %q", got, want)
|
|
}
|
|
}
|
|
|
|
func TestBuildWitnessStartCommand_DefaultsToRuntime(t *testing.T) {
|
|
got, err := buildWitnessStartCommand("/town/rig", "gastown", "/town", "", nil)
|
|
if err != nil {
|
|
t.Fatalf("buildWitnessStartCommand: %v", err)
|
|
}
|
|
|
|
if !strings.Contains(got, "GT_ROLE=witness") {
|
|
t.Errorf("expected GT_ROLE=witness in command, got %q", got)
|
|
}
|
|
if !strings.Contains(got, "BD_ACTOR=gastown/witness") {
|
|
t.Errorf("expected BD_ACTOR=gastown/witness in command, got %q", got)
|
|
}
|
|
}
|