mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 03:24:26 +00:00
109 lines
2.5 KiB
Go
109 lines
2.5 KiB
Go
|
package query
|
||
|
|
||
|
import (
|
||
|
"database/sql"
|
||
|
"database/sql/driver"
|
||
|
_ "embed"
|
||
|
"encoding/json"
|
||
|
"regexp"
|
||
|
"testing"
|
||
|
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
"github.com/stretchr/testify/require"
|
||
|
|
||
|
"github.com/zitadel/zitadel/internal/api/authz"
|
||
|
"github.com/zitadel/zitadel/internal/crypto"
|
||
|
"github.com/zitadel/zitadel/internal/database"
|
||
|
)
|
||
|
|
||
|
func TestQueries_GetIntrospectionClientByID(t *testing.T) {
|
||
|
secret := &crypto.CryptoValue{
|
||
|
CryptoType: crypto.TypeHash,
|
||
|
Algorithm: "alg",
|
||
|
KeyID: "keyID",
|
||
|
Crypted: []byte("secret"),
|
||
|
}
|
||
|
encSecret, err := json.Marshal(secret)
|
||
|
require.NoError(t, err)
|
||
|
|
||
|
pubkeys := database.Map[[]byte]{
|
||
|
"key1": {1, 2, 3},
|
||
|
"key2": {4, 5, 6},
|
||
|
}
|
||
|
encPubkeys, err := pubkeys.Value()
|
||
|
require.NoError(t, err)
|
||
|
|
||
|
expQuery := regexp.QuoteMeta(introspectionClientByIDQuery)
|
||
|
type args struct {
|
||
|
clientID string
|
||
|
getKeys bool
|
||
|
}
|
||
|
tests := []struct {
|
||
|
name string
|
||
|
args args
|
||
|
mock sqlExpectation
|
||
|
want *IntrospectionClient
|
||
|
wantErr error
|
||
|
}{
|
||
|
{
|
||
|
name: "query error",
|
||
|
args: args{
|
||
|
clientID: "clientID",
|
||
|
getKeys: false,
|
||
|
},
|
||
|
mock: mockQueryErr(expQuery, sql.ErrConnDone, "instanceID", "clientID", false),
|
||
|
wantErr: sql.ErrConnDone,
|
||
|
},
|
||
|
{
|
||
|
name: "success, secret",
|
||
|
args: args{
|
||
|
clientID: "clientID",
|
||
|
getKeys: false,
|
||
|
},
|
||
|
mock: mockQuery(expQuery,
|
||
|
[]string{"client_id", "client_secret", "project_id", "public_keys"},
|
||
|
[]driver.Value{"clientID", encSecret, "projectID", nil},
|
||
|
"instanceID", "clientID", false),
|
||
|
want: &IntrospectionClient{
|
||
|
ClientID: "clientID",
|
||
|
ClientSecret: secret,
|
||
|
ProjectID: "projectID",
|
||
|
PublicKeys: nil,
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
name: "success, keys",
|
||
|
args: args{
|
||
|
clientID: "clientID",
|
||
|
getKeys: true,
|
||
|
},
|
||
|
mock: mockQuery(expQuery,
|
||
|
[]string{"client_id", "client_secret", "project_id", "public_keys"},
|
||
|
[]driver.Value{"clientID", nil, "projectID", encPubkeys},
|
||
|
"instanceID", "clientID", true),
|
||
|
want: &IntrospectionClient{
|
||
|
ClientID: "clientID",
|
||
|
ClientSecret: nil,
|
||
|
ProjectID: "projectID",
|
||
|
PublicKeys: pubkeys,
|
||
|
},
|
||
|
},
|
||
|
}
|
||
|
for _, tt := range tests {
|
||
|
t.Run(tt.name, func(t *testing.T) {
|
||
|
execMock(t, tt.mock, func(db *sql.DB) {
|
||
|
q := &Queries{
|
||
|
client: &database.DB{
|
||
|
DB: db,
|
||
|
Database: &prepareDB{},
|
||
|
},
|
||
|
}
|
||
|
ctx := authz.NewMockContext("instanceID", "orgID", "userID")
|
||
|
got, err := q.GetIntrospectionClientByID(ctx, tt.args.clientID, tt.args.getKeys)
|
||
|
require.ErrorIs(t, err, tt.wantErr)
|
||
|
assert.Equal(t, tt.want, got)
|
||
|
})
|
||
|
})
|
||
|
}
|
||
|
}
|