All checks were successful
Build and Publish Container Image / build-and-push (push) Successful in 34s
serviceSubject and roles are read only on the client_credentials path. On a browser client they are accepted and then ignored, since subject and roles come from the directory user -- so a registration that looks effective fails later as a downstream rejection rather than as a registration defect. tokenLifetime was already rejected this way, so the rule existed and was incomplete. Nothing in dev-config, the example fixture or the live deployment sets either field on a browser client, checked against all three rather than assumed, so this breaks no existing configuration. tenant is deliberately excluded, and a test pins that: a browser client may declare one, and humanTenant resolves it against the directory, refusing issuance when they disagree (KEY-WP-0013-T05). An earlier version of this change rejected tenant too and would have made that feature unusable. It started from T05's blocker paragraph, which was accurate when written and already fixed by the time this task began -- blocker prose ages faster than the code it describes. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01NV9oijZukGyGbRQGGKnK4P Assistant: claude-code Assistant-Model: opus Assistant-Process: 713576@bnt-lap001 Assistant-Session: 384c511d-9bce-4cb8-a676-2aef6c0c8df6
618 lines
19 KiB
Go
618 lines
19 KiB
Go
package config_test
|
|
|
|
import (
|
|
"os"
|
|
"path/filepath"
|
|
"strings"
|
|
"testing"
|
|
|
|
"keycape/internal/config"
|
|
)
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// Helpers
|
|
// ---------------------------------------------------------------------------
|
|
|
|
// writeTempFile creates a temporary file with the given content and returns its path.
|
|
func writeTempFile(t *testing.T, content string) string {
|
|
t.Helper()
|
|
f, err := os.CreateTemp(t.TempDir(), "keycape-test-*")
|
|
if err != nil {
|
|
t.Fatalf("create temp file: %v", err)
|
|
}
|
|
if _, err := f.WriteString(content); err != nil {
|
|
t.Fatalf("write temp file: %v", err)
|
|
}
|
|
f.Close()
|
|
return f.Name()
|
|
}
|
|
|
|
// validConfig returns a minimal valid Config for use in tests.
|
|
func validConfig(keyPath string) *config.Config {
|
|
return &config.Config{
|
|
Issuer: "https://auth.example.com",
|
|
Port: 8080,
|
|
TokenLifetime: "15m",
|
|
PrivateKeyPEM: keyPath,
|
|
Environment: "dev",
|
|
Clients: []config.ClientConfig{
|
|
{
|
|
ClientID: "test-app",
|
|
DisplayName: "Test App",
|
|
RedirectURIs: []string{"https://app.example.com/callback"},
|
|
ClientType: "public",
|
|
},
|
|
},
|
|
}
|
|
}
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// Load tests
|
|
// ---------------------------------------------------------------------------
|
|
|
|
func TestLoad_ValidYAML(t *testing.T) {
|
|
keyPath := writeTempFile(t, "placeholder-key")
|
|
yaml := `
|
|
issuer: "https://auth.example.com"
|
|
port: 8080
|
|
tokenLifetime: "15m"
|
|
privateKeyPem: "` + keyPath + `"
|
|
environment: "dev"
|
|
clients:
|
|
- clientId: "demo"
|
|
displayName: "Demo"
|
|
redirectUris:
|
|
- "https://demo.example.com/cb"
|
|
clientType: "public"
|
|
`
|
|
cfgPath := writeTempFile(t, yaml)
|
|
|
|
cfg, err := config.Load(cfgPath)
|
|
if err != nil {
|
|
t.Fatalf("Load: unexpected error: %v", err)
|
|
}
|
|
if cfg.Issuer != "https://auth.example.com" {
|
|
t.Errorf("Issuer: want %q, got %q", "https://auth.example.com", cfg.Issuer)
|
|
}
|
|
if cfg.Port != 8080 {
|
|
t.Errorf("Port: want 8080, got %d", cfg.Port)
|
|
}
|
|
if len(cfg.Clients) != 1 {
|
|
t.Errorf("Clients: want 1, got %d", len(cfg.Clients))
|
|
}
|
|
}
|
|
|
|
func TestLoad_AutheliaSplitURLs(t *testing.T) {
|
|
keyPath := writeTempFile(t, "placeholder-key")
|
|
yaml := `
|
|
issuer: "https://kc.example.com"
|
|
port: 8080
|
|
tokenLifetime: "15m"
|
|
privateKeyPem: "` + keyPath + `"
|
|
environment: "dev"
|
|
authelia:
|
|
baseURL: "http://authelia.sso.svc.cluster.local:9091"
|
|
browserBaseURL: "https://auth.example.com"
|
|
tokenBaseURL: "http://authelia.sso.svc.cluster.local:9091"
|
|
clientId: "keycape"
|
|
clientSecret: "secret"
|
|
redirectURI: "https://kc.example.com/authorize/callback"
|
|
clients:
|
|
- clientId: "netkingdom-bootstrap-console"
|
|
displayName: "NetKingdom Bootstrap Console"
|
|
redirectUris:
|
|
- "http://127.0.0.1:8876/oidc/callback"
|
|
- "http://localhost:8876/oidc/callback"
|
|
clientType: "public"
|
|
`
|
|
cfgPath := writeTempFile(t, yaml)
|
|
|
|
cfg, err := config.Load(cfgPath)
|
|
if err != nil {
|
|
t.Fatalf("Load: unexpected error: %v", err)
|
|
}
|
|
if cfg.Authelia.BaseURL != "http://authelia.sso.svc.cluster.local:9091" {
|
|
t.Errorf("Authelia.BaseURL: got %q", cfg.Authelia.BaseURL)
|
|
}
|
|
if cfg.Authelia.BrowserBaseURL != "https://auth.example.com" {
|
|
t.Errorf("Authelia.BrowserBaseURL: got %q", cfg.Authelia.BrowserBaseURL)
|
|
}
|
|
if cfg.Authelia.TokenBaseURL != "http://authelia.sso.svc.cluster.local:9091" {
|
|
t.Errorf("Authelia.TokenBaseURL: got %q", cfg.Authelia.TokenBaseURL)
|
|
}
|
|
if len(cfg.Clients) != 1 || cfg.Clients[0].ClientID != "netkingdom-bootstrap-console" {
|
|
t.Fatalf("bootstrap client not loaded: %+v", cfg.Clients)
|
|
}
|
|
if got := cfg.Clients[0].RedirectURIs; len(got) != 2 || got[0] != "http://127.0.0.1:8876/oidc/callback" {
|
|
t.Errorf("bootstrap redirect URIs not loaded: %+v", got)
|
|
}
|
|
}
|
|
|
|
func TestLoad_ClientMFAAndRegistrationURL(t *testing.T) {
|
|
keyPath := writeTempFile(t, "placeholder-key")
|
|
yaml := `
|
|
issuer: "https://kc.example.com"
|
|
port: 8080
|
|
tokenLifetime: "15m"
|
|
privateKeyPem: "` + keyPath + `"
|
|
environment: "dev"
|
|
clients:
|
|
- clientId: "coulomb-social"
|
|
displayName: "coulomb.social"
|
|
redirectUris:
|
|
- "https://coulomb.social/auth/callback/"
|
|
clientType: "public"
|
|
mfaRequired: false
|
|
registrationUrl: "https://users.example.com/register"
|
|
`
|
|
cfgPath := writeTempFile(t, yaml)
|
|
cfg, err := config.Load(cfgPath)
|
|
if err != nil {
|
|
t.Fatalf("Load: unexpected error: %v", err)
|
|
}
|
|
if len(cfg.Clients) != 1 {
|
|
t.Fatalf("clients: got %d", len(cfg.Clients))
|
|
}
|
|
c := cfg.Clients[0]
|
|
if c.MFARequired == nil || *c.MFARequired {
|
|
t.Fatalf("mfaRequired: want false, got %+v", c.MFARequired)
|
|
}
|
|
if c.RegistrationURL != "https://users.example.com/register" {
|
|
t.Errorf("registrationUrl: got %q", c.RegistrationURL)
|
|
}
|
|
}
|
|
|
|
func TestValidate_InvalidRegistrationURL(t *testing.T) {
|
|
keyPath := writeTempFile(t, "key")
|
|
cfg := validConfig(keyPath)
|
|
cfg.Clients[0].RegistrationURL = "javascript:alert(1)"
|
|
errs := config.ValidateConfig(cfg)
|
|
if !containsErr(errs, "registrationUrl") {
|
|
t.Errorf("expected registrationUrl error, got %v", errs)
|
|
}
|
|
}
|
|
|
|
func TestLoad_PrivacyIDEARequireForAll(t *testing.T) {
|
|
keyPath := writeTempFile(t, "placeholder-key")
|
|
yaml := `
|
|
issuer: "https://kc.example.com"
|
|
port: 8080
|
|
tokenLifetime: "15m"
|
|
privateKeyPem: "` + keyPath + `"
|
|
environment: "dev"
|
|
privacyidea:
|
|
baseURL: "http://privacyidea.mfa.svc.cluster.local:8080"
|
|
adminToken: "service-token"
|
|
realm: "coulomb"
|
|
requireForAll: true
|
|
clients:
|
|
- clientId: "netkingdom-bootstrap-console"
|
|
displayName: "NetKingdom Bootstrap Console"
|
|
redirectUris:
|
|
- "http://127.0.0.1:8876/oidc/callback"
|
|
clientType: "public"
|
|
`
|
|
cfgPath := writeTempFile(t, yaml)
|
|
|
|
cfg, err := config.Load(cfgPath)
|
|
if err != nil {
|
|
t.Fatalf("Load: unexpected error: %v", err)
|
|
}
|
|
if cfg.PrivacyIDEA.Realm != "coulomb" {
|
|
t.Errorf("PrivacyIDEA.Realm: got %q", cfg.PrivacyIDEA.Realm)
|
|
}
|
|
if !cfg.PrivacyIDEA.RequireForAll {
|
|
t.Error("PrivacyIDEA.RequireForAll should load from YAML")
|
|
}
|
|
}
|
|
|
|
func TestLoad_LLDAPOrganisationalUnits(t *testing.T) {
|
|
keyPath := writeTempFile(t, "placeholder-key")
|
|
yaml := `
|
|
issuer: "https://kc.example.com"
|
|
port: 8080
|
|
tokenLifetime: "15m"
|
|
privateKeyPem: "` + keyPath + `"
|
|
environment: "dev"
|
|
lldap:
|
|
url: "ldap://lldap.sso.svc.cluster.local:3890"
|
|
bindDN: "uid=admin,ou=people,dc=netkingdom,dc=local"
|
|
bindPW: "secret"
|
|
baseDN: "dc=netkingdom,dc=local"
|
|
userOU: "ou=people"
|
|
groupOU: "ou=groups"
|
|
clients:
|
|
- clientId: "netkingdom-bootstrap-console"
|
|
displayName: "NetKingdom Bootstrap Console"
|
|
redirectUris:
|
|
- "http://127.0.0.1:8876/oidc/callback"
|
|
clientType: "public"
|
|
`
|
|
cfgPath := writeTempFile(t, yaml)
|
|
|
|
cfg, err := config.Load(cfgPath)
|
|
if err != nil {
|
|
t.Fatalf("Load: unexpected error: %v", err)
|
|
}
|
|
if cfg.LLDAP.UserOU != "ou=people" {
|
|
t.Errorf("LLDAP.UserOU: got %q", cfg.LLDAP.UserOU)
|
|
}
|
|
if cfg.LLDAP.GroupOU != "ou=groups" {
|
|
t.Errorf("LLDAP.GroupOU: got %q", cfg.LLDAP.GroupOU)
|
|
}
|
|
}
|
|
|
|
func TestLoad_FileNotFound(t *testing.T) {
|
|
_, err := config.Load(filepath.Join(t.TempDir(), "nonexistent.yaml"))
|
|
if err == nil {
|
|
t.Error("Load: expected error for missing file, got nil")
|
|
}
|
|
}
|
|
|
|
func TestLoad_InvalidYAML(t *testing.T) {
|
|
bad := writeTempFile(t, "not: valid: yaml: [[[")
|
|
_, err := config.Load(bad)
|
|
if err == nil {
|
|
t.Error("Load: expected error for invalid YAML, got nil")
|
|
}
|
|
}
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// Validate tests
|
|
// ---------------------------------------------------------------------------
|
|
|
|
func TestValidate_ValidConfig(t *testing.T) {
|
|
keyPath := writeTempFile(t, "key")
|
|
errs := config.ValidateConfig(validConfig(keyPath))
|
|
if len(errs) != 0 {
|
|
t.Errorf("ValidateConfig: expected no errors, got %v", errs)
|
|
}
|
|
}
|
|
|
|
func TestValidate_MissingIssuer(t *testing.T) {
|
|
keyPath := writeTempFile(t, "key")
|
|
cfg := validConfig(keyPath)
|
|
cfg.Issuer = ""
|
|
errs := config.ValidateConfig(cfg)
|
|
if !containsErr(errs, "issuer") {
|
|
t.Errorf("expected issuer error, got %v", errs)
|
|
}
|
|
}
|
|
|
|
func TestValidate_InvalidIssuerURL(t *testing.T) {
|
|
keyPath := writeTempFile(t, "key")
|
|
cfg := validConfig(keyPath)
|
|
cfg.Issuer = "not a url"
|
|
errs := config.ValidateConfig(cfg)
|
|
if !containsErr(errs, "issuer") {
|
|
t.Errorf("expected issuer URL error, got %v", errs)
|
|
}
|
|
}
|
|
|
|
func TestValidate_PortZero(t *testing.T) {
|
|
keyPath := writeTempFile(t, "key")
|
|
cfg := validConfig(keyPath)
|
|
cfg.Port = 0
|
|
errs := config.ValidateConfig(cfg)
|
|
if !containsErr(errs, "port") {
|
|
t.Errorf("expected port error, got %v", errs)
|
|
}
|
|
}
|
|
|
|
func TestValidate_PortTooHigh(t *testing.T) {
|
|
keyPath := writeTempFile(t, "key")
|
|
cfg := validConfig(keyPath)
|
|
cfg.Port = 70000
|
|
errs := config.ValidateConfig(cfg)
|
|
if !containsErr(errs, "port") {
|
|
t.Errorf("expected port error, got %v", errs)
|
|
}
|
|
}
|
|
|
|
func TestValidate_NoClients(t *testing.T) {
|
|
keyPath := writeTempFile(t, "key")
|
|
cfg := validConfig(keyPath)
|
|
cfg.Clients = nil
|
|
errs := config.ValidateConfig(cfg)
|
|
if !containsErr(errs, "client") {
|
|
t.Errorf("expected client error, got %v", errs)
|
|
}
|
|
}
|
|
|
|
func TestValidate_ClientMissingRedirectURI(t *testing.T) {
|
|
keyPath := writeTempFile(t, "key")
|
|
cfg := validConfig(keyPath)
|
|
cfg.Clients[0].RedirectURIs = nil
|
|
errs := config.ValidateConfig(cfg)
|
|
if !containsErr(errs, "redirect") {
|
|
t.Errorf("expected redirect_uri error, got %v", errs)
|
|
}
|
|
}
|
|
|
|
func TestValidate_MissingPrivateKeyPEM(t *testing.T) {
|
|
cfg := validConfig("")
|
|
cfg.PrivateKeyPEM = ""
|
|
errs := config.ValidateConfig(cfg)
|
|
if !containsErr(errs, "privateKeyPem") {
|
|
t.Errorf("expected privateKeyPem error, got %v", errs)
|
|
}
|
|
}
|
|
|
|
func TestValidate_ClientCredentialsTokenLifetime(t *testing.T) {
|
|
keyPath := writeTempFile(t, "key")
|
|
cfg := validConfig(keyPath)
|
|
cfg.Clients[0] = config.ClientConfig{
|
|
ClientID: "service-client",
|
|
ClientType: "confidential",
|
|
GrantTypes: []string{"client_credentials"},
|
|
AllowedScopes: []string{"openbao:login"},
|
|
SecretRef: "env:SERVICE_CLIENT_SECRET",
|
|
ServiceSubject: "service:test",
|
|
Tenant: "tenant:coulomb",
|
|
TokenLifetime: "15m",
|
|
}
|
|
if errs := config.ValidateConfig(cfg); len(errs) != 0 {
|
|
t.Fatalf("valid per-client token lifetime rejected: %v", errs)
|
|
}
|
|
|
|
cfg.Clients[0].TokenLifetime = "90m"
|
|
if errs := config.ValidateConfig(cfg); !containsErr(errs, "between 1m and 1h") {
|
|
t.Fatalf("expected bounded tokenLifetime error, got %v", errs)
|
|
}
|
|
|
|
cfg.Clients[0].TokenLifetime = "not-a-duration"
|
|
if errs := config.ValidateConfig(cfg); !containsErr(errs, "valid duration") {
|
|
t.Fatalf("expected invalid tokenLifetime error, got %v", errs)
|
|
}
|
|
}
|
|
|
|
func TestValidate_PublicClientRejectsTokenLifetime(t *testing.T) {
|
|
keyPath := writeTempFile(t, "key")
|
|
cfg := validConfig(keyPath)
|
|
cfg.Clients[0].TokenLifetime = "15m"
|
|
if errs := config.ValidateConfig(cfg); !containsErr(errs, "only supported for client_credentials") {
|
|
t.Fatalf("expected public-client tokenLifetime error, got %v", errs)
|
|
}
|
|
}
|
|
|
|
func TestServiceClientExampleContracts(t *testing.T) {
|
|
cfg, err := config.Load(filepath.Join("..", "..", "..", "config", "service-clients.example.yaml"))
|
|
if err != nil {
|
|
t.Fatalf("load service client examples: %v", err)
|
|
}
|
|
cfg.Issuer = "https://kc.coulomb.social"
|
|
cfg.Port = 8080
|
|
cfg.PrivateKeyPEM = writeTempFile(t, "key")
|
|
if errs := config.ValidateConfig(cfg); len(errs) != 0 {
|
|
t.Fatalf("service client examples must validate: %v", errs)
|
|
}
|
|
if len(cfg.Clients) != 4 {
|
|
t.Fatalf("service client examples: want 4, got %d", len(cfg.Clients))
|
|
}
|
|
|
|
codingAgent := cfg.Clients[0]
|
|
if codingAgent.ClientID != "codex-railiance-platform" ||
|
|
codingAgent.ServiceSubject != "service:codex:railiance-platform" ||
|
|
codingAgent.Tenant != "tenant:coulomb" ||
|
|
codingAgent.TokenLifetime != "15m" {
|
|
t.Fatalf("coding-agent contract drifted: %+v", codingAgent)
|
|
}
|
|
if len(codingAgent.Roles) != 1 || codingAgent.Roles[0] != "coding-agent" ||
|
|
len(codingAgent.AllowedScopes) != 1 || codingAgent.AllowedScopes[0] != "openbao:login" {
|
|
t.Fatalf("coding-agent authorization contract drifted: %+v", codingAgent)
|
|
}
|
|
|
|
secretsEngine := cfg.Clients[1]
|
|
if secretsEngine.ClientID != "secrets-engine-openbao" ||
|
|
secretsEngine.ServiceSubject != "service:secrets-engine" ||
|
|
secretsEngine.TokenLifetime != "15m" {
|
|
t.Fatalf("secrets-engine contract drifted: %+v", secretsEngine)
|
|
}
|
|
}
|
|
|
|
func TestDevConfigOpenBaoAdminAdmitsOperatorTunnelCallback(t *testing.T) {
|
|
cfg, err := config.Load(filepath.Join("..", "..", "..", "config", "dev-config.yaml"))
|
|
if err != nil {
|
|
t.Fatalf("load dev config: %v", err)
|
|
}
|
|
if errs := config.ValidateConfig(cfg); len(errs) != 0 {
|
|
t.Fatalf("dev config must validate: %v", errs)
|
|
}
|
|
|
|
const callback = "http://127.0.0.1:18200/ui/vault/auth/netkingdom/oidc/callback"
|
|
for _, client := range cfg.Clients {
|
|
if client.ClientID != "openbao-admin" {
|
|
continue
|
|
}
|
|
for _, redirectURI := range client.RedirectURIs {
|
|
if redirectURI == callback {
|
|
return
|
|
}
|
|
}
|
|
t.Fatalf("openbao-admin redirectUris missing exact operator tunnel callback %q", callback)
|
|
}
|
|
t.Fatal("dev config missing openbao-admin client")
|
|
}
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// Env var loading test
|
|
// ---------------------------------------------------------------------------
|
|
|
|
func TestLoad_FromEnvVar(t *testing.T) {
|
|
keyPath := writeTempFile(t, "key")
|
|
yaml := `
|
|
issuer: "https://auth.example.com"
|
|
port: 9090
|
|
tokenLifetime: "30m"
|
|
privateKeyPem: "` + keyPath + `"
|
|
environment: "dev"
|
|
clients:
|
|
- clientId: "env-app"
|
|
displayName: "Env App"
|
|
redirectUris:
|
|
- "https://env.example.com/cb"
|
|
clientType: "public"
|
|
`
|
|
cfgPath := writeTempFile(t, yaml)
|
|
t.Setenv("KEYCAPE_CONFIG", cfgPath)
|
|
|
|
// Load with empty path triggers env var lookup.
|
|
cfg, err := config.Load("")
|
|
if err != nil {
|
|
t.Fatalf("Load with env var: %v", err)
|
|
}
|
|
if cfg.Port != 9090 {
|
|
t.Errorf("Port: want 9090, got %d", cfg.Port)
|
|
}
|
|
}
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// Helper
|
|
// ---------------------------------------------------------------------------
|
|
|
|
func containsErr(errs []string, substring string) bool {
|
|
for _, e := range errs {
|
|
for i := 0; i <= len(e)-len(substring); i++ {
|
|
if e[i:i+len(substring)] == substring {
|
|
return true
|
|
}
|
|
}
|
|
}
|
|
return false
|
|
}
|
|
|
|
func TestValidateConfigAudience(t *testing.T) {
|
|
for _, audience := range []string{"", "approval-engine", "https://api.example.com"} {
|
|
cfg := validConfig("key.pem")
|
|
cfg.Clients[0].Audience = audience
|
|
if errs := config.ValidateConfig(cfg); len(errs) != 0 {
|
|
t.Fatalf("valid audience %q: %v", audience, errs)
|
|
}
|
|
}
|
|
for _, audience := range []string{" ", "approval-engine other", "approval-engine\n"} {
|
|
cfg := validConfig("key.pem")
|
|
cfg.Clients[0].Audience = audience
|
|
if errs := config.ValidateConfig(cfg); len(errs) == 0 {
|
|
t.Fatalf("accepted audience %q", audience)
|
|
}
|
|
}
|
|
}
|
|
|
|
// tenant_roles is opt-in, but a configured cache source must be usable: it sits
|
|
// on the synchronous token-issuance path (KEY-WP-0024).
|
|
func TestValidate_TenantEngine(t *testing.T) {
|
|
cases := map[string]struct {
|
|
engine config.TenantEngineConfig
|
|
valid bool
|
|
}{
|
|
"absent is valid": {config.TenantEngineConfig{}, true},
|
|
"http url": {config.TenantEngineConfig{BaseURL: "http://tenant-engine:8080"}, true},
|
|
"https url and timeout": {config.TenantEngineConfig{BaseURL: "https://tenant-engine", Timeout: "2s"}, true},
|
|
"not a url": {config.TenantEngineConfig{BaseURL: "tenant-engine"}, false},
|
|
"wrong scheme": {config.TenantEngineConfig{BaseURL: "ldap://tenant-engine"}, false},
|
|
"unparseable timeout": {config.TenantEngineConfig{BaseURL: "http://t", Timeout: "soon"}, false},
|
|
"zero timeout": {config.TenantEngineConfig{BaseURL: "http://t", Timeout: "0s"}, false},
|
|
"timeout far too long": {config.TenantEngineConfig{BaseURL: "http://t", Timeout: "5m"}, false},
|
|
// A timeout with no base URL means someone expected the claim to be on.
|
|
"timeout without url": {config.TenantEngineConfig{Timeout: "2s"}, false},
|
|
}
|
|
for name, tc := range cases {
|
|
t.Run(name, func(t *testing.T) {
|
|
cfg := validConfig(writeTempFile(t, "key"))
|
|
cfg.TenantEngine = tc.engine
|
|
errs := config.ValidateConfig(cfg)
|
|
if tc.valid && len(errs) != 0 {
|
|
t.Fatalf("expected valid, got %v", errs)
|
|
}
|
|
if !tc.valid && len(errs) == 0 {
|
|
t.Fatal("expected a validation error")
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
// Service-identity fields are read only on the client_credentials path. Silently
|
|
// ignoring them on a browser client is the trap behind KEY-WP-0013-T05: an
|
|
// approver client registered with tenant: tenant:platform starts cleanly and
|
|
// issues the directory tenant instead, which a resource server comparing tenant
|
|
// exactly refuses — surfacing as a failed approval, not a registration defect
|
|
// (KEY-WP-0028).
|
|
func TestValidate_ServiceIdentityFieldsRejectedOnBrowserClients(t *testing.T) {
|
|
browserClient := func() config.ClientConfig {
|
|
return config.ClientConfig{
|
|
ClientID: "approver-ui",
|
|
RedirectURIs: []string{"https://approve.example.com/callback"},
|
|
AllowedScopes: []string{"openid", "approval:approve"},
|
|
GrantTypes: []string{"authorization_code"},
|
|
ClientType: "public",
|
|
}
|
|
}
|
|
cases := map[string]struct {
|
|
mutate func(*config.ClientConfig)
|
|
want string
|
|
}{
|
|
"serviceSubject": {func(c *config.ClientConfig) { c.ServiceSubject = "service:approver" }, "serviceSubject"},
|
|
"roles": {func(c *config.ClientConfig) { c.Roles = []string{"approver"} }, "roles"},
|
|
}
|
|
for name, tc := range cases {
|
|
t.Run(name, func(t *testing.T) {
|
|
cfg := validConfig(writeTempFile(t, "key"))
|
|
client := browserClient()
|
|
tc.mutate(&client)
|
|
cfg.Clients = append(cfg.Clients, client)
|
|
errs := config.ValidateConfig(cfg)
|
|
found := false
|
|
for _, e := range errs {
|
|
if strings.Contains(e, tc.want) {
|
|
found = true
|
|
}
|
|
}
|
|
if !found {
|
|
t.Fatalf("expected an error naming %q, got %v", tc.want, errs)
|
|
}
|
|
})
|
|
}
|
|
|
|
// A client that omits grantTypes is an implicit authorization-code client,
|
|
// so the same rule applies to it.
|
|
t.Run("implicit authorization_code client", func(t *testing.T) {
|
|
cfg := validConfig(writeTempFile(t, "key"))
|
|
client := browserClient()
|
|
client.GrantTypes = nil
|
|
client.ServiceSubject = "service:approver"
|
|
cfg.Clients = append(cfg.Clients, client)
|
|
if errs := config.ValidateConfig(cfg); len(errs) == 0 {
|
|
t.Fatal("expected serviceSubject to be rejected on an implicit authorization-code client")
|
|
}
|
|
})
|
|
|
|
// A browser client MAY declare a tenant: humanTenant resolves it against the
|
|
// directory (KEY-WP-0013-T05). Rejecting it here would break that.
|
|
t.Run("tenant is allowed on a browser client", func(t *testing.T) {
|
|
cfg := validConfig(writeTempFile(t, "key"))
|
|
client := browserClient()
|
|
client.Tenant = "tenant:platform"
|
|
cfg.Clients = append(cfg.Clients, client)
|
|
if errs := config.ValidateConfig(cfg); len(errs) != 0 {
|
|
t.Fatalf("browser client tenant rejected: %v", errs)
|
|
}
|
|
})
|
|
|
|
// The service clients that legitimately carry these fields still validate.
|
|
t.Run("service clients unaffected", func(t *testing.T) {
|
|
cfg := validConfig(writeTempFile(t, "key"))
|
|
cfg.Clients = append(cfg.Clients, config.ClientConfig{
|
|
ClientID: "svc",
|
|
AllowedScopes: []string{"approval:read"},
|
|
GrantTypes: []string{"client_credentials"},
|
|
ClientType: "confidential",
|
|
SecretRef: "env:SVC_SECRET",
|
|
ServiceSubject: "service:svc",
|
|
Tenant: "tenant:platform",
|
|
Roles: []string{"svc"},
|
|
})
|
|
if errs := config.ValidateConfig(cfg); len(errs) != 0 {
|
|
t.Fatalf("service client rejected: %v", errs)
|
|
}
|
|
})
|
|
}
|