mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-11 19:07:30 +00:00
feat: query side for executions and targets for actions v2 (#7524)
* feat: add projections and query side to executions and targets * feat: add list and get endpoints for targets * feat: add integration tests for query endpoints target and execution * fix: linting * fix: linting * fix: review changes, renames and corrections * fix: review changes, renames and corrections * fix: review changes, renames and corrections * fix: review changes, renames and corrections * fix: review changes, renames and corrections * fix: review changes, renames and corrections * fix: remove position from list details
This commit is contained in:
253
internal/query/execution_test.go
Normal file
253
internal/query/execution_test.go
Normal file
@@ -0,0 +1,253 @@
|
||||
package query
|
||||
|
||||
import (
|
||||
"database/sql"
|
||||
"database/sql/driver"
|
||||
"errors"
|
||||
"fmt"
|
||||
"regexp"
|
||||
"testing"
|
||||
|
||||
"github.com/zitadel/zitadel/internal/database"
|
||||
"github.com/zitadel/zitadel/internal/domain"
|
||||
"github.com/zitadel/zitadel/internal/zerrors"
|
||||
)
|
||||
|
||||
var (
|
||||
prepareExecutionsStmt = `SELECT projections.executions.id,` +
|
||||
` projections.executions.change_date,` +
|
||||
` projections.executions.resource_owner,` +
|
||||
` projections.executions.sequence,` +
|
||||
` projections.executions.targets,` +
|
||||
` projections.executions.includes,` +
|
||||
` COUNT(*) OVER ()` +
|
||||
` FROM projections.executions`
|
||||
prepareExecutionsCols = []string{
|
||||
"id",
|
||||
"change_date",
|
||||
"resource_owner",
|
||||
"sequence",
|
||||
"targets",
|
||||
"includes",
|
||||
"count",
|
||||
}
|
||||
|
||||
prepareExecutionStmt = `SELECT projections.executions.id,` +
|
||||
` projections.executions.change_date,` +
|
||||
` projections.executions.resource_owner,` +
|
||||
` projections.executions.sequence,` +
|
||||
` projections.executions.targets,` +
|
||||
` projections.executions.includes` +
|
||||
` FROM projections.executions`
|
||||
prepareExecutionCols = []string{
|
||||
"id",
|
||||
"change_date",
|
||||
"resource_owner",
|
||||
"sequence",
|
||||
"targets",
|
||||
"includes",
|
||||
}
|
||||
)
|
||||
|
||||
func Test_ExecutionPrepares(t *testing.T) {
|
||||
type want struct {
|
||||
sqlExpectations sqlExpectation
|
||||
err checkErr
|
||||
}
|
||||
tests := []struct {
|
||||
name string
|
||||
prepare interface{}
|
||||
want want
|
||||
object interface{}
|
||||
}{
|
||||
{
|
||||
name: "prepareExecutionsQuery no result",
|
||||
prepare: prepareExecutionsQuery,
|
||||
want: want{
|
||||
sqlExpectations: mockQueries(
|
||||
regexp.QuoteMeta(prepareExecutionsStmt),
|
||||
nil,
|
||||
nil,
|
||||
),
|
||||
},
|
||||
object: &Executions{Executions: []*Execution{}},
|
||||
},
|
||||
{
|
||||
name: "prepareExecutionsQuery one result",
|
||||
prepare: prepareExecutionsQuery,
|
||||
want: want{
|
||||
sqlExpectations: mockQueries(
|
||||
regexp.QuoteMeta(prepareExecutionsStmt),
|
||||
prepareExecutionsCols,
|
||||
[][]driver.Value{
|
||||
{
|
||||
"id",
|
||||
testNow,
|
||||
"ro",
|
||||
uint64(20211109),
|
||||
database.TextArray[string]{"target"},
|
||||
database.TextArray[string]{"include"},
|
||||
},
|
||||
},
|
||||
),
|
||||
},
|
||||
object: &Executions{
|
||||
SearchResponse: SearchResponse{
|
||||
Count: 1,
|
||||
},
|
||||
Executions: []*Execution{
|
||||
{
|
||||
ID: "id",
|
||||
ObjectDetails: domain.ObjectDetails{
|
||||
EventDate: testNow,
|
||||
ResourceOwner: "ro",
|
||||
Sequence: 20211109,
|
||||
},
|
||||
Targets: database.TextArray[string]{"target"},
|
||||
Includes: database.TextArray[string]{"include"},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
name: "prepareExecutionsQuery multiple result",
|
||||
prepare: prepareExecutionsQuery,
|
||||
want: want{
|
||||
sqlExpectations: mockQueries(
|
||||
regexp.QuoteMeta(prepareExecutionsStmt),
|
||||
prepareExecutionsCols,
|
||||
[][]driver.Value{
|
||||
{
|
||||
"id-1",
|
||||
testNow,
|
||||
"ro",
|
||||
uint64(20211109),
|
||||
database.TextArray[string]{"target1"},
|
||||
database.TextArray[string]{"include1"},
|
||||
},
|
||||
{
|
||||
"id-2",
|
||||
testNow,
|
||||
"ro",
|
||||
uint64(20211110),
|
||||
database.TextArray[string]{"target2"},
|
||||
database.TextArray[string]{"include2"},
|
||||
},
|
||||
},
|
||||
),
|
||||
},
|
||||
object: &Executions{
|
||||
SearchResponse: SearchResponse{
|
||||
Count: 2,
|
||||
},
|
||||
Executions: []*Execution{
|
||||
{
|
||||
ID: "id-1",
|
||||
ObjectDetails: domain.ObjectDetails{
|
||||
EventDate: testNow,
|
||||
ResourceOwner: "ro",
|
||||
Sequence: 20211109,
|
||||
},
|
||||
Targets: database.TextArray[string]{"target1"},
|
||||
Includes: database.TextArray[string]{"include1"},
|
||||
},
|
||||
{
|
||||
ID: "id-2",
|
||||
ObjectDetails: domain.ObjectDetails{
|
||||
EventDate: testNow,
|
||||
ResourceOwner: "ro",
|
||||
Sequence: 20211110,
|
||||
},
|
||||
Targets: database.TextArray[string]{"target2"},
|
||||
Includes: database.TextArray[string]{"include2"},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
name: "prepareExecutionsQuery sql err",
|
||||
prepare: prepareExecutionsQuery,
|
||||
want: want{
|
||||
sqlExpectations: mockQueryErr(
|
||||
regexp.QuoteMeta(prepareExecutionsStmt),
|
||||
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: (*Execution)(nil),
|
||||
},
|
||||
{
|
||||
name: "prepareExecutionQuery no result",
|
||||
prepare: prepareExecutionQuery,
|
||||
want: want{
|
||||
sqlExpectations: mockQueriesScanErr(
|
||||
regexp.QuoteMeta(prepareExecutionStmt),
|
||||
nil,
|
||||
nil,
|
||||
),
|
||||
err: func(err error) (error, bool) {
|
||||
if !zerrors.IsNotFound(err) {
|
||||
return fmt.Errorf("err should be zitadel.NotFoundError got: %w", err), false
|
||||
}
|
||||
return nil, true
|
||||
},
|
||||
},
|
||||
object: (*Execution)(nil),
|
||||
},
|
||||
{
|
||||
name: "prepareExecutionQuery found",
|
||||
prepare: prepareExecutionQuery,
|
||||
want: want{
|
||||
sqlExpectations: mockQuery(
|
||||
regexp.QuoteMeta(prepareExecutionStmt),
|
||||
prepareExecutionCols,
|
||||
[]driver.Value{
|
||||
"id",
|
||||
testNow,
|
||||
"ro",
|
||||
uint64(20211109),
|
||||
database.TextArray[string]{"target"},
|
||||
database.TextArray[string]{"include"},
|
||||
},
|
||||
),
|
||||
},
|
||||
object: &Execution{
|
||||
ID: "id",
|
||||
ObjectDetails: domain.ObjectDetails{
|
||||
EventDate: testNow,
|
||||
ResourceOwner: "ro",
|
||||
Sequence: 20211109,
|
||||
},
|
||||
Targets: database.TextArray[string]{"target"},
|
||||
Includes: database.TextArray[string]{"include"},
|
||||
},
|
||||
},
|
||||
{
|
||||
name: "prepareExecutionQuery sql err",
|
||||
prepare: prepareExecutionQuery,
|
||||
want: want{
|
||||
sqlExpectations: mockQueryErr(
|
||||
regexp.QuoteMeta(prepareExecutionStmt),
|
||||
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: (*Execution)(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...)
|
||||
})
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user