2021-11-16 13:04:22 +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/domain"
|
2021-11-16 13:04:22 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func Test_FlowPrepares(t *testing.T) {
|
|
|
|
type want struct {
|
|
|
|
sqlExpectations sqlExpectation
|
|
|
|
err checkErr
|
|
|
|
}
|
|
|
|
tests := []struct {
|
|
|
|
name string
|
|
|
|
prepare interface{}
|
|
|
|
want want
|
|
|
|
object interface{}
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
name: "prepareFlowQuery no result",
|
|
|
|
prepare: prepareFlowQuery,
|
|
|
|
want: want{
|
|
|
|
sqlExpectations: mockQueries(
|
2022-03-23 08:02:39 +00:00
|
|
|
regexp.QuoteMeta(`SELECT projections.actions.id,`+
|
|
|
|
` projections.actions.creation_date,`+
|
|
|
|
` projections.actions.change_date,`+
|
|
|
|
` projections.actions.resource_owner,`+
|
|
|
|
` projections.actions.action_state,`+
|
|
|
|
` projections.actions.sequence,`+
|
|
|
|
` projections.actions.name,`+
|
|
|
|
` projections.actions.script,`+
|
|
|
|
` projections.flows_triggers.trigger_type,`+
|
|
|
|
` projections.flows_triggers.trigger_sequence,`+
|
|
|
|
` projections.flows_triggers.flow_type,`+
|
|
|
|
` projections.flows_triggers.change_date,`+
|
|
|
|
` projections.flows_triggers.sequence,`+
|
|
|
|
` projections.flows_triggers.resource_owner`+
|
|
|
|
` FROM projections.flows_triggers`+
|
|
|
|
` LEFT JOIN projections.actions ON projections.flows_triggers.action_id = projections.actions.id`),
|
2021-11-16 13:04:22 +00:00
|
|
|
nil,
|
|
|
|
nil,
|
|
|
|
),
|
|
|
|
},
|
|
|
|
object: &Flow{TriggerActions: map[domain.TriggerType][]*Action{}},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "prepareFlowQuery one action",
|
|
|
|
prepare: prepareFlowQuery,
|
|
|
|
want: want{
|
|
|
|
sqlExpectations: mockQueries(
|
2022-03-23 08:02:39 +00:00
|
|
|
regexp.QuoteMeta(`SELECT projections.actions.id,`+
|
|
|
|
` projections.actions.creation_date,`+
|
|
|
|
` projections.actions.change_date,`+
|
|
|
|
` projections.actions.resource_owner,`+
|
|
|
|
` projections.actions.action_state,`+
|
|
|
|
` projections.actions.sequence,`+
|
|
|
|
` projections.actions.name,`+
|
|
|
|
` projections.actions.script,`+
|
|
|
|
` projections.flows_triggers.trigger_type,`+
|
|
|
|
` projections.flows_triggers.trigger_sequence,`+
|
|
|
|
` projections.flows_triggers.flow_type,`+
|
|
|
|
` projections.flows_triggers.change_date,`+
|
|
|
|
` projections.flows_triggers.sequence,`+
|
|
|
|
` projections.flows_triggers.resource_owner`+
|
|
|
|
` FROM projections.flows_triggers`+
|
|
|
|
` LEFT JOIN projections.actions ON projections.flows_triggers.action_id = projections.actions.id`),
|
2021-11-16 13:04:22 +00:00
|
|
|
[]string{
|
|
|
|
"id",
|
|
|
|
"creation_date",
|
|
|
|
"change_date",
|
|
|
|
"resource_owner",
|
2022-02-02 08:04:05 +00:00
|
|
|
"state",
|
2021-11-16 13:04:22 +00:00
|
|
|
"sequence",
|
|
|
|
"name",
|
|
|
|
"script",
|
2022-03-23 08:02:39 +00:00
|
|
|
//flow
|
2021-11-16 13:04:22 +00:00
|
|
|
"trigger_type",
|
|
|
|
"trigger_sequence",
|
|
|
|
"flow_type",
|
2022-03-23 08:02:39 +00:00
|
|
|
"change_date",
|
|
|
|
"sequence",
|
|
|
|
"resource_owner",
|
2021-11-16 13:04:22 +00:00
|
|
|
},
|
|
|
|
[][]driver.Value{
|
|
|
|
{
|
|
|
|
"action-id",
|
|
|
|
testNow,
|
|
|
|
testNow,
|
|
|
|
"ro",
|
2022-02-02 08:04:05 +00:00
|
|
|
domain.ActionStateActive,
|
2021-11-16 13:04:22 +00:00
|
|
|
uint64(20211115),
|
|
|
|
"action-name",
|
|
|
|
"script",
|
|
|
|
domain.TriggerTypePreCreation,
|
|
|
|
uint64(20211109),
|
|
|
|
domain.FlowTypeExternalAuthentication,
|
2022-03-23 08:02:39 +00:00
|
|
|
testNow,
|
|
|
|
uint64(20211115),
|
|
|
|
"owner",
|
2021-11-16 13:04:22 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
),
|
|
|
|
},
|
|
|
|
object: &Flow{
|
2022-03-23 08:02:39 +00:00
|
|
|
ChangeDate: testNow,
|
|
|
|
ResourceOwner: "owner",
|
|
|
|
Sequence: 20211115,
|
|
|
|
Type: domain.FlowTypeExternalAuthentication,
|
2021-11-16 13:04:22 +00:00
|
|
|
TriggerActions: map[domain.TriggerType][]*Action{
|
|
|
|
domain.TriggerTypePreCreation: {
|
|
|
|
{
|
|
|
|
ID: "action-id",
|
|
|
|
CreationDate: testNow,
|
|
|
|
ChangeDate: testNow,
|
|
|
|
ResourceOwner: "ro",
|
2022-02-02 08:04:05 +00:00
|
|
|
State: domain.ActionStateActive,
|
2021-11-16 13:04:22 +00:00
|
|
|
Sequence: 20211115,
|
|
|
|
Name: "action-name",
|
|
|
|
Script: "script",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "prepareFlowQuery multiple actions",
|
|
|
|
prepare: prepareFlowQuery,
|
|
|
|
want: want{
|
|
|
|
sqlExpectations: mockQueries(
|
2022-03-23 08:02:39 +00:00
|
|
|
regexp.QuoteMeta(`SELECT projections.actions.id,`+
|
|
|
|
` projections.actions.creation_date,`+
|
|
|
|
` projections.actions.change_date,`+
|
|
|
|
` projections.actions.resource_owner,`+
|
|
|
|
` projections.actions.action_state,`+
|
|
|
|
` projections.actions.sequence,`+
|
|
|
|
` projections.actions.name,`+
|
|
|
|
` projections.actions.script,`+
|
|
|
|
` projections.flows_triggers.trigger_type,`+
|
|
|
|
` projections.flows_triggers.trigger_sequence,`+
|
|
|
|
` projections.flows_triggers.flow_type,`+
|
|
|
|
` projections.flows_triggers.change_date,`+
|
|
|
|
` projections.flows_triggers.sequence,`+
|
|
|
|
` projections.flows_triggers.resource_owner`+
|
|
|
|
` FROM projections.flows_triggers`+
|
|
|
|
` LEFT JOIN projections.actions ON projections.flows_triggers.action_id = projections.actions.id`),
|
2021-11-16 13:04:22 +00:00
|
|
|
[]string{
|
|
|
|
"id",
|
|
|
|
"creation_date",
|
|
|
|
"change_date",
|
|
|
|
"resource_owner",
|
2022-02-02 08:04:05 +00:00
|
|
|
"state",
|
2021-11-16 13:04:22 +00:00
|
|
|
"sequence",
|
|
|
|
"name",
|
|
|
|
"script",
|
2022-03-23 08:02:39 +00:00
|
|
|
//flow
|
2021-11-16 13:04:22 +00:00
|
|
|
"trigger_type",
|
|
|
|
"trigger_sequence",
|
|
|
|
"flow_type",
|
2022-03-23 08:02:39 +00:00
|
|
|
"change_date",
|
|
|
|
"sequence",
|
|
|
|
"resource_owner",
|
2021-11-16 13:04:22 +00:00
|
|
|
},
|
|
|
|
[][]driver.Value{
|
|
|
|
{
|
|
|
|
"action-id-pre",
|
|
|
|
testNow,
|
|
|
|
testNow,
|
|
|
|
"ro",
|
2022-02-02 08:04:05 +00:00
|
|
|
domain.ActionStateActive,
|
2021-11-16 13:04:22 +00:00
|
|
|
uint64(20211115),
|
|
|
|
"action-name-pre",
|
|
|
|
"script",
|
|
|
|
domain.TriggerTypePreCreation,
|
|
|
|
uint64(20211109),
|
|
|
|
domain.FlowTypeExternalAuthentication,
|
2022-03-23 08:02:39 +00:00
|
|
|
testNow,
|
|
|
|
uint64(20211115),
|
|
|
|
"owner",
|
2021-11-16 13:04:22 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"action-id-post",
|
|
|
|
testNow,
|
|
|
|
testNow,
|
|
|
|
"ro",
|
2022-02-02 08:04:05 +00:00
|
|
|
domain.ActionStateActive,
|
2021-11-16 13:04:22 +00:00
|
|
|
uint64(20211115),
|
|
|
|
"action-name-post",
|
|
|
|
"script",
|
|
|
|
domain.TriggerTypePostCreation,
|
|
|
|
uint64(20211109),
|
|
|
|
domain.FlowTypeExternalAuthentication,
|
2022-03-23 08:02:39 +00:00
|
|
|
testNow,
|
|
|
|
uint64(20211115),
|
|
|
|
"owner",
|
2021-11-16 13:04:22 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
),
|
|
|
|
},
|
|
|
|
object: &Flow{
|
2022-03-23 08:02:39 +00:00
|
|
|
ChangeDate: testNow,
|
|
|
|
ResourceOwner: "owner",
|
|
|
|
Sequence: 20211115,
|
|
|
|
Type: domain.FlowTypeExternalAuthentication,
|
2021-11-16 13:04:22 +00:00
|
|
|
TriggerActions: map[domain.TriggerType][]*Action{
|
|
|
|
domain.TriggerTypePreCreation: {
|
|
|
|
{
|
|
|
|
ID: "action-id-pre",
|
|
|
|
CreationDate: testNow,
|
|
|
|
ChangeDate: testNow,
|
|
|
|
ResourceOwner: "ro",
|
2022-02-02 08:04:05 +00:00
|
|
|
State: domain.ActionStateActive,
|
2021-11-16 13:04:22 +00:00
|
|
|
Sequence: 20211115,
|
|
|
|
Name: "action-name-pre",
|
|
|
|
Script: "script",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
domain.TriggerTypePostCreation: {
|
|
|
|
{
|
|
|
|
ID: "action-id-post",
|
|
|
|
CreationDate: testNow,
|
|
|
|
ChangeDate: testNow,
|
|
|
|
ResourceOwner: "ro",
|
2022-02-02 08:04:05 +00:00
|
|
|
State: domain.ActionStateActive,
|
2021-11-16 13:04:22 +00:00
|
|
|
Sequence: 20211115,
|
|
|
|
Name: "action-name-post",
|
|
|
|
Script: "script",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "prepareFlowQuery no action",
|
|
|
|
prepare: prepareFlowQuery,
|
|
|
|
want: want{
|
|
|
|
sqlExpectations: mockQueries(
|
2022-03-23 08:02:39 +00:00
|
|
|
regexp.QuoteMeta(`SELECT projections.actions.id,`+
|
|
|
|
` projections.actions.creation_date,`+
|
|
|
|
` projections.actions.change_date,`+
|
|
|
|
` projections.actions.resource_owner,`+
|
|
|
|
` projections.actions.action_state,`+
|
|
|
|
` projections.actions.sequence,`+
|
|
|
|
` projections.actions.name,`+
|
|
|
|
` projections.actions.script,`+
|
|
|
|
` projections.flows_triggers.trigger_type,`+
|
|
|
|
` projections.flows_triggers.trigger_sequence,`+
|
|
|
|
` projections.flows_triggers.flow_type,`+
|
|
|
|
` projections.flows_triggers.change_date,`+
|
|
|
|
` projections.flows_triggers.sequence,`+
|
|
|
|
` projections.flows_triggers.resource_owner`+
|
|
|
|
` FROM projections.flows_triggers`+
|
|
|
|
` LEFT JOIN projections.actions ON projections.flows_triggers.action_id = projections.actions.id`),
|
2021-11-16 13:04:22 +00:00
|
|
|
[]string{
|
|
|
|
"id",
|
|
|
|
"creation_date",
|
|
|
|
"change_date",
|
|
|
|
"resource_owner",
|
2022-02-02 08:04:05 +00:00
|
|
|
"state",
|
2021-11-16 13:04:22 +00:00
|
|
|
"sequence",
|
|
|
|
"name",
|
|
|
|
"script",
|
2022-03-23 08:02:39 +00:00
|
|
|
//flow
|
2021-11-16 13:04:22 +00:00
|
|
|
"trigger_type",
|
|
|
|
"trigger_sequence",
|
|
|
|
"flow_type",
|
2022-03-23 08:02:39 +00:00
|
|
|
"change_date",
|
|
|
|
"sequence",
|
|
|
|
"resource_owner",
|
2021-11-16 13:04:22 +00:00
|
|
|
},
|
|
|
|
[][]driver.Value{
|
|
|
|
{
|
|
|
|
nil,
|
|
|
|
nil,
|
|
|
|
nil,
|
|
|
|
nil,
|
|
|
|
nil,
|
|
|
|
nil,
|
|
|
|
nil,
|
2022-02-02 08:04:05 +00:00
|
|
|
nil,
|
2021-11-16 13:04:22 +00:00
|
|
|
domain.TriggerTypePostCreation,
|
|
|
|
uint64(20211109),
|
|
|
|
domain.FlowTypeExternalAuthentication,
|
2022-03-23 08:02:39 +00:00
|
|
|
testNow,
|
|
|
|
uint64(20211115),
|
|
|
|
"owner",
|
2021-11-16 13:04:22 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
),
|
|
|
|
},
|
|
|
|
object: &Flow{
|
2022-03-23 08:02:39 +00:00
|
|
|
ChangeDate: testNow,
|
|
|
|
ResourceOwner: "owner",
|
|
|
|
Sequence: 20211115,
|
2021-11-16 13:04:22 +00:00
|
|
|
Type: domain.FlowTypeExternalAuthentication,
|
|
|
|
TriggerActions: map[domain.TriggerType][]*Action{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "prepareFlowQuery sql err",
|
|
|
|
prepare: prepareFlowQuery,
|
|
|
|
want: want{
|
|
|
|
sqlExpectations: mockQueryErr(
|
2022-03-23 08:02:39 +00:00
|
|
|
regexp.QuoteMeta(`SELECT projections.actions.id,`+
|
|
|
|
` projections.actions.creation_date,`+
|
|
|
|
` projections.actions.change_date,`+
|
|
|
|
` projections.actions.resource_owner,`+
|
|
|
|
` projections.actions.action_state,`+
|
|
|
|
` projections.actions.sequence,`+
|
|
|
|
` projections.actions.name,`+
|
|
|
|
` projections.actions.script,`+
|
|
|
|
` projections.flows_triggers.trigger_type,`+
|
|
|
|
` projections.flows_triggers.trigger_sequence,`+
|
|
|
|
` projections.flows_triggers.flow_type,`+
|
|
|
|
` projections.flows_triggers.change_date,`+
|
|
|
|
` projections.flows_triggers.sequence,`+
|
|
|
|
` projections.flows_triggers.resource_owner`+
|
|
|
|
` FROM projections.flows_triggers`+
|
|
|
|
` LEFT JOIN projections.actions ON projections.flows_triggers.action_id = projections.actions.id`),
|
2021-11-16 13:04:22 +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
|
|
|
|
},
|
|
|
|
},
|
|
|
|
object: nil,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "prepareTriggerActionsQuery no result",
|
|
|
|
prepare: prepareTriggerActionsQuery,
|
|
|
|
want: want{
|
|
|
|
sqlExpectations: mockQueries(
|
2022-03-23 08:02:39 +00:00
|
|
|
regexp.QuoteMeta(`SELECT projections.actions.id,`+
|
|
|
|
` projections.actions.creation_date,`+
|
|
|
|
` projections.actions.change_date,`+
|
|
|
|
` projections.actions.resource_owner,`+
|
|
|
|
` projections.actions.action_state,`+
|
|
|
|
` projections.actions.sequence,`+
|
|
|
|
` projections.actions.name,`+
|
|
|
|
` projections.actions.script`+
|
|
|
|
` FROM projections.flows_triggers`+
|
|
|
|
` LEFT JOIN projections.actions ON projections.flows_triggers.action_id = projections.actions.id`),
|
2021-11-16 13:04:22 +00:00
|
|
|
nil,
|
|
|
|
nil,
|
|
|
|
),
|
|
|
|
},
|
|
|
|
object: []*Action{},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "prepareTriggerActionsQuery one result",
|
|
|
|
prepare: prepareTriggerActionsQuery,
|
|
|
|
want: want{
|
|
|
|
sqlExpectations: mockQueries(
|
2022-03-23 08:02:39 +00:00
|
|
|
regexp.QuoteMeta(`SELECT projections.actions.id,`+
|
|
|
|
` projections.actions.creation_date,`+
|
|
|
|
` projections.actions.change_date,`+
|
|
|
|
` projections.actions.resource_owner,`+
|
|
|
|
` projections.actions.action_state,`+
|
|
|
|
` projections.actions.sequence,`+
|
|
|
|
` projections.actions.name,`+
|
|
|
|
` projections.actions.script`+
|
|
|
|
` FROM projections.flows_triggers`+
|
|
|
|
` LEFT JOIN projections.actions ON projections.flows_triggers.action_id = projections.actions.id`),
|
2021-11-16 13:04:22 +00:00
|
|
|
[]string{
|
|
|
|
"id",
|
|
|
|
"creation_date",
|
|
|
|
"change_date",
|
|
|
|
"resource_owner",
|
2022-02-02 08:04:05 +00:00
|
|
|
"state",
|
2021-11-16 13:04:22 +00:00
|
|
|
"sequence",
|
|
|
|
"name",
|
|
|
|
"script",
|
|
|
|
},
|
|
|
|
[][]driver.Value{
|
|
|
|
{
|
|
|
|
"action-id",
|
|
|
|
testNow,
|
|
|
|
testNow,
|
|
|
|
"ro",
|
2022-02-02 08:04:05 +00:00
|
|
|
domain.AddressStateActive,
|
2021-11-16 13:04:22 +00:00
|
|
|
uint64(20211115),
|
|
|
|
"action-name",
|
|
|
|
"script",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
),
|
|
|
|
},
|
|
|
|
object: []*Action{
|
|
|
|
{
|
|
|
|
ID: "action-id",
|
|
|
|
CreationDate: testNow,
|
|
|
|
ChangeDate: testNow,
|
|
|
|
ResourceOwner: "ro",
|
2022-02-02 08:04:05 +00:00
|
|
|
State: domain.ActionStateActive,
|
2021-11-16 13:04:22 +00:00
|
|
|
Sequence: 20211115,
|
|
|
|
Name: "action-name",
|
|
|
|
Script: "script",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "prepareTriggerActionsQuery multiple results",
|
|
|
|
prepare: prepareTriggerActionsQuery,
|
|
|
|
want: want{
|
|
|
|
sqlExpectations: mockQueries(
|
2022-03-23 08:02:39 +00:00
|
|
|
regexp.QuoteMeta(`SELECT projections.actions.id,`+
|
|
|
|
` projections.actions.creation_date,`+
|
|
|
|
` projections.actions.change_date,`+
|
|
|
|
` projections.actions.resource_owner,`+
|
|
|
|
` projections.actions.action_state,`+
|
|
|
|
` projections.actions.sequence,`+
|
|
|
|
` projections.actions.name,`+
|
|
|
|
` projections.actions.script`+
|
|
|
|
` FROM projections.flows_triggers`+
|
|
|
|
` LEFT JOIN projections.actions ON projections.flows_triggers.action_id = projections.actions.id`),
|
2021-11-16 13:04:22 +00:00
|
|
|
[]string{
|
|
|
|
"id",
|
|
|
|
"creation_date",
|
|
|
|
"change_date",
|
|
|
|
"resource_owner",
|
2022-02-02 08:04:05 +00:00
|
|
|
"state",
|
2021-11-16 13:04:22 +00:00
|
|
|
"sequence",
|
|
|
|
"name",
|
|
|
|
"script",
|
|
|
|
},
|
|
|
|
[][]driver.Value{
|
|
|
|
{
|
|
|
|
"action-id-1",
|
|
|
|
testNow,
|
|
|
|
testNow,
|
|
|
|
"ro",
|
2022-02-02 08:04:05 +00:00
|
|
|
domain.AddressStateActive,
|
2021-11-16 13:04:22 +00:00
|
|
|
uint64(20211115),
|
|
|
|
"action-name-1",
|
|
|
|
"script",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"action-id-2",
|
|
|
|
testNow,
|
|
|
|
testNow,
|
|
|
|
"ro",
|
2022-02-02 08:04:05 +00:00
|
|
|
domain.ActionStateActive,
|
2021-11-16 13:04:22 +00:00
|
|
|
uint64(20211115),
|
|
|
|
"action-name-2",
|
|
|
|
"script",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
),
|
|
|
|
},
|
|
|
|
object: []*Action{
|
|
|
|
{
|
|
|
|
ID: "action-id-1",
|
|
|
|
CreationDate: testNow,
|
|
|
|
ChangeDate: testNow,
|
|
|
|
ResourceOwner: "ro",
|
2022-02-02 08:04:05 +00:00
|
|
|
State: domain.ActionStateActive,
|
2021-11-16 13:04:22 +00:00
|
|
|
Sequence: 20211115,
|
|
|
|
Name: "action-name-1",
|
|
|
|
Script: "script",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
ID: "action-id-2",
|
|
|
|
CreationDate: testNow,
|
|
|
|
ChangeDate: testNow,
|
|
|
|
ResourceOwner: "ro",
|
2022-02-02 08:04:05 +00:00
|
|
|
State: domain.ActionStateActive,
|
2021-11-16 13:04:22 +00:00
|
|
|
Sequence: 20211115,
|
|
|
|
Name: "action-name-2",
|
|
|
|
Script: "script",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "prepareTriggerActionsQuery sql err",
|
|
|
|
prepare: prepareTriggerActionsQuery,
|
|
|
|
want: want{
|
|
|
|
sqlExpectations: mockQueryErr(
|
2022-03-23 08:02:39 +00:00
|
|
|
regexp.QuoteMeta(`SELECT projections.actions.id,`+
|
|
|
|
` projections.actions.creation_date,`+
|
|
|
|
` projections.actions.change_date,`+
|
|
|
|
` projections.actions.resource_owner,`+
|
|
|
|
` projections.actions.action_state,`+
|
|
|
|
` projections.actions.sequence,`+
|
|
|
|
` projections.actions.name,`+
|
|
|
|
` projections.actions.script`+
|
|
|
|
` FROM projections.flows_triggers`+
|
|
|
|
` LEFT JOIN projections.actions ON projections.flows_triggers.action_id = projections.actions.id`),
|
2021-11-16 13:04:22 +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
|
|
|
|
},
|
|
|
|
},
|
|
|
|
object: nil,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "prepareFlowTypesQuery no result",
|
|
|
|
prepare: prepareFlowTypesQuery,
|
|
|
|
want: want{
|
|
|
|
sqlExpectations: mockQueries(
|
2022-03-23 08:02:39 +00:00
|
|
|
regexp.QuoteMeta(`SELECT projections.flows_triggers.flow_type`+
|
|
|
|
` FROM projections.flows_triggers`),
|
2021-11-16 13:04:22 +00:00
|
|
|
nil,
|
|
|
|
nil,
|
|
|
|
),
|
|
|
|
},
|
|
|
|
object: []domain.FlowType{},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "prepareFlowTypesQuery one result",
|
|
|
|
prepare: prepareFlowTypesQuery,
|
|
|
|
want: want{
|
|
|
|
sqlExpectations: mockQueries(
|
2022-03-23 08:02:39 +00:00
|
|
|
regexp.QuoteMeta(`SELECT projections.flows_triggers.flow_type`+
|
|
|
|
` FROM projections.flows_triggers`),
|
2021-11-16 13:04:22 +00:00
|
|
|
[]string{
|
|
|
|
"flow_type",
|
|
|
|
},
|
|
|
|
[][]driver.Value{
|
|
|
|
{
|
|
|
|
domain.FlowTypeExternalAuthentication,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
),
|
|
|
|
},
|
|
|
|
object: []domain.FlowType{
|
|
|
|
domain.FlowTypeExternalAuthentication,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "prepareFlowTypesQuery multiple results",
|
|
|
|
prepare: prepareFlowTypesQuery,
|
|
|
|
want: want{
|
|
|
|
sqlExpectations: mockQueries(
|
2022-03-23 08:02:39 +00:00
|
|
|
regexp.QuoteMeta(`SELECT projections.flows_triggers.flow_type`+
|
|
|
|
` FROM projections.flows_triggers`),
|
2021-11-16 13:04:22 +00:00
|
|
|
[]string{
|
|
|
|
"flow_type",
|
|
|
|
},
|
|
|
|
[][]driver.Value{
|
|
|
|
{
|
|
|
|
domain.FlowTypeExternalAuthentication,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
domain.FlowTypeUnspecified,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
),
|
|
|
|
},
|
|
|
|
object: []domain.FlowType{
|
|
|
|
domain.FlowTypeExternalAuthentication,
|
|
|
|
domain.FlowTypeUnspecified,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "prepareFlowTypesQuery sql err",
|
|
|
|
prepare: prepareFlowTypesQuery,
|
|
|
|
want: want{
|
|
|
|
sqlExpectations: mockQueryErr(
|
2022-03-23 08:02:39 +00:00
|
|
|
regexp.QuoteMeta(`SELECT projections.flows_triggers.flow_type`+
|
|
|
|
` FROM projections.flows_triggers`),
|
2021-11-16 13:04:22 +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
|
|
|
|
},
|
|
|
|
},
|
|
|
|
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)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|