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
300 lines
8.5 KiB
Go
300 lines
8.5 KiB
Go
package parser
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"errors"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestProviderConfigCloneCopiesRoots(t *testing.T) {
|
|
cfg := ProviderConfig{
|
|
Roots: []string{"one", "two"},
|
|
Machine: "devbox",
|
|
}
|
|
|
|
clone := cfg.Clone()
|
|
rootsCopy := cfg.RootsCopy()
|
|
cfg.Roots[0] = "mutated"
|
|
clone.Roots[1] = "clone-mutated"
|
|
rootsCopy[1] = "copy-mutated"
|
|
|
|
assert.Equal(t, []string{"one", "clone-mutated"}, clone.Roots)
|
|
assert.Equal(t, []string{"one", "copy-mutated"}, rootsCopy)
|
|
assert.Equal(t, []string{"mutated", "two"}, cfg.Roots)
|
|
assert.Equal(t, "devbox", clone.Machine)
|
|
}
|
|
|
|
func TestProviderBaseZeroValueOptionalMethods(t *testing.T) {
|
|
ctx := context.Background()
|
|
var base ProviderBase
|
|
|
|
discovered, err := base.Discover(ctx)
|
|
require.NoError(t, err)
|
|
assert.Empty(t, discovered)
|
|
|
|
plan, err := base.WatchPlan(ctx)
|
|
require.NoError(t, err)
|
|
assert.Empty(t, plan.Roots)
|
|
|
|
changed, err := base.SourcesForChangedPath(ctx, ChangedPathRequest{
|
|
Path: "/tmp/session.jsonl",
|
|
EventKind: "write",
|
|
WatchRoot: "/tmp",
|
|
})
|
|
require.NoError(t, err)
|
|
assert.Empty(t, changed)
|
|
|
|
source, found, err := base.FindSource(ctx, FindSourceRequest{
|
|
RawSessionID: "raw",
|
|
FullSessionID: "agent:raw",
|
|
StoredFilePath: "/tmp/session.jsonl",
|
|
FingerprintKey: "/tmp/session.jsonl",
|
|
RequireFreshSource: true,
|
|
})
|
|
require.NoError(t, err)
|
|
assert.False(t, found)
|
|
assert.Empty(t, source)
|
|
|
|
fingerprint, err := base.Fingerprint(ctx, SourceRef{
|
|
Provider: AgentCodex,
|
|
Key: "source",
|
|
})
|
|
require.Error(t, err)
|
|
assert.Empty(t, fingerprint)
|
|
assert.True(t, errors.Is(err, ErrUnsupportedProviderFeature))
|
|
var unsupported UnsupportedProviderFeatureError
|
|
require.ErrorAs(t, err, &unsupported)
|
|
assert.Equal(t, AgentType(""), unsupported.Provider)
|
|
assert.Equal(t, ProviderFeatureFingerprint, unsupported.Feature)
|
|
|
|
incremental, status, err := base.ParseIncremental(ctx, IncrementalRequest{
|
|
Source: SourceRef{Provider: AgentCodex, Key: "source"},
|
|
Fingerprint: SourceFingerprint{Key: "source"},
|
|
SessionID: "codex:session",
|
|
Offset: 1024,
|
|
StartOrdinal: 7,
|
|
Machine: "devbox",
|
|
})
|
|
require.NoError(t, err)
|
|
assert.Equal(t, IncrementalUnsupported, status)
|
|
assert.Empty(t, incremental)
|
|
|
|
_, ok := any(base).(Provider)
|
|
assert.False(t, ok, "ProviderBase must not satisfy Provider without Parse")
|
|
}
|
|
|
|
func TestUnsupportedProviderFeatureErrorWrapsSentinel(t *testing.T) {
|
|
err := UnsupportedProviderFeatureError{
|
|
Provider: AgentCodex,
|
|
Feature: ProviderFeatureFingerprint,
|
|
}
|
|
|
|
assert.True(t, errors.Is(err, ErrUnsupportedProviderFeature))
|
|
assert.Contains(t, err.Error(), string(AgentCodex))
|
|
assert.Contains(t, err.Error(), ProviderFeatureFingerprint)
|
|
}
|
|
|
|
func TestCapabilitySupportTextAndJSON(t *testing.T) {
|
|
assert.Equal(t, "unsupported", CapabilityUnsupported.String())
|
|
assert.Equal(t, "supported", CapabilitySupported.String())
|
|
assert.Equal(t, "not_applicable", CapabilityNotApplicable.String())
|
|
|
|
marshaled, err := json.Marshal(CapabilitySupported)
|
|
require.NoError(t, err)
|
|
assert.JSONEq(t, `"supported"`, string(marshaled))
|
|
|
|
var decoded CapabilitySupport
|
|
require.NoError(t, json.Unmarshal([]byte(`"not_applicable"`), &decoded))
|
|
assert.Equal(t, CapabilityNotApplicable, decoded)
|
|
|
|
text, err := CapabilitySupported.MarshalText()
|
|
require.NoError(t, err)
|
|
assert.Equal(t, "supported", string(text))
|
|
|
|
require.NoError(t, decoded.UnmarshalText([]byte("unsupported")))
|
|
assert.Equal(t, CapabilityUnsupported, decoded)
|
|
assert.Error(t, decoded.UnmarshalText([]byte("bogus")))
|
|
}
|
|
|
|
func TestProviderRegistryMirrorsAgentRegistry(t *testing.T) {
|
|
factories := ProviderFactories()
|
|
require.Len(t, factories, len(Registry))
|
|
|
|
seen := make(map[AgentType]bool, len(factories))
|
|
for _, factory := range factories {
|
|
def := factory.Definition()
|
|
require.Falsef(t, seen[def.Type], "duplicate provider factory for %s", def.Type)
|
|
seen[def.Type] = true
|
|
|
|
registryDef, ok := AgentByType(def.Type)
|
|
require.Truef(t, ok, "provider factory for unknown agent %s", def.Type)
|
|
assertAgentDefMetadataEqual(t, registryDef, def)
|
|
|
|
provider := factory.NewProvider(ProviderConfig{
|
|
Roots: []string{"/tmp/root"},
|
|
Machine: "devbox",
|
|
})
|
|
require.NotNil(t, provider)
|
|
assertAgentDefMetadataEqual(t, def, provider.Definition())
|
|
}
|
|
|
|
for _, def := range Registry {
|
|
assert.Truef(t, seen[def.Type], "missing provider factory for %s", def.Type)
|
|
}
|
|
}
|
|
|
|
func TestStoredSourceHintCapabilitiesMatchConsumers(t *testing.T) {
|
|
wantSupported := map[AgentType]bool{
|
|
AgentDevin: true,
|
|
AgentForge: true,
|
|
AgentKiro: true,
|
|
AgentPiebald: true,
|
|
AgentShelley: true,
|
|
AgentVSCopilot: true,
|
|
AgentWarp: true,
|
|
AgentWindsurf: true,
|
|
AgentZCode: true,
|
|
AgentZed: true,
|
|
}
|
|
|
|
for _, factory := range ProviderFactories() {
|
|
agent := factory.Definition().Type
|
|
got := factory.Capabilities().Source.StoredSourceHints
|
|
if wantSupported[agent] {
|
|
assert.Equalf(t, CapabilitySupported, got, "%s consumes stored path hints", agent)
|
|
} else {
|
|
assert.Equalf(t, CapabilityUnsupported, got, "%s must not schedule stored path hints", agent)
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestVerifiedLocalStatCapabilitiesMatchConsumers(t *testing.T) {
|
|
assert.Equal(t, CapabilityUnsupported,
|
|
(SourceCapabilities{}).VerifiedLocalStat,
|
|
"new providers must opt in explicitly")
|
|
|
|
wantSupported := map[AgentType]bool{
|
|
AgentClaude: true,
|
|
AgentCodex: true,
|
|
}
|
|
for _, factory := range ProviderFactories() {
|
|
agent := factory.Definition().Type
|
|
got := factory.Capabilities().Source.VerifiedLocalStat
|
|
if wantSupported[agent] {
|
|
assert.Equalf(t, CapabilitySupported, got,
|
|
"%s supports verified local stat trust", agent)
|
|
} else {
|
|
assert.Equalf(t, CapabilityUnsupported, got,
|
|
"%s must not schedule verified local stat trust", agent)
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestProviderFactoryLookupRejectsMissingAgent(t *testing.T) {
|
|
require.NotEmpty(t, Registry)
|
|
agent := Registry[0].Type
|
|
|
|
factory, ok := ProviderFactoryByType(agent)
|
|
require.True(t, ok)
|
|
assert.Equal(t, agent, factory.Definition().Type)
|
|
|
|
provider, ok := NewProvider(agent, ProviderConfig{
|
|
Roots: []string{"/tmp/one", "/tmp/two"},
|
|
Machine: "devbox",
|
|
})
|
|
require.True(t, ok)
|
|
require.NotNil(t, provider)
|
|
|
|
_, ok = ProviderFactoryByType("missing")
|
|
assert.False(t, ok)
|
|
_, ok = NewProvider("missing", ProviderConfig{})
|
|
assert.False(t, ok)
|
|
}
|
|
|
|
func TestProviderFactoryByTypeDevin(t *testing.T) {
|
|
factory, ok := ProviderFactoryByType(AgentDevin)
|
|
require.True(t, ok)
|
|
assert.Equal(t, AgentDevin, factory.Definition().Type)
|
|
|
|
provider := factory.NewProvider(ProviderConfig{
|
|
Roots: []string{"/tmp/devin"},
|
|
Machine: "devbox",
|
|
})
|
|
require.NotNil(t, provider)
|
|
assert.Equal(t, AgentDevin, provider.Definition().Type)
|
|
}
|
|
|
|
func TestProviderMigrationModesCoverRegistry(t *testing.T) {
|
|
err := ValidateProviderMigrationModes(
|
|
ProviderFactories(),
|
|
ProviderMigrationModes(),
|
|
)
|
|
require.NoError(t, err)
|
|
}
|
|
|
|
func TestProviderMigrationModesRestrictImportOnlyMode(t *testing.T) {
|
|
factory := testProviderFactory{
|
|
def: AgentDef{
|
|
Type: AgentCodex,
|
|
DisplayName: "Codex",
|
|
},
|
|
}
|
|
modes := map[AgentType]ProviderMigrationMode{
|
|
AgentCodex: ProviderMigrationImportOnly,
|
|
}
|
|
|
|
err := ValidateProviderMigrationModes([]ProviderFactory{factory}, modes)
|
|
require.Error(t, err)
|
|
assert.Contains(t, err.Error(), string(AgentCodex))
|
|
assert.Contains(t, err.Error(), string(ProviderMigrationImportOnly))
|
|
}
|
|
|
|
type testProviderFactory struct {
|
|
def AgentDef
|
|
}
|
|
|
|
func (f testProviderFactory) Definition() AgentDef {
|
|
return cloneAgentDef(f.def)
|
|
}
|
|
|
|
func (f testProviderFactory) Capabilities() Capabilities {
|
|
return Capabilities{}
|
|
}
|
|
|
|
func (f testProviderFactory) NewProvider(cfg ProviderConfig) Provider {
|
|
return &testProvider{
|
|
ProviderBase: ProviderBase{
|
|
Def: cloneAgentDef(f.def),
|
|
Config: cfg.Clone(),
|
|
},
|
|
}
|
|
}
|
|
|
|
type testProvider struct {
|
|
ProviderBase
|
|
}
|
|
|
|
func (p *testProvider) Parse(context.Context, ParseRequest) (ParseOutcome, error) {
|
|
return ParseOutcome{}, nil
|
|
}
|
|
|
|
func assertAgentDefMetadataEqual(t *testing.T, want, got AgentDef) {
|
|
t.Helper()
|
|
|
|
assert.Equal(t, want.Type, got.Type)
|
|
assert.Equal(t, want.DisplayName, got.DisplayName)
|
|
assert.Equal(t, want.EnvVar, got.EnvVar)
|
|
assert.Equal(t, want.ConfigKey, got.ConfigKey)
|
|
assert.Equal(t, want.DefaultDirs, got.DefaultDirs)
|
|
assert.Equal(t, want.IDPrefix, got.IDPrefix)
|
|
assert.Equal(t, want.WatchSubdirs, got.WatchSubdirs)
|
|
assert.Equal(t, want.ShallowWatch, got.ShallowWatch)
|
|
assert.Equal(t, want.FileBased, got.FileBased)
|
|
assert.Equal(t, want.WatchRootsFunc == nil, got.WatchRootsFunc == nil)
|
|
assert.Equal(t, want.ShallowWatchRootsFunc == nil, got.ShallowWatchRootsFunc == nil)
|
|
}
|