You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
boundary/internal/auth/oidc/ids_test.go

26 lines
585 B

package oidc
import (
"context"
"strings"
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func Test_Ids(t *testing.T) {
t.Parallel()
ctx := context.TODO()
t.Run(AuthMethodPrefix, func(t *testing.T) {
id, err := newAuthMethodId(ctx)
require.NoError(t, err)
assert.True(t, strings.HasPrefix(id, AuthMethodPrefix+"_"))
})
t.Run(AccountPrefix, func(t *testing.T) {
id, err := newAccountId(ctx, "public-id", "test-issuer", "test-subject")
require.NoError(t, err)
assert.True(t, strings.HasPrefix(id, AccountPrefix+"_"))
})
}