mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
e38abdcdf3
Queries the data in the storage layser at the timestamp when the call hit the API layer
129 lines
3.0 KiB
Go
129 lines
3.0 KiB
Go
package query
|
|
|
|
import (
|
|
"database/sql"
|
|
"database/sql/driver"
|
|
"errors"
|
|
"fmt"
|
|
"regexp"
|
|
"testing"
|
|
|
|
"github.com/zitadel/zitadel/internal/domain"
|
|
errs "github.com/zitadel/zitadel/internal/errors"
|
|
)
|
|
|
|
var (
|
|
preparePrivacyPolicyStmt = `SELECT projections.privacy_policies2.id,` +
|
|
` projections.privacy_policies2.sequence,` +
|
|
` projections.privacy_policies2.creation_date,` +
|
|
` projections.privacy_policies2.change_date,` +
|
|
` projections.privacy_policies2.resource_owner,` +
|
|
` projections.privacy_policies2.privacy_link,` +
|
|
` projections.privacy_policies2.tos_link,` +
|
|
` projections.privacy_policies2.help_link,` +
|
|
` projections.privacy_policies2.is_default,` +
|
|
` projections.privacy_policies2.state` +
|
|
` FROM projections.privacy_policies2` +
|
|
` AS OF SYSTEM TIME '-1 ms'`
|
|
preparePrivacyPolicyCols = []string{
|
|
"id",
|
|
"sequence",
|
|
"creation_date",
|
|
"change_date",
|
|
"resource_owner",
|
|
"privacy_link",
|
|
"tos_link",
|
|
"help_link",
|
|
"is_default",
|
|
"state",
|
|
}
|
|
)
|
|
|
|
func Test_PrivacyPolicyPrepares(t *testing.T) {
|
|
type want struct {
|
|
sqlExpectations sqlExpectation
|
|
err checkErr
|
|
}
|
|
tests := []struct {
|
|
name string
|
|
prepare interface{}
|
|
want want
|
|
object interface{}
|
|
}{
|
|
{
|
|
name: "preparePrivacyPolicyQuery no result",
|
|
prepare: preparePrivacyPolicyQuery,
|
|
want: want{
|
|
sqlExpectations: mockQueries(
|
|
regexp.QuoteMeta(preparePrivacyPolicyStmt),
|
|
nil,
|
|
nil,
|
|
),
|
|
err: func(err error) (error, bool) {
|
|
if !errs.IsNotFound(err) {
|
|
return fmt.Errorf("err should be NotFoundError got: %w", err), false
|
|
}
|
|
return nil, true
|
|
},
|
|
},
|
|
object: (*PrivacyPolicy)(nil),
|
|
},
|
|
{
|
|
name: "preparePrivacyPolicyQuery found",
|
|
prepare: preparePrivacyPolicyQuery,
|
|
want: want{
|
|
sqlExpectations: mockQuery(
|
|
regexp.QuoteMeta(preparePrivacyPolicyStmt),
|
|
preparePrivacyPolicyCols,
|
|
[]driver.Value{
|
|
"pol-id",
|
|
uint64(20211109),
|
|
testNow,
|
|
testNow,
|
|
"ro",
|
|
"privacy.ch",
|
|
"tos.ch",
|
|
"help.ch",
|
|
true,
|
|
domain.PolicyStateActive,
|
|
},
|
|
),
|
|
},
|
|
object: &PrivacyPolicy{
|
|
ID: "pol-id",
|
|
CreationDate: testNow,
|
|
ChangeDate: testNow,
|
|
Sequence: 20211109,
|
|
ResourceOwner: "ro",
|
|
State: domain.PolicyStateActive,
|
|
PrivacyLink: "privacy.ch",
|
|
TOSLink: "tos.ch",
|
|
HelpLink: "help.ch",
|
|
IsDefault: true,
|
|
},
|
|
},
|
|
{
|
|
name: "preparePrivacyPolicyQuery sql err",
|
|
prepare: preparePrivacyPolicyQuery,
|
|
want: want{
|
|
sqlExpectations: mockQueryErr(
|
|
regexp.QuoteMeta(preparePrivacyPolicyStmt),
|
|
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, defaultPrepareArgs...)
|
|
})
|
|
}
|
|
}
|