mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-12 03:37:34 +00:00
feat: OIDC setting (#3245)
* feat: add oidc config struct * feat: oidc config command side * feat: oidc configuration query side * feat: add translations * feat: add tests * feat: add translations * feat: rename oidc config to oidc settings * feat: rename oidc config to oidc settings
This commit is contained in:
136
internal/query/oidc_settings_test.go
Normal file
136
internal/query/oidc_settings_test.go
Normal file
@@ -0,0 +1,136 @@
|
||||
package query
|
||||
|
||||
import (
|
||||
"database/sql"
|
||||
"database/sql/driver"
|
||||
"errors"
|
||||
"fmt"
|
||||
"regexp"
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
errs "github.com/caos/zitadel/internal/errors"
|
||||
)
|
||||
|
||||
func Test_OIDCConfigsPrepares(t *testing.T) {
|
||||
type want struct {
|
||||
sqlExpectations sqlExpectation
|
||||
err checkErr
|
||||
}
|
||||
tests := []struct {
|
||||
name string
|
||||
prepare interface{}
|
||||
want want
|
||||
object interface{}
|
||||
}{
|
||||
{
|
||||
name: "prepareOIDCSettingsQuery no result",
|
||||
prepare: prepareOIDCSettingsQuery,
|
||||
want: want{
|
||||
sqlExpectations: mockQueries(
|
||||
`SELECT zitadel.projections.oidc_settings.aggregate_id,`+
|
||||
` zitadel.projections.oidc_settings.creation_date,`+
|
||||
` zitadel.projections.oidc_settings.change_date,`+
|
||||
` zitadel.projections.oidc_settings.resource_owner,`+
|
||||
` zitadel.projections.oidc_settings.sequence,`+
|
||||
` zitadel.projections.oidc_settings.access_token_lifetime,`+
|
||||
` zitadel.projections.oidc_settings.id_token_lifetime,`+
|
||||
` zitadel.projections.oidc_settings.refresh_token_idle_expiration,`+
|
||||
` zitadel.projections.oidc_settings.refresh_token_expiration`+
|
||||
` FROM zitadel.projections.oidc_settings`,
|
||||
nil,
|
||||
nil,
|
||||
),
|
||||
err: func(err error) (error, bool) {
|
||||
if !errs.IsNotFound(err) {
|
||||
return fmt.Errorf("err should be zitadel.NotFoundError got: %w", err), false
|
||||
}
|
||||
return nil, true
|
||||
},
|
||||
},
|
||||
object: (*OIDCSettings)(nil),
|
||||
},
|
||||
{
|
||||
name: "prepareOIDCSettingsQuery found",
|
||||
prepare: prepareOIDCSettingsQuery,
|
||||
want: want{
|
||||
sqlExpectations: mockQuery(
|
||||
regexp.QuoteMeta(`SELECT zitadel.projections.oidc_settings.aggregate_id,`+
|
||||
` zitadel.projections.oidc_settings.creation_date,`+
|
||||
` zitadel.projections.oidc_settings.change_date,`+
|
||||
` zitadel.projections.oidc_settings.resource_owner,`+
|
||||
` zitadel.projections.oidc_settings.sequence,`+
|
||||
` zitadel.projections.oidc_settings.access_token_lifetime,`+
|
||||
` zitadel.projections.oidc_settings.id_token_lifetime,`+
|
||||
` zitadel.projections.oidc_settings.refresh_token_idle_expiration,`+
|
||||
` zitadel.projections.oidc_settings.refresh_token_expiration`+
|
||||
` FROM zitadel.projections.oidc_settings`),
|
||||
[]string{
|
||||
"aggregate_id",
|
||||
"creation_date",
|
||||
"change_date",
|
||||
"resource_owner",
|
||||
"sequence",
|
||||
"access_token_lifetime",
|
||||
"id_token_lifetime",
|
||||
"refresh_token_idle_expiration",
|
||||
"refresh_token_expiration",
|
||||
},
|
||||
[]driver.Value{
|
||||
"agg-id",
|
||||
testNow,
|
||||
testNow,
|
||||
"ro",
|
||||
uint64(20211108),
|
||||
time.Minute * 1,
|
||||
time.Minute * 2,
|
||||
time.Minute * 3,
|
||||
time.Minute * 4,
|
||||
},
|
||||
),
|
||||
},
|
||||
object: &OIDCSettings{
|
||||
AggregateID: "agg-id",
|
||||
CreationDate: testNow,
|
||||
ChangeDate: testNow,
|
||||
ResourceOwner: "ro",
|
||||
Sequence: 20211108,
|
||||
AccessTokenLifetime: time.Minute * 1,
|
||||
IdTokenLifetime: time.Minute * 2,
|
||||
RefreshTokenIdleExpiration: time.Minute * 3,
|
||||
RefreshTokenExpiration: time.Minute * 4,
|
||||
},
|
||||
},
|
||||
{
|
||||
name: "prepareOIDCSettingsQuery sql err",
|
||||
prepare: prepareOIDCSettingsQuery,
|
||||
want: want{
|
||||
sqlExpectations: mockQueryErr(
|
||||
regexp.QuoteMeta(`SELECT zitadel.projections.oidc_settings.aggregate_id,`+
|
||||
` zitadel.projections.oidc_settings.creation_date,`+
|
||||
` zitadel.projections.oidc_settings.change_date,`+
|
||||
` zitadel.projections.oidc_settings.resource_owner,`+
|
||||
` zitadel.projections.oidc_settings.sequence,`+
|
||||
` zitadel.projections.oidc_settings.access_token_lifetime,`+
|
||||
` zitadel.projections.oidc_settings.id_token_lifetime,`+
|
||||
` zitadel.projections.oidc_settings.refresh_token_idle_expiration,`+
|
||||
` zitadel.projections.oidc_settings.refresh_token_expiration`+
|
||||
` FROM zitadel.projections.oidc_settings`),
|
||||
sql.ErrConnDone,
|
||||
),
|
||||
err: func(err error) (error, bool) {
|
||||
if !errors.Is(err, sql.ErrConnDone) {
|
||||
return fmt.Errorf("err should be sql.ErrConnDone got: %w", err), false
|
||||
}
|
||||
return nil, true
|
||||
},
|
||||
},
|
||||
object: nil,
|
||||
},
|
||||
}
|
||||
for _, tt := range tests {
|
||||
t.Run(tt.name, func(t *testing.T) {
|
||||
assertPrepare(t, tt.prepare, tt.object, tt.want.sqlExpectations, tt.want.err)
|
||||
})
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user