f99010fae1
CI / lint (push) Failing after 1s
CI / frontend (push) Failing after 1s
CI / scripts (push) Failing after 1s
CI / Go Test (ubuntu-latest) (push) Failing after 0s
CI / frontend-node-25 (push) Failing after 1s
CI / docs (push) Failing after 0s
CI / coverage (push) Failing after 0s
CI / e2e (push) Failing after 0s
Docker / build-and-push (push) Failing after 1s
CI / integration (push) Failing after 4m43s
CI / Go Test (windows-latest) (push) Has been cancelled
CI / Desktop Unit Tests (Windows) (push) Has been cancelled
Desktop Artifacts / Desktop Build (Linux (arm64)) (push) Has been cancelled
Desktop Artifacts / Desktop Build (Linux) (push) Has been cancelled
Desktop Artifacts / Desktop Build (Windows) (push) Has been cancelled
Desktop Artifacts (macOS) / Desktop Build (macOS (aarch64)) (push) Has been cancelled
Desktop Artifacts (macOS) / Desktop Build (macOS (x86_64)) (push) Has been cancelled
77 lines
2.5 KiB
Go
77 lines
2.5 KiB
Go
package sync
|
|
|
|
import (
|
|
"os"
|
|
"path/filepath"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
"go.kenn.io/agentsview/internal/parser"
|
|
)
|
|
|
|
func TestWorkBuddyRegistryUsesRecursiveWatch(t *testing.T) {
|
|
def, ok := parser.AgentByType(parser.AgentWorkBuddy)
|
|
require.True(t, ok, "AgentWorkBuddy missing from Registry")
|
|
require.False(t, def.ShallowWatch, "WorkBuddy should use recursive watch for nested sessions")
|
|
}
|
|
|
|
func TestEngineClassifyWorkBuddyPaths(t *testing.T) {
|
|
|
|
db := openTestDB(t)
|
|
root := t.TempDir()
|
|
engine := NewEngine(db, EngineConfig{
|
|
AgentDirs: map[parser.AgentType][]string{
|
|
parser.AgentWorkBuddy: {root},
|
|
},
|
|
Machine: "local",
|
|
})
|
|
|
|
mainPath := filepath.Join(root, "proj", "11111111-1111-4111-8111-111111111111.jsonl")
|
|
subPath := filepath.Join(root, "proj", "11111111-1111-4111-8111-111111111111", "subagents", "agent-123.jsonl")
|
|
toolPath := filepath.Join(root, "proj", "11111111-1111-4111-8111-111111111111", "tool-results", "tool_123.txt")
|
|
for _, path := range []string{mainPath, subPath, toolPath} {
|
|
require.NoError(t, os.MkdirAll(filepath.Dir(path), 0o755))
|
|
require.NoError(t, os.WriteFile(path, []byte("{}\n"), 0o644))
|
|
}
|
|
|
|
files := engine.classifyPaths([]string{mainPath})
|
|
require.Len(t, files, 1, "main path did not classify")
|
|
got := files[0]
|
|
assert.Equal(t, mainPath, got.Path)
|
|
assert.Equal(t, "proj", got.Project)
|
|
assert.Equal(t, parser.AgentWorkBuddy, got.Agent)
|
|
|
|
files = engine.classifyPaths([]string{subPath})
|
|
require.Len(t, files, 1, "subagent path did not classify")
|
|
got = files[0]
|
|
assert.Equal(t, subPath, got.Path)
|
|
assert.Equal(t, "proj", got.Project)
|
|
assert.Equal(t, parser.AgentWorkBuddy, got.Agent)
|
|
|
|
files = engine.classifyPaths([]string{toolPath})
|
|
assert.Empty(t, files, "tool result classified as %+v", files)
|
|
}
|
|
|
|
func TestEngineClassifyWorkBuddyProjectNamedSubagentsAsMainSession(t *testing.T) {
|
|
db := openTestDB(t)
|
|
root := t.TempDir()
|
|
engine := NewEngine(db, EngineConfig{
|
|
AgentDirs: map[parser.AgentType][]string{
|
|
parser.AgentWorkBuddy: {root},
|
|
},
|
|
Machine: "local",
|
|
})
|
|
|
|
path := filepath.Join(root, "subagents", "11111111-1111-4111-8111-111111111111.jsonl")
|
|
require.NoError(t, os.MkdirAll(filepath.Dir(path), 0o755))
|
|
require.NoError(t, os.WriteFile(path, []byte("{}\n"), 0o644))
|
|
|
|
files := engine.classifyPaths([]string{path})
|
|
require.Len(t, files, 1, "path did not classify")
|
|
got := files[0]
|
|
assert.Equal(t, path, got.Path)
|
|
assert.Equal(t, "subagents", got.Project)
|
|
assert.Equal(t, parser.AgentWorkBuddy, got.Agent)
|
|
}
|