zitadel/internal/query/projection/custom_text_test.go
Stefan Benz c2a5b785fb
feat: instance remove (#4345)
* feat(instance): add remove instance event with projections cleanup

* fix(instance): corrected used id to clean up projections

* fix merge

* fix: correct unit test projection names

* fix: current sequence of lists and query for ensuring keypair based projections

Co-authored-by: Livio Spring <livio.a@gmail.com>
Co-authored-by: Fabi <38692350+hifabienne@users.noreply.github.com>
2022-10-20 14:36:52 +02:00

275 lines
7.6 KiB
Go

package projection
import (
"testing"
"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"
"github.com/zitadel/zitadel/internal/repository/org"
)
func TestCustomTextProjection_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: "org.reduceSet",
args: args{
event: getEvent(testEvent(
repository.EventType(org.CustomTextSetEventType),
org.AggregateType,
[]byte(`{
"key": "Text",
"language": "en",
"template": "InitCode",
"text": "Test"
}`),
), org.CustomTextSetEventMapper),
},
reduce: (&customTextProjection{}).reduceSet,
want: wantReduce{
aggregateType: eventstore.AggregateType("org"),
sequence: 15,
previousSequence: 10,
executer: &testExecuter{
executions: []execution{
{
expectedStmt: "INSERT INTO projections.custom_texts (aggregate_id, instance_id, creation_date, change_date, sequence, is_default, template, language, key, text) VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) ON CONFLICT (instance_id, aggregate_id, template, key, language) DO UPDATE SET (creation_date, change_date, sequence, is_default, text) = (EXCLUDED.creation_date, EXCLUDED.change_date, EXCLUDED.sequence, EXCLUDED.is_default, EXCLUDED.text)",
expectedArgs: []interface{}{
"agg-id",
"instance-id",
anyArg{},
anyArg{},
uint64(15),
false,
"InitCode",
"en",
"Text",
"Test",
},
},
},
},
},
},
{
name: "org.reduceRemoved",
reduce: (&customTextProjection{}).reduceRemoved,
args: args{
event: getEvent(testEvent(
repository.EventType(org.CustomTextRemovedEventType),
org.AggregateType,
[]byte(`{
"key": "Text",
"language": "en",
"template": "InitCode"
}`),
), org.CustomTextRemovedEventMapper),
},
want: wantReduce{
aggregateType: eventstore.AggregateType("org"),
sequence: 15,
previousSequence: 10,
executer: &testExecuter{
executions: []execution{
{
expectedStmt: "DELETE FROM projections.custom_texts WHERE (aggregate_id = $1) AND (template = $2) AND (key = $3) AND (language = $4)",
expectedArgs: []interface{}{
"agg-id",
"InitCode",
"Text",
"en",
},
},
},
},
},
},
{
name: "org.reduceTemplateRemoved",
reduce: (&customTextProjection{}).reduceTemplateRemoved,
args: args{
event: getEvent(testEvent(
repository.EventType(org.CustomTextTemplateRemovedEventType),
org.AggregateType,
[]byte(`{
"key": "Text",
"language": "en",
"template": "InitCode"
}`),
), org.CustomTextTemplateRemovedEventMapper),
},
want: wantReduce{
aggregateType: eventstore.AggregateType("org"),
sequence: 15,
previousSequence: 10,
executer: &testExecuter{
executions: []execution{
{
expectedStmt: "DELETE FROM projections.custom_texts WHERE (aggregate_id = $1) AND (template = $2) AND (language = $3)",
expectedArgs: []interface{}{
"agg-id",
"InitCode",
"en",
},
},
},
},
},
},
{
name: "instance.reduceInstanceRemoved",
args: args{
event: getEvent(testEvent(
repository.EventType(instance.InstanceRemovedEventType),
instance.AggregateType,
[]byte(`{"name": "Name"}`),
), instance.InstanceRemovedEventMapper),
},
reduce: reduceInstanceRemovedHelper(CustomTextInstanceIDCol),
want: wantReduce{
aggregateType: eventstore.AggregateType("instance"),
sequence: 15,
previousSequence: 10,
executer: &testExecuter{
executions: []execution{
{
expectedStmt: "DELETE FROM projections.custom_texts WHERE (instance_id = $1)",
expectedArgs: []interface{}{
"agg-id",
},
},
},
},
},
},
{
name: "iam.reduceAdded",
reduce: (&customTextProjection{}).reduceSet,
args: args{
event: getEvent(testEvent(
repository.EventType(instance.CustomTextSetEventType),
instance.AggregateType,
[]byte(`{
"key": "Text",
"language": "en",
"template": "InitCode",
"text": "Test"
}`),
), instance.CustomTextSetEventMapper),
},
want: wantReduce{
aggregateType: eventstore.AggregateType("instance"),
sequence: 15,
previousSequence: 10,
executer: &testExecuter{
executions: []execution{
{
expectedStmt: "INSERT INTO projections.custom_texts (aggregate_id, instance_id, creation_date, change_date, sequence, is_default, template, language, key, text) VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) ON CONFLICT (instance_id, aggregate_id, template, key, language) DO UPDATE SET (creation_date, change_date, sequence, is_default, text) = (EXCLUDED.creation_date, EXCLUDED.change_date, EXCLUDED.sequence, EXCLUDED.is_default, EXCLUDED.text)",
expectedArgs: []interface{}{
"agg-id",
"instance-id",
anyArg{},
anyArg{},
uint64(15),
true,
"InitCode",
"en",
"Text",
"Test",
},
},
},
},
},
},
{
name: "iam.reduceRemoved",
reduce: (&customTextProjection{}).reduceRemoved,
args: args{
event: getEvent(testEvent(
repository.EventType(instance.CustomTextTemplateRemovedEventType),
instance.AggregateType,
[]byte(`{
"key": "Text",
"language": "en",
"template": "InitCode"
}`),
), instance.CustomTextRemovedEventMapper),
},
want: wantReduce{
aggregateType: eventstore.AggregateType("instance"),
sequence: 15,
previousSequence: 10,
executer: &testExecuter{
executions: []execution{
{
expectedStmt: "DELETE FROM projections.custom_texts WHERE (aggregate_id = $1) AND (template = $2) AND (key = $3) AND (language = $4)",
expectedArgs: []interface{}{
"agg-id",
"InitCode",
"Text",
"en",
},
},
},
},
},
},
{
name: "iam.reduceTemplateRemoved",
reduce: (&customTextProjection{}).reduceTemplateRemoved,
args: args{
event: getEvent(testEvent(
repository.EventType(instance.CustomTextTemplateRemovedEventType),
instance.AggregateType,
[]byte(`{
"key": "Text",
"language": "en",
"template": "InitCode"
}`),
), instance.CustomTextTemplateRemovedEventMapper),
},
want: wantReduce{
aggregateType: eventstore.AggregateType("instance"),
sequence: 15,
previousSequence: 10,
executer: &testExecuter{
executions: []execution{
{
expectedStmt: "DELETE FROM projections.custom_texts WHERE (aggregate_id = $1) AND (template = $2) AND (language = $3)",
expectedArgs: []interface{}{
"agg-id",
"InitCode",
"en",
},
},
},
},
},
},
}
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, CustomTextTable, tt.want)
})
}
}