mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 19:14:23 +00:00
78ae64471a
* use instance id on update in projections * create index on domain in instance_domain projection * add missing instanceID filter to app queries
259 lines
7.8 KiB
Go
259 lines
7.8 KiB
Go
package projection
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"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/instance"
|
|
)
|
|
|
|
func TestDebugNotificationProviderProjection_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: "instance reduceNotificationProviderFileAdded",
|
|
reduce: (&debugNotificationProviderProjection{}).reduceDebugNotificationProviderAdded,
|
|
args: args{
|
|
event: getEvent(testEvent(
|
|
repository.EventType(instance.DebugNotificationProviderFileAddedEventType),
|
|
instance.AggregateType,
|
|
[]byte(`{
|
|
"compact": true
|
|
}`),
|
|
), instance.DebugNotificationProviderFileAddedEventMapper),
|
|
},
|
|
want: wantReduce{
|
|
aggregateType: eventstore.AggregateType("instance"),
|
|
sequence: 15,
|
|
previousSequence: 10,
|
|
executer: &testExecuter{
|
|
executions: []execution{
|
|
{
|
|
expectedStmt: "INSERT INTO projections.notification_providers (aggregate_id, creation_date, change_date, sequence, resource_owner, instance_id, state, provider_type, compact) VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9)",
|
|
expectedArgs: []interface{}{
|
|
"agg-id",
|
|
anyArg{},
|
|
anyArg{},
|
|
uint64(15),
|
|
"ro-id",
|
|
"instance-id",
|
|
domain.NotificationProviderStateActive,
|
|
domain.NotificationProviderTypeFile,
|
|
true,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "instance reduceNotificationProviderFileChanged",
|
|
reduce: (&debugNotificationProviderProjection{}).reduceDebugNotificationProviderChanged,
|
|
args: args{
|
|
event: getEvent(testEvent(
|
|
repository.EventType(instance.DebugNotificationProviderFileChangedEventType),
|
|
instance.AggregateType,
|
|
[]byte(`{
|
|
"compact": true
|
|
}`),
|
|
), instance.DebugNotificationProviderFileChangedEventMapper),
|
|
},
|
|
want: wantReduce{
|
|
aggregateType: eventstore.AggregateType("instance"),
|
|
sequence: 15,
|
|
previousSequence: 10,
|
|
executer: &testExecuter{
|
|
executions: []execution{
|
|
{
|
|
expectedStmt: "UPDATE projections.notification_providers SET (change_date, sequence, compact) = ($1, $2, $3) WHERE (aggregate_id = $4) AND (provider_type = $5) AND (instance_id = $6)",
|
|
expectedArgs: []interface{}{
|
|
anyArg{},
|
|
uint64(15),
|
|
true,
|
|
"agg-id",
|
|
domain.NotificationProviderTypeFile,
|
|
"instance-id",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "instance reduceNotificationProviderFileRemoved",
|
|
reduce: (&debugNotificationProviderProjection{}).reduceDebugNotificationProviderRemoved,
|
|
args: args{
|
|
event: getEvent(testEvent(
|
|
repository.EventType(instance.DebugNotificationProviderFileRemovedEventType),
|
|
instance.AggregateType,
|
|
nil,
|
|
), instance.DebugNotificationProviderFileRemovedEventMapper),
|
|
},
|
|
want: wantReduce{
|
|
aggregateType: eventstore.AggregateType("instance"),
|
|
sequence: 15,
|
|
previousSequence: 10,
|
|
executer: &testExecuter{
|
|
executions: []execution{
|
|
{
|
|
expectedStmt: "DELETE FROM projections.notification_providers WHERE (aggregate_id = $1) AND (provider_type = $2) AND (instance_id = $3)",
|
|
expectedArgs: []interface{}{
|
|
"agg-id",
|
|
domain.NotificationProviderTypeFile,
|
|
"instance-id",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "instance reduceNotificationProviderLogAdded",
|
|
reduce: (&debugNotificationProviderProjection{}).reduceDebugNotificationProviderAdded,
|
|
args: args{
|
|
event: getEvent(testEvent(
|
|
repository.EventType(instance.DebugNotificationProviderLogAddedEventType),
|
|
instance.AggregateType,
|
|
[]byte(`{
|
|
"compact": true
|
|
}`),
|
|
), instance.DebugNotificationProviderLogAddedEventMapper),
|
|
},
|
|
want: wantReduce{
|
|
aggregateType: eventstore.AggregateType("instance"),
|
|
sequence: 15,
|
|
previousSequence: 10,
|
|
executer: &testExecuter{
|
|
executions: []execution{
|
|
{
|
|
expectedStmt: "INSERT INTO projections.notification_providers (aggregate_id, creation_date, change_date, sequence, resource_owner, instance_id, state, provider_type, compact) VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9)",
|
|
expectedArgs: []interface{}{
|
|
"agg-id",
|
|
anyArg{},
|
|
anyArg{},
|
|
uint64(15),
|
|
"ro-id",
|
|
"instance-id",
|
|
domain.NotificationProviderStateActive,
|
|
domain.NotificationProviderTypeLog,
|
|
true,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "instance reduceNotificationProviderLogChanged",
|
|
reduce: (&debugNotificationProviderProjection{}).reduceDebugNotificationProviderChanged,
|
|
args: args{
|
|
event: getEvent(testEvent(
|
|
repository.EventType(instance.DebugNotificationProviderLogChangedEventType),
|
|
instance.AggregateType,
|
|
[]byte(`{
|
|
"compact": true
|
|
}`),
|
|
), instance.DebugNotificationProviderLogChangedEventMapper),
|
|
},
|
|
want: wantReduce{
|
|
aggregateType: eventstore.AggregateType("instance"),
|
|
sequence: 15,
|
|
previousSequence: 10,
|
|
executer: &testExecuter{
|
|
executions: []execution{
|
|
{
|
|
expectedStmt: "UPDATE projections.notification_providers SET (change_date, sequence, compact) = ($1, $2, $3) WHERE (aggregate_id = $4) AND (provider_type = $5) AND (instance_id = $6)",
|
|
expectedArgs: []interface{}{
|
|
anyArg{},
|
|
uint64(15),
|
|
true,
|
|
"agg-id",
|
|
domain.NotificationProviderTypeLog,
|
|
"instance-id",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "instance reduceNotificationProviderLogRemoved",
|
|
reduce: (&debugNotificationProviderProjection{}).reduceDebugNotificationProviderRemoved,
|
|
args: args{
|
|
event: getEvent(testEvent(
|
|
repository.EventType(instance.DebugNotificationProviderLogRemovedEventType),
|
|
instance.AggregateType,
|
|
nil,
|
|
), instance.DebugNotificationProviderLogRemovedEventMapper),
|
|
},
|
|
want: wantReduce{
|
|
aggregateType: eventstore.AggregateType("instance"),
|
|
sequence: 15,
|
|
previousSequence: 10,
|
|
executer: &testExecuter{
|
|
executions: []execution{
|
|
{
|
|
expectedStmt: "DELETE FROM projections.notification_providers WHERE (aggregate_id = $1) AND (provider_type = $2) AND (instance_id = $3)",
|
|
expectedArgs: []interface{}{
|
|
"agg-id",
|
|
domain.NotificationProviderTypeLog,
|
|
"instance-id",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "instance reduceInstanceRemoved",
|
|
args: args{
|
|
event: getEvent(testEvent(
|
|
repository.EventType(instance.InstanceRemovedEventType),
|
|
instance.AggregateType,
|
|
nil,
|
|
), instance.InstanceRemovedEventMapper),
|
|
},
|
|
reduce: reduceInstanceRemovedHelper(DebugNotificationProviderInstanceIDCol),
|
|
want: wantReduce{
|
|
aggregateType: eventstore.AggregateType("instance"),
|
|
sequence: 15,
|
|
previousSequence: 10,
|
|
executer: &testExecuter{
|
|
executions: []execution{
|
|
{
|
|
expectedStmt: "DELETE FROM projections.notification_providers WHERE (instance_id = $1)",
|
|
expectedArgs: []interface{}{
|
|
"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, DebugNotificationProviderTable, tt.want)
|
|
})
|
|
}
|
|
}
|