2021-03-19 10:12:56 +00:00
|
|
|
package command
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"testing"
|
|
|
|
|
2022-04-05 05:58:09 +00:00
|
|
|
"github.com/caos/zitadel/internal/api/authz"
|
2021-03-19 10:12:56 +00:00
|
|
|
"github.com/golang/mock/gomock"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
|
|
|
|
"github.com/caos/zitadel/internal/crypto"
|
|
|
|
"github.com/caos/zitadel/internal/domain"
|
|
|
|
caos_errs "github.com/caos/zitadel/internal/errors"
|
|
|
|
"github.com/caos/zitadel/internal/eventstore"
|
|
|
|
"github.com/caos/zitadel/internal/eventstore/repository"
|
|
|
|
"github.com/caos/zitadel/internal/eventstore/v1/models"
|
|
|
|
"github.com/caos/zitadel/internal/id"
|
|
|
|
id_mock "github.com/caos/zitadel/internal/id/mock"
|
|
|
|
"github.com/caos/zitadel/internal/repository/idpconfig"
|
2022-03-24 16:21:34 +00:00
|
|
|
"github.com/caos/zitadel/internal/repository/instance"
|
2021-03-19 10:12:56 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestCommandSide_AddDefaultIDPConfig(t *testing.T) {
|
|
|
|
type fields struct {
|
|
|
|
eventstore *eventstore.Eventstore
|
|
|
|
idGenerator id.Generator
|
|
|
|
secretCrypto crypto.EncryptionAlgorithm
|
|
|
|
}
|
|
|
|
type args struct {
|
|
|
|
ctx context.Context
|
|
|
|
config *domain.IDPConfig
|
|
|
|
}
|
|
|
|
type res struct {
|
|
|
|
want *domain.IDPConfig
|
|
|
|
err func(error) bool
|
|
|
|
}
|
|
|
|
tests := []struct {
|
|
|
|
name string
|
|
|
|
fields fields
|
|
|
|
args args
|
|
|
|
res res
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
name: "invalid config, error",
|
|
|
|
fields: fields{
|
|
|
|
eventstore: eventstoreExpect(
|
|
|
|
t,
|
|
|
|
),
|
|
|
|
},
|
|
|
|
args: args{
|
|
|
|
ctx: context.Background(),
|
|
|
|
config: &domain.IDPConfig{},
|
|
|
|
},
|
|
|
|
res: res{
|
|
|
|
err: caos_errs.IsErrorInvalidArgument,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "idp config oidc add, ok",
|
|
|
|
fields: fields{
|
|
|
|
eventstore: eventstoreExpect(
|
|
|
|
t,
|
|
|
|
expectPush(
|
|
|
|
[]*repository.Event{
|
2022-04-05 05:58:09 +00:00
|
|
|
eventFromEventPusherWithInstanceID(
|
|
|
|
"INSTANCE",
|
2022-03-24 16:21:34 +00:00
|
|
|
instance.NewIDPConfigAddedEvent(context.Background(),
|
2022-04-05 05:58:09 +00:00
|
|
|
&instance.NewAggregate("INSTANCE").Aggregate,
|
2021-03-19 10:12:56 +00:00
|
|
|
"config1",
|
|
|
|
"name1",
|
|
|
|
domain.IDPConfigTypeOIDC,
|
|
|
|
domain.IDPConfigStylingTypeGoogle,
|
2021-09-10 07:49:49 +00:00
|
|
|
true,
|
2021-03-19 10:12:56 +00:00
|
|
|
),
|
|
|
|
),
|
2022-04-05 05:58:09 +00:00
|
|
|
eventFromEventPusherWithInstanceID(
|
|
|
|
"INSTANCE",
|
2022-03-24 16:21:34 +00:00
|
|
|
instance.NewIDPOIDCConfigAddedEvent(context.Background(),
|
2022-04-05 05:58:09 +00:00
|
|
|
&instance.NewAggregate("INSTANCE").Aggregate,
|
2021-03-19 10:12:56 +00:00
|
|
|
"clientid1",
|
|
|
|
"config1",
|
|
|
|
"issuer",
|
2021-07-06 14:39:48 +00:00
|
|
|
"authorization-endpoint",
|
|
|
|
"token-endpoint",
|
2021-03-19 10:12:56 +00:00
|
|
|
&crypto.CryptoValue{
|
|
|
|
CryptoType: crypto.TypeEncryption,
|
|
|
|
Algorithm: "enc",
|
|
|
|
KeyID: "id",
|
|
|
|
Crypted: []byte("secret"),
|
|
|
|
},
|
|
|
|
domain.OIDCMappingFieldEmail,
|
|
|
|
domain.OIDCMappingFieldEmail,
|
|
|
|
"scope",
|
|
|
|
),
|
|
|
|
),
|
|
|
|
},
|
2022-04-05 05:58:09 +00:00
|
|
|
uniqueConstraintsFromEventConstraintWithInstanceID("INSTANCE", idpconfig.NewAddIDPConfigNameUniqueConstraint("name1", "INSTANCE")),
|
2021-03-19 10:12:56 +00:00
|
|
|
),
|
|
|
|
),
|
|
|
|
idGenerator: id_mock.NewIDGeneratorExpectIDs(t, "config1"),
|
|
|
|
secretCrypto: crypto.CreateMockEncryptionAlg(gomock.NewController(t)),
|
|
|
|
},
|
|
|
|
args: args{
|
2022-04-05 05:58:09 +00:00
|
|
|
ctx: authz.WithInstanceID(context.Background(), "INSTANCE"),
|
2021-03-19 10:12:56 +00:00
|
|
|
config: &domain.IDPConfig{
|
2021-09-10 07:49:49 +00:00
|
|
|
Name: "name1",
|
|
|
|
StylingType: domain.IDPConfigStylingTypeGoogle,
|
|
|
|
AutoRegister: true,
|
2021-03-19 10:12:56 +00:00
|
|
|
OIDCConfig: &domain.OIDCIDPConfig{
|
|
|
|
ClientID: "clientid1",
|
|
|
|
Issuer: "issuer",
|
2021-07-06 14:39:48 +00:00
|
|
|
AuthorizationEndpoint: "authorization-endpoint",
|
|
|
|
TokenEndpoint: "token-endpoint",
|
2021-03-19 10:12:56 +00:00
|
|
|
ClientSecretString: "secret",
|
|
|
|
Scopes: []string{"scope"},
|
|
|
|
IDPDisplayNameMapping: domain.OIDCMappingFieldEmail,
|
|
|
|
UsernameMapping: domain.OIDCMappingFieldEmail,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
res: res{
|
|
|
|
want: &domain.IDPConfig{
|
|
|
|
ObjectRoot: models.ObjectRoot{
|
2022-04-05 05:58:09 +00:00
|
|
|
InstanceID: "INSTANCE",
|
|
|
|
AggregateID: "INSTANCE",
|
|
|
|
ResourceOwner: "INSTANCE",
|
2021-03-19 10:12:56 +00:00
|
|
|
},
|
2021-09-10 07:49:49 +00:00
|
|
|
IDPConfigID: "config1",
|
|
|
|
Name: "name1",
|
|
|
|
StylingType: domain.IDPConfigStylingTypeGoogle,
|
|
|
|
State: domain.IDPConfigStateActive,
|
|
|
|
AutoRegister: true,
|
2021-03-19 10:12:56 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-09-14 13:15:01 +00:00
|
|
|
{
|
|
|
|
name: "idp config jwt add, ok",
|
|
|
|
fields: fields{
|
|
|
|
eventstore: eventstoreExpect(
|
|
|
|
t,
|
|
|
|
expectPush(
|
|
|
|
[]*repository.Event{
|
2022-04-05 05:58:09 +00:00
|
|
|
eventFromEventPusherWithInstanceID(
|
|
|
|
"INSTANCE",
|
2022-03-24 16:21:34 +00:00
|
|
|
instance.NewIDPConfigAddedEvent(context.Background(),
|
2022-04-05 05:58:09 +00:00
|
|
|
&instance.NewAggregate("INSTANCE").Aggregate,
|
2021-09-14 13:15:01 +00:00
|
|
|
"config1",
|
|
|
|
"name1",
|
|
|
|
domain.IDPConfigTypeOIDC,
|
|
|
|
domain.IDPConfigStylingTypeGoogle,
|
|
|
|
false,
|
|
|
|
),
|
|
|
|
),
|
2022-04-05 05:58:09 +00:00
|
|
|
eventFromEventPusherWithInstanceID(
|
|
|
|
"INSTANCE",
|
2022-03-24 16:21:34 +00:00
|
|
|
instance.NewIDPJWTConfigAddedEvent(context.Background(),
|
2022-04-05 05:58:09 +00:00
|
|
|
&instance.NewAggregate("INSTANCE").Aggregate,
|
2021-09-14 13:15:01 +00:00
|
|
|
"config1",
|
|
|
|
"jwt-endpoint",
|
|
|
|
"issuer",
|
|
|
|
"keys-endpoint",
|
|
|
|
"auth",
|
|
|
|
),
|
|
|
|
),
|
|
|
|
},
|
2022-04-05 05:58:09 +00:00
|
|
|
uniqueConstraintsFromEventConstraintWithInstanceID("INSTANCE", idpconfig.NewAddIDPConfigNameUniqueConstraint("name1", "INSTANCE")),
|
2021-09-14 13:15:01 +00:00
|
|
|
),
|
|
|
|
),
|
|
|
|
idGenerator: id_mock.NewIDGeneratorExpectIDs(t, "config1"),
|
|
|
|
},
|
|
|
|
args: args{
|
2022-04-05 05:58:09 +00:00
|
|
|
ctx: authz.WithInstanceID(context.Background(), "INSTANCE"),
|
2021-09-14 13:15:01 +00:00
|
|
|
config: &domain.IDPConfig{
|
|
|
|
Name: "name1",
|
|
|
|
StylingType: domain.IDPConfigStylingTypeGoogle,
|
|
|
|
JWTConfig: &domain.JWTIDPConfig{
|
|
|
|
JWTEndpoint: "jwt-endpoint",
|
|
|
|
Issuer: "issuer",
|
|
|
|
KeysEndpoint: "keys-endpoint",
|
|
|
|
HeaderName: "auth",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
res: res{
|
|
|
|
want: &domain.IDPConfig{
|
|
|
|
ObjectRoot: models.ObjectRoot{
|
2022-04-05 05:58:09 +00:00
|
|
|
InstanceID: "INSTANCE",
|
|
|
|
AggregateID: "INSTANCE",
|
|
|
|
ResourceOwner: "INSTANCE",
|
2021-09-14 13:15:01 +00:00
|
|
|
},
|
|
|
|
IDPConfigID: "config1",
|
|
|
|
Name: "name1",
|
|
|
|
StylingType: domain.IDPConfigStylingTypeGoogle,
|
|
|
|
State: domain.IDPConfigStateActive,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-03-19 10:12:56 +00:00
|
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
|
|
r := &Commands{
|
|
|
|
eventstore: tt.fields.eventstore,
|
|
|
|
idGenerator: tt.fields.idGenerator,
|
|
|
|
idpConfigSecretCrypto: tt.fields.secretCrypto,
|
|
|
|
}
|
|
|
|
got, err := r.AddDefaultIDPConfig(tt.args.ctx, tt.args.config)
|
|
|
|
if tt.res.err == nil {
|
|
|
|
assert.NoError(t, err)
|
|
|
|
}
|
|
|
|
if tt.res.err != nil && !tt.res.err(err) {
|
|
|
|
t.Errorf("got wrong err: %v ", err)
|
|
|
|
}
|
|
|
|
if tt.res.err == nil {
|
|
|
|
assert.Equal(t, tt.res.want, got)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCommandSide_ChangeDefaultIDPConfig(t *testing.T) {
|
|
|
|
type fields struct {
|
|
|
|
eventstore *eventstore.Eventstore
|
|
|
|
}
|
|
|
|
type args struct {
|
|
|
|
ctx context.Context
|
|
|
|
config *domain.IDPConfig
|
|
|
|
}
|
|
|
|
type res struct {
|
|
|
|
want *domain.IDPConfig
|
|
|
|
err func(error) bool
|
|
|
|
}
|
|
|
|
tests := []struct {
|
|
|
|
name string
|
|
|
|
fields fields
|
|
|
|
args args
|
|
|
|
res res
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
name: "invalid config, error",
|
|
|
|
fields: fields{
|
|
|
|
eventstore: eventstoreExpect(
|
|
|
|
t,
|
|
|
|
),
|
|
|
|
},
|
|
|
|
args: args{
|
|
|
|
ctx: context.Background(),
|
|
|
|
config: &domain.IDPConfig{},
|
|
|
|
},
|
|
|
|
res: res{
|
|
|
|
err: caos_errs.IsErrorInvalidArgument,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "config not existing, not found error",
|
|
|
|
fields: fields{
|
|
|
|
eventstore: eventstoreExpect(
|
|
|
|
t,
|
|
|
|
expectFilter(),
|
|
|
|
),
|
|
|
|
},
|
|
|
|
args: args{
|
|
|
|
ctx: context.Background(),
|
|
|
|
config: &domain.IDPConfig{
|
|
|
|
IDPConfigID: "config1",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
res: res{
|
|
|
|
err: caos_errs.IsNotFound,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "idp config change, ok",
|
|
|
|
fields: fields{
|
|
|
|
eventstore: eventstoreExpect(
|
|
|
|
t,
|
|
|
|
expectFilter(
|
|
|
|
eventFromEventPusher(
|
2022-03-24 16:21:34 +00:00
|
|
|
instance.NewIDPConfigAddedEvent(context.Background(),
|
2022-04-05 05:58:09 +00:00
|
|
|
&instance.NewAggregate("INSTANCE").Aggregate,
|
2021-03-19 10:12:56 +00:00
|
|
|
"config1",
|
|
|
|
"name1",
|
|
|
|
domain.IDPConfigTypeOIDC,
|
|
|
|
domain.IDPConfigStylingTypeGoogle,
|
2021-09-10 07:49:49 +00:00
|
|
|
true,
|
2021-03-19 10:12:56 +00:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
2022-03-24 16:21:34 +00:00
|
|
|
instance.NewIDPOIDCConfigAddedEvent(context.Background(),
|
2022-04-05 05:58:09 +00:00
|
|
|
&instance.NewAggregate("INSTANCE").Aggregate,
|
2021-03-19 10:12:56 +00:00
|
|
|
"clientid1",
|
|
|
|
"config1",
|
|
|
|
"issuer",
|
2021-07-06 14:39:48 +00:00
|
|
|
"authorization-endpoint",
|
|
|
|
"token-endpoint",
|
2021-03-19 10:12:56 +00:00
|
|
|
&crypto.CryptoValue{
|
|
|
|
CryptoType: crypto.TypeEncryption,
|
|
|
|
Algorithm: "enc",
|
|
|
|
KeyID: "id",
|
|
|
|
Crypted: []byte("a"),
|
|
|
|
},
|
|
|
|
domain.OIDCMappingFieldEmail,
|
|
|
|
domain.OIDCMappingFieldEmail,
|
|
|
|
"scope",
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
expectPush(
|
|
|
|
[]*repository.Event{
|
|
|
|
eventFromEventPusher(
|
2021-09-10 07:49:49 +00:00
|
|
|
newDefaultIDPConfigChangedEvent(context.Background(), "config1", "name1", "name2", domain.IDPConfigStylingTypeUnspecified, false),
|
2021-03-19 10:12:56 +00:00
|
|
|
),
|
|
|
|
},
|
2022-04-05 05:58:09 +00:00
|
|
|
uniqueConstraintsFromEventConstraint(idpconfig.NewRemoveIDPConfigNameUniqueConstraint("name1", "INSTANCE")),
|
|
|
|
uniqueConstraintsFromEventConstraint(idpconfig.NewAddIDPConfigNameUniqueConstraint("name2", "INSTANCE")),
|
2021-03-19 10:12:56 +00:00
|
|
|
),
|
|
|
|
),
|
|
|
|
},
|
|
|
|
args: args{
|
|
|
|
ctx: context.Background(),
|
|
|
|
config: &domain.IDPConfig{
|
2021-09-10 07:49:49 +00:00
|
|
|
IDPConfigID: "config1",
|
|
|
|
Name: "name2",
|
|
|
|
StylingType: domain.IDPConfigStylingTypeUnspecified,
|
|
|
|
AutoRegister: false,
|
2021-03-19 10:12:56 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
res: res{
|
|
|
|
want: &domain.IDPConfig{
|
|
|
|
ObjectRoot: models.ObjectRoot{
|
2022-04-05 05:58:09 +00:00
|
|
|
AggregateID: "INSTANCE",
|
|
|
|
ResourceOwner: "INSTANCE",
|
2021-03-19 10:12:56 +00:00
|
|
|
},
|
2021-09-10 07:49:49 +00:00
|
|
|
IDPConfigID: "config1",
|
|
|
|
Name: "name2",
|
|
|
|
StylingType: domain.IDPConfigStylingTypeUnspecified,
|
|
|
|
State: domain.IDPConfigStateActive,
|
|
|
|
AutoRegister: false,
|
2021-03-19 10:12:56 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
|
|
r := &Commands{
|
|
|
|
eventstore: tt.fields.eventstore,
|
|
|
|
}
|
|
|
|
got, err := r.ChangeDefaultIDPConfig(tt.args.ctx, tt.args.config)
|
|
|
|
if tt.res.err == nil {
|
|
|
|
assert.NoError(t, err)
|
|
|
|
}
|
|
|
|
if tt.res.err != nil && !tt.res.err(err) {
|
|
|
|
t.Errorf("got wrong err: %v ", err)
|
|
|
|
}
|
|
|
|
if tt.res.err == nil {
|
|
|
|
assert.Equal(t, tt.res.want, got)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-24 16:21:34 +00:00
|
|
|
func newDefaultIDPConfigChangedEvent(ctx context.Context, configID, oldName, newName string, stylingType domain.IDPConfigStylingType, autoRegister bool) *instance.IDPConfigChangedEvent {
|
|
|
|
event, _ := instance.NewIDPConfigChangedEvent(ctx,
|
2022-04-05 05:58:09 +00:00
|
|
|
&instance.NewAggregate("INSTANCE").Aggregate,
|
2021-03-19 10:12:56 +00:00
|
|
|
configID,
|
|
|
|
oldName,
|
|
|
|
[]idpconfig.IDPConfigChanges{
|
|
|
|
idpconfig.ChangeName(newName),
|
|
|
|
idpconfig.ChangeStyleType(stylingType),
|
2021-09-10 07:49:49 +00:00
|
|
|
idpconfig.ChangeAutoRegister(autoRegister),
|
2021-03-19 10:12:56 +00:00
|
|
|
},
|
|
|
|
)
|
|
|
|
return event
|
|
|
|
}
|