mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 19:44:21 +00:00
5bdf1a4547
# Which Problems Are Solved Send SMS messages as a HTTP call to a relay, for own logic on handling different SMS providers. # How the Problems Are Solved Add HTTP as SMS provider type and handling of webhook messages in the notification handlers. # Additional Changes Clean up old Twilio events, which were supposed to handle the general SMS providers with deactivate, activate and remove. # Additional Context Partially closes #8270 --------- Co-authored-by: Livio Spring <livio.a@gmail.com>
660 lines
18 KiB
Go
660 lines
18 KiB
Go
package projection
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/zitadel/zitadel/internal/crypto"
|
|
"github.com/zitadel/zitadel/internal/domain"
|
|
"github.com/zitadel/zitadel/internal/eventstore"
|
|
"github.com/zitadel/zitadel/internal/eventstore/handler/v2"
|
|
"github.com/zitadel/zitadel/internal/repository/instance"
|
|
"github.com/zitadel/zitadel/internal/zerrors"
|
|
)
|
|
|
|
func TestSMSProjection_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 reduceSMSTwilioAdded",
|
|
args: args{
|
|
event: getEvent(
|
|
testEvent(
|
|
instance.SMSConfigTwilioAddedEventType,
|
|
instance.AggregateType,
|
|
[]byte(`{
|
|
"id": "id",
|
|
"sid": "sid",
|
|
"token": {
|
|
"cryptoType": 0,
|
|
"algorithm": "RSA-265",
|
|
"keyId": "key-id",
|
|
"crypted": "Y3J5cHRlZA=="
|
|
},
|
|
"senderNumber": "sender-number",
|
|
"description": "description"
|
|
}`),
|
|
), eventstore.GenericEventMapper[instance.SMSConfigTwilioAddedEvent]),
|
|
},
|
|
reduce: (&smsConfigProjection{}).reduceSMSConfigTwilioAdded,
|
|
want: wantReduce{
|
|
aggregateType: eventstore.AggregateType("instance"),
|
|
sequence: 15,
|
|
executer: &testExecuter{
|
|
executions: []execution{
|
|
{
|
|
expectedStmt: "INSERT INTO projections.sms_configs3 (id, aggregate_id, creation_date, change_date, resource_owner, instance_id, state, sequence, description) VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9)",
|
|
expectedArgs: []interface{}{
|
|
"id",
|
|
"agg-id",
|
|
anyArg{},
|
|
anyArg{},
|
|
"ro-id",
|
|
"instance-id",
|
|
domain.SMSConfigStateInactive,
|
|
uint64(15),
|
|
"description",
|
|
},
|
|
},
|
|
{
|
|
expectedStmt: "INSERT INTO projections.sms_configs3_twilio (sms_id, instance_id, sid, token, sender_number) VALUES ($1, $2, $3, $4, $5)",
|
|
expectedArgs: []interface{}{
|
|
"id",
|
|
"instance-id",
|
|
"sid",
|
|
&crypto.CryptoValue{
|
|
CryptoType: crypto.TypeEncryption,
|
|
Algorithm: "RSA-265",
|
|
KeyID: "key-id",
|
|
Crypted: []byte("crypted"),
|
|
},
|
|
"sender-number",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "instance reduceSMSConfigTwilioChanged",
|
|
args: args{
|
|
event: getEvent(
|
|
testEvent(
|
|
instance.SMSConfigTwilioChangedEventType,
|
|
instance.AggregateType,
|
|
[]byte(`{
|
|
"id": "id",
|
|
"sid": "sid",
|
|
"senderNumber": "sender-number",
|
|
"description": "description"
|
|
}`),
|
|
), eventstore.GenericEventMapper[instance.SMSConfigTwilioChangedEvent]),
|
|
},
|
|
reduce: (&smsConfigProjection{}).reduceSMSConfigTwilioChanged,
|
|
want: wantReduce{
|
|
aggregateType: eventstore.AggregateType("instance"),
|
|
sequence: 15,
|
|
executer: &testExecuter{
|
|
executions: []execution{
|
|
{
|
|
expectedStmt: "UPDATE projections.sms_configs3 SET (change_date, sequence, description) = ($1, $2, $3) WHERE (id = $4) AND (instance_id = $5)",
|
|
expectedArgs: []interface{}{
|
|
anyArg{},
|
|
uint64(15),
|
|
"description",
|
|
"id",
|
|
"instance-id",
|
|
},
|
|
},
|
|
{
|
|
expectedStmt: "UPDATE projections.sms_configs3_twilio SET (sid, sender_number) = ($1, $2) WHERE (sms_id = $3) AND (instance_id = $4)",
|
|
expectedArgs: []interface{}{
|
|
"sid",
|
|
"sender-number",
|
|
"id",
|
|
"instance-id",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "instance reduceSMSConfigTwilioChanged, only description",
|
|
args: args{
|
|
event: getEvent(
|
|
testEvent(
|
|
instance.SMSConfigTwilioChangedEventType,
|
|
instance.AggregateType,
|
|
[]byte(`{
|
|
"id": "id",
|
|
"description": "description"
|
|
}`),
|
|
), eventstore.GenericEventMapper[instance.SMSConfigTwilioChangedEvent]),
|
|
},
|
|
reduce: (&smsConfigProjection{}).reduceSMSConfigTwilioChanged,
|
|
want: wantReduce{
|
|
aggregateType: eventstore.AggregateType("instance"),
|
|
sequence: 15,
|
|
executer: &testExecuter{
|
|
executions: []execution{
|
|
{
|
|
expectedStmt: "UPDATE projections.sms_configs3 SET (change_date, sequence, description) = ($1, $2, $3) WHERE (id = $4) AND (instance_id = $5)",
|
|
expectedArgs: []interface{}{
|
|
anyArg{},
|
|
uint64(15),
|
|
"description",
|
|
"id",
|
|
"instance-id",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "instance reduceSMSConfigTwilioChanged, only sid",
|
|
args: args{
|
|
event: getEvent(
|
|
testEvent(
|
|
instance.SMSConfigTwilioChangedEventType,
|
|
instance.AggregateType,
|
|
[]byte(`{
|
|
"id": "id",
|
|
"sid": "sid"
|
|
}`),
|
|
), eventstore.GenericEventMapper[instance.SMSConfigTwilioChangedEvent]),
|
|
},
|
|
reduce: (&smsConfigProjection{}).reduceSMSConfigTwilioChanged,
|
|
want: wantReduce{
|
|
aggregateType: eventstore.AggregateType("instance"),
|
|
sequence: 15,
|
|
executer: &testExecuter{
|
|
executions: []execution{
|
|
{
|
|
expectedStmt: "UPDATE projections.sms_configs3 SET (change_date, sequence) = ($1, $2) WHERE (id = $3) AND (instance_id = $4)",
|
|
expectedArgs: []interface{}{
|
|
anyArg{},
|
|
uint64(15),
|
|
"id",
|
|
"instance-id",
|
|
},
|
|
},
|
|
{
|
|
expectedStmt: "UPDATE projections.sms_configs3_twilio SET sid = $1 WHERE (sms_id = $2) AND (instance_id = $3)",
|
|
expectedArgs: []interface{}{
|
|
"sid",
|
|
"id",
|
|
"instance-id",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "instance reduceSMSConfigTwilioTokenChanged",
|
|
args: args{
|
|
event: getEvent(
|
|
testEvent(
|
|
instance.SMSConfigTwilioTokenChangedEventType,
|
|
instance.AggregateType,
|
|
[]byte(`{
|
|
"id": "id",
|
|
"token": {
|
|
"cryptoType": 0,
|
|
"algorithm": "RSA-265",
|
|
"keyId": "key-id",
|
|
"crypted": "Y3J5cHRlZA=="
|
|
}
|
|
}`),
|
|
), eventstore.GenericEventMapper[instance.SMSConfigTwilioTokenChangedEvent]),
|
|
},
|
|
reduce: (&smsConfigProjection{}).reduceSMSConfigTwilioTokenChanged,
|
|
want: wantReduce{
|
|
aggregateType: eventstore.AggregateType("instance"),
|
|
sequence: 15,
|
|
executer: &testExecuter{
|
|
executions: []execution{
|
|
{
|
|
expectedStmt: "UPDATE projections.sms_configs3_twilio SET token = $1 WHERE (sms_id = $2) AND (instance_id = $3)",
|
|
expectedArgs: []interface{}{
|
|
&crypto.CryptoValue{
|
|
CryptoType: crypto.TypeEncryption,
|
|
Algorithm: "RSA-265",
|
|
KeyID: "key-id",
|
|
Crypted: []byte("crypted"),
|
|
},
|
|
"id",
|
|
"instance-id",
|
|
},
|
|
},
|
|
{
|
|
expectedStmt: "UPDATE projections.sms_configs3 SET (change_date, sequence) = ($1, $2) WHERE (id = $3) AND (instance_id = $4)",
|
|
expectedArgs: []interface{}{
|
|
anyArg{},
|
|
uint64(15),
|
|
"id",
|
|
"instance-id",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "instance reduceSMSHTTPAdded",
|
|
args: args{
|
|
event: getEvent(
|
|
testEvent(
|
|
instance.SMSConfigHTTPAddedEventType,
|
|
instance.AggregateType,
|
|
[]byte(`{
|
|
"id": "id",
|
|
"description": "description",
|
|
"endpoint": "endpoint"
|
|
}`),
|
|
), eventstore.GenericEventMapper[instance.SMSConfigHTTPAddedEvent]),
|
|
},
|
|
reduce: (&smsConfigProjection{}).reduceSMSConfigHTTPAdded,
|
|
want: wantReduce{
|
|
aggregateType: eventstore.AggregateType("instance"),
|
|
sequence: 15,
|
|
executer: &testExecuter{
|
|
executions: []execution{
|
|
{
|
|
expectedStmt: "INSERT INTO projections.sms_configs3 (id, aggregate_id, creation_date, change_date, resource_owner, instance_id, state, sequence, description) VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9)",
|
|
expectedArgs: []interface{}{
|
|
"id",
|
|
"agg-id",
|
|
anyArg{},
|
|
anyArg{},
|
|
"ro-id",
|
|
"instance-id",
|
|
domain.SMSConfigStateInactive,
|
|
uint64(15),
|
|
"description",
|
|
},
|
|
},
|
|
{
|
|
expectedStmt: "INSERT INTO projections.sms_configs3_http (sms_id, instance_id, endpoint) VALUES ($1, $2, $3)",
|
|
expectedArgs: []interface{}{
|
|
"id",
|
|
"instance-id",
|
|
"endpoint",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "instance reduceSMSConfigHTTPChanged",
|
|
args: args{
|
|
event: getEvent(
|
|
testEvent(
|
|
instance.SMSConfigHTTPChangedEventType,
|
|
instance.AggregateType,
|
|
[]byte(`{
|
|
"id": "id",
|
|
"endpoint": "endpoint",
|
|
"description": "description"
|
|
}`),
|
|
), eventstore.GenericEventMapper[instance.SMSConfigHTTPChangedEvent]),
|
|
},
|
|
reduce: (&smsConfigProjection{}).reduceSMSConfigHTTPChanged,
|
|
want: wantReduce{
|
|
aggregateType: eventstore.AggregateType("instance"),
|
|
sequence: 15,
|
|
executer: &testExecuter{
|
|
executions: []execution{
|
|
{
|
|
expectedStmt: "UPDATE projections.sms_configs3 SET (change_date, sequence, description) = ($1, $2, $3) WHERE (id = $4) AND (instance_id = $5)",
|
|
expectedArgs: []interface{}{
|
|
anyArg{},
|
|
uint64(15),
|
|
"description",
|
|
"id",
|
|
"instance-id",
|
|
},
|
|
},
|
|
{
|
|
expectedStmt: "UPDATE projections.sms_configs3_http SET endpoint = $1 WHERE (sms_id = $2) AND (instance_id = $3)",
|
|
expectedArgs: []interface{}{
|
|
"endpoint",
|
|
"id",
|
|
"instance-id",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "instance reduceSMSConfigHTTPChanged, only description",
|
|
args: args{
|
|
event: getEvent(
|
|
testEvent(
|
|
instance.SMSConfigHTTPChangedEventType,
|
|
instance.AggregateType,
|
|
[]byte(`{
|
|
"id": "id",
|
|
"description": "description"
|
|
}`),
|
|
), eventstore.GenericEventMapper[instance.SMSConfigHTTPChangedEvent]),
|
|
},
|
|
reduce: (&smsConfigProjection{}).reduceSMSConfigHTTPChanged,
|
|
want: wantReduce{
|
|
aggregateType: eventstore.AggregateType("instance"),
|
|
sequence: 15,
|
|
executer: &testExecuter{
|
|
executions: []execution{
|
|
{
|
|
expectedStmt: "UPDATE projections.sms_configs3 SET (change_date, sequence, description) = ($1, $2, $3) WHERE (id = $4) AND (instance_id = $5)",
|
|
expectedArgs: []interface{}{
|
|
anyArg{},
|
|
uint64(15),
|
|
"description",
|
|
"id",
|
|
"instance-id",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}, {
|
|
name: "instance reduceSMSConfigHTTPChanged, only endpoint",
|
|
args: args{
|
|
event: getEvent(
|
|
testEvent(
|
|
instance.SMSConfigHTTPChangedEventType,
|
|
instance.AggregateType,
|
|
[]byte(`{
|
|
"id": "id",
|
|
"endpoint": "endpoint"
|
|
}`),
|
|
), eventstore.GenericEventMapper[instance.SMSConfigHTTPChangedEvent]),
|
|
},
|
|
reduce: (&smsConfigProjection{}).reduceSMSConfigHTTPChanged,
|
|
want: wantReduce{
|
|
aggregateType: eventstore.AggregateType("instance"),
|
|
sequence: 15,
|
|
executer: &testExecuter{
|
|
executions: []execution{
|
|
{
|
|
expectedStmt: "UPDATE projections.sms_configs3 SET (change_date, sequence) = ($1, $2) WHERE (id = $3) AND (instance_id = $4)",
|
|
expectedArgs: []interface{}{
|
|
anyArg{},
|
|
uint64(15),
|
|
"id",
|
|
"instance-id",
|
|
},
|
|
},
|
|
{
|
|
expectedStmt: "UPDATE projections.sms_configs3_http SET endpoint = $1 WHERE (sms_id = $2) AND (instance_id = $3)",
|
|
expectedArgs: []interface{}{
|
|
"endpoint",
|
|
"id",
|
|
"instance-id",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "instance reduceSMSConfigTwilioActivated",
|
|
args: args{
|
|
event: getEvent(
|
|
testEvent(
|
|
instance.SMSConfigTwilioActivatedEventType,
|
|
instance.AggregateType,
|
|
[]byte(`{
|
|
"id": "id"
|
|
}`),
|
|
), eventstore.GenericEventMapper[instance.SMSConfigTwilioActivatedEvent]),
|
|
},
|
|
reduce: (&smsConfigProjection{}).reduceSMSConfigTwilioActivated,
|
|
want: wantReduce{
|
|
aggregateType: eventstore.AggregateType("instance"),
|
|
sequence: 15,
|
|
executer: &testExecuter{
|
|
executions: []execution{
|
|
{
|
|
expectedStmt: "UPDATE projections.sms_configs3 SET (state, change_date, sequence) = ($1, $2, $3) WHERE (NOT (id = $4)) AND (state = $5) AND (instance_id = $6)",
|
|
expectedArgs: []interface{}{
|
|
domain.SMSConfigStateInactive,
|
|
anyArg{},
|
|
uint64(15),
|
|
"id",
|
|
domain.SMSConfigStateActive,
|
|
"instance-id",
|
|
},
|
|
},
|
|
{
|
|
expectedStmt: "UPDATE projections.sms_configs3 SET (state, change_date, sequence) = ($1, $2, $3) WHERE (id = $4) AND (instance_id = $5)",
|
|
expectedArgs: []interface{}{
|
|
domain.SMSConfigStateActive,
|
|
anyArg{},
|
|
uint64(15),
|
|
"id",
|
|
"instance-id",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "instance reduceSMSConfigTwilioDeactivated",
|
|
args: args{
|
|
event: getEvent(
|
|
testEvent(
|
|
instance.SMSConfigTwilioDeactivatedEventType,
|
|
instance.AggregateType,
|
|
[]byte(`{
|
|
"id": "id"
|
|
}`),
|
|
), eventstore.GenericEventMapper[instance.SMSConfigTwilioDeactivatedEvent]),
|
|
},
|
|
reduce: (&smsConfigProjection{}).reduceSMSConfigTwilioDeactivated,
|
|
want: wantReduce{
|
|
aggregateType: eventstore.AggregateType("instance"),
|
|
sequence: 15,
|
|
executer: &testExecuter{
|
|
executions: []execution{
|
|
{
|
|
expectedStmt: "UPDATE projections.sms_configs3 SET (state, change_date, sequence) = ($1, $2, $3) WHERE (id = $4) AND (instance_id = $5)",
|
|
expectedArgs: []interface{}{
|
|
domain.SMSConfigStateInactive,
|
|
anyArg{},
|
|
uint64(15),
|
|
"id",
|
|
"instance-id",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "instance reduceSMSConfigTwilioRemoved",
|
|
args: args{
|
|
event: getEvent(
|
|
testEvent(
|
|
instance.SMSConfigTwilioRemovedEventType,
|
|
instance.AggregateType,
|
|
[]byte(`{
|
|
"id": "id"
|
|
}`),
|
|
), eventstore.GenericEventMapper[instance.SMSConfigTwilioRemovedEvent]),
|
|
},
|
|
reduce: (&smsConfigProjection{}).reduceSMSConfigTwilioRemoved,
|
|
want: wantReduce{
|
|
aggregateType: eventstore.AggregateType("instance"),
|
|
sequence: 15,
|
|
executer: &testExecuter{
|
|
executions: []execution{
|
|
{
|
|
expectedStmt: "DELETE FROM projections.sms_configs3 WHERE (id = $1) AND (instance_id = $2)",
|
|
expectedArgs: []interface{}{
|
|
"id",
|
|
"instance-id",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "instance reduceSMSConfigActivated",
|
|
args: args{
|
|
event: getEvent(
|
|
testEvent(
|
|
instance.SMSConfigActivatedEventType,
|
|
instance.AggregateType,
|
|
[]byte(`{
|
|
"id": "id"
|
|
}`),
|
|
), eventstore.GenericEventMapper[instance.SMSConfigActivatedEvent]),
|
|
},
|
|
reduce: (&smsConfigProjection{}).reduceSMSConfigActivated,
|
|
want: wantReduce{
|
|
aggregateType: eventstore.AggregateType("instance"),
|
|
sequence: 15,
|
|
executer: &testExecuter{
|
|
executions: []execution{
|
|
{
|
|
expectedStmt: "UPDATE projections.sms_configs3 SET (state, change_date, sequence) = ($1, $2, $3) WHERE (NOT (id = $4)) AND (state = $5) AND (instance_id = $6)",
|
|
expectedArgs: []interface{}{
|
|
domain.SMSConfigStateInactive,
|
|
anyArg{},
|
|
uint64(15),
|
|
"id",
|
|
domain.SMSConfigStateActive,
|
|
"instance-id",
|
|
},
|
|
},
|
|
{
|
|
expectedStmt: "UPDATE projections.sms_configs3 SET (state, change_date, sequence) = ($1, $2, $3) WHERE (id = $4) AND (instance_id = $5)",
|
|
expectedArgs: []interface{}{
|
|
domain.SMSConfigStateActive,
|
|
anyArg{},
|
|
uint64(15),
|
|
"id",
|
|
"instance-id",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "instance reduceSMSConfigDeactivated",
|
|
args: args{
|
|
event: getEvent(
|
|
testEvent(
|
|
instance.SMSConfigDeactivatedEventType,
|
|
instance.AggregateType,
|
|
[]byte(`{
|
|
"id": "id"
|
|
}`),
|
|
), eventstore.GenericEventMapper[instance.SMSConfigDeactivatedEvent]),
|
|
},
|
|
reduce: (&smsConfigProjection{}).reduceSMSConfigDeactivated,
|
|
want: wantReduce{
|
|
aggregateType: eventstore.AggregateType("instance"),
|
|
sequence: 15,
|
|
executer: &testExecuter{
|
|
executions: []execution{
|
|
{
|
|
expectedStmt: "UPDATE projections.sms_configs3 SET (state, change_date, sequence) = ($1, $2, $3) WHERE (id = $4) AND (instance_id = $5)",
|
|
expectedArgs: []interface{}{
|
|
domain.SMSConfigStateInactive,
|
|
anyArg{},
|
|
uint64(15),
|
|
"id",
|
|
"instance-id",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "instance reduceSMSConfigRemoved",
|
|
args: args{
|
|
event: getEvent(
|
|
testEvent(
|
|
instance.SMSConfigRemovedEventType,
|
|
instance.AggregateType,
|
|
[]byte(`{
|
|
"id": "id"
|
|
}`),
|
|
), eventstore.GenericEventMapper[instance.SMSConfigRemovedEvent]),
|
|
},
|
|
reduce: (&smsConfigProjection{}).reduceSMSConfigRemoved,
|
|
want: wantReduce{
|
|
aggregateType: eventstore.AggregateType("instance"),
|
|
sequence: 15,
|
|
executer: &testExecuter{
|
|
executions: []execution{
|
|
{
|
|
expectedStmt: "DELETE FROM projections.sms_configs3 WHERE (id = $1) AND (instance_id = $2)",
|
|
expectedArgs: []interface{}{
|
|
"id",
|
|
"instance-id",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "instance reduceInstanceRemoved",
|
|
args: args{
|
|
event: getEvent(
|
|
testEvent(
|
|
instance.InstanceRemovedEventType,
|
|
instance.AggregateType,
|
|
nil,
|
|
), instance.InstanceRemovedEventMapper),
|
|
},
|
|
reduce: reduceInstanceRemovedHelper(SMSColumnInstanceID),
|
|
want: wantReduce{
|
|
aggregateType: eventstore.AggregateType("instance"),
|
|
sequence: 15,
|
|
executer: &testExecuter{
|
|
executions: []execution{
|
|
{
|
|
expectedStmt: "DELETE FROM projections.sms_configs3 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 := zerrors.IsErrorInvalidArgument(err); !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, SMSConfigProjectionTable, tt.want)
|
|
})
|
|
}
|
|
}
|