mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
56b916a2b0
* begin init checks for projections * first projection checks * debug notification providers with query fixes * more projections and first index * more projections * more projections * finish projections * fix tests (remove db name) * create tables in setup * fix logging / error handling * add tenant to views * rename tenant to instance_id * add instance_id to all projections * add instance_id to all queries * correct instance_id on projections * add instance_id to failed_events * use separate context for instance * implement features projection * implement features projection * remove unique constraint from setup when migration failed * add error to failed setup event * add instance_id to primary keys * fix IAM projection * remove old migrations folder * fix keysFromYAML test
332 lines
9.1 KiB
Go
332 lines
9.1 KiB
Go
package query
|
|
|
|
import (
|
|
"database/sql"
|
|
"database/sql/driver"
|
|
"errors"
|
|
"fmt"
|
|
"regexp"
|
|
"testing"
|
|
|
|
"github.com/caos/zitadel/internal/domain"
|
|
errs "github.com/caos/zitadel/internal/errors"
|
|
)
|
|
|
|
func Test_UserAuthMethodPrepares(t *testing.T) {
|
|
type want struct {
|
|
sqlExpectations sqlExpectation
|
|
err checkErr
|
|
}
|
|
tests := []struct {
|
|
name string
|
|
prepare interface{}
|
|
want want
|
|
object interface{}
|
|
}{
|
|
{
|
|
name: "prepareUserAuthMethodsQuery no result",
|
|
prepare: prepareUserAuthMethodsQuery,
|
|
want: want{
|
|
sqlExpectations: mockQueries(
|
|
regexp.QuoteMeta(`SELECT projections.user_auth_methods.token_id,`+
|
|
` projections.user_auth_methods.creation_date,`+
|
|
` projections.user_auth_methods.change_date,`+
|
|
` projections.user_auth_methods.resource_owner,`+
|
|
` projections.user_auth_methods.user_id,`+
|
|
` projections.user_auth_methods.sequence,`+
|
|
` projections.user_auth_methods.name,`+
|
|
` projections.user_auth_methods.state,`+
|
|
` projections.user_auth_methods.method_type,`+
|
|
` COUNT(*) OVER ()`+
|
|
` FROM projections.user_auth_methods`),
|
|
nil,
|
|
nil,
|
|
),
|
|
},
|
|
object: &AuthMethods{AuthMethods: []*AuthMethod{}},
|
|
},
|
|
{
|
|
name: "prepareUserAuthMethodsQuery one result",
|
|
prepare: prepareUserAuthMethodsQuery,
|
|
want: want{
|
|
sqlExpectations: mockQueries(
|
|
regexp.QuoteMeta(`SELECT projections.user_auth_methods.token_id,`+
|
|
` projections.user_auth_methods.creation_date,`+
|
|
` projections.user_auth_methods.change_date,`+
|
|
` projections.user_auth_methods.resource_owner,`+
|
|
` projections.user_auth_methods.user_id,`+
|
|
` projections.user_auth_methods.sequence,`+
|
|
` projections.user_auth_methods.name,`+
|
|
` projections.user_auth_methods.state,`+
|
|
` projections.user_auth_methods.method_type,`+
|
|
` COUNT(*) OVER ()`+
|
|
` FROM projections.user_auth_methods`),
|
|
[]string{
|
|
"token_id",
|
|
"creation_date",
|
|
"change_date",
|
|
"resource_owner",
|
|
"user_id",
|
|
"sequence",
|
|
"name",
|
|
"state",
|
|
"method_type",
|
|
"count",
|
|
},
|
|
[][]driver.Value{
|
|
{
|
|
"token_id",
|
|
testNow,
|
|
testNow,
|
|
"ro",
|
|
"user_id",
|
|
uint64(20211108),
|
|
"name",
|
|
domain.MFAStateReady,
|
|
domain.UserAuthMethodTypeU2F,
|
|
},
|
|
},
|
|
),
|
|
},
|
|
object: &AuthMethods{
|
|
SearchResponse: SearchResponse{
|
|
Count: 1,
|
|
},
|
|
AuthMethods: []*AuthMethod{
|
|
{
|
|
TokenID: "token_id",
|
|
CreationDate: testNow,
|
|
ChangeDate: testNow,
|
|
ResourceOwner: "ro",
|
|
UserID: "user_id",
|
|
Sequence: 20211108,
|
|
Name: "name",
|
|
State: domain.MFAStateReady,
|
|
Type: domain.UserAuthMethodTypeU2F,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "prepareUserAuthMethodsQuery multiple result",
|
|
prepare: prepareUserAuthMethodsQuery,
|
|
want: want{
|
|
sqlExpectations: mockQueries(
|
|
regexp.QuoteMeta(`SELECT projections.user_auth_methods.token_id,`+
|
|
` projections.user_auth_methods.creation_date,`+
|
|
` projections.user_auth_methods.change_date,`+
|
|
` projections.user_auth_methods.resource_owner,`+
|
|
` projections.user_auth_methods.user_id,`+
|
|
` projections.user_auth_methods.sequence,`+
|
|
` projections.user_auth_methods.name,`+
|
|
` projections.user_auth_methods.state,`+
|
|
` projections.user_auth_methods.method_type,`+
|
|
` COUNT(*) OVER ()`+
|
|
` FROM projections.user_auth_methods`),
|
|
[]string{
|
|
"token_id",
|
|
"creation_date",
|
|
"change_date",
|
|
"resource_owner",
|
|
"user_id",
|
|
"sequence",
|
|
"name",
|
|
"state",
|
|
"method_type",
|
|
"count",
|
|
},
|
|
[][]driver.Value{
|
|
{
|
|
"token_id",
|
|
testNow,
|
|
testNow,
|
|
"ro",
|
|
"user_id",
|
|
uint64(20211108),
|
|
"name",
|
|
domain.MFAStateReady,
|
|
domain.UserAuthMethodTypeU2F,
|
|
},
|
|
{
|
|
"token_id-2",
|
|
testNow,
|
|
testNow,
|
|
"ro",
|
|
"user_id",
|
|
uint64(20211108),
|
|
"name-2",
|
|
domain.MFAStateReady,
|
|
domain.UserAuthMethodTypePasswordless,
|
|
},
|
|
},
|
|
),
|
|
},
|
|
object: &AuthMethods{
|
|
SearchResponse: SearchResponse{
|
|
Count: 2,
|
|
},
|
|
AuthMethods: []*AuthMethod{
|
|
{
|
|
TokenID: "token_id",
|
|
CreationDate: testNow,
|
|
ChangeDate: testNow,
|
|
ResourceOwner: "ro",
|
|
UserID: "user_id",
|
|
Sequence: 20211108,
|
|
Name: "name",
|
|
State: domain.MFAStateReady,
|
|
Type: domain.UserAuthMethodTypeU2F,
|
|
},
|
|
{
|
|
TokenID: "token_id-2",
|
|
CreationDate: testNow,
|
|
ChangeDate: testNow,
|
|
ResourceOwner: "ro",
|
|
UserID: "user_id",
|
|
Sequence: 20211108,
|
|
Name: "name-2",
|
|
State: domain.MFAStateReady,
|
|
Type: domain.UserAuthMethodTypePasswordless,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "prepareUserAuthMethodsQuery sql err",
|
|
prepare: prepareUserAuthMethodsQuery,
|
|
want: want{
|
|
sqlExpectations: mockQueryErr(
|
|
regexp.QuoteMeta(`SELECT projections.user_auth_methods.token_id,`+
|
|
` projections.user_auth_methods.creation_date,`+
|
|
` projections.user_auth_methods.change_date,`+
|
|
` projections.user_auth_methods.resource_owner,`+
|
|
` projections.user_auth_methods.user_id,`+
|
|
` projections.user_auth_methods.sequence,`+
|
|
` projections.user_auth_methods.name,`+
|
|
` projections.user_auth_methods.state,`+
|
|
` projections.user_auth_methods.method_type,`+
|
|
` COUNT(*) OVER ()`+
|
|
` FROM projections.user_auth_methods`),
|
|
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
|
|
},
|
|
},
|
|
object: nil,
|
|
},
|
|
{
|
|
name: "prepareUserAuthMethodQuery no result",
|
|
prepare: prepareUserAuthMethodQuery,
|
|
want: want{
|
|
sqlExpectations: mockQueries(
|
|
`SELECT projections.user_auth_methods.token_id,`+
|
|
` projections.user_auth_methods.creation_date,`+
|
|
` projections.user_auth_methods.change_date,`+
|
|
` projections.user_auth_methods.resource_owner,`+
|
|
` projections.user_auth_methods.user_id,`+
|
|
` projections.user_auth_methods.sequence,`+
|
|
` projections.user_auth_methods.name,`+
|
|
` projections.user_auth_methods.state,`+
|
|
` projections.user_auth_methods.method_type`+
|
|
` FROM projections.user_auth_methods`,
|
|
nil,
|
|
nil,
|
|
),
|
|
err: func(err error) (error, bool) {
|
|
if !errs.IsNotFound(err) {
|
|
return fmt.Errorf("err should be zitadel.NotFoundError got: %w", err), false
|
|
}
|
|
return nil, true
|
|
},
|
|
},
|
|
object: (*AuthMethod)(nil),
|
|
},
|
|
{
|
|
name: "prepareUserAuthMethodQuery found",
|
|
prepare: prepareUserAuthMethodQuery,
|
|
want: want{
|
|
sqlExpectations: mockQuery(
|
|
regexp.QuoteMeta(`SELECT projections.user_auth_methods.token_id,`+
|
|
` projections.user_auth_methods.creation_date,`+
|
|
` projections.user_auth_methods.change_date,`+
|
|
` projections.user_auth_methods.resource_owner,`+
|
|
` projections.user_auth_methods.user_id,`+
|
|
` projections.user_auth_methods.sequence,`+
|
|
` projections.user_auth_methods.name,`+
|
|
` projections.user_auth_methods.state,`+
|
|
` projections.user_auth_methods.method_type`+
|
|
` FROM projections.user_auth_methods`),
|
|
[]string{
|
|
"token_id",
|
|
"creation_date",
|
|
"change_date",
|
|
"resource_owner",
|
|
"user_id",
|
|
"sequence",
|
|
"name",
|
|
"state",
|
|
"method_type",
|
|
},
|
|
[]driver.Value{
|
|
"token_id",
|
|
testNow,
|
|
testNow,
|
|
"ro",
|
|
"user_id",
|
|
uint64(20211108),
|
|
"name",
|
|
domain.MFAStateReady,
|
|
domain.UserAuthMethodTypeU2F,
|
|
},
|
|
),
|
|
},
|
|
object: &AuthMethod{
|
|
TokenID: "token_id",
|
|
CreationDate: testNow,
|
|
ChangeDate: testNow,
|
|
ResourceOwner: "ro",
|
|
UserID: "user_id",
|
|
Sequence: 20211108,
|
|
Name: "name",
|
|
State: domain.MFAStateReady,
|
|
Type: domain.UserAuthMethodTypeU2F,
|
|
},
|
|
},
|
|
{
|
|
name: "prepareUserAuthMethodQuery sql err",
|
|
prepare: prepareUserAuthMethodQuery,
|
|
want: want{
|
|
sqlExpectations: mockQueryErr(
|
|
regexp.QuoteMeta(`SELECT projections.user_auth_methods.token_id,`+
|
|
` projections.user_auth_methods.creation_date,`+
|
|
` projections.user_auth_methods.change_date,`+
|
|
` projections.user_auth_methods.resource_owner,`+
|
|
` projections.user_auth_methods.user_id,`+
|
|
` projections.user_auth_methods.sequence,`+
|
|
` projections.user_auth_methods.name,`+
|
|
` projections.user_auth_methods.state,`+
|
|
` projections.user_auth_methods.method_type`+
|
|
` FROM projections.user_auth_methods`),
|
|
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
|
|
},
|
|
},
|
|
object: nil,
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
assertPrepare(t, tt.prepare, tt.object, tt.want.sqlExpectations, tt.want.err)
|
|
})
|
|
}
|
|
}
|