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>
This commit is contained in:
Stefan Benz
2022-10-20 13:36:52 +01:00
committed by GitHub
parent 6e89b7d0a1
commit c2a5b785fb
90 changed files with 1549 additions and 427 deletions

View File

@@ -41,7 +41,6 @@ func TestMessageTextProjection_reduces(t *testing.T) {
aggregateType: eventstore.AggregateType("org"),
sequence: 15,
previousSequence: 10,
projection: MessageTextTable,
executer: &testExecuter{
executions: []execution{
{
@@ -81,7 +80,6 @@ func TestMessageTextProjection_reduces(t *testing.T) {
aggregateType: eventstore.AggregateType("org"),
sequence: 15,
previousSequence: 10,
projection: MessageTextTable,
executer: &testExecuter{
executions: []execution{
{
@@ -121,7 +119,6 @@ func TestMessageTextProjection_reduces(t *testing.T) {
aggregateType: eventstore.AggregateType("org"),
sequence: 15,
previousSequence: 10,
projection: MessageTextTable,
executer: &testExecuter{
executions: []execution{
{
@@ -161,7 +158,6 @@ func TestMessageTextProjection_reduces(t *testing.T) {
aggregateType: eventstore.AggregateType("org"),
sequence: 15,
previousSequence: 10,
projection: MessageTextTable,
executer: &testExecuter{
executions: []execution{
{
@@ -201,7 +197,6 @@ func TestMessageTextProjection_reduces(t *testing.T) {
aggregateType: eventstore.AggregateType("org"),
sequence: 15,
previousSequence: 10,
projection: MessageTextTable,
executer: &testExecuter{
executions: []execution{
{
@@ -241,7 +236,6 @@ func TestMessageTextProjection_reduces(t *testing.T) {
aggregateType: eventstore.AggregateType("org"),
sequence: 15,
previousSequence: 10,
projection: MessageTextTable,
executer: &testExecuter{
executions: []execution{
{
@@ -281,7 +275,6 @@ func TestMessageTextProjection_reduces(t *testing.T) {
aggregateType: eventstore.AggregateType("org"),
sequence: 15,
previousSequence: 10,
projection: MessageTextTable,
executer: &testExecuter{
executions: []execution{
{
@@ -320,7 +313,6 @@ func TestMessageTextProjection_reduces(t *testing.T) {
aggregateType: eventstore.AggregateType("org"),
sequence: 15,
previousSequence: 10,
projection: MessageTextTable,
executer: &testExecuter{
executions: []execution{
{
@@ -338,6 +330,32 @@ func TestMessageTextProjection_reduces(t *testing.T) {
},
},
},
{
name: "instance.reduceInstanceRemoved",
args: args{
event: getEvent(testEvent(
repository.EventType(instance.InstanceRemovedEventType),
instance.AggregateType,
[]byte(`{"name": "Name"}`),
), instance.InstanceRemovedEventMapper),
},
reduce: reduceInstanceRemovedHelper(MessageTextInstanceIDCol),
want: wantReduce{
aggregateType: eventstore.AggregateType("instance"),
sequence: 15,
previousSequence: 10,
executer: &testExecuter{
executions: []execution{
{
expectedStmt: "DELETE FROM projections.message_texts WHERE (instance_id = $1)",
expectedArgs: []interface{}{
"agg-id",
},
},
},
},
},
},
{
name: "org.reduceRemoved.PreHeader",
args: args{
@@ -356,7 +374,6 @@ func TestMessageTextProjection_reduces(t *testing.T) {
aggregateType: eventstore.AggregateType("org"),
sequence: 15,
previousSequence: 10,
projection: MessageTextTable,
executer: &testExecuter{
executions: []execution{
{
@@ -392,7 +409,6 @@ func TestMessageTextProjection_reduces(t *testing.T) {
aggregateType: eventstore.AggregateType("org"),
sequence: 15,
previousSequence: 10,
projection: MessageTextTable,
executer: &testExecuter{
executions: []execution{
{
@@ -428,7 +444,6 @@ func TestMessageTextProjection_reduces(t *testing.T) {
aggregateType: eventstore.AggregateType("org"),
sequence: 15,
previousSequence: 10,
projection: MessageTextTable,
executer: &testExecuter{
executions: []execution{
{
@@ -464,7 +479,6 @@ func TestMessageTextProjection_reduces(t *testing.T) {
aggregateType: eventstore.AggregateType("org"),
sequence: 15,
previousSequence: 10,
projection: MessageTextTable,
executer: &testExecuter{
executions: []execution{
{
@@ -500,7 +514,6 @@ func TestMessageTextProjection_reduces(t *testing.T) {
aggregateType: eventstore.AggregateType("org"),
sequence: 15,
previousSequence: 10,
projection: MessageTextTable,
executer: &testExecuter{
executions: []execution{
{
@@ -536,7 +549,6 @@ func TestMessageTextProjection_reduces(t *testing.T) {
aggregateType: eventstore.AggregateType("org"),
sequence: 15,
previousSequence: 10,
projection: MessageTextTable,
executer: &testExecuter{
executions: []execution{
{
@@ -572,7 +584,6 @@ func TestMessageTextProjection_reduces(t *testing.T) {
aggregateType: eventstore.AggregateType("org"),
sequence: 15,
previousSequence: 10,
projection: MessageTextTable,
executer: &testExecuter{
executions: []execution{
{
@@ -606,7 +617,6 @@ func TestMessageTextProjection_reduces(t *testing.T) {
aggregateType: eventstore.AggregateType("instance"),
sequence: 15,
previousSequence: 10,
projection: MessageTextTable,
executer: &testExecuter{
executions: []execution{
{
@@ -645,7 +655,6 @@ func TestMessageTextProjection_reduces(t *testing.T) {
aggregateType: eventstore.AggregateType("instance"),
sequence: 15,
previousSequence: 10,
projection: MessageTextTable,
executer: &testExecuter{
executions: []execution{
{
@@ -674,7 +683,7 @@ func TestMessageTextProjection_reduces(t *testing.T) {
event = tt.args.event(t)
got, err = tt.reduce(event)
assertReduce(t, got, err, tt.want)
assertReduce(t, got, err, MessageTextTable, tt.want)
})
}
}