mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 11:34:26 +00:00
2731099db3
* feat: add events for execution * feat: add events for execution and command side * feat: add events for execution and command side * feat: add api endpoints for set and delete executions with integration tests * feat: add integration and unit tests and more existence checks * feat: add integration and unit tests and more existence checks * feat: unit tests for includes in executions * feat: integration tests for includes in executions * fix: linting * fix: update internal/api/api.go Co-authored-by: Tim Möhlmann <tim+github@zitadel.com> * fix: update internal/command/command.go Co-authored-by: Tim Möhlmann <tim+github@zitadel.com> * fix: apply suggestions from code review Co-authored-by: Tim Möhlmann <tim+github@zitadel.com> * fix: change api return * fix: change aggregateID with prefix of execution type and add to documentation * fix: change body in proto for documentation and correct linting * fix: changed existing check to single query in separate writemodel * fix: linter changes and list endpoints for conditions in executions * fix: remove writemodel query on exeuction set as state before is irrelevant * fix: testing for exists write models and correction * fix: translations for errors and event types --------- Co-authored-by: Tim Möhlmann <tim+github@zitadel.com>
1281 lines
32 KiB
Go
1281 lines
32 KiB
Go
//go:build integration
|
|
|
|
package execution_test
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
"google.golang.org/protobuf/types/known/timestamppb"
|
|
|
|
"github.com/zitadel/zitadel/internal/integration"
|
|
execution "github.com/zitadel/zitadel/pkg/grpc/execution/v3alpha"
|
|
object "github.com/zitadel/zitadel/pkg/grpc/object/v2beta"
|
|
)
|
|
|
|
func TestServer_SetExecution_Request(t *testing.T) {
|
|
targetResp := Tester.CreateTarget(CTX, t)
|
|
|
|
tests := []struct {
|
|
name string
|
|
ctx context.Context
|
|
req *execution.SetExecutionRequest
|
|
want *execution.SetExecutionResponse
|
|
wantErr bool
|
|
}{
|
|
{
|
|
name: "missing permission",
|
|
ctx: Tester.WithAuthorization(context.Background(), integration.OrgOwner),
|
|
req: &execution.SetExecutionRequest{
|
|
Condition: &execution.SetConditions{
|
|
ConditionType: &execution.SetConditions_Request{
|
|
Request: &execution.SetRequestExecution{
|
|
Condition: &execution.SetRequestExecution_All{All: true},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
wantErr: true,
|
|
},
|
|
{
|
|
name: "no condition, error",
|
|
ctx: CTX,
|
|
req: &execution.SetExecutionRequest{
|
|
Condition: &execution.SetConditions{
|
|
ConditionType: &execution.SetConditions_Request{
|
|
Request: &execution.SetRequestExecution{},
|
|
},
|
|
},
|
|
Targets: []string{targetResp.GetId()},
|
|
},
|
|
wantErr: true,
|
|
},
|
|
{
|
|
name: "method, not existing",
|
|
ctx: CTX,
|
|
req: &execution.SetExecutionRequest{
|
|
Condition: &execution.SetConditions{
|
|
ConditionType: &execution.SetConditions_Request{
|
|
Request: &execution.SetRequestExecution{
|
|
Condition: &execution.SetRequestExecution_Method{
|
|
Method: "/zitadel.session.v2beta.NotExistingService/List",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
Targets: []string{targetResp.GetId()},
|
|
},
|
|
wantErr: true,
|
|
},
|
|
{
|
|
name: "method, ok",
|
|
ctx: CTX,
|
|
req: &execution.SetExecutionRequest{
|
|
Condition: &execution.SetConditions{
|
|
ConditionType: &execution.SetConditions_Request{
|
|
Request: &execution.SetRequestExecution{
|
|
Condition: &execution.SetRequestExecution_Method{
|
|
Method: "/zitadel.session.v2beta.SessionService/ListSessions",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
Targets: []string{targetResp.GetId()},
|
|
},
|
|
want: &execution.SetExecutionResponse{
|
|
Details: &object.Details{
|
|
ChangeDate: timestamppb.Now(),
|
|
ResourceOwner: Tester.Instance.InstanceID(),
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "service, not existing",
|
|
ctx: CTX,
|
|
req: &execution.SetExecutionRequest{
|
|
Condition: &execution.SetConditions{
|
|
ConditionType: &execution.SetConditions_Request{
|
|
Request: &execution.SetRequestExecution{
|
|
Condition: &execution.SetRequestExecution_Service{
|
|
Service: "NotExistingService",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
Targets: []string{targetResp.GetId()},
|
|
},
|
|
wantErr: true,
|
|
},
|
|
{
|
|
name: "service, ok",
|
|
ctx: CTX,
|
|
req: &execution.SetExecutionRequest{
|
|
Condition: &execution.SetConditions{
|
|
ConditionType: &execution.SetConditions_Request{
|
|
Request: &execution.SetRequestExecution{
|
|
Condition: &execution.SetRequestExecution_Service{
|
|
Service: "zitadel.session.v2beta.SessionService",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
Targets: []string{targetResp.GetId()},
|
|
},
|
|
want: &execution.SetExecutionResponse{
|
|
Details: &object.Details{
|
|
ChangeDate: timestamppb.Now(),
|
|
ResourceOwner: Tester.Instance.InstanceID(),
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "all, ok",
|
|
ctx: CTX,
|
|
req: &execution.SetExecutionRequest{
|
|
Condition: &execution.SetConditions{
|
|
ConditionType: &execution.SetConditions_Request{
|
|
Request: &execution.SetRequestExecution{
|
|
Condition: &execution.SetRequestExecution_All{
|
|
All: true,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
Targets: []string{targetResp.GetId()},
|
|
},
|
|
want: &execution.SetExecutionResponse{
|
|
Details: &object.Details{
|
|
ChangeDate: timestamppb.Now(),
|
|
ResourceOwner: Tester.Instance.InstanceID(),
|
|
},
|
|
},
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
got, err := Client.SetExecution(tt.ctx, tt.req)
|
|
if tt.wantErr {
|
|
require.Error(t, err)
|
|
return
|
|
}
|
|
require.NoError(t, err)
|
|
|
|
integration.AssertDetails(t, tt.want, got)
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestServer_SetExecution_Request_Include(t *testing.T) {
|
|
targetResp := Tester.CreateTarget(CTX, t)
|
|
executionCond := "request"
|
|
Tester.SetExecution(CTX, t,
|
|
&execution.SetConditions{
|
|
ConditionType: &execution.SetConditions_Request{
|
|
Request: &execution.SetRequestExecution{
|
|
Condition: &execution.SetRequestExecution_All{
|
|
All: true,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
[]string{targetResp.GetId()},
|
|
)
|
|
|
|
tests := []struct {
|
|
name string
|
|
ctx context.Context
|
|
req *execution.SetExecutionRequest
|
|
want *execution.SetExecutionResponse
|
|
wantErr bool
|
|
}{
|
|
{
|
|
name: "method, ok",
|
|
ctx: CTX,
|
|
req: &execution.SetExecutionRequest{
|
|
Condition: &execution.SetConditions{
|
|
ConditionType: &execution.SetConditions_Request{
|
|
Request: &execution.SetRequestExecution{
|
|
Condition: &execution.SetRequestExecution_Method{
|
|
Method: "/zitadel.session.v2beta.SessionService/ListSessions",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
Includes: []string{executionCond},
|
|
},
|
|
want: &execution.SetExecutionResponse{
|
|
Details: &object.Details{
|
|
ChangeDate: timestamppb.Now(),
|
|
ResourceOwner: Tester.Instance.InstanceID(),
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "service, ok",
|
|
ctx: CTX,
|
|
req: &execution.SetExecutionRequest{
|
|
Condition: &execution.SetConditions{
|
|
ConditionType: &execution.SetConditions_Request{
|
|
Request: &execution.SetRequestExecution{
|
|
Condition: &execution.SetRequestExecution_Service{
|
|
Service: "zitadel.session.v2beta.SessionService",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
Includes: []string{executionCond},
|
|
},
|
|
want: &execution.SetExecutionResponse{
|
|
Details: &object.Details{
|
|
ChangeDate: timestamppb.Now(),
|
|
ResourceOwner: Tester.Instance.InstanceID(),
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "all, ok",
|
|
ctx: CTX,
|
|
req: &execution.SetExecutionRequest{
|
|
Condition: &execution.SetConditions{
|
|
ConditionType: &execution.SetConditions_Request{
|
|
Request: &execution.SetRequestExecution{
|
|
Condition: &execution.SetRequestExecution_All{
|
|
All: true,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
Includes: []string{executionCond},
|
|
},
|
|
want: &execution.SetExecutionResponse{
|
|
Details: &object.Details{
|
|
ChangeDate: timestamppb.Now(),
|
|
ResourceOwner: Tester.Instance.InstanceID(),
|
|
},
|
|
},
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
got, err := Client.SetExecution(tt.ctx, tt.req)
|
|
if tt.wantErr {
|
|
require.Error(t, err)
|
|
return
|
|
}
|
|
require.NoError(t, err)
|
|
|
|
integration.AssertDetails(t, tt.want, got)
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestServer_DeleteExecution_Request(t *testing.T) {
|
|
targetResp := Tester.CreateTarget(CTX, t)
|
|
|
|
tests := []struct {
|
|
name string
|
|
ctx context.Context
|
|
dep func(ctx context.Context, request *execution.DeleteExecutionRequest) error
|
|
req *execution.DeleteExecutionRequest
|
|
want *execution.DeleteExecutionResponse
|
|
wantErr bool
|
|
}{
|
|
{
|
|
name: "missing permission",
|
|
ctx: Tester.WithAuthorization(context.Background(), integration.OrgOwner),
|
|
req: &execution.DeleteExecutionRequest{
|
|
Condition: &execution.SetConditions{
|
|
ConditionType: &execution.SetConditions_Request{
|
|
Request: &execution.SetRequestExecution{
|
|
Condition: &execution.SetRequestExecution_All{All: true},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
wantErr: true,
|
|
},
|
|
{
|
|
name: "no condition, error",
|
|
ctx: CTX,
|
|
req: &execution.DeleteExecutionRequest{
|
|
Condition: &execution.SetConditions{
|
|
ConditionType: &execution.SetConditions_Request{
|
|
Request: &execution.SetRequestExecution{},
|
|
},
|
|
},
|
|
},
|
|
wantErr: true,
|
|
},
|
|
{
|
|
name: "method, not existing",
|
|
ctx: CTX,
|
|
req: &execution.DeleteExecutionRequest{
|
|
Condition: &execution.SetConditions{
|
|
ConditionType: &execution.SetConditions_Request{
|
|
Request: &execution.SetRequestExecution{
|
|
Condition: &execution.SetRequestExecution_Method{
|
|
Method: "/zitadel.session.v2beta.SessionService/NotExisting",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
wantErr: true,
|
|
},
|
|
{
|
|
name: "method, ok",
|
|
ctx: CTX,
|
|
dep: func(ctx context.Context, request *execution.DeleteExecutionRequest) error {
|
|
Tester.SetExecution(ctx, t, request.GetCondition(), []string{targetResp.GetId()})
|
|
return nil
|
|
},
|
|
req: &execution.DeleteExecutionRequest{
|
|
Condition: &execution.SetConditions{
|
|
ConditionType: &execution.SetConditions_Request{
|
|
Request: &execution.SetRequestExecution{
|
|
Condition: &execution.SetRequestExecution_Method{
|
|
Method: "/zitadel.session.v2beta.SessionService/GetSession",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
want: &execution.DeleteExecutionResponse{
|
|
Details: &object.Details{
|
|
ChangeDate: timestamppb.Now(),
|
|
ResourceOwner: Tester.Instance.InstanceID(),
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "service, not existing",
|
|
ctx: CTX,
|
|
req: &execution.DeleteExecutionRequest{
|
|
Condition: &execution.SetConditions{
|
|
ConditionType: &execution.SetConditions_Request{
|
|
Request: &execution.SetRequestExecution{
|
|
Condition: &execution.SetRequestExecution_Service{
|
|
Service: "NotExistingService",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
wantErr: true,
|
|
},
|
|
{
|
|
name: "service, ok",
|
|
ctx: CTX,
|
|
dep: func(ctx context.Context, request *execution.DeleteExecutionRequest) error {
|
|
Tester.SetExecution(ctx, t, request.GetCondition(), []string{targetResp.GetId()})
|
|
return nil
|
|
},
|
|
req: &execution.DeleteExecutionRequest{
|
|
Condition: &execution.SetConditions{
|
|
ConditionType: &execution.SetConditions_Request{
|
|
Request: &execution.SetRequestExecution{
|
|
Condition: &execution.SetRequestExecution_Service{
|
|
Service: "zitadel.user.v2beta.UserService",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
want: &execution.DeleteExecutionResponse{
|
|
Details: &object.Details{
|
|
ChangeDate: timestamppb.Now(),
|
|
ResourceOwner: Tester.Instance.InstanceID(),
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "all, ok",
|
|
ctx: CTX,
|
|
dep: func(ctx context.Context, request *execution.DeleteExecutionRequest) error {
|
|
Tester.SetExecution(ctx, t, request.GetCondition(), []string{targetResp.GetId()})
|
|
return nil
|
|
},
|
|
req: &execution.DeleteExecutionRequest{
|
|
Condition: &execution.SetConditions{
|
|
ConditionType: &execution.SetConditions_Request{
|
|
Request: &execution.SetRequestExecution{
|
|
Condition: &execution.SetRequestExecution_All{
|
|
All: true,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
want: &execution.DeleteExecutionResponse{
|
|
Details: &object.Details{
|
|
ChangeDate: timestamppb.Now(),
|
|
ResourceOwner: Tester.Instance.InstanceID(),
|
|
},
|
|
},
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
if tt.dep != nil {
|
|
err := tt.dep(tt.ctx, tt.req)
|
|
require.NoError(t, err)
|
|
}
|
|
|
|
got, err := Client.DeleteExecution(tt.ctx, tt.req)
|
|
if tt.wantErr {
|
|
require.Error(t, err)
|
|
return
|
|
}
|
|
require.NoError(t, err)
|
|
|
|
integration.AssertDetails(t, tt.want, got)
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestServer_SetExecution_Response(t *testing.T) {
|
|
targetResp := Tester.CreateTarget(CTX, t)
|
|
|
|
tests := []struct {
|
|
name string
|
|
ctx context.Context
|
|
req *execution.SetExecutionRequest
|
|
want *execution.SetExecutionResponse
|
|
wantErr bool
|
|
}{
|
|
{
|
|
name: "missing permission",
|
|
ctx: Tester.WithAuthorization(context.Background(), integration.OrgOwner),
|
|
req: &execution.SetExecutionRequest{
|
|
Condition: &execution.SetConditions{
|
|
ConditionType: &execution.SetConditions_Response{
|
|
Response: &execution.SetResponseExecution{
|
|
Condition: &execution.SetResponseExecution_All{All: true},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
wantErr: true,
|
|
},
|
|
{
|
|
name: "no condition, error",
|
|
ctx: CTX,
|
|
req: &execution.SetExecutionRequest{
|
|
Condition: &execution.SetConditions{
|
|
ConditionType: &execution.SetConditions_Response{
|
|
Response: &execution.SetResponseExecution{},
|
|
},
|
|
},
|
|
Targets: []string{targetResp.GetId()},
|
|
},
|
|
wantErr: true,
|
|
},
|
|
{
|
|
name: "method, not existing",
|
|
ctx: CTX,
|
|
req: &execution.SetExecutionRequest{
|
|
Condition: &execution.SetConditions{
|
|
ConditionType: &execution.SetConditions_Response{
|
|
Response: &execution.SetResponseExecution{
|
|
Condition: &execution.SetResponseExecution_Method{
|
|
Method: "/zitadel.session.v2beta.NotExistingService/List",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
Targets: []string{targetResp.GetId()},
|
|
},
|
|
wantErr: true,
|
|
},
|
|
{
|
|
name: "method, ok",
|
|
ctx: CTX,
|
|
req: &execution.SetExecutionRequest{
|
|
Condition: &execution.SetConditions{
|
|
ConditionType: &execution.SetConditions_Response{
|
|
Response: &execution.SetResponseExecution{
|
|
Condition: &execution.SetResponseExecution_Method{
|
|
Method: "/zitadel.session.v2beta.SessionService/ListSessions",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
Targets: []string{targetResp.GetId()},
|
|
},
|
|
want: &execution.SetExecutionResponse{
|
|
Details: &object.Details{
|
|
ChangeDate: timestamppb.Now(),
|
|
ResourceOwner: Tester.Instance.InstanceID(),
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "service, not existing",
|
|
ctx: CTX,
|
|
req: &execution.SetExecutionRequest{
|
|
Condition: &execution.SetConditions{
|
|
ConditionType: &execution.SetConditions_Response{
|
|
Response: &execution.SetResponseExecution{
|
|
Condition: &execution.SetResponseExecution_Service{
|
|
Service: "NotExistingService",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
Targets: []string{targetResp.GetId()},
|
|
},
|
|
wantErr: true,
|
|
},
|
|
{
|
|
name: "service, ok",
|
|
ctx: CTX,
|
|
req: &execution.SetExecutionRequest{
|
|
Condition: &execution.SetConditions{
|
|
ConditionType: &execution.SetConditions_Response{
|
|
Response: &execution.SetResponseExecution{
|
|
Condition: &execution.SetResponseExecution_Service{
|
|
Service: "zitadel.session.v2beta.SessionService",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
Targets: []string{targetResp.GetId()},
|
|
},
|
|
want: &execution.SetExecutionResponse{
|
|
Details: &object.Details{
|
|
ChangeDate: timestamppb.Now(),
|
|
ResourceOwner: Tester.Instance.InstanceID(),
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "all, ok",
|
|
ctx: CTX,
|
|
req: &execution.SetExecutionRequest{
|
|
Condition: &execution.SetConditions{
|
|
ConditionType: &execution.SetConditions_Response{
|
|
Response: &execution.SetResponseExecution{
|
|
Condition: &execution.SetResponseExecution_All{
|
|
All: true,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
Targets: []string{targetResp.GetId()},
|
|
},
|
|
want: &execution.SetExecutionResponse{
|
|
Details: &object.Details{
|
|
ChangeDate: timestamppb.Now(),
|
|
ResourceOwner: Tester.Instance.InstanceID(),
|
|
},
|
|
},
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
got, err := Client.SetExecution(tt.ctx, tt.req)
|
|
if tt.wantErr {
|
|
require.Error(t, err)
|
|
return
|
|
}
|
|
require.NoError(t, err)
|
|
|
|
integration.AssertDetails(t, tt.want, got)
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestServer_DeleteExecution_Response(t *testing.T) {
|
|
targetResp := Tester.CreateTarget(CTX, t)
|
|
|
|
tests := []struct {
|
|
name string
|
|
ctx context.Context
|
|
dep func(ctx context.Context, request *execution.DeleteExecutionRequest) error
|
|
req *execution.DeleteExecutionRequest
|
|
want *execution.DeleteExecutionResponse
|
|
wantErr bool
|
|
}{
|
|
{
|
|
name: "missing permission",
|
|
ctx: Tester.WithAuthorization(context.Background(), integration.OrgOwner),
|
|
req: &execution.DeleteExecutionRequest{
|
|
Condition: &execution.SetConditions{
|
|
ConditionType: &execution.SetConditions_Response{
|
|
Response: &execution.SetResponseExecution{
|
|
Condition: &execution.SetResponseExecution_All{
|
|
All: true,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
wantErr: true,
|
|
},
|
|
{
|
|
name: "no condition, error",
|
|
ctx: CTX,
|
|
req: &execution.DeleteExecutionRequest{
|
|
Condition: &execution.SetConditions{
|
|
ConditionType: &execution.SetConditions_Response{
|
|
Response: &execution.SetResponseExecution{},
|
|
},
|
|
},
|
|
},
|
|
wantErr: true,
|
|
},
|
|
{
|
|
name: "method, not existing",
|
|
ctx: CTX,
|
|
req: &execution.DeleteExecutionRequest{
|
|
Condition: &execution.SetConditions{
|
|
ConditionType: &execution.SetConditions_Response{
|
|
Response: &execution.SetResponseExecution{
|
|
Condition: &execution.SetResponseExecution_Method{
|
|
Method: "/zitadel.session.v2beta.SessionService/NotExisting",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
wantErr: true,
|
|
},
|
|
{
|
|
name: "method, ok",
|
|
ctx: CTX,
|
|
dep: func(ctx context.Context, request *execution.DeleteExecutionRequest) error {
|
|
Tester.SetExecution(ctx, t, request.GetCondition(), []string{targetResp.GetId()})
|
|
return nil
|
|
},
|
|
req: &execution.DeleteExecutionRequest{
|
|
Condition: &execution.SetConditions{
|
|
ConditionType: &execution.SetConditions_Response{
|
|
Response: &execution.SetResponseExecution{
|
|
Condition: &execution.SetResponseExecution_Method{
|
|
Method: "/zitadel.session.v2beta.SessionService/GetSession",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
want: &execution.DeleteExecutionResponse{
|
|
Details: &object.Details{
|
|
ChangeDate: timestamppb.Now(),
|
|
ResourceOwner: Tester.Instance.InstanceID(),
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "service, not existing",
|
|
ctx: CTX,
|
|
req: &execution.DeleteExecutionRequest{
|
|
Condition: &execution.SetConditions{
|
|
ConditionType: &execution.SetConditions_Response{
|
|
Response: &execution.SetResponseExecution{
|
|
Condition: &execution.SetResponseExecution_Service{
|
|
Service: "NotExistingService",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
wantErr: true,
|
|
},
|
|
{
|
|
name: "service, ok",
|
|
ctx: CTX,
|
|
dep: func(ctx context.Context, request *execution.DeleteExecutionRequest) error {
|
|
Tester.SetExecution(ctx, t, request.GetCondition(), []string{targetResp.GetId()})
|
|
return nil
|
|
},
|
|
req: &execution.DeleteExecutionRequest{
|
|
Condition: &execution.SetConditions{
|
|
ConditionType: &execution.SetConditions_Response{
|
|
Response: &execution.SetResponseExecution{
|
|
Condition: &execution.SetResponseExecution_Service{
|
|
Service: "zitadel.user.v2beta.UserService",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
want: &execution.DeleteExecutionResponse{
|
|
Details: &object.Details{
|
|
ChangeDate: timestamppb.Now(),
|
|
ResourceOwner: Tester.Instance.InstanceID(),
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "all, ok",
|
|
ctx: CTX,
|
|
dep: func(ctx context.Context, request *execution.DeleteExecutionRequest) error {
|
|
Tester.SetExecution(ctx, t, request.GetCondition(), []string{targetResp.GetId()})
|
|
return nil
|
|
},
|
|
req: &execution.DeleteExecutionRequest{
|
|
Condition: &execution.SetConditions{
|
|
ConditionType: &execution.SetConditions_Response{
|
|
Response: &execution.SetResponseExecution{
|
|
Condition: &execution.SetResponseExecution_All{
|
|
All: true,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
want: &execution.DeleteExecutionResponse{
|
|
Details: &object.Details{
|
|
ChangeDate: timestamppb.Now(),
|
|
ResourceOwner: Tester.Instance.InstanceID(),
|
|
},
|
|
},
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
if tt.dep != nil {
|
|
err := tt.dep(tt.ctx, tt.req)
|
|
require.NoError(t, err)
|
|
}
|
|
|
|
got, err := Client.DeleteExecution(tt.ctx, tt.req)
|
|
if tt.wantErr {
|
|
require.Error(t, err)
|
|
return
|
|
}
|
|
require.NoError(t, err)
|
|
|
|
integration.AssertDetails(t, tt.want, got)
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestServer_SetExecution_Event(t *testing.T) {
|
|
targetResp := Tester.CreateTarget(CTX, t)
|
|
|
|
tests := []struct {
|
|
name string
|
|
ctx context.Context
|
|
req *execution.SetExecutionRequest
|
|
want *execution.SetExecutionResponse
|
|
wantErr bool
|
|
}{
|
|
{
|
|
name: "missing permission",
|
|
ctx: Tester.WithAuthorization(context.Background(), integration.OrgOwner),
|
|
req: &execution.SetExecutionRequest{
|
|
Condition: &execution.SetConditions{
|
|
ConditionType: &execution.SetConditions_Event{
|
|
Event: &execution.SetEventExecution{
|
|
Condition: &execution.SetEventExecution_All{
|
|
All: true,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
wantErr: true,
|
|
},
|
|
{
|
|
name: "no condition, error",
|
|
ctx: CTX,
|
|
req: &execution.SetExecutionRequest{
|
|
Condition: &execution.SetConditions{
|
|
ConditionType: &execution.SetConditions_Event{
|
|
Event: &execution.SetEventExecution{},
|
|
},
|
|
},
|
|
Targets: []string{targetResp.GetId()},
|
|
},
|
|
wantErr: true,
|
|
},
|
|
/*
|
|
//TODO event existing check
|
|
|
|
{
|
|
name: "event, not existing",
|
|
ctx: CTX,
|
|
req: &execution.SetExecutionRequest{
|
|
Condition: &execution.SetConditions{
|
|
ConditionType: &execution.SetConditions_Event{
|
|
Event: &execution.SetEventExecution{
|
|
Condition: &execution.SetEventExecution_Event{
|
|
Event: "xxx",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
Targets: []string{targetResp.GetId()},
|
|
},
|
|
wantErr: true,
|
|
},
|
|
*/
|
|
{
|
|
name: "event, ok",
|
|
ctx: CTX,
|
|
req: &execution.SetExecutionRequest{
|
|
Condition: &execution.SetConditions{
|
|
ConditionType: &execution.SetConditions_Event{
|
|
Event: &execution.SetEventExecution{
|
|
Condition: &execution.SetEventExecution_Event{
|
|
Event: "xxx",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
Targets: []string{targetResp.GetId()},
|
|
},
|
|
want: &execution.SetExecutionResponse{
|
|
Details: &object.Details{
|
|
ChangeDate: timestamppb.Now(),
|
|
ResourceOwner: Tester.Instance.InstanceID(),
|
|
},
|
|
},
|
|
},
|
|
/*
|
|
// TODO:
|
|
|
|
{
|
|
name: "group, not existing",
|
|
ctx: CTX,
|
|
req: &execution.SetExecutionRequest{
|
|
Condition: &execution.SetConditions{
|
|
ConditionType: &execution.SetConditions_Event{
|
|
Event: &execution.SetEventExecution{
|
|
Condition: &execution.SetEventExecution_Group{
|
|
Group: "xxx",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
Targets: []string{targetResp.GetId()},
|
|
},
|
|
wantErr: true,
|
|
},
|
|
*/
|
|
{
|
|
name: "group, ok",
|
|
ctx: CTX,
|
|
req: &execution.SetExecutionRequest{
|
|
Condition: &execution.SetConditions{
|
|
ConditionType: &execution.SetConditions_Event{
|
|
Event: &execution.SetEventExecution{
|
|
Condition: &execution.SetEventExecution_Group{
|
|
Group: "xxx",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
Targets: []string{targetResp.GetId()},
|
|
},
|
|
want: &execution.SetExecutionResponse{
|
|
Details: &object.Details{
|
|
ChangeDate: timestamppb.Now(),
|
|
ResourceOwner: Tester.Instance.InstanceID(),
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "all, ok",
|
|
ctx: CTX,
|
|
req: &execution.SetExecutionRequest{
|
|
Condition: &execution.SetConditions{
|
|
ConditionType: &execution.SetConditions_Event{
|
|
Event: &execution.SetEventExecution{
|
|
Condition: &execution.SetEventExecution_All{
|
|
All: true,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
Targets: []string{targetResp.GetId()},
|
|
},
|
|
want: &execution.SetExecutionResponse{
|
|
Details: &object.Details{
|
|
ChangeDate: timestamppb.Now(),
|
|
ResourceOwner: Tester.Instance.InstanceID(),
|
|
},
|
|
},
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
got, err := Client.SetExecution(tt.ctx, tt.req)
|
|
if tt.wantErr {
|
|
require.Error(t, err)
|
|
return
|
|
}
|
|
require.NoError(t, err)
|
|
|
|
integration.AssertDetails(t, tt.want, got)
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestServer_DeleteExecution_Event(t *testing.T) {
|
|
targetResp := Tester.CreateTarget(CTX, t)
|
|
|
|
tests := []struct {
|
|
name string
|
|
ctx context.Context
|
|
dep func(ctx context.Context, request *execution.DeleteExecutionRequest) error
|
|
req *execution.DeleteExecutionRequest
|
|
want *execution.DeleteExecutionResponse
|
|
wantErr bool
|
|
}{
|
|
{
|
|
name: "missing permission",
|
|
ctx: Tester.WithAuthorization(context.Background(), integration.OrgOwner),
|
|
req: &execution.DeleteExecutionRequest{
|
|
Condition: &execution.SetConditions{
|
|
ConditionType: &execution.SetConditions_Event{
|
|
Event: &execution.SetEventExecution{
|
|
Condition: &execution.SetEventExecution_All{
|
|
All: true,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
wantErr: true,
|
|
},
|
|
{
|
|
name: "no condition, error",
|
|
ctx: CTX,
|
|
req: &execution.DeleteExecutionRequest{
|
|
Condition: &execution.SetConditions{
|
|
ConditionType: &execution.SetConditions_Event{
|
|
Event: &execution.SetEventExecution{},
|
|
},
|
|
},
|
|
},
|
|
wantErr: true,
|
|
},
|
|
/*
|
|
//TODO: add when check is implemented
|
|
{
|
|
name: "event, not existing",
|
|
ctx: CTX,
|
|
req: &execution.DeleteExecutionRequest{
|
|
Condition: &execution.SetConditions{
|
|
ConditionType: &execution.SetConditions_Event{
|
|
Event: &execution.SetEventExecution{
|
|
Condition: &execution.SetEventExecution_Event{
|
|
Event: "xxx",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
wantErr: true,
|
|
},
|
|
*/
|
|
{
|
|
name: "event, ok",
|
|
ctx: CTX,
|
|
dep: func(ctx context.Context, request *execution.DeleteExecutionRequest) error {
|
|
Tester.SetExecution(ctx, t, request.GetCondition(), []string{targetResp.GetId()})
|
|
return nil
|
|
},
|
|
req: &execution.DeleteExecutionRequest{
|
|
Condition: &execution.SetConditions{
|
|
ConditionType: &execution.SetConditions_Event{
|
|
Event: &execution.SetEventExecution{
|
|
Condition: &execution.SetEventExecution_Event{
|
|
Event: "xxx",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
want: &execution.DeleteExecutionResponse{
|
|
Details: &object.Details{
|
|
ChangeDate: timestamppb.Now(),
|
|
ResourceOwner: Tester.Instance.InstanceID(),
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "group, not existing",
|
|
ctx: CTX,
|
|
req: &execution.DeleteExecutionRequest{
|
|
Condition: &execution.SetConditions{
|
|
ConditionType: &execution.SetConditions_Event{
|
|
Event: &execution.SetEventExecution{
|
|
Condition: &execution.SetEventExecution_Group{
|
|
Group: "xxx",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
wantErr: true,
|
|
},
|
|
{
|
|
name: "group, ok",
|
|
ctx: CTX,
|
|
dep: func(ctx context.Context, request *execution.DeleteExecutionRequest) error {
|
|
Tester.SetExecution(ctx, t, request.GetCondition(), []string{targetResp.GetId()})
|
|
return nil
|
|
},
|
|
req: &execution.DeleteExecutionRequest{
|
|
Condition: &execution.SetConditions{
|
|
ConditionType: &execution.SetConditions_Event{
|
|
Event: &execution.SetEventExecution{
|
|
Condition: &execution.SetEventExecution_Group{
|
|
Group: "xxx",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
want: &execution.DeleteExecutionResponse{
|
|
Details: &object.Details{
|
|
ChangeDate: timestamppb.Now(),
|
|
ResourceOwner: Tester.Instance.InstanceID(),
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "all, not existing",
|
|
ctx: CTX,
|
|
req: &execution.DeleteExecutionRequest{
|
|
Condition: &execution.SetConditions{
|
|
ConditionType: &execution.SetConditions_Event{
|
|
Event: &execution.SetEventExecution{
|
|
Condition: &execution.SetEventExecution_All{
|
|
All: true,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
want: &execution.DeleteExecutionResponse{
|
|
Details: &object.Details{
|
|
ChangeDate: timestamppb.Now(),
|
|
ResourceOwner: Tester.Instance.InstanceID(),
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "all, ok",
|
|
ctx: CTX,
|
|
dep: func(ctx context.Context, request *execution.DeleteExecutionRequest) error {
|
|
Tester.SetExecution(ctx, t, request.GetCondition(), []string{targetResp.GetId()})
|
|
return nil
|
|
},
|
|
req: &execution.DeleteExecutionRequest{
|
|
Condition: &execution.SetConditions{
|
|
ConditionType: &execution.SetConditions_Event{
|
|
Event: &execution.SetEventExecution{
|
|
Condition: &execution.SetEventExecution_All{
|
|
All: true,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
want: &execution.DeleteExecutionResponse{
|
|
Details: &object.Details{
|
|
ChangeDate: timestamppb.Now(),
|
|
ResourceOwner: Tester.Instance.InstanceID(),
|
|
},
|
|
},
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
if tt.dep != nil {
|
|
err := tt.dep(tt.ctx, tt.req)
|
|
require.NoError(t, err)
|
|
}
|
|
|
|
got, err := Client.DeleteExecution(tt.ctx, tt.req)
|
|
if tt.wantErr {
|
|
require.Error(t, err)
|
|
return
|
|
}
|
|
require.NoError(t, err)
|
|
|
|
integration.AssertDetails(t, tt.want, got)
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestServer_SetExecution_Function(t *testing.T) {
|
|
targetResp := Tester.CreateTarget(CTX, t)
|
|
|
|
tests := []struct {
|
|
name string
|
|
ctx context.Context
|
|
req *execution.SetExecutionRequest
|
|
want *execution.SetExecutionResponse
|
|
wantErr bool
|
|
}{
|
|
{
|
|
name: "missing permission",
|
|
ctx: Tester.WithAuthorization(context.Background(), integration.OrgOwner),
|
|
req: &execution.SetExecutionRequest{
|
|
Condition: &execution.SetConditions{
|
|
ConditionType: &execution.SetConditions_Response{
|
|
Response: &execution.SetResponseExecution{
|
|
Condition: &execution.SetResponseExecution_All{All: true},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
wantErr: true,
|
|
},
|
|
{
|
|
name: "no condition, error",
|
|
ctx: CTX,
|
|
req: &execution.SetExecutionRequest{
|
|
Condition: &execution.SetConditions{
|
|
ConditionType: &execution.SetConditions_Response{
|
|
Response: &execution.SetResponseExecution{},
|
|
},
|
|
},
|
|
Targets: []string{targetResp.GetId()},
|
|
},
|
|
wantErr: true,
|
|
},
|
|
{
|
|
name: "function, not existing",
|
|
ctx: CTX,
|
|
req: &execution.SetExecutionRequest{
|
|
Condition: &execution.SetConditions{
|
|
ConditionType: &execution.SetConditions_Function{
|
|
Function: "xxx",
|
|
},
|
|
},
|
|
Targets: []string{targetResp.GetId()},
|
|
},
|
|
wantErr: true,
|
|
},
|
|
{
|
|
name: "function, ok",
|
|
ctx: CTX,
|
|
req: &execution.SetExecutionRequest{
|
|
Condition: &execution.SetConditions{
|
|
ConditionType: &execution.SetConditions_Function{
|
|
Function: "Action.Flow.Type.ExternalAuthentication.Action.TriggerType.PostAuthentication",
|
|
},
|
|
},
|
|
Targets: []string{targetResp.GetId()},
|
|
},
|
|
want: &execution.SetExecutionResponse{
|
|
Details: &object.Details{
|
|
ChangeDate: timestamppb.Now(),
|
|
ResourceOwner: Tester.Instance.InstanceID(),
|
|
},
|
|
},
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
got, err := Client.SetExecution(tt.ctx, tt.req)
|
|
if tt.wantErr {
|
|
require.Error(t, err)
|
|
return
|
|
}
|
|
require.NoError(t, err)
|
|
|
|
integration.AssertDetails(t, tt.want, got)
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestServer_DeleteExecution_Function(t *testing.T) {
|
|
targetResp := Tester.CreateTarget(CTX, t)
|
|
|
|
tests := []struct {
|
|
name string
|
|
ctx context.Context
|
|
dep func(ctx context.Context, request *execution.DeleteExecutionRequest) error
|
|
req *execution.DeleteExecutionRequest
|
|
want *execution.DeleteExecutionResponse
|
|
wantErr bool
|
|
}{
|
|
{
|
|
name: "missing permission",
|
|
ctx: Tester.WithAuthorization(context.Background(), integration.OrgOwner),
|
|
req: &execution.DeleteExecutionRequest{
|
|
Condition: &execution.SetConditions{
|
|
ConditionType: &execution.SetConditions_Response{
|
|
Response: &execution.SetResponseExecution{
|
|
Condition: &execution.SetResponseExecution_All{
|
|
All: true,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
wantErr: true,
|
|
},
|
|
{
|
|
name: "no condition, error",
|
|
ctx: CTX,
|
|
req: &execution.DeleteExecutionRequest{
|
|
Condition: &execution.SetConditions{
|
|
ConditionType: &execution.SetConditions_Response{
|
|
Response: &execution.SetResponseExecution{},
|
|
},
|
|
},
|
|
},
|
|
wantErr: true,
|
|
},
|
|
{
|
|
name: "function, not existing",
|
|
ctx: CTX,
|
|
req: &execution.DeleteExecutionRequest{
|
|
Condition: &execution.SetConditions{
|
|
ConditionType: &execution.SetConditions_Function{
|
|
Function: "xxx",
|
|
},
|
|
},
|
|
},
|
|
wantErr: true,
|
|
},
|
|
{
|
|
name: "function, ok",
|
|
ctx: CTX,
|
|
dep: func(ctx context.Context, request *execution.DeleteExecutionRequest) error {
|
|
Tester.SetExecution(ctx, t, request.GetCondition(), []string{targetResp.GetId()})
|
|
return nil
|
|
},
|
|
req: &execution.DeleteExecutionRequest{
|
|
Condition: &execution.SetConditions{
|
|
ConditionType: &execution.SetConditions_Function{
|
|
Function: "Action.Flow.Type.ExternalAuthentication.Action.TriggerType.PostAuthentication",
|
|
},
|
|
},
|
|
},
|
|
want: &execution.DeleteExecutionResponse{
|
|
Details: &object.Details{
|
|
ChangeDate: timestamppb.Now(),
|
|
ResourceOwner: Tester.Instance.InstanceID(),
|
|
},
|
|
},
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
if tt.dep != nil {
|
|
err := tt.dep(tt.ctx, tt.req)
|
|
require.NoError(t, err)
|
|
}
|
|
|
|
got, err := Client.DeleteExecution(tt.ctx, tt.req)
|
|
if tt.wantErr {
|
|
require.Error(t, err)
|
|
return
|
|
}
|
|
require.NoError(t, err)
|
|
|
|
integration.AssertDetails(t, tt.want, got)
|
|
})
|
|
}
|
|
}
|