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/instance" ) func TestInstanceProjection_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: "reduceInstanceAdded", args: args{ event: getEvent(testEvent( repository.EventType(instance.InstanceAddedEventType), instance.AggregateType, []byte(`{"name": "Name"}`), ), instance.InstanceAddedEventMapper), }, reduce: (&InstanceProjection{}).reduceInstanceAdded, want: wantReduce{ projection: InstanceProjectionTable, aggregateType: eventstore.AggregateType("instance"), sequence: 15, previousSequence: 10, executer: &testExecuter{ executions: []execution{ { expectedStmt: "INSERT INTO projections.instances (id, creation_date, change_date, sequence, name) VALUES ($1, $2, $3, $4, $5)", expectedArgs: []interface{}{ "instance-id", anyArg{}, anyArg{}, uint64(15), "Name", }, }, }, }, }, }, { name: "reduceGlobalOrgSet", args: args{ event: getEvent(testEvent( repository.EventType(instance.GlobalOrgSetEventType), instance.AggregateType, []byte(`{"globalOrgId": "orgid"}`), ), instance.GlobalOrgSetMapper), }, reduce: (&InstanceProjection{}).reduceGlobalOrgSet, want: wantReduce{ projection: InstanceProjectionTable, aggregateType: eventstore.AggregateType("instance"), sequence: 15, previousSequence: 10, executer: &testExecuter{ executions: []execution{ { expectedStmt: "UPDATE projections.instances SET (change_date, sequence, global_org_id) = ($1, $2, $3) WHERE (id = $4)", expectedArgs: []interface{}{ anyArg{}, uint64(15), "orgid", "instance-id", }, }, }, }, }, }, { name: "reduceProjectIDSet", args: args{ event: getEvent(testEvent( repository.EventType(instance.ProjectSetEventType), instance.AggregateType, []byte(`{"iamProjectId": "project-id"}`), ), instance.ProjectSetMapper), }, reduce: (&InstanceProjection{}).reduceIAMProjectSet, want: wantReduce{ projection: InstanceProjectionTable, aggregateType: eventstore.AggregateType("instance"), sequence: 15, previousSequence: 10, executer: &testExecuter{ executions: []execution{ { expectedStmt: "UPDATE projections.instances SET (change_date, sequence, iam_project_id) = ($1, $2, $3) WHERE (id = $4)", expectedArgs: []interface{}{ anyArg{}, uint64(15), "project-id", "instance-id", }, }, }, }, }, }, { name: "reduceDefaultLanguageSet", args: args{ event: getEvent(testEvent( repository.EventType(instance.DefaultLanguageSetEventType), instance.AggregateType, []byte(`{"language": "en"}`), ), instance.DefaultLanguageSetMapper), }, reduce: (&InstanceProjection{}).reduceDefaultLanguageSet, want: wantReduce{ projection: InstanceProjectionTable, aggregateType: eventstore.AggregateType("instance"), sequence: 15, previousSequence: 10, executer: &testExecuter{ executions: []execution{ { expectedStmt: "UPDATE projections.instances SET (change_date, sequence, default_language) = ($1, $2, $3) WHERE (id = $4)", expectedArgs: []interface{}{ anyArg{}, uint64(15), "en", "instance-id", }, }, }, }, }, }, { name: "reduceSetupStarted", args: args{ event: getEvent(testEvent( repository.EventType(instance.SetupStartedEventType), instance.AggregateType, []byte(`{"Step": 1}`), ), instance.SetupStepMapper), }, reduce: (&InstanceProjection{}).reduceSetupEvent, want: wantReduce{ projection: InstanceProjectionTable, aggregateType: eventstore.AggregateType("instance"), sequence: 15, previousSequence: 10, executer: &testExecuter{ executions: []execution{ { expectedStmt: "UPSERT INTO projections.instances (id, change_date, sequence, setup_started) VALUES ($1, $2, $3, $4)", expectedArgs: []interface{}{ "instance-id", anyArg{}, uint64(15), domain.Step1, }, }, }, }, }, }, { name: "reduceSetupDone", args: args{ event: getEvent(testEvent( repository.EventType(instance.SetupDoneEventType), instance.AggregateType, []byte(`{"Step": 1}`), ), instance.SetupStepMapper), }, reduce: (&InstanceProjection{}).reduceSetupEvent, want: wantReduce{ projection: InstanceProjectionTable, aggregateType: eventstore.AggregateType("instance"), sequence: 15, previousSequence: 10, executer: &testExecuter{ executions: []execution{ { expectedStmt: "UPSERT INTO projections.instances (id, change_date, sequence, setup_done) VALUES ($1, $2, $3, $4)", expectedArgs: []interface{}{ "instance-id", anyArg{}, uint64(15), domain.Step1, }, }, }, }, }, }, } 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) }) } }