2022-01-13 10:02:39 +00:00
|
|
|
package projection
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/lib/pq"
|
|
|
|
|
2022-04-26 23:01:45 +00:00
|
|
|
"github.com/zitadel/zitadel/internal/domain"
|
|
|
|
"github.com/zitadel/zitadel/internal/errors"
|
|
|
|
"github.com/zitadel/zitadel/internal/eventstore"
|
|
|
|
"github.com/zitadel/zitadel/internal/eventstore/handler"
|
|
|
|
"github.com/zitadel/zitadel/internal/eventstore/repository"
|
|
|
|
"github.com/zitadel/zitadel/internal/repository/project"
|
|
|
|
"github.com/zitadel/zitadel/internal/repository/user"
|
|
|
|
"github.com/zitadel/zitadel/internal/repository/usergrant"
|
2022-01-13 10:02:39 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestUserGrantProjection_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: "reduceAdded",
|
|
|
|
args: args{
|
|
|
|
event: getEvent(testEvent(
|
|
|
|
repository.EventType(usergrant.UserGrantAddedType),
|
|
|
|
usergrant.AggregateType,
|
|
|
|
[]byte(`{
|
|
|
|
"userId": "user-id",
|
|
|
|
"projectId": "project-id",
|
|
|
|
"roleKeys": ["role"]
|
|
|
|
}`),
|
|
|
|
), usergrant.UserGrantAddedEventMapper),
|
|
|
|
},
|
|
|
|
reduce: (&UserGrantProjection{}).reduceAdded,
|
|
|
|
want: wantReduce{
|
|
|
|
aggregateType: usergrant.AggregateType,
|
|
|
|
sequence: 15,
|
|
|
|
previousSequence: 10,
|
|
|
|
projection: UserGrantProjectionTable,
|
|
|
|
executer: &testExecuter{
|
|
|
|
executions: []execution{
|
|
|
|
{
|
2022-03-23 08:02:39 +00:00
|
|
|
expectedStmt: "INSERT INTO projections.user_grants (id, resource_owner, instance_id, creation_date, change_date, sequence, user_id, project_id, grant_id, roles, state) VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11)",
|
2022-01-13 10:02:39 +00:00
|
|
|
expectedArgs: []interface{}{
|
|
|
|
"agg-id",
|
|
|
|
"ro-id",
|
2022-03-23 08:02:39 +00:00
|
|
|
"instance-id",
|
2022-01-13 10:02:39 +00:00
|
|
|
anyArg{},
|
|
|
|
anyArg{},
|
|
|
|
uint64(15),
|
|
|
|
"user-id",
|
|
|
|
"project-id",
|
|
|
|
"",
|
|
|
|
pq.StringArray{"role"},
|
|
|
|
domain.UserGrantStateActive,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "reduceChanged",
|
|
|
|
args: args{
|
|
|
|
event: getEvent(testEvent(
|
|
|
|
repository.EventType(usergrant.UserGrantChangedType),
|
|
|
|
usergrant.AggregateType,
|
|
|
|
[]byte(`{
|
|
|
|
"roleKeys": ["role"]
|
|
|
|
}`),
|
|
|
|
), usergrant.UserGrantChangedEventMapper),
|
|
|
|
},
|
|
|
|
reduce: (&UserGrantProjection{}).reduceChanged,
|
|
|
|
want: wantReduce{
|
|
|
|
aggregateType: usergrant.AggregateType,
|
|
|
|
sequence: 15,
|
|
|
|
previousSequence: 10,
|
|
|
|
projection: UserGrantProjectionTable,
|
|
|
|
executer: &testExecuter{
|
|
|
|
executions: []execution{
|
|
|
|
{
|
2022-03-23 08:02:39 +00:00
|
|
|
expectedStmt: "UPDATE projections.user_grants SET (change_date, roles, sequence) = ($1, $2, $3) WHERE (id = $4)",
|
2022-01-13 10:02:39 +00:00
|
|
|
expectedArgs: []interface{}{
|
|
|
|
anyArg{},
|
|
|
|
pq.StringArray{"role"},
|
|
|
|
uint64(15),
|
|
|
|
"agg-id",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "reduceCascadeChanged",
|
|
|
|
args: args{
|
|
|
|
event: getEvent(testEvent(
|
|
|
|
repository.EventType(usergrant.UserGrantCascadeChangedType),
|
|
|
|
usergrant.AggregateType,
|
|
|
|
[]byte(`{
|
|
|
|
"roleKeys": ["role"]
|
|
|
|
}`),
|
|
|
|
), usergrant.UserGrantCascadeChangedEventMapper),
|
|
|
|
},
|
|
|
|
reduce: (&UserGrantProjection{}).reduceChanged,
|
|
|
|
want: wantReduce{
|
|
|
|
aggregateType: usergrant.AggregateType,
|
|
|
|
sequence: 15,
|
|
|
|
previousSequence: 10,
|
|
|
|
projection: UserGrantProjectionTable,
|
|
|
|
executer: &testExecuter{
|
|
|
|
executions: []execution{
|
|
|
|
{
|
2022-03-23 08:02:39 +00:00
|
|
|
expectedStmt: "UPDATE projections.user_grants SET (change_date, roles, sequence) = ($1, $2, $3) WHERE (id = $4)",
|
2022-01-13 10:02:39 +00:00
|
|
|
expectedArgs: []interface{}{
|
|
|
|
anyArg{},
|
|
|
|
pq.StringArray{"role"},
|
|
|
|
uint64(15),
|
|
|
|
"agg-id",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "reduceRemoved",
|
|
|
|
args: args{
|
|
|
|
event: getEvent(testEvent(
|
|
|
|
repository.EventType(usergrant.UserGrantRemovedType),
|
|
|
|
usergrant.AggregateType,
|
|
|
|
nil,
|
|
|
|
), usergrant.UserGrantRemovedEventMapper),
|
|
|
|
},
|
|
|
|
reduce: (&UserGrantProjection{}).reduceRemoved,
|
|
|
|
want: wantReduce{
|
|
|
|
aggregateType: usergrant.AggregateType,
|
|
|
|
sequence: 15,
|
|
|
|
previousSequence: 10,
|
|
|
|
projection: UserGrantProjectionTable,
|
|
|
|
executer: &testExecuter{
|
|
|
|
executions: []execution{
|
|
|
|
{
|
2022-03-23 08:02:39 +00:00
|
|
|
expectedStmt: "DELETE FROM projections.user_grants WHERE (id = $1)",
|
2022-01-13 10:02:39 +00:00
|
|
|
expectedArgs: []interface{}{
|
|
|
|
anyArg{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "reduceCascadeRemoved",
|
|
|
|
args: args{
|
|
|
|
event: getEvent(testEvent(
|
|
|
|
repository.EventType(usergrant.UserGrantCascadeRemovedType),
|
|
|
|
usergrant.AggregateType,
|
|
|
|
nil,
|
|
|
|
), usergrant.UserGrantCascadeRemovedEventMapper),
|
|
|
|
},
|
|
|
|
reduce: (&UserGrantProjection{}).reduceRemoved,
|
|
|
|
want: wantReduce{
|
|
|
|
aggregateType: usergrant.AggregateType,
|
|
|
|
sequence: 15,
|
|
|
|
previousSequence: 10,
|
|
|
|
projection: UserGrantProjectionTable,
|
|
|
|
executer: &testExecuter{
|
|
|
|
executions: []execution{
|
|
|
|
{
|
2022-03-23 08:02:39 +00:00
|
|
|
expectedStmt: "DELETE FROM projections.user_grants WHERE (id = $1)",
|
2022-01-13 10:02:39 +00:00
|
|
|
expectedArgs: []interface{}{
|
|
|
|
anyArg{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "reduceDeactivated",
|
|
|
|
args: args{
|
|
|
|
event: getEvent(testEvent(
|
|
|
|
repository.EventType(usergrant.UserGrantDeactivatedType),
|
|
|
|
usergrant.AggregateType,
|
|
|
|
nil,
|
|
|
|
), usergrant.UserGrantDeactivatedEventMapper),
|
|
|
|
},
|
|
|
|
reduce: (&UserGrantProjection{}).reduceDeactivated,
|
|
|
|
want: wantReduce{
|
|
|
|
aggregateType: usergrant.AggregateType,
|
|
|
|
sequence: 15,
|
|
|
|
previousSequence: 10,
|
|
|
|
projection: UserGrantProjectionTable,
|
|
|
|
executer: &testExecuter{
|
|
|
|
executions: []execution{
|
|
|
|
{
|
2022-03-23 08:02:39 +00:00
|
|
|
expectedStmt: "UPDATE projections.user_grants SET (change_date, state, sequence) = ($1, $2, $3) WHERE (id = $4)",
|
2022-01-13 10:02:39 +00:00
|
|
|
expectedArgs: []interface{}{
|
|
|
|
anyArg{},
|
|
|
|
domain.UserGrantStateInactive,
|
|
|
|
uint64(15),
|
|
|
|
"agg-id",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "reduceReactivated",
|
|
|
|
args: args{
|
|
|
|
event: getEvent(testEvent(
|
|
|
|
repository.EventType(usergrant.UserGrantReactivatedType),
|
|
|
|
usergrant.AggregateType,
|
|
|
|
nil,
|
|
|
|
), usergrant.UserGrantDeactivatedEventMapper),
|
|
|
|
},
|
|
|
|
reduce: (&UserGrantProjection{}).reduceReactivated,
|
|
|
|
want: wantReduce{
|
|
|
|
aggregateType: usergrant.AggregateType,
|
|
|
|
sequence: 15,
|
|
|
|
previousSequence: 10,
|
|
|
|
projection: UserGrantProjectionTable,
|
|
|
|
executer: &testExecuter{
|
|
|
|
executions: []execution{
|
|
|
|
{
|
2022-03-23 08:02:39 +00:00
|
|
|
expectedStmt: "UPDATE projections.user_grants SET (change_date, state, sequence) = ($1, $2, $3) WHERE (id = $4)",
|
2022-01-13 10:02:39 +00:00
|
|
|
expectedArgs: []interface{}{
|
|
|
|
anyArg{},
|
|
|
|
domain.UserGrantStateActive,
|
|
|
|
uint64(15),
|
|
|
|
"agg-id",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "reduceUserRemoved",
|
|
|
|
args: args{
|
|
|
|
event: getEvent(testEvent(
|
|
|
|
repository.EventType(user.UserRemovedType),
|
|
|
|
user.AggregateType,
|
|
|
|
nil,
|
|
|
|
), user.UserRemovedEventMapper),
|
|
|
|
},
|
|
|
|
reduce: (&UserGrantProjection{}).reduceUserRemoved,
|
|
|
|
want: wantReduce{
|
|
|
|
aggregateType: user.AggregateType,
|
|
|
|
sequence: 15,
|
|
|
|
previousSequence: 10,
|
|
|
|
projection: UserGrantProjectionTable,
|
|
|
|
executer: &testExecuter{
|
|
|
|
executions: []execution{
|
|
|
|
{
|
2022-03-23 08:02:39 +00:00
|
|
|
expectedStmt: "DELETE FROM projections.user_grants WHERE (user_id = $1)",
|
2022-01-13 10:02:39 +00:00
|
|
|
expectedArgs: []interface{}{
|
|
|
|
anyArg{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "reduceProjectRemoved",
|
|
|
|
args: args{
|
|
|
|
event: getEvent(testEvent(
|
|
|
|
repository.EventType(project.ProjectRemovedType),
|
|
|
|
project.AggregateType,
|
|
|
|
nil,
|
|
|
|
), project.ProjectRemovedEventMapper),
|
|
|
|
},
|
|
|
|
reduce: (&UserGrantProjection{}).reduceProjectRemoved,
|
|
|
|
want: wantReduce{
|
|
|
|
aggregateType: project.AggregateType,
|
|
|
|
sequence: 15,
|
|
|
|
previousSequence: 10,
|
|
|
|
projection: UserGrantProjectionTable,
|
|
|
|
executer: &testExecuter{
|
|
|
|
executions: []execution{
|
|
|
|
{
|
2022-03-23 08:02:39 +00:00
|
|
|
expectedStmt: "DELETE FROM projections.user_grants WHERE (project_id = $1)",
|
2022-01-13 10:02:39 +00:00
|
|
|
expectedArgs: []interface{}{
|
|
|
|
anyArg{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "reduceProjectGrantRemoved",
|
|
|
|
args: args{
|
|
|
|
event: getEvent(testEvent(
|
|
|
|
repository.EventType(project.GrantRemovedType),
|
|
|
|
project.AggregateType,
|
|
|
|
[]byte(`{"grantId": "grantID"}`),
|
|
|
|
), project.GrantRemovedEventMapper),
|
|
|
|
},
|
|
|
|
reduce: (&UserGrantProjection{}).reduceProjectGrantRemoved,
|
|
|
|
want: wantReduce{
|
|
|
|
aggregateType: project.AggregateType,
|
|
|
|
sequence: 15,
|
|
|
|
previousSequence: 10,
|
|
|
|
projection: UserGrantProjectionTable,
|
|
|
|
executer: &testExecuter{
|
|
|
|
executions: []execution{
|
|
|
|
{
|
2022-03-23 08:02:39 +00:00
|
|
|
expectedStmt: "DELETE FROM projections.user_grants WHERE (grant_id = $1)",
|
2022-01-13 10:02:39 +00:00
|
|
|
expectedArgs: []interface{}{
|
|
|
|
"grantID",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2022-01-20 07:33:51 +00:00
|
|
|
{
|
|
|
|
name: "reduceRoleRemoved",
|
|
|
|
args: args{
|
|
|
|
event: getEvent(testEvent(
|
|
|
|
repository.EventType(project.RoleRemovedType),
|
|
|
|
project.AggregateType,
|
|
|
|
[]byte(`{"key": "key"}`),
|
|
|
|
), project.RoleRemovedEventMapper),
|
|
|
|
},
|
|
|
|
reduce: (&UserGrantProjection{}).reduceRoleRemoved,
|
|
|
|
want: wantReduce{
|
|
|
|
aggregateType: project.AggregateType,
|
|
|
|
sequence: 15,
|
|
|
|
previousSequence: 10,
|
|
|
|
projection: UserGrantProjectionTable,
|
|
|
|
executer: &testExecuter{
|
|
|
|
executions: []execution{
|
|
|
|
{
|
2022-03-23 08:02:39 +00:00
|
|
|
expectedStmt: "UPDATE projections.user_grants SET (roles) = (array_remove(roles, $1)) WHERE (project_id = $2)",
|
2022-01-20 07:33:51 +00:00
|
|
|
expectedArgs: []interface{}{
|
|
|
|
"key",
|
|
|
|
"agg-id",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "reduceProjectGrantChanged",
|
|
|
|
args: args{
|
|
|
|
event: getEvent(testEvent(
|
|
|
|
repository.EventType(project.GrantChangedType),
|
|
|
|
project.AggregateType,
|
|
|
|
[]byte(`{"grantId": "grantID", "roleKeys": ["key"]}`),
|
|
|
|
), project.GrantChangedEventMapper),
|
|
|
|
},
|
|
|
|
reduce: (&UserGrantProjection{}).reduceProjectGrantChanged,
|
|
|
|
want: wantReduce{
|
|
|
|
aggregateType: project.AggregateType,
|
|
|
|
sequence: 15,
|
|
|
|
previousSequence: 10,
|
|
|
|
projection: UserGrantProjectionTable,
|
|
|
|
executer: &testExecuter{
|
|
|
|
executions: []execution{
|
|
|
|
{
|
2022-03-23 08:02:39 +00:00
|
|
|
expectedStmt: "UPDATE projections.user_grants SET (roles) = (SELECT ARRAY( SELECT UNNEST(roles) INTERSECT SELECT UNNEST ($1::STRING[]))) WHERE (grant_id = $2)",
|
2022-01-20 07:33:51 +00:00
|
|
|
expectedArgs: []interface{}{
|
|
|
|
pq.StringArray{"key"},
|
|
|
|
"grantID",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2022-01-13 10:02:39 +00:00
|
|
|
}
|
|
|
|
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)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|