2021-03-15 11:51:15 +00:00
|
|
|
package command
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"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/repository/iam"
|
|
|
|
"github.com/caos/zitadel/internal/repository/policy"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestCommandSide_AddDefaultLabelPolicy(t *testing.T) {
|
|
|
|
type fields struct {
|
|
|
|
eventstore *eventstore.Eventstore
|
|
|
|
}
|
|
|
|
type args struct {
|
|
|
|
ctx context.Context
|
|
|
|
policy *domain.LabelPolicy
|
|
|
|
}
|
|
|
|
type res struct {
|
|
|
|
want *domain.LabelPolicy
|
|
|
|
err func(error) bool
|
|
|
|
}
|
|
|
|
tests := []struct {
|
|
|
|
name string
|
|
|
|
fields fields
|
|
|
|
args args
|
|
|
|
res res
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
name: "labelpolicy invalid, invalid argument error",
|
|
|
|
fields: fields{
|
|
|
|
eventstore: eventstoreExpect(
|
|
|
|
t,
|
|
|
|
),
|
|
|
|
},
|
|
|
|
args: args{
|
|
|
|
ctx: context.Background(),
|
|
|
|
policy: &domain.LabelPolicy{
|
|
|
|
PrimaryColor: "",
|
|
|
|
SecondaryColor: "secondary-color",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
res: res{
|
|
|
|
err: caos_errs.IsErrorInvalidArgument,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "labelpolicy already existing, already exists error",
|
|
|
|
fields: fields{
|
|
|
|
eventstore: eventstoreExpect(
|
|
|
|
t,
|
|
|
|
expectFilter(
|
|
|
|
eventFromEventPusher(
|
|
|
|
iam.NewLabelPolicyAddedEvent(context.Background(),
|
|
|
|
&iam.NewAggregate().Aggregate,
|
|
|
|
"primary-color",
|
|
|
|
"secondary-color",
|
2021-03-25 13:41:07 +00:00
|
|
|
true,
|
2021-03-15 11:51:15 +00:00
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
},
|
|
|
|
args: args{
|
|
|
|
ctx: context.Background(),
|
|
|
|
policy: &domain.LabelPolicy{
|
2021-03-25 13:41:07 +00:00
|
|
|
PrimaryColor: "primary-color",
|
|
|
|
SecondaryColor: "secondary-color",
|
|
|
|
HideLoginNameSuffix: true,
|
2021-03-15 11:51:15 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
res: res{
|
|
|
|
err: caos_errs.IsErrorAlreadyExists,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "add policy,ok",
|
|
|
|
fields: fields{
|
|
|
|
eventstore: eventstoreExpect(
|
|
|
|
t,
|
|
|
|
expectFilter(),
|
|
|
|
expectPush(
|
|
|
|
[]*repository.Event{
|
|
|
|
eventFromEventPusher(
|
|
|
|
iam.NewLabelPolicyAddedEvent(context.Background(),
|
|
|
|
&iam.NewAggregate().Aggregate,
|
|
|
|
"primary-color",
|
|
|
|
"secondary-color",
|
2021-03-25 13:41:07 +00:00
|
|
|
true,
|
2021-03-15 11:51:15 +00:00
|
|
|
),
|
|
|
|
),
|
|
|
|
},
|
|
|
|
),
|
|
|
|
),
|
|
|
|
},
|
|
|
|
args: args{
|
|
|
|
ctx: context.Background(),
|
|
|
|
policy: &domain.LabelPolicy{
|
2021-03-25 13:41:07 +00:00
|
|
|
PrimaryColor: "primary-color",
|
|
|
|
SecondaryColor: "secondary-color",
|
|
|
|
HideLoginNameSuffix: true,
|
2021-03-15 11:51:15 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
res: res{
|
|
|
|
want: &domain.LabelPolicy{
|
|
|
|
ObjectRoot: models.ObjectRoot{
|
|
|
|
AggregateID: "IAM",
|
|
|
|
ResourceOwner: "IAM",
|
|
|
|
},
|
2021-03-25 13:41:07 +00:00
|
|
|
PrimaryColor: "primary-color",
|
|
|
|
SecondaryColor: "secondary-color",
|
|
|
|
HideLoginNameSuffix: true,
|
2021-03-15 11:51:15 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
|
|
r := &Commands{
|
|
|
|
eventstore: tt.fields.eventstore,
|
|
|
|
}
|
|
|
|
got, err := r.AddDefaultLabelPolicy(tt.args.ctx, tt.args.policy)
|
|
|
|
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_ChangeDefaultLabelPolicy(t *testing.T) {
|
|
|
|
type fields struct {
|
|
|
|
eventstore *eventstore.Eventstore
|
|
|
|
}
|
|
|
|
type args struct {
|
|
|
|
ctx context.Context
|
|
|
|
policy *domain.LabelPolicy
|
|
|
|
}
|
|
|
|
type res struct {
|
|
|
|
want *domain.LabelPolicy
|
|
|
|
err func(error) bool
|
|
|
|
}
|
|
|
|
tests := []struct {
|
|
|
|
name string
|
|
|
|
fields fields
|
|
|
|
args args
|
|
|
|
res res
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
name: "labelpolicy invalid, invalid argument error",
|
|
|
|
fields: fields{
|
|
|
|
eventstore: eventstoreExpect(
|
|
|
|
t,
|
|
|
|
),
|
|
|
|
},
|
|
|
|
args: args{
|
|
|
|
ctx: context.Background(),
|
|
|
|
policy: &domain.LabelPolicy{
|
|
|
|
PrimaryColor: "",
|
|
|
|
SecondaryColor: "secondary-color",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
res: res{
|
|
|
|
err: caos_errs.IsErrorInvalidArgument,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "labelpolicy not existing, not found error",
|
|
|
|
fields: fields{
|
|
|
|
eventstore: eventstoreExpect(
|
|
|
|
t,
|
|
|
|
expectFilter(),
|
|
|
|
),
|
|
|
|
},
|
|
|
|
args: args{
|
|
|
|
ctx: context.Background(),
|
|
|
|
policy: &domain.LabelPolicy{
|
|
|
|
PrimaryColor: "primary-color",
|
|
|
|
SecondaryColor: "secondary-color",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
res: res{
|
|
|
|
err: caos_errs.IsNotFound,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "no changes, precondition error",
|
|
|
|
fields: fields{
|
|
|
|
eventstore: eventstoreExpect(
|
|
|
|
t,
|
|
|
|
expectFilter(
|
|
|
|
eventFromEventPusher(
|
|
|
|
iam.NewLabelPolicyAddedEvent(context.Background(),
|
|
|
|
&iam.NewAggregate().Aggregate,
|
|
|
|
"primary-color",
|
|
|
|
"secondary-color",
|
2021-03-25 13:41:07 +00:00
|
|
|
true,
|
2021-03-15 11:51:15 +00:00
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
},
|
|
|
|
args: args{
|
|
|
|
ctx: context.Background(),
|
|
|
|
policy: &domain.LabelPolicy{
|
2021-03-25 13:41:07 +00:00
|
|
|
PrimaryColor: "primary-color",
|
|
|
|
SecondaryColor: "secondary-color",
|
|
|
|
HideLoginNameSuffix: true,
|
2021-03-15 11:51:15 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
res: res{
|
|
|
|
err: caos_errs.IsPreconditionFailed,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "change, ok",
|
|
|
|
fields: fields{
|
|
|
|
eventstore: eventstoreExpect(
|
|
|
|
t,
|
|
|
|
expectFilter(
|
|
|
|
eventFromEventPusher(
|
|
|
|
iam.NewLabelPolicyAddedEvent(context.Background(),
|
|
|
|
&iam.NewAggregate().Aggregate,
|
|
|
|
"primary-color",
|
|
|
|
"secondary-color",
|
2021-03-25 13:41:07 +00:00
|
|
|
true,
|
2021-03-15 11:51:15 +00:00
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
expectPush(
|
|
|
|
[]*repository.Event{
|
|
|
|
eventFromEventPusher(
|
2021-03-25 13:41:07 +00:00
|
|
|
newDefaultLabelPolicyChangedEvent(context.Background(), "primary-color-change", "secondary-color-change", false),
|
2021-03-15 11:51:15 +00:00
|
|
|
),
|
|
|
|
},
|
|
|
|
),
|
|
|
|
),
|
|
|
|
},
|
|
|
|
args: args{
|
|
|
|
ctx: context.Background(),
|
|
|
|
policy: &domain.LabelPolicy{
|
2021-03-25 13:41:07 +00:00
|
|
|
PrimaryColor: "primary-color-change",
|
|
|
|
SecondaryColor: "secondary-color-change",
|
|
|
|
HideLoginNameSuffix: false,
|
2021-03-15 11:51:15 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
res: res{
|
|
|
|
want: &domain.LabelPolicy{
|
|
|
|
ObjectRoot: models.ObjectRoot{
|
|
|
|
AggregateID: "IAM",
|
|
|
|
ResourceOwner: "IAM",
|
|
|
|
},
|
2021-03-25 13:41:07 +00:00
|
|
|
PrimaryColor: "primary-color-change",
|
|
|
|
SecondaryColor: "secondary-color-change",
|
|
|
|
HideLoginNameSuffix: false,
|
2021-03-15 11:51:15 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
|
|
r := &Commands{
|
|
|
|
eventstore: tt.fields.eventstore,
|
|
|
|
}
|
|
|
|
got, err := r.ChangeDefaultLabelPolicy(tt.args.ctx, tt.args.policy)
|
|
|
|
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)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-25 13:41:07 +00:00
|
|
|
func newDefaultLabelPolicyChangedEvent(ctx context.Context, primaryColor, secondaryColor string, hideLoginNameSuffix bool) *iam.LabelPolicyChangedEvent {
|
2021-03-15 11:51:15 +00:00
|
|
|
event, _ := iam.NewLabelPolicyChangedEvent(ctx,
|
|
|
|
&iam.NewAggregate().Aggregate,
|
|
|
|
[]policy.LabelPolicyChanges{
|
|
|
|
policy.ChangePrimaryColor(primaryColor),
|
|
|
|
policy.ChangeSecondaryColor(secondaryColor),
|
2021-03-25 13:41:07 +00:00
|
|
|
policy.ChangeHideLoginNameSuffix(hideLoginNameSuffix),
|
2021-03-15 11:51:15 +00:00
|
|
|
},
|
|
|
|
)
|
|
|
|
return event
|
|
|
|
}
|