mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 19:14:23 +00:00
235 lines
6.4 KiB
Go
235 lines
6.4 KiB
Go
|
package projection
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/caos/zitadel/internal/domain"
|
||
|
"github.com/caos/zitadel/internal/errors"
|
||
|
"github.com/caos/zitadel/internal/eventstore"
|
||
|
"github.com/caos/zitadel/internal/eventstore/handler"
|
||
|
"github.com/caos/zitadel/internal/eventstore/repository"
|
||
|
"github.com/caos/zitadel/internal/repository/iam"
|
||
|
"github.com/caos/zitadel/internal/repository/org"
|
||
|
)
|
||
|
|
||
|
func TestPasswordComplexityProjection_reduces(t *testing.T) {
|
||
|
type args struct {
|
||
|
event func(t *testing.T) eventstore.EventReader
|
||
|
}
|
||
|
tests := []struct {
|
||
|
name string
|
||
|
args args
|
||
|
reduce func(event eventstore.EventReader) (*handler.Statement, error)
|
||
|
want wantReduce
|
||
|
}{
|
||
|
{
|
||
|
name: "org.reduceAdded",
|
||
|
args: args{
|
||
|
event: getEvent(testEvent(
|
||
|
repository.EventType(org.PasswordComplexityPolicyAddedEventType),
|
||
|
org.AggregateType,
|
||
|
[]byte(`{
|
||
|
"minLength": 10,
|
||
|
"hasLowercase": true,
|
||
|
"hasUppercase": true,
|
||
|
"HasNumber": true,
|
||
|
"HasSymbol": true
|
||
|
}`),
|
||
|
), org.PasswordComplexityPolicyAddedEventMapper),
|
||
|
},
|
||
|
reduce: (&PasswordComplexityProjection{}).reduceAdded,
|
||
|
want: wantReduce{
|
||
|
aggregateType: eventstore.AggregateType("org"),
|
||
|
sequence: 15,
|
||
|
previousSequence: 10,
|
||
|
projection: PasswordComplexityTable,
|
||
|
executer: &testExecuter{
|
||
|
executions: []execution{
|
||
|
{
|
||
|
expectedStmt: "INSERT INTO zitadel.projections.password_complexity_policies (creation_date, change_date, sequence, id, state, min_length, has_lowercase, has_uppercase, has_symbol, has_number, resource_owner, is_default) VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12)",
|
||
|
expectedArgs: []interface{}{
|
||
|
anyArg{},
|
||
|
anyArg{},
|
||
|
uint64(15),
|
||
|
"agg-id",
|
||
|
domain.PolicyStateActive,
|
||
|
uint64(10),
|
||
|
true,
|
||
|
true,
|
||
|
true,
|
||
|
true,
|
||
|
"ro-id",
|
||
|
false,
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
name: "org.reduceChanged",
|
||
|
reduce: (&PasswordComplexityProjection{}).reduceChanged,
|
||
|
args: args{
|
||
|
event: getEvent(testEvent(
|
||
|
repository.EventType(org.PasswordComplexityPolicyChangedEventType),
|
||
|
org.AggregateType,
|
||
|
[]byte(`{
|
||
|
"minLength": 11,
|
||
|
"hasLowercase": true,
|
||
|
"hasUppercase": true,
|
||
|
"HasNumber": true,
|
||
|
"HasSymbol": true
|
||
|
}`),
|
||
|
), org.PasswordComplexityPolicyChangedEventMapper),
|
||
|
},
|
||
|
want: wantReduce{
|
||
|
aggregateType: eventstore.AggregateType("org"),
|
||
|
sequence: 15,
|
||
|
previousSequence: 10,
|
||
|
projection: PasswordComplexityTable,
|
||
|
executer: &testExecuter{
|
||
|
executions: []execution{
|
||
|
{
|
||
|
expectedStmt: "UPDATE zitadel.projections.password_complexity_policies SET (change_date, sequence, min_length, has_lowercase, has_uppercase, has_symbol, has_number) = ($1, $2, $3, $4, $5, $6, $7) WHERE (id = $8)",
|
||
|
expectedArgs: []interface{}{
|
||
|
anyArg{},
|
||
|
uint64(15),
|
||
|
uint64(11),
|
||
|
true,
|
||
|
true,
|
||
|
true,
|
||
|
true,
|
||
|
"agg-id",
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
name: "org.reduceRemoved",
|
||
|
reduce: (&PasswordComplexityProjection{}).reduceRemoved,
|
||
|
args: args{
|
||
|
event: getEvent(testEvent(
|
||
|
repository.EventType(org.PasswordComplexityPolicyRemovedEventType),
|
||
|
org.AggregateType,
|
||
|
nil,
|
||
|
), org.PasswordComplexityPolicyRemovedEventMapper),
|
||
|
},
|
||
|
want: wantReduce{
|
||
|
aggregateType: eventstore.AggregateType("org"),
|
||
|
sequence: 15,
|
||
|
previousSequence: 10,
|
||
|
projection: PasswordComplexityTable,
|
||
|
executer: &testExecuter{
|
||
|
executions: []execution{
|
||
|
{
|
||
|
expectedStmt: "DELETE FROM zitadel.projections.password_complexity_policies WHERE (id = $1)",
|
||
|
expectedArgs: []interface{}{
|
||
|
"agg-id",
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
name: "iam.reduceAdded",
|
||
|
reduce: (&PasswordComplexityProjection{}).reduceAdded,
|
||
|
args: args{
|
||
|
event: getEvent(testEvent(
|
||
|
repository.EventType(iam.PasswordComplexityPolicyAddedEventType),
|
||
|
iam.AggregateType,
|
||
|
[]byte(`{
|
||
|
"minLength": 10,
|
||
|
"hasLowercase": true,
|
||
|
"hasUppercase": true,
|
||
|
"HasNumber": true,
|
||
|
"HasSymbol": true
|
||
|
}`),
|
||
|
), iam.PasswordComplexityPolicyAddedEventMapper),
|
||
|
},
|
||
|
want: wantReduce{
|
||
|
aggregateType: eventstore.AggregateType("iam"),
|
||
|
sequence: 15,
|
||
|
previousSequence: 10,
|
||
|
projection: PasswordComplexityTable,
|
||
|
executer: &testExecuter{
|
||
|
executions: []execution{
|
||
|
{
|
||
|
expectedStmt: "INSERT INTO zitadel.projections.password_complexity_policies (creation_date, change_date, sequence, id, state, min_length, has_lowercase, has_uppercase, has_symbol, has_number, resource_owner, is_default) VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12)",
|
||
|
expectedArgs: []interface{}{
|
||
|
anyArg{},
|
||
|
anyArg{},
|
||
|
uint64(15),
|
||
|
"agg-id",
|
||
|
domain.PolicyStateActive,
|
||
|
uint64(10),
|
||
|
true,
|
||
|
true,
|
||
|
true,
|
||
|
true,
|
||
|
"ro-id",
|
||
|
true,
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
name: "iam.reduceChanged",
|
||
|
reduce: (&PasswordComplexityProjection{}).reduceChanged,
|
||
|
args: args{
|
||
|
event: getEvent(testEvent(
|
||
|
repository.EventType(iam.PasswordComplexityPolicyChangedEventType),
|
||
|
iam.AggregateType,
|
||
|
[]byte(`{
|
||
|
"minLength": 10,
|
||
|
"hasLowercase": true,
|
||
|
"hasUppercase": true,
|
||
|
"HasNumber": true,
|
||
|
"HasSymbol": true
|
||
|
}`),
|
||
|
), iam.PasswordComplexityPolicyChangedEventMapper),
|
||
|
},
|
||
|
want: wantReduce{
|
||
|
aggregateType: eventstore.AggregateType("iam"),
|
||
|
sequence: 15,
|
||
|
previousSequence: 10,
|
||
|
projection: PasswordComplexityTable,
|
||
|
executer: &testExecuter{
|
||
|
executions: []execution{
|
||
|
{
|
||
|
expectedStmt: "UPDATE zitadel.projections.password_complexity_policies SET (change_date, sequence, min_length, has_lowercase, has_uppercase, has_symbol, has_number) = ($1, $2, $3, $4, $5, $6, $7) WHERE (id = $8)",
|
||
|
expectedArgs: []interface{}{
|
||
|
anyArg{},
|
||
|
uint64(15),
|
||
|
uint64(10),
|
||
|
true,
|
||
|
true,
|
||
|
true,
|
||
|
true,
|
||
|
"agg-id",
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
}
|
||
|
for _, tt := range tests {
|
||
|
t.Run(tt.name, func(t *testing.T) {
|
||
|
event := baseEvent(t)
|
||
|
got, err := tt.reduce(event)
|
||
|
if _, ok := err.(errors.InvalidArgument); !ok {
|
||
|
t.Errorf("no wrong event mapping: %v, got: %v", err, got)
|
||
|
}
|
||
|
|
||
|
event = tt.args.event(t)
|
||
|
got, err = tt.reduce(event)
|
||
|
assertReduce(t, got, err, tt.want)
|
||
|
})
|
||
|
}
|
||
|
}
|