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-10-04 09:34:44 +00:00
prepareSMTPConfigStmt = ` SELECT projections.smtp_configs5.creation_date, ` +
` projections.smtp_configs5.change_date, ` +
` projections.smtp_configs5.resource_owner, ` +
` projections.smtp_configs5.sequence, ` +
` projections.smtp_configs5.id, ` +
` projections.smtp_configs5.state, ` +
` projections.smtp_configs5.description, ` +
` projections.smtp_configs5_smtp.id, ` +
` projections.smtp_configs5_smtp.tls, ` +
` projections.smtp_configs5_smtp.sender_address, ` +
` projections.smtp_configs5_smtp.sender_name, ` +
` projections.smtp_configs5_smtp.reply_to_address, ` +
` projections.smtp_configs5_smtp.host, ` +
` projections.smtp_configs5_smtp.username, ` +
` projections.smtp_configs5_smtp.password, ` +
` projections.smtp_configs5_http.id, ` +
` projections.smtp_configs5_http.endpoint ` +
` FROM projections.smtp_configs5 ` +
` LEFT JOIN projections.smtp_configs5_smtp ON projections.smtp_configs5.id = projections.smtp_configs5_smtp.id AND projections.smtp_configs5.instance_id = projections.smtp_configs5_smtp.instance_id ` +
` LEFT JOIN projections.smtp_configs5_http ON projections.smtp_configs5.id = projections.smtp_configs5_http.id AND projections.smtp_configs5.instance_id = projections.smtp_configs5_http.instance_id ` +
2023-02-27 21:36:43 +00:00
` AS OF SYSTEM TIME '-1 ms' `
prepareSMTPConfigCols = [ ] string {
"creation_date" ,
"change_date" ,
"resource_owner" ,
"sequence" ,
2024-09-12 04:27:29 +00:00
"id" ,
"state" ,
"description" ,
"id" ,
2023-02-27 21:36:43 +00:00
"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" ,
2024-09-12 04:27:29 +00:00
"endpoint" ,
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 ) ,
2024-09-12 04:27:29 +00:00
"2232323" ,
domain . SMTPConfigStateActive ,
"test" ,
"2232323" ,
2022-02-16 15:49:17 +00:00
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-09-12 04:27:29 +00:00
nil ,
nil ,
} ,
) ,
} ,
object : & SMTPConfig {
CreationDate : testNow ,
ChangeDate : testNow ,
ResourceOwner : "ro" ,
Sequence : 20211108 ,
SMTPConfig : & SMTP {
TLS : true ,
SenderAddress : "sender" ,
SenderName : "name" ,
ReplyToAddress : "reply-to" ,
Host : "host" ,
User : "user" ,
Password : & crypto . CryptoValue { } ,
} ,
ID : "2232323" ,
State : domain . SMTPConfigStateActive ,
Description : "test" ,
} ,
} ,
{
name : "prepareSMTPConfigQuery found, http" ,
prepare : prepareSMTPConfigQuery ,
want : want {
sqlExpectations : mockQuery (
regexp . QuoteMeta ( prepareSMTPConfigStmt ) ,
prepareSMTPConfigCols ,
[ ] driver . Value {
testNow ,
testNow ,
"ro" ,
uint64 ( 20211108 ) ,
2024-04-11 07:16:10 +00:00
"2232323" ,
domain . SMTPConfigStateActive ,
"test" ,
2024-09-12 04:27:29 +00:00
nil ,
nil ,
nil ,
nil ,
nil ,
nil ,
nil ,
nil ,
"2232323" ,
"endpoint" ,
2022-02-16 15:49:17 +00:00
} ,
) ,
} ,
object : & SMTPConfig {
2024-09-12 04:27:29 +00:00
CreationDate : testNow ,
ChangeDate : testNow ,
ResourceOwner : "ro" ,
Sequence : 20211108 ,
HTTPConfig : & HTTP {
Endpoint : "endpoint" ,
} ,
ID : "2232323" ,
State : domain . SMTPConfigStateActive ,
Description : "test" ,
2024-04-11 07:16:10 +00:00
} ,
} ,
{
name : "prepareSMTPConfigQuery another config found" ,
prepare : prepareSMTPConfigQuery ,
want : want {
sqlExpectations : mockQuery (
regexp . QuoteMeta ( prepareSMTPConfigStmt ) ,
prepareSMTPConfigCols ,
[ ] driver . Value {
testNow ,
testNow ,
"ro" ,
uint64 ( 20211109 ) ,
2024-09-12 04:27:29 +00:00
"44442323" ,
domain . SMTPConfigStateInactive ,
"test2" ,
"44442323" ,
2024-04-11 07:16:10 +00:00
true ,
"sender2" ,
"name2" ,
"reply-to2" ,
"host2" ,
"user2" ,
& crypto . CryptoValue { } ,
2024-09-12 04:27:29 +00:00
nil ,
nil ,
2024-04-11 07:16:10 +00:00
} ,
) ,
} ,
object : & SMTPConfig {
2024-09-12 04:27:29 +00:00
CreationDate : testNow ,
ChangeDate : testNow ,
ResourceOwner : "ro" ,
Sequence : 20211109 ,
SMTPConfig : & SMTP {
TLS : true ,
SenderAddress : "sender2" ,
SenderName : "name2" ,
ReplyToAddress : "reply-to2" ,
Host : "host2" ,
User : "user2" ,
Password : & crypto . CryptoValue { } ,
} ,
ID : "44442323" ,
State : domain . SMTPConfigStateInactive ,
Description : "test2" ,
2024-04-11 07:16:10 +00:00
} ,
} ,
{
name : "prepareSMTPConfigQuery yet another config found" ,
prepare : prepareSMTPConfigQuery ,
want : want {
sqlExpectations : mockQuery (
regexp . QuoteMeta ( prepareSMTPConfigStmt ) ,
prepareSMTPConfigCols ,
[ ] driver . Value {
testNow ,
testNow ,
"ro" ,
uint64 ( 20211109 ) ,
2024-09-12 04:27:29 +00:00
"23234444" ,
domain . SMTPConfigStateInactive ,
"test3" ,
"23234444" ,
2024-04-11 07:16:10 +00:00
true ,
"sender3" ,
"name3" ,
"reply-to3" ,
"host3" ,
"user3" ,
& crypto . CryptoValue { } ,
2024-09-12 04:27:29 +00:00
nil ,
nil ,
2024-04-11 07:16:10 +00:00
} ,
) ,
} ,
object : & SMTPConfig {
2024-09-12 04:27:29 +00:00
CreationDate : testNow ,
ChangeDate : testNow ,
ResourceOwner : "ro" ,
Sequence : 20211109 ,
SMTPConfig : & SMTP {
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
} )
}
}