2022-02-16 15:49:17 +00:00
|
|
|
package query
|
|
|
|
|
|
|
|
import (
|
|
|
|
"database/sql"
|
|
|
|
"database/sql/driver"
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"regexp"
|
|
|
|
"testing"
|
|
|
|
|
2022-04-26 23:01:45 +00:00
|
|
|
"github.com/zitadel/zitadel/internal/crypto"
|
2024-04-11 07:16:10 +00:00
|
|
|
"github.com/zitadel/zitadel/internal/domain"
|
2023-12-08 14:30:55 +00:00
|
|
|
"github.com/zitadel/zitadel/internal/zerrors"
|
2022-02-16 15:49:17 +00:00
|
|
|
)
|
|
|
|
|
2023-02-27 21:36:43 +00:00
|
|
|
var (
|
2024-04-11 07:16:10 +00:00
|
|
|
prepareSMTPConfigStmt = `SELECT projections.smtp_configs2.creation_date,` +
|
|
|
|
` projections.smtp_configs2.change_date,` +
|
|
|
|
` projections.smtp_configs2.resource_owner,` +
|
|
|
|
` projections.smtp_configs2.sequence,` +
|
|
|
|
` projections.smtp_configs2.tls,` +
|
|
|
|
` projections.smtp_configs2.sender_address,` +
|
|
|
|
` projections.smtp_configs2.sender_name,` +
|
|
|
|
` projections.smtp_configs2.reply_to_address,` +
|
|
|
|
` projections.smtp_configs2.host,` +
|
|
|
|
` projections.smtp_configs2.username,` +
|
|
|
|
` projections.smtp_configs2.password,` +
|
|
|
|
` projections.smtp_configs2.id,` +
|
|
|
|
` projections.smtp_configs2.state,` +
|
|
|
|
` projections.smtp_configs2.description` +
|
|
|
|
` FROM projections.smtp_configs2` +
|
2023-02-27 21:36:43 +00:00
|
|
|
` AS OF SYSTEM TIME '-1 ms'`
|
|
|
|
prepareSMTPConfigCols = []string{
|
|
|
|
"creation_date",
|
|
|
|
"change_date",
|
|
|
|
"resource_owner",
|
|
|
|
"sequence",
|
|
|
|
"tls",
|
|
|
|
"sender_address",
|
|
|
|
"sender_name",
|
2023-08-29 07:08:24 +00:00
|
|
|
"reply_to_address",
|
2023-02-27 21:36:43 +00:00
|
|
|
"smtp_host",
|
|
|
|
"smtp_user",
|
|
|
|
"smtp_password",
|
2024-04-11 07:16:10 +00:00
|
|
|
"id",
|
|
|
|
"state",
|
|
|
|
"description",
|
2023-02-27 21:36:43 +00:00
|
|
|
}
|
|
|
|
)
|
|
|
|
|
2022-02-16 15:49:17 +00:00
|
|
|
func Test_SMTPConfigsPrepares(t *testing.T) {
|
|
|
|
type want struct {
|
|
|
|
sqlExpectations sqlExpectation
|
|
|
|
err checkErr
|
|
|
|
}
|
|
|
|
tests := []struct {
|
|
|
|
name string
|
|
|
|
prepare interface{}
|
|
|
|
want want
|
|
|
|
object interface{}
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
name: "prepareSMTPConfigQuery no result",
|
|
|
|
prepare: prepareSMTPConfigQuery,
|
|
|
|
want: want{
|
2023-08-22 10:49:22 +00:00
|
|
|
sqlExpectations: mockQueriesScanErr(
|
2023-02-27 21:36:43 +00:00
|
|
|
prepareSMTPConfigStmt,
|
2022-02-16 15:49:17 +00:00
|
|
|
nil,
|
|
|
|
nil,
|
|
|
|
),
|
|
|
|
err: func(err error) (error, bool) {
|
2023-12-08 14:30:55 +00:00
|
|
|
if !zerrors.IsNotFound(err) {
|
2022-02-16 15:49:17 +00:00
|
|
|
return fmt.Errorf("err should be zitadel.NotFoundError got: %w", err), false
|
|
|
|
}
|
|
|
|
return nil, true
|
|
|
|
},
|
|
|
|
},
|
|
|
|
object: (*SMTPConfig)(nil),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "prepareSMTPConfigQuery found",
|
|
|
|
prepare: prepareSMTPConfigQuery,
|
|
|
|
want: want{
|
|
|
|
sqlExpectations: mockQuery(
|
2023-02-27 21:36:43 +00:00
|
|
|
regexp.QuoteMeta(prepareSMTPConfigStmt),
|
|
|
|
prepareSMTPConfigCols,
|
2022-02-16 15:49:17 +00:00
|
|
|
[]driver.Value{
|
|
|
|
testNow,
|
|
|
|
testNow,
|
|
|
|
"ro",
|
|
|
|
uint64(20211108),
|
|
|
|
true,
|
|
|
|
"sender",
|
|
|
|
"name",
|
2023-08-29 07:08:24 +00:00
|
|
|
"reply-to",
|
2022-02-16 15:49:17 +00:00
|
|
|
"host",
|
|
|
|
"user",
|
|
|
|
&crypto.CryptoValue{},
|
2024-04-11 07:16:10 +00:00
|
|
|
"2232323",
|
|
|
|
domain.SMTPConfigStateActive,
|
|
|
|
"test",
|
2022-02-16 15:49:17 +00:00
|
|
|
},
|
|
|
|
),
|
|
|
|
},
|
|
|
|
object: &SMTPConfig{
|
2023-08-29 07:08:24 +00:00
|
|
|
CreationDate: testNow,
|
|
|
|
ChangeDate: testNow,
|
|
|
|
ResourceOwner: "ro",
|
|
|
|
Sequence: 20211108,
|
|
|
|
TLS: true,
|
|
|
|
SenderAddress: "sender",
|
|
|
|
SenderName: "name",
|
|
|
|
ReplyToAddress: "reply-to",
|
|
|
|
Host: "host",
|
|
|
|
User: "user",
|
|
|
|
Password: &crypto.CryptoValue{},
|
2024-04-11 07:16:10 +00:00
|
|
|
ID: "2232323",
|
|
|
|
State: domain.SMTPConfigStateActive,
|
|
|
|
Description: "test",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "prepareSMTPConfigQuery another config found",
|
|
|
|
prepare: prepareSMTPConfigQuery,
|
|
|
|
want: want{
|
|
|
|
sqlExpectations: mockQuery(
|
|
|
|
regexp.QuoteMeta(prepareSMTPConfigStmt),
|
|
|
|
prepareSMTPConfigCols,
|
|
|
|
[]driver.Value{
|
|
|
|
testNow,
|
|
|
|
testNow,
|
|
|
|
"ro",
|
|
|
|
uint64(20211109),
|
|
|
|
true,
|
|
|
|
"sender2",
|
|
|
|
"name2",
|
|
|
|
"reply-to2",
|
|
|
|
"host2",
|
|
|
|
"user2",
|
|
|
|
&crypto.CryptoValue{},
|
|
|
|
"44442323",
|
|
|
|
domain.SMTPConfigStateInactive,
|
|
|
|
"test2",
|
|
|
|
},
|
|
|
|
),
|
|
|
|
},
|
|
|
|
object: &SMTPConfig{
|
|
|
|
CreationDate: testNow,
|
|
|
|
ChangeDate: testNow,
|
|
|
|
ResourceOwner: "ro",
|
|
|
|
Sequence: 20211109,
|
|
|
|
TLS: true,
|
|
|
|
SenderAddress: "sender2",
|
|
|
|
SenderName: "name2",
|
|
|
|
ReplyToAddress: "reply-to2",
|
|
|
|
Host: "host2",
|
|
|
|
User: "user2",
|
|
|
|
Password: &crypto.CryptoValue{},
|
|
|
|
ID: "44442323",
|
|
|
|
State: domain.SMTPConfigStateInactive,
|
|
|
|
Description: "test2",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "prepareSMTPConfigQuery yet another config found",
|
|
|
|
prepare: prepareSMTPConfigQuery,
|
|
|
|
want: want{
|
|
|
|
sqlExpectations: mockQuery(
|
|
|
|
regexp.QuoteMeta(prepareSMTPConfigStmt),
|
|
|
|
prepareSMTPConfigCols,
|
|
|
|
[]driver.Value{
|
|
|
|
testNow,
|
|
|
|
testNow,
|
|
|
|
"ro",
|
|
|
|
uint64(20211109),
|
|
|
|
true,
|
|
|
|
"sender3",
|
|
|
|
"name3",
|
|
|
|
"reply-to3",
|
|
|
|
"host3",
|
|
|
|
"user3",
|
|
|
|
&crypto.CryptoValue{},
|
|
|
|
"23234444",
|
|
|
|
domain.SMTPConfigStateInactive,
|
|
|
|
"test3",
|
|
|
|
},
|
|
|
|
),
|
|
|
|
},
|
|
|
|
object: &SMTPConfig{
|
|
|
|
CreationDate: testNow,
|
|
|
|
ChangeDate: testNow,
|
|
|
|
ResourceOwner: "ro",
|
|
|
|
Sequence: 20211109,
|
|
|
|
TLS: true,
|
|
|
|
SenderAddress: "sender3",
|
|
|
|
SenderName: "name3",
|
|
|
|
ReplyToAddress: "reply-to3",
|
|
|
|
Host: "host3",
|
|
|
|
User: "user3",
|
|
|
|
Password: &crypto.CryptoValue{},
|
|
|
|
ID: "23234444",
|
|
|
|
State: domain.SMTPConfigStateInactive,
|
|
|
|
Description: "test3",
|
2022-02-16 15:49:17 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "prepareSMTPConfigQuery sql err",
|
|
|
|
prepare: prepareSMTPConfigQuery,
|
|
|
|
want: want{
|
|
|
|
sqlExpectations: mockQueryErr(
|
2023-02-27 21:36:43 +00:00
|
|
|
regexp.QuoteMeta(prepareSMTPConfigStmt),
|
2022-02-16 15:49:17 +00:00
|
|
|
sql.ErrConnDone,
|
|
|
|
),
|
|
|
|
err: func(err error) (error, bool) {
|
|
|
|
if !errors.Is(err, sql.ErrConnDone) {
|
|
|
|
return fmt.Errorf("err should be sql.ErrConnDone got: %w", err), false
|
|
|
|
}
|
|
|
|
return nil, true
|
|
|
|
},
|
|
|
|
},
|
2023-08-22 10:49:22 +00:00
|
|
|
object: (*SMTPConfig)(nil),
|
2022-02-16 15:49:17 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
|
|
t.Run(tt.name, func(t *testing.T) {
|
2023-02-27 21:36:43 +00:00
|
|
|
assertPrepare(t, tt.prepare, tt.object, tt.want.sqlExpectations, tt.want.err, defaultPrepareArgs...)
|
2022-02-16 15:49:17 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|