2023-11-22 09:29:38 +00:00
|
|
|
package projection
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/zitadel/zitadel/internal/eventstore"
|
|
|
|
"github.com/zitadel/zitadel/internal/eventstore/handler/v2"
|
|
|
|
"github.com/zitadel/zitadel/internal/repository/restrictions"
|
2023-12-08 14:30:55 +00:00
|
|
|
"github.com/zitadel/zitadel/internal/zerrors"
|
2023-11-22 09:29:38 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestRestrictionsProjection_reduces(t *testing.T) {
|
|
|
|
type args struct {
|
|
|
|
event func(t *testing.T) eventstore.Event
|
|
|
|
}
|
|
|
|
tests := []struct {
|
|
|
|
name string
|
|
|
|
args args
|
|
|
|
reduce func(event eventstore.Event) (*handler.Statement, error)
|
|
|
|
want wantReduce
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
name: "reduceRestrictionsSet should update defined",
|
|
|
|
args: args{
|
|
|
|
event: getEvent(testEvent(
|
|
|
|
restrictions.SetEventType,
|
|
|
|
restrictions.AggregateType,
|
2023-12-05 11:12:01 +00:00
|
|
|
[]byte(`{ "disallowPublicOrgRegistration": true }`),
|
2023-11-22 09:29:38 +00:00
|
|
|
), restrictions.SetEventMapper),
|
|
|
|
},
|
|
|
|
reduce: (&restrictionsProjection{}).reduceRestrictionsSet,
|
|
|
|
want: wantReduce{
|
|
|
|
aggregateType: eventstore.AggregateType("restrictions"),
|
|
|
|
sequence: 15,
|
|
|
|
executer: &testExecuter{
|
|
|
|
executions: []execution{
|
|
|
|
{
|
2023-12-06 10:30:56 +00:00
|
|
|
expectedStmt: "INSERT INTO projections.restrictions2 (instance_id, resource_owner, creation_date, change_date, sequence, aggregate_id, disallow_public_org_registration) VALUES ($1, $2, $3, $4, $5, $6, $7) ON CONFLICT (instance_id, resource_owner) DO UPDATE SET (creation_date, change_date, sequence, aggregate_id, disallow_public_org_registration) = (projections.restrictions2.creation_date, EXCLUDED.change_date, EXCLUDED.sequence, EXCLUDED.aggregate_id, EXCLUDED.disallow_public_org_registration)",
|
2023-11-22 09:29:38 +00:00
|
|
|
expectedArgs: []interface{}{
|
|
|
|
"instance-id",
|
|
|
|
"ro-id",
|
|
|
|
anyArg{},
|
|
|
|
anyArg{},
|
|
|
|
uint64(15),
|
|
|
|
"agg-id",
|
|
|
|
true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "reduceRestrictionsSet shouldn't update undefined",
|
|
|
|
args: args{
|
|
|
|
event: getEvent(testEvent(
|
|
|
|
restrictions.SetEventType,
|
|
|
|
restrictions.AggregateType,
|
|
|
|
[]byte(`{}`),
|
|
|
|
), restrictions.SetEventMapper),
|
|
|
|
},
|
|
|
|
reduce: (&restrictionsProjection{}).reduceRestrictionsSet,
|
|
|
|
want: wantReduce{
|
|
|
|
aggregateType: eventstore.AggregateType("restrictions"),
|
|
|
|
sequence: 15,
|
|
|
|
executer: &testExecuter{
|
|
|
|
executions: []execution{
|
|
|
|
{
|
2023-12-06 10:30:56 +00:00
|
|
|
expectedStmt: "INSERT INTO projections.restrictions2 (instance_id, resource_owner, creation_date, change_date, sequence, aggregate_id) VALUES ($1, $2, $3, $4, $5, $6) ON CONFLICT (instance_id, resource_owner) DO UPDATE SET (creation_date, change_date, sequence, aggregate_id) = (projections.restrictions2.creation_date, EXCLUDED.change_date, EXCLUDED.sequence, EXCLUDED.aggregate_id)",
|
2023-11-22 09:29:38 +00:00
|
|
|
expectedArgs: []interface{}{
|
|
|
|
"instance-id",
|
|
|
|
"ro-id",
|
|
|
|
anyArg{},
|
|
|
|
anyArg{},
|
|
|
|
uint64(15),
|
|
|
|
"agg-id",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
|
|
event := baseEvent(t)
|
|
|
|
got, err := tt.reduce(event)
|
2023-12-08 14:30:55 +00:00
|
|
|
if !zerrors.IsErrorInvalidArgument(err) {
|
2023-11-22 09:29:38 +00:00
|
|
|
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, RestrictionsProjectionTable, tt.want)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|