agent/pkg/setup/setup_extra_test.go
Snider 537226bd4d feat: AX v0.8.0 upgrade — Core features + quality gates
AX Quality Gates (RFC-025):
- Eliminate os/exec from all test + production code (12+ files)
- Eliminate encoding/json from all test files (15 files, 66 occurrences)
- Eliminate os from all test files except TestMain (Go runtime contract)
- Eliminate path/filepath, net/url from all files
- String concat: 39 violations replaced with core.Concat()
- Test naming AX-7: 264 test functions renamed across all 6 packages
- Example test 1:1 coverage complete

Core Features Adopted:
- Task Composition: agent.completion pipeline (QA → PR → Verify → Ingest → Poke)
- PerformAsync: completion pipeline runs with WaitGroup + progress tracking
- Config: agents.yaml loaded once, feature flags (auto-qa/pr/merge/ingest)
- Named Locks: c.Lock("drain") for queue serialisation
- Registry: workspace state with cross-package QUERY access
- QUERY: c.QUERY(WorkspaceQuery{Status: "running"}) for cross-service queries
- Action descriptions: 25+ Actions self-documenting
- Data mounts: prompts/tasks/flows/personas/workspaces via c.Data()
- Content Actions: agentic.prompt/task/flow/persona callable via IPC
- Drive endpoints: forge + brain registered with tokens
- Drive REST helpers: DriveGet/DrivePost/DriveDo for Drive-aware HTTP
- HandleIPCEvents: auto-discovered by WithService (no manual wiring)
- Entitlement: frozen-queue gate on write Actions
- CLI dispatch: workspace dispatch wired to real dispatch method
- CLI: --quiet/-q and --debug/-d global flags
- CLI: banner, version, check (with service/action/command counts), env
- main.go: minimal — 5 services + c.Run(), no os import
- cmd tests: 84.2% coverage (was 0%)

Co-Authored-By: Virgil <virgil@lethean.io>
2026-03-26 06:38:02 +00:00

94 lines
2.4 KiB
Go

// SPDX-License-Identifier: EUPL-1.2
package setup
import (
"testing"
"github.com/stretchr/testify/assert"
)
// --- defaultBuildCommand ---
func TestSetup_DefaultBuildCommand_Good(t *testing.T) {
assert.Equal(t, "go build ./...", defaultBuildCommand(TypeGo))
assert.Equal(t, "go build ./...", defaultBuildCommand(TypeWails))
assert.Equal(t, "composer test", defaultBuildCommand(TypePHP))
assert.Equal(t, "npm run build", defaultBuildCommand(TypeNode))
assert.Equal(t, "make build", defaultBuildCommand(TypeUnknown))
}
// --- defaultTestCommand ---
func TestSetup_DefaultTestCommand_Good(t *testing.T) {
assert.Equal(t, "go test ./...", defaultTestCommand(TypeGo))
assert.Equal(t, "go test ./...", defaultTestCommand(TypeWails))
assert.Equal(t, "composer test", defaultTestCommand(TypePHP))
assert.Equal(t, "npm test", defaultTestCommand(TypeNode))
assert.Equal(t, "make test", defaultTestCommand(TypeUnknown))
}
// --- formatFlow ---
func TestSetup_FormatFlow_Good(t *testing.T) {
goFlow := formatFlow(TypeGo)
assert.Contains(t, goFlow, "go build ./...")
assert.Contains(t, goFlow, "go test ./...")
phpFlow := formatFlow(TypePHP)
assert.Contains(t, phpFlow, "composer test")
nodeFlow := formatFlow(TypeNode)
assert.Contains(t, nodeFlow, "npm run build")
assert.Contains(t, nodeFlow, "npm test")
}
// --- Detect ---
func TestSetup_DetectGo_Good(t *testing.T) {
dir := t.TempDir()
fs.Write(dir+"/go.mod", "module test\n")
assert.Equal(t, TypeGo, Detect(dir))
}
func TestSetup_DetectPHP_Good(t *testing.T) {
dir := t.TempDir()
fs.Write(dir+"/composer.json", `{"name":"test"}`)
assert.Equal(t, TypePHP, Detect(dir))
}
func TestSetup_DetectNode_Good(t *testing.T) {
dir := t.TempDir()
fs.Write(dir+"/package.json", `{"name":"test"}`)
assert.Equal(t, TypeNode, Detect(dir))
}
func TestSetup_DetectWails_Good(t *testing.T) {
dir := t.TempDir()
fs.Write(dir+"/wails.json", `{}`)
assert.Equal(t, TypeWails, Detect(dir))
}
func TestSetup_Detect_Bad(t *testing.T) {
dir := t.TempDir()
assert.Equal(t, TypeUnknown, Detect(dir))
}
// --- DetectAll ---
func TestSetup_DetectAll_Good(t *testing.T) {
dir := t.TempDir()
fs.Write(dir+"/go.mod", "module test\n")
fs.Write(dir+"/package.json", `{"name":"test"}`)
types := DetectAll(dir)
assert.Contains(t, types, TypeGo)
assert.Contains(t, types, TypeNode)
assert.NotContains(t, types, TypePHP)
}
func TestSetup_DetectAll_Bad(t *testing.T) {
dir := t.TempDir()
types := DetectAll(dir)
assert.Empty(t, types)
}