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
33 lines
1.1 KiB
Go
33 lines
1.1 KiB
Go
package server
|
|
|
|
import (
|
|
"reflect"
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"go.kenn.io/agentsview/internal/db"
|
|
)
|
|
|
|
// TestSortKeysMatchDoc guards the order_by doc string against drift from the
|
|
// shared sort registry. It parses the "Valid keys:" clause into exact tokens and
|
|
// requires them to equal db.SortKeys() in order, so a key omitted from the clause
|
|
// cannot be masked by the example text earlier in the doc, and a stale key left
|
|
// after a rename is caught too. This replaces the enum-sync guard that the dropped
|
|
// order_by enum tag used to provide.
|
|
func TestSortKeysMatchDoc(t *testing.T) {
|
|
field, ok := reflect.TypeFor[sessionFilterInput]().FieldByName("OrderBy")
|
|
require.True(t, ok, "sessionFilterInput.OrderBy field")
|
|
doc := field.Tag.Get("doc")
|
|
_, after, found := strings.Cut(doc, "Valid keys:")
|
|
require.True(t, found, "order_by doc must enumerate keys after 'Valid keys:'")
|
|
|
|
keys := strings.FieldsFunc(after, func(r rune) bool {
|
|
return r == ',' || r == ' ' || r == '.'
|
|
})
|
|
assert.Equal(t, db.SortKeys(), keys,
|
|
"order_by 'Valid keys:' clause must list exactly db.SortKeys() in order")
|
|
}
|