mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-14 03:54:21 +00:00
d229da6af7
* feat: smtp templates poc * feat: add isActive & ProviderType to SMTP backend * feat: change providertype to uint32 and fix tests * feat: minimal smtp provider component * feat: woking on diiferent providers * feat: keep working on providers * feat: initial stepper for new provider * fix: settings list and working on stepper * feat: step 1 and 2 form inputs * feat: starter for smtp test step * fix: misspelled SMPT * fix: remove tests for now * feat: add tls toggle remove old google provider * feat: working on add smtp and table * fix: duplicated identifiers * fix: settings list * fix: add missing smtp config properties * fix: add configID to smtp config table * fix: working on listproviders * feat: working in listSMTPConfigs * fix: add count to listsmtpconfigs * fix: getting empty results from listSMTPConfigs * feat: table now shows real data * fix: remaining styles for smtp-table * fix: remove old notification-smtp-provider-component * feat: delete smtp configuration * feat: deactivate smtp config * feat: replace isActive with state for smtp config * feat: activate smtp config * fix: remaining errors after main merge * fix: list smtp providers panic and material mdc * feat: refactor to only one provider component * feat: current provider details view * fix: refactor AddSMTPConfig and ChangeSMTPConfig * fix: smtp config reduce issue * fix: recover domain in NewIAMSMTPConfigWriteModel * fix: add code needed by SetUpInstance * fix: go tests and warn about passing context to InstanceAggregateFromWriteModel * fix: i18n and add missing trans for fr, it, zh * fix: add e2e tests * docs: add smtp templates * fix: remove provider_type, add description * fix: remaining error from merge main * fix: add @stebenz change for primary key * fix: inactive placed after removed to prevent deleted configs to show as inactive * fix: smtp provider id can be empty (migrated) * feat: add mailchimp transactional template * feat: add Brevo (Sendinblue) template * feat: change brevo logo, add color to tls icon * fix: queries use resourceowner, id must not be empty * fix: deal with old smtp settings and tests * fix: resourceOwner is the instanceID * fix: remove aggregate_id, rename SMTPConfigByAggregateID with SMTPConfigActive * fix: add tests for multiple configs with different IDs * fix: conflict * fix: remove notification-smtp-provider * fix: add @peintnermax suggestions, rename module and fix e2e tests * fix: remove material legacy modules * fix: remove ctx as parameter for InstanceAggregateFromWriteModel * fix: add Id to SMTPConfigToPb * fix: change InstanceAggregateFromWriteModel to avoid linter errors * fix import * rm unused package-lock * update yarn lock --------- Co-authored-by: Elio Bischof <elio@zitadel.com> Co-authored-by: Max Peintner <max@caos.ch> Co-authored-by: Stefan Benz <46600784+stebenz@users.noreply.github.com>
296 lines
7.7 KiB
Go
296 lines
7.7 KiB
Go
package projection
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"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 TestSMTPConfigProjection_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: "reduceSMTPConfigChanged",
|
|
args: args{
|
|
event: getEvent(
|
|
testEvent(
|
|
instance.SMTPConfigChangedEventType,
|
|
instance.AggregateType,
|
|
[]byte(`{
|
|
"description": "test",
|
|
"tls": true,
|
|
"senderAddress": "sender",
|
|
"senderName": "name",
|
|
"replyToAddress": "reply-to",
|
|
"host": "host",
|
|
"user": "user",
|
|
"id": "44444",
|
|
"resource_owner": "ro-id",
|
|
"instance_id": "instance-id"
|
|
}`,
|
|
),
|
|
), instance.SMTPConfigChangedEventMapper),
|
|
},
|
|
reduce: (&smtpConfigProjection{}).reduceSMTPConfigChanged,
|
|
want: wantReduce{
|
|
aggregateType: eventstore.AggregateType("instance"),
|
|
sequence: 15,
|
|
executer: &testExecuter{
|
|
executions: []execution{
|
|
{
|
|
expectedStmt: "UPDATE projections.smtp_configs2 SET (change_date, sequence, tls, sender_address, sender_name, reply_to_address, host, username, description) = ($1, $2, $3, $4, $5, $6, $7, $8, $9) WHERE (id = $10) AND (resource_owner = $11) AND (instance_id = $12)",
|
|
expectedArgs: []interface{}{
|
|
anyArg{},
|
|
uint64(15),
|
|
true,
|
|
"sender",
|
|
"name",
|
|
"reply-to",
|
|
"host",
|
|
"user",
|
|
"test",
|
|
"44444",
|
|
"ro-id",
|
|
"instance-id",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "reduceSMTPConfigAdded",
|
|
args: args{
|
|
event: getEvent(
|
|
testEvent(
|
|
instance.SMTPConfigAddedEventType,
|
|
instance.AggregateType,
|
|
[]byte(`{
|
|
"tls": true,
|
|
"id": "id",
|
|
"description": "test",
|
|
"senderAddress": "sender",
|
|
"senderName": "name",
|
|
"replyToAddress": "reply-to",
|
|
"host": "host",
|
|
"user": "user",
|
|
"password": {
|
|
"cryptoType": 0,
|
|
"algorithm": "RSA-265",
|
|
"keyId": "key-id"
|
|
}
|
|
}`),
|
|
), instance.SMTPConfigAddedEventMapper),
|
|
},
|
|
reduce: (&smtpConfigProjection{}).reduceSMTPConfigAdded,
|
|
want: wantReduce{
|
|
aggregateType: eventstore.AggregateType("instance"),
|
|
sequence: 15,
|
|
executer: &testExecuter{
|
|
executions: []execution{
|
|
{
|
|
expectedStmt: "INSERT INTO projections.smtp_configs2 (creation_date, change_date, resource_owner, instance_id, sequence, id, tls, sender_address, sender_name, reply_to_address, host, username, password, state, description) VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15)",
|
|
expectedArgs: []interface{}{
|
|
anyArg{},
|
|
anyArg{},
|
|
"ro-id",
|
|
"instance-id",
|
|
uint64(15),
|
|
"id",
|
|
true,
|
|
"sender",
|
|
"name",
|
|
"reply-to",
|
|
"host",
|
|
"user",
|
|
anyArg{},
|
|
domain.SMTPConfigState(3),
|
|
"test",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "reduceSMTPConfigActivated",
|
|
args: args{
|
|
event: getEvent(testEvent(
|
|
instance.SMTPConfigActivatedEventType,
|
|
instance.AggregateType,
|
|
[]byte(`{
|
|
"id": "config-id"
|
|
}`),
|
|
), instance.SMTPConfigActivatedEventMapper),
|
|
},
|
|
reduce: (&smtpConfigProjection{}).reduceSMTPConfigActivated,
|
|
want: wantReduce{
|
|
aggregateType: eventstore.AggregateType("instance"),
|
|
sequence: 15,
|
|
executer: &testExecuter{
|
|
executions: []execution{
|
|
{
|
|
expectedStmt: "UPDATE projections.smtp_configs2 SET (change_date, sequence, state) = ($1, $2, $3) WHERE (id = $4) AND (resource_owner = $5) AND (instance_id = $6)",
|
|
expectedArgs: []interface{}{
|
|
anyArg{},
|
|
uint64(15),
|
|
domain.SMTPConfigStateActive,
|
|
"config-id",
|
|
"ro-id",
|
|
"instance-id",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "reduceSMTPConfigDeactivated",
|
|
args: args{
|
|
event: getEvent(testEvent(
|
|
instance.SMTPConfigDeactivatedEventType,
|
|
instance.AggregateType,
|
|
[]byte(`{
|
|
"id": "config-id"
|
|
}`),
|
|
), instance.SMTPConfigDeactivatedEventMapper),
|
|
},
|
|
reduce: (&smtpConfigProjection{}).reduceSMTPConfigDeactivated,
|
|
want: wantReduce{
|
|
aggregateType: eventstore.AggregateType("instance"),
|
|
sequence: 15,
|
|
executer: &testExecuter{
|
|
executions: []execution{
|
|
{
|
|
expectedStmt: "UPDATE projections.smtp_configs2 SET (change_date, sequence, state) = ($1, $2, $3) WHERE (id = $4) AND (resource_owner = $5) AND (instance_id = $6)",
|
|
expectedArgs: []interface{}{
|
|
anyArg{},
|
|
uint64(15),
|
|
domain.SMTPConfigStateInactive,
|
|
"config-id",
|
|
"ro-id",
|
|
"instance-id",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "reduceSMTPConfigPasswordChanged",
|
|
args: args{
|
|
event: getEvent(
|
|
testEvent(
|
|
instance.SMTPConfigPasswordChangedEventType,
|
|
instance.AggregateType,
|
|
[]byte(`{
|
|
"id": "config-id",
|
|
"password": {
|
|
"cryptoType": 0,
|
|
"algorithm": "RSA-265",
|
|
"keyId": "key-id"
|
|
}
|
|
}`),
|
|
), instance.SMTPConfigPasswordChangedEventMapper),
|
|
},
|
|
reduce: (&smtpConfigProjection{}).reduceSMTPConfigPasswordChanged,
|
|
want: wantReduce{
|
|
aggregateType: eventstore.AggregateType("instance"),
|
|
sequence: 15,
|
|
executer: &testExecuter{
|
|
executions: []execution{
|
|
{
|
|
expectedStmt: "UPDATE projections.smtp_configs2 SET (change_date, sequence, password) = ($1, $2, $3) WHERE (id = $4) AND (resource_owner = $5) AND (instance_id = $6)",
|
|
expectedArgs: []interface{}{
|
|
anyArg{},
|
|
uint64(15),
|
|
anyArg{},
|
|
"config-id",
|
|
"ro-id",
|
|
"instance-id",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "reduceSMTPConfigRemoved",
|
|
args: args{
|
|
event: getEvent(testEvent(
|
|
instance.SMTPConfigRemovedEventType,
|
|
instance.AggregateType,
|
|
[]byte(`{ "id": "config-id"}`),
|
|
), instance.SMTPConfigRemovedEventMapper),
|
|
},
|
|
reduce: (&smtpConfigProjection{}).reduceSMTPConfigRemoved,
|
|
want: wantReduce{
|
|
aggregateType: eventstore.AggregateType("instance"),
|
|
sequence: 15,
|
|
executer: &testExecuter{
|
|
executions: []execution{
|
|
{
|
|
expectedStmt: "DELETE FROM projections.smtp_configs2 WHERE (id = $1) AND (resource_owner = $2) AND (instance_id = $3)",
|
|
expectedArgs: []interface{}{
|
|
"config-id",
|
|
"ro-id",
|
|
"instance-id",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "instance reduceInstanceRemoved",
|
|
args: args{
|
|
event: getEvent(
|
|
testEvent(
|
|
instance.InstanceRemovedEventType,
|
|
instance.AggregateType,
|
|
nil,
|
|
), instance.InstanceRemovedEventMapper),
|
|
},
|
|
reduce: reduceInstanceRemovedHelper(SMTPConfigColumnInstanceID),
|
|
want: wantReduce{
|
|
aggregateType: eventstore.AggregateType("instance"),
|
|
sequence: 15,
|
|
executer: &testExecuter{
|
|
executions: []execution{
|
|
{
|
|
expectedStmt: "DELETE FROM projections.smtp_configs2 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, SMTPConfigProjectionTable, tt.want)
|
|
})
|
|
}
|
|
}
|