2021-11-02 07:26:34 +00:00
|
|
|
package projection
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
2022-08-31 07:52:43 +00:00
|
|
|
"github.com/zitadel/zitadel/internal/database"
|
2022-04-26 23:01:45 +00:00
|
|
|
"github.com/zitadel/zitadel/internal/domain"
|
|
|
|
"github.com/zitadel/zitadel/internal/errors"
|
|
|
|
"github.com/zitadel/zitadel/internal/eventstore"
|
|
|
|
"github.com/zitadel/zitadel/internal/eventstore/handler"
|
|
|
|
"github.com/zitadel/zitadel/internal/eventstore/repository"
|
2022-10-20 12:36:52 +00:00
|
|
|
"github.com/zitadel/zitadel/internal/repository/instance"
|
2022-11-30 16:01:17 +00:00
|
|
|
"github.com/zitadel/zitadel/internal/repository/org"
|
2022-04-26 23:01:45 +00:00
|
|
|
"github.com/zitadel/zitadel/internal/repository/project"
|
2021-11-02 07:26:34 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestAppProjection_reduces(t *testing.T) {
|
|
|
|
type args struct {
|
2022-01-03 08:19:07 +00:00
|
|
|
event func(t *testing.T) eventstore.Event
|
2021-11-02 07:26:34 +00:00
|
|
|
}
|
|
|
|
tests := []struct {
|
|
|
|
name string
|
|
|
|
args args
|
2022-01-03 08:19:07 +00:00
|
|
|
reduce func(event eventstore.Event) (*handler.Statement, error)
|
2021-11-02 07:26:34 +00:00
|
|
|
want wantReduce
|
|
|
|
}{
|
|
|
|
{
|
2022-11-10 10:59:33 +00:00
|
|
|
name: "project reduceAppAdded",
|
2021-11-02 07:26:34 +00:00
|
|
|
args: args{
|
|
|
|
event: getEvent(testEvent(
|
|
|
|
repository.EventType(project.ApplicationAddedType),
|
|
|
|
project.AggregateType,
|
|
|
|
[]byte(`{
|
|
|
|
"appId": "app-id",
|
|
|
|
"name": "my-app"
|
|
|
|
}`),
|
|
|
|
), project.ApplicationAddedEventMapper),
|
|
|
|
},
|
2022-06-14 05:51:00 +00:00
|
|
|
reduce: (&appProjection{}).reduceAppAdded,
|
2021-11-02 07:26:34 +00:00
|
|
|
want: wantReduce{
|
|
|
|
aggregateType: eventstore.AggregateType("project"),
|
|
|
|
sequence: 15,
|
|
|
|
previousSequence: 10,
|
|
|
|
executer: &testExecuter{
|
|
|
|
executions: []execution{
|
|
|
|
{
|
2022-11-30 16:01:17 +00:00
|
|
|
expectedStmt: "INSERT INTO projections.apps4 (id, name, project_id, creation_date, change_date, resource_owner, instance_id, state, sequence) VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9)",
|
2021-11-02 07:26:34 +00:00
|
|
|
expectedArgs: []interface{}{
|
|
|
|
"app-id",
|
|
|
|
"my-app",
|
|
|
|
"agg-id",
|
|
|
|
anyArg{},
|
|
|
|
anyArg{},
|
|
|
|
"ro-id",
|
2022-03-23 08:02:39 +00:00
|
|
|
"instance-id",
|
2021-11-02 07:26:34 +00:00
|
|
|
domain.AppStateActive,
|
|
|
|
uint64(15),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2022-11-10 10:59:33 +00:00
|
|
|
name: "project reduceAppChanged",
|
2021-11-02 07:26:34 +00:00
|
|
|
args: args{
|
|
|
|
event: getEvent(testEvent(
|
|
|
|
repository.EventType(project.ApplicationChangedType),
|
|
|
|
project.AggregateType,
|
|
|
|
[]byte(`{
|
|
|
|
"appId": "app-id",
|
|
|
|
"name": "my-app"
|
|
|
|
}`),
|
|
|
|
), project.ApplicationChangedEventMapper),
|
|
|
|
},
|
2022-06-14 05:51:00 +00:00
|
|
|
reduce: (&appProjection{}).reduceAppChanged,
|
2021-11-02 07:26:34 +00:00
|
|
|
want: wantReduce{
|
|
|
|
aggregateType: eventstore.AggregateType("project"),
|
|
|
|
sequence: 15,
|
|
|
|
previousSequence: 10,
|
|
|
|
executer: &testExecuter{
|
|
|
|
executions: []execution{
|
|
|
|
{
|
2022-11-30 16:01:17 +00:00
|
|
|
expectedStmt: "UPDATE projections.apps4 SET (name, change_date, sequence) = ($1, $2, $3) WHERE (id = $4) AND (instance_id = $5)",
|
2021-11-02 07:26:34 +00:00
|
|
|
expectedArgs: []interface{}{
|
|
|
|
"my-app",
|
|
|
|
anyArg{},
|
|
|
|
uint64(15),
|
|
|
|
"app-id",
|
2022-05-25 12:15:13 +00:00
|
|
|
"instance-id",
|
2021-11-02 07:26:34 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2022-11-10 10:59:33 +00:00
|
|
|
name: "project reduceAppDeactivated",
|
2021-11-02 07:26:34 +00:00
|
|
|
args: args{
|
|
|
|
event: getEvent(testEvent(
|
|
|
|
repository.EventType(project.ApplicationDeactivatedType),
|
|
|
|
project.AggregateType,
|
|
|
|
[]byte(`{
|
|
|
|
"appId": "app-id"
|
|
|
|
}`),
|
|
|
|
), project.ApplicationDeactivatedEventMapper),
|
|
|
|
},
|
2022-06-14 05:51:00 +00:00
|
|
|
reduce: (&appProjection{}).reduceAppDeactivated,
|
2021-11-02 07:26:34 +00:00
|
|
|
want: wantReduce{
|
|
|
|
aggregateType: eventstore.AggregateType("project"),
|
|
|
|
sequence: 15,
|
|
|
|
previousSequence: 10,
|
|
|
|
executer: &testExecuter{
|
|
|
|
executions: []execution{
|
|
|
|
{
|
2022-11-30 16:01:17 +00:00
|
|
|
expectedStmt: "UPDATE projections.apps4 SET (state, change_date, sequence) = ($1, $2, $3) WHERE (id = $4) AND (instance_id = $5)",
|
2021-11-02 07:26:34 +00:00
|
|
|
expectedArgs: []interface{}{
|
|
|
|
domain.AppStateInactive,
|
|
|
|
anyArg{},
|
|
|
|
uint64(15),
|
|
|
|
"app-id",
|
2022-05-25 12:15:13 +00:00
|
|
|
"instance-id",
|
2021-11-02 07:26:34 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2022-11-10 10:59:33 +00:00
|
|
|
name: "project reduceAppReactivated",
|
2021-11-02 07:26:34 +00:00
|
|
|
args: args{
|
|
|
|
event: getEvent(testEvent(
|
|
|
|
repository.EventType(project.ApplicationReactivatedType),
|
|
|
|
project.AggregateType,
|
|
|
|
[]byte(`{
|
|
|
|
"appId": "app-id"
|
|
|
|
}`),
|
|
|
|
), project.ApplicationReactivatedEventMapper),
|
|
|
|
},
|
2022-06-14 05:51:00 +00:00
|
|
|
reduce: (&appProjection{}).reduceAppReactivated,
|
2021-11-02 07:26:34 +00:00
|
|
|
want: wantReduce{
|
|
|
|
aggregateType: eventstore.AggregateType("project"),
|
|
|
|
sequence: 15,
|
|
|
|
previousSequence: 10,
|
|
|
|
executer: &testExecuter{
|
|
|
|
executions: []execution{
|
|
|
|
{
|
2022-11-30 16:01:17 +00:00
|
|
|
expectedStmt: "UPDATE projections.apps4 SET (state, change_date, sequence) = ($1, $2, $3) WHERE (id = $4) AND (instance_id = $5)",
|
2021-11-02 07:26:34 +00:00
|
|
|
expectedArgs: []interface{}{
|
|
|
|
domain.AppStateActive,
|
|
|
|
anyArg{},
|
|
|
|
uint64(15),
|
|
|
|
"app-id",
|
2022-05-25 12:15:13 +00:00
|
|
|
"instance-id",
|
2021-11-02 07:26:34 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2022-11-10 10:59:33 +00:00
|
|
|
name: "project reduceAppRemoved",
|
2021-11-02 07:26:34 +00:00
|
|
|
args: args{
|
|
|
|
event: getEvent(testEvent(
|
|
|
|
repository.EventType(project.ApplicationRemovedType),
|
|
|
|
project.AggregateType,
|
|
|
|
[]byte(`{
|
|
|
|
"appId": "app-id"
|
|
|
|
}`),
|
|
|
|
), project.ApplicationRemovedEventMapper),
|
|
|
|
},
|
2022-06-14 05:51:00 +00:00
|
|
|
reduce: (&appProjection{}).reduceAppRemoved,
|
2021-11-02 07:26:34 +00:00
|
|
|
want: wantReduce{
|
|
|
|
aggregateType: eventstore.AggregateType("project"),
|
|
|
|
sequence: 15,
|
|
|
|
previousSequence: 10,
|
|
|
|
executer: &testExecuter{
|
|
|
|
executions: []execution{
|
|
|
|
{
|
2022-11-30 16:01:17 +00:00
|
|
|
expectedStmt: "DELETE FROM projections.apps4 WHERE (id = $1) AND (instance_id = $2)",
|
2021-11-02 07:26:34 +00:00
|
|
|
expectedArgs: []interface{}{
|
|
|
|
"app-id",
|
2022-05-25 12:15:13 +00:00
|
|
|
"instance-id",
|
2021-11-02 07:26:34 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-12-02 14:07:45 +00:00
|
|
|
{
|
2022-11-10 10:59:33 +00:00
|
|
|
name: "project reduceProjectRemoved",
|
2021-12-02 14:07:45 +00:00
|
|
|
args: args{
|
|
|
|
event: getEvent(testEvent(
|
|
|
|
repository.EventType(project.ProjectRemovedType),
|
|
|
|
project.AggregateType,
|
|
|
|
[]byte(`{}`),
|
|
|
|
), project.ProjectRemovedEventMapper),
|
|
|
|
},
|
2022-06-14 05:51:00 +00:00
|
|
|
reduce: (&appProjection{}).reduceProjectRemoved,
|
2021-12-02 14:07:45 +00:00
|
|
|
want: wantReduce{
|
|
|
|
aggregateType: eventstore.AggregateType("project"),
|
|
|
|
sequence: 15,
|
|
|
|
previousSequence: 10,
|
|
|
|
executer: &testExecuter{
|
|
|
|
executions: []execution{
|
|
|
|
{
|
2022-11-30 16:01:17 +00:00
|
|
|
expectedStmt: "DELETE FROM projections.apps4 WHERE (project_id = $1) AND (instance_id = $2)",
|
2021-12-02 14:07:45 +00:00
|
|
|
expectedArgs: []interface{}{
|
|
|
|
"agg-id",
|
2022-05-25 12:15:13 +00:00
|
|
|
"instance-id",
|
2021-12-02 14:07:45 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2022-10-20 12:36:52 +00:00
|
|
|
{
|
2022-11-10 10:59:33 +00:00
|
|
|
name: "instance reduceInstanceRemoved",
|
2022-10-20 12:36:52 +00:00
|
|
|
args: args{
|
|
|
|
event: getEvent(testEvent(
|
|
|
|
repository.EventType(instance.InstanceRemovedEventType),
|
|
|
|
instance.AggregateType,
|
2022-10-26 13:06:48 +00:00
|
|
|
nil,
|
2022-10-20 12:36:52 +00:00
|
|
|
), instance.InstanceRemovedEventMapper),
|
|
|
|
},
|
|
|
|
reduce: reduceInstanceRemovedHelper(AppColumnInstanceID),
|
|
|
|
want: wantReduce{
|
|
|
|
aggregateType: eventstore.AggregateType("instance"),
|
|
|
|
sequence: 15,
|
|
|
|
previousSequence: 10,
|
|
|
|
executer: &testExecuter{
|
|
|
|
executions: []execution{
|
|
|
|
{
|
2022-11-30 16:01:17 +00:00
|
|
|
expectedStmt: "DELETE FROM projections.apps4 WHERE (instance_id = $1)",
|
2022-10-20 12:36:52 +00:00
|
|
|
expectedArgs: []interface{}{
|
|
|
|
"agg-id",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-11-02 07:26:34 +00:00
|
|
|
{
|
2022-11-10 10:59:33 +00:00
|
|
|
name: "project reduceAPIConfigAdded",
|
2021-11-02 07:26:34 +00:00
|
|
|
args: args{
|
|
|
|
event: getEvent(testEvent(
|
|
|
|
repository.EventType(project.APIConfigAddedType),
|
|
|
|
project.AggregateType,
|
|
|
|
[]byte(`{
|
|
|
|
"appId": "app-id",
|
|
|
|
"clientId": "client-id",
|
|
|
|
"clientSecret": {},
|
|
|
|
"authMethodType": 1
|
|
|
|
}`),
|
|
|
|
), project.APIConfigAddedEventMapper),
|
|
|
|
},
|
2022-06-14 05:51:00 +00:00
|
|
|
reduce: (&appProjection{}).reduceAPIConfigAdded,
|
2021-11-02 07:26:34 +00:00
|
|
|
want: wantReduce{
|
|
|
|
aggregateType: eventstore.AggregateType("project"),
|
|
|
|
sequence: 15,
|
|
|
|
previousSequence: 10,
|
|
|
|
executer: &testExecuter{
|
|
|
|
executions: []execution{
|
|
|
|
{
|
2022-11-30 16:01:17 +00:00
|
|
|
expectedStmt: "INSERT INTO projections.apps4_api_configs (app_id, instance_id, client_id, client_secret, auth_method) VALUES ($1, $2, $3, $4, $5)",
|
2021-11-02 07:26:34 +00:00
|
|
|
expectedArgs: []interface{}{
|
|
|
|
"app-id",
|
2022-05-25 12:15:13 +00:00
|
|
|
"instance-id",
|
2021-11-02 07:26:34 +00:00
|
|
|
"client-id",
|
|
|
|
anyArg{},
|
|
|
|
domain.APIAuthMethodTypePrivateKeyJWT,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2022-11-30 16:01:17 +00:00
|
|
|
expectedStmt: "UPDATE projections.apps4 SET (change_date, sequence) = ($1, $2) WHERE (id = $3) AND (instance_id = $4)",
|
2021-11-02 07:26:34 +00:00
|
|
|
expectedArgs: []interface{}{
|
|
|
|
anyArg{},
|
|
|
|
uint64(15),
|
|
|
|
"app-id",
|
2022-05-25 12:15:13 +00:00
|
|
|
"instance-id",
|
2021-11-02 07:26:34 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2022-11-10 10:59:33 +00:00
|
|
|
name: "project reduceAPIConfigChanged",
|
2021-11-02 07:26:34 +00:00
|
|
|
args: args{
|
|
|
|
event: getEvent(testEvent(
|
|
|
|
repository.EventType(project.APIConfigChangedType),
|
|
|
|
project.AggregateType,
|
|
|
|
[]byte(`{
|
|
|
|
"appId": "app-id",
|
|
|
|
"clientId": "client-id",
|
|
|
|
"clientSecret": {},
|
|
|
|
"authMethodType": 1
|
|
|
|
}`),
|
|
|
|
), project.APIConfigChangedEventMapper),
|
|
|
|
},
|
2022-06-14 05:51:00 +00:00
|
|
|
reduce: (&appProjection{}).reduceAPIConfigChanged,
|
2021-11-02 07:26:34 +00:00
|
|
|
want: wantReduce{
|
|
|
|
aggregateType: eventstore.AggregateType("project"),
|
|
|
|
sequence: 15,
|
|
|
|
previousSequence: 10,
|
|
|
|
executer: &testExecuter{
|
|
|
|
executions: []execution{
|
|
|
|
{
|
2022-11-30 16:01:17 +00:00
|
|
|
expectedStmt: "UPDATE projections.apps4_api_configs SET (client_secret, auth_method) = ($1, $2) WHERE (app_id = $3) AND (instance_id = $4)",
|
2021-11-02 07:26:34 +00:00
|
|
|
expectedArgs: []interface{}{
|
|
|
|
anyArg{},
|
|
|
|
domain.APIAuthMethodTypePrivateKeyJWT,
|
|
|
|
"app-id",
|
2022-05-25 12:15:13 +00:00
|
|
|
"instance-id",
|
2021-11-02 07:26:34 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2022-11-30 16:01:17 +00:00
|
|
|
expectedStmt: "UPDATE projections.apps4 SET (change_date, sequence) = ($1, $2) WHERE (id = $3) AND (instance_id = $4)",
|
2021-11-02 07:26:34 +00:00
|
|
|
expectedArgs: []interface{}{
|
|
|
|
anyArg{},
|
|
|
|
uint64(15),
|
|
|
|
"app-id",
|
2022-05-25 12:15:13 +00:00
|
|
|
"instance-id",
|
2021-11-02 07:26:34 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2022-11-10 10:59:33 +00:00
|
|
|
name: "project reduceAPIConfigChanged noop",
|
2021-11-02 07:26:34 +00:00
|
|
|
args: args{
|
|
|
|
event: getEvent(testEvent(
|
|
|
|
repository.EventType(project.APIConfigChangedType),
|
|
|
|
project.AggregateType,
|
|
|
|
[]byte(`{
|
|
|
|
"appId": "app-id"
|
|
|
|
}`),
|
|
|
|
), project.APIConfigChangedEventMapper),
|
|
|
|
},
|
2022-06-14 05:51:00 +00:00
|
|
|
reduce: (&appProjection{}).reduceAPIConfigChanged,
|
2021-11-02 07:26:34 +00:00
|
|
|
want: wantReduce{
|
|
|
|
aggregateType: eventstore.AggregateType("project"),
|
|
|
|
sequence: 15,
|
|
|
|
previousSequence: 10,
|
|
|
|
executer: &testExecuter{
|
|
|
|
executions: []execution{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2022-11-10 10:59:33 +00:00
|
|
|
name: "project reduceAPIConfigSecretChanged",
|
2021-11-02 07:26:34 +00:00
|
|
|
args: args{
|
|
|
|
event: getEvent(testEvent(
|
|
|
|
repository.EventType(project.APIConfigSecretChangedType),
|
|
|
|
project.AggregateType,
|
|
|
|
[]byte(`{
|
|
|
|
"appId": "app-id",
|
|
|
|
"client_secret": {}
|
|
|
|
}`),
|
|
|
|
), project.APIConfigSecretChangedEventMapper),
|
|
|
|
},
|
2022-06-14 05:51:00 +00:00
|
|
|
reduce: (&appProjection{}).reduceAPIConfigSecretChanged,
|
2021-11-02 07:26:34 +00:00
|
|
|
want: wantReduce{
|
|
|
|
aggregateType: eventstore.AggregateType("project"),
|
|
|
|
sequence: 15,
|
|
|
|
previousSequence: 10,
|
|
|
|
executer: &testExecuter{
|
|
|
|
executions: []execution{
|
|
|
|
{
|
2022-11-30 16:01:17 +00:00
|
|
|
expectedStmt: "UPDATE projections.apps4_api_configs SET client_secret = $1 WHERE (app_id = $2) AND (instance_id = $3)",
|
2021-11-02 07:26:34 +00:00
|
|
|
expectedArgs: []interface{}{
|
|
|
|
anyArg{},
|
|
|
|
"app-id",
|
2022-05-25 12:15:13 +00:00
|
|
|
"instance-id",
|
2021-11-02 07:26:34 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2022-11-30 16:01:17 +00:00
|
|
|
expectedStmt: "UPDATE projections.apps4 SET (change_date, sequence) = ($1, $2) WHERE (id = $3) AND (instance_id = $4)",
|
2021-11-02 07:26:34 +00:00
|
|
|
expectedArgs: []interface{}{
|
|
|
|
anyArg{},
|
|
|
|
uint64(15),
|
|
|
|
"app-id",
|
2022-05-25 12:15:13 +00:00
|
|
|
"instance-id",
|
2021-11-02 07:26:34 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2022-11-10 10:59:33 +00:00
|
|
|
name: "project reduceOIDCConfigAdded",
|
2021-11-02 07:26:34 +00:00
|
|
|
args: args{
|
|
|
|
event: getEvent(testEvent(
|
|
|
|
repository.EventType(project.OIDCConfigAddedType),
|
|
|
|
project.AggregateType,
|
|
|
|
[]byte(`{
|
|
|
|
"oidcVersion": 0,
|
|
|
|
"appId": "app-id",
|
|
|
|
"clientId": "client-id",
|
|
|
|
"clientSecret": {},
|
|
|
|
"redirectUris": ["redirect.one.ch", "redirect.two.ch"],
|
|
|
|
"responseTypes": [1,2],
|
|
|
|
"grantTypes": [1,2],
|
|
|
|
"applicationType": 2,
|
|
|
|
"authMethodType": 2,
|
|
|
|
"postLogoutRedirectUris": ["logout.one.ch", "logout.two.ch"],
|
|
|
|
"devMode": true,
|
|
|
|
"accessTokenType": 1,
|
|
|
|
"accessTokenRoleAssertion": true,
|
|
|
|
"idTokenRoleAssertion": true,
|
|
|
|
"idTokenUserinfoAssertion": true,
|
|
|
|
"clockSkew": 1000,
|
|
|
|
"additionalOrigins": ["origin.one.ch", "origin.two.ch"]
|
|
|
|
}`),
|
|
|
|
), project.OIDCConfigAddedEventMapper),
|
|
|
|
},
|
2022-06-14 05:51:00 +00:00
|
|
|
reduce: (&appProjection{}).reduceOIDCConfigAdded,
|
2021-11-02 07:26:34 +00:00
|
|
|
want: wantReduce{
|
|
|
|
aggregateType: eventstore.AggregateType("project"),
|
|
|
|
sequence: 15,
|
|
|
|
previousSequence: 10,
|
|
|
|
executer: &testExecuter{
|
|
|
|
executions: []execution{
|
|
|
|
{
|
2022-11-30 16:01:17 +00:00
|
|
|
expectedStmt: "INSERT INTO projections.apps4_oidc_configs (app_id, instance_id, version, client_id, client_secret, redirect_uris, response_types, grant_types, application_type, auth_method_type, post_logout_redirect_uris, is_dev_mode, access_token_type, access_token_role_assertion, id_token_role_assertion, id_token_userinfo_assertion, clock_skew, additional_origins) VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18)",
|
2021-11-02 07:26:34 +00:00
|
|
|
expectedArgs: []interface{}{
|
|
|
|
"app-id",
|
2022-05-25 12:15:13 +00:00
|
|
|
"instance-id",
|
2021-11-02 07:26:34 +00:00
|
|
|
domain.OIDCVersionV1,
|
|
|
|
"client-id",
|
|
|
|
anyArg{},
|
2022-08-31 07:52:43 +00:00
|
|
|
database.StringArray{"redirect.one.ch", "redirect.two.ch"},
|
|
|
|
database.EnumArray[domain.OIDCResponseType]{1, 2},
|
|
|
|
database.EnumArray[domain.OIDCGrantType]{1, 2},
|
2021-11-02 07:26:34 +00:00
|
|
|
domain.OIDCApplicationTypeNative,
|
|
|
|
domain.OIDCAuthMethodTypeNone,
|
2022-08-31 07:52:43 +00:00
|
|
|
database.StringArray{"logout.one.ch", "logout.two.ch"},
|
2021-11-02 07:26:34 +00:00
|
|
|
true,
|
|
|
|
domain.OIDCTokenTypeJWT,
|
|
|
|
true,
|
|
|
|
true,
|
|
|
|
true,
|
|
|
|
1 * time.Microsecond,
|
2022-08-31 07:52:43 +00:00
|
|
|
database.StringArray{"origin.one.ch", "origin.two.ch"},
|
2021-11-02 07:26:34 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2022-11-30 16:01:17 +00:00
|
|
|
expectedStmt: "UPDATE projections.apps4 SET (change_date, sequence) = ($1, $2) WHERE (id = $3) AND (instance_id = $4)",
|
2021-11-02 07:26:34 +00:00
|
|
|
expectedArgs: []interface{}{
|
|
|
|
anyArg{},
|
|
|
|
uint64(15),
|
|
|
|
"app-id",
|
2022-05-25 12:15:13 +00:00
|
|
|
"instance-id",
|
2021-11-02 07:26:34 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2022-11-10 10:59:33 +00:00
|
|
|
name: "project reduceOIDCConfigChanged",
|
2021-11-02 07:26:34 +00:00
|
|
|
args: args{
|
|
|
|
event: getEvent(testEvent(
|
|
|
|
repository.EventType(project.OIDCConfigChangedType),
|
|
|
|
project.AggregateType,
|
|
|
|
[]byte(`{
|
|
|
|
"oidcVersion": 0,
|
|
|
|
"appId": "app-id",
|
|
|
|
"redirectUris": ["redirect.one.ch", "redirect.two.ch"],
|
|
|
|
"responseTypes": [1,2],
|
|
|
|
"grantTypes": [1,2],
|
|
|
|
"applicationType": 2,
|
|
|
|
"authMethodType": 2,
|
|
|
|
"postLogoutRedirectUris": ["logout.one.ch", "logout.two.ch"],
|
|
|
|
"devMode": true,
|
|
|
|
"accessTokenType": 1,
|
|
|
|
"accessTokenRoleAssertion": true,
|
|
|
|
"idTokenRoleAssertion": true,
|
|
|
|
"idTokenUserinfoAssertion": true,
|
|
|
|
"clockSkew": 1000,
|
|
|
|
"additionalOrigins": ["origin.one.ch", "origin.two.ch"]
|
|
|
|
}`),
|
|
|
|
), project.OIDCConfigChangedEventMapper),
|
|
|
|
},
|
2022-06-14 05:51:00 +00:00
|
|
|
reduce: (&appProjection{}).reduceOIDCConfigChanged,
|
2021-11-02 07:26:34 +00:00
|
|
|
want: wantReduce{
|
|
|
|
aggregateType: eventstore.AggregateType("project"),
|
|
|
|
sequence: 15,
|
|
|
|
previousSequence: 10,
|
|
|
|
executer: &testExecuter{
|
|
|
|
executions: []execution{
|
|
|
|
{
|
2022-11-30 16:01:17 +00:00
|
|
|
expectedStmt: "UPDATE projections.apps4_oidc_configs SET (version, redirect_uris, response_types, grant_types, application_type, auth_method_type, post_logout_redirect_uris, is_dev_mode, access_token_type, access_token_role_assertion, id_token_role_assertion, id_token_userinfo_assertion, clock_skew, additional_origins) = ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14) WHERE (app_id = $15) AND (instance_id = $16)",
|
2021-11-02 07:26:34 +00:00
|
|
|
expectedArgs: []interface{}{
|
|
|
|
domain.OIDCVersionV1,
|
2022-08-31 07:52:43 +00:00
|
|
|
database.StringArray{"redirect.one.ch", "redirect.two.ch"},
|
|
|
|
database.EnumArray[domain.OIDCResponseType]{1, 2},
|
|
|
|
database.EnumArray[domain.OIDCGrantType]{1, 2},
|
2021-11-02 07:26:34 +00:00
|
|
|
domain.OIDCApplicationTypeNative,
|
|
|
|
domain.OIDCAuthMethodTypeNone,
|
2022-08-31 07:52:43 +00:00
|
|
|
database.StringArray{"logout.one.ch", "logout.two.ch"},
|
2021-11-02 07:26:34 +00:00
|
|
|
true,
|
|
|
|
domain.OIDCTokenTypeJWT,
|
|
|
|
true,
|
|
|
|
true,
|
|
|
|
true,
|
|
|
|
1 * time.Microsecond,
|
2022-08-31 07:52:43 +00:00
|
|
|
database.StringArray{"origin.one.ch", "origin.two.ch"},
|
2021-11-02 07:26:34 +00:00
|
|
|
"app-id",
|
2022-05-25 12:15:13 +00:00
|
|
|
"instance-id",
|
2021-11-02 07:26:34 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2022-11-30 16:01:17 +00:00
|
|
|
expectedStmt: "UPDATE projections.apps4 SET (change_date, sequence) = ($1, $2) WHERE (id = $3) AND (instance_id = $4)",
|
2021-11-02 07:26:34 +00:00
|
|
|
expectedArgs: []interface{}{
|
|
|
|
anyArg{},
|
|
|
|
uint64(15),
|
|
|
|
"app-id",
|
2022-05-25 12:15:13 +00:00
|
|
|
"instance-id",
|
2021-11-02 07:26:34 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2022-11-10 10:59:33 +00:00
|
|
|
name: "project reduceOIDCConfigChanged noop",
|
2021-11-02 07:26:34 +00:00
|
|
|
args: args{
|
|
|
|
event: getEvent(testEvent(
|
|
|
|
repository.EventType(project.OIDCConfigChangedType),
|
|
|
|
project.AggregateType,
|
|
|
|
[]byte(`{
|
|
|
|
"appId": "app-id"
|
|
|
|
}`),
|
|
|
|
), project.OIDCConfigChangedEventMapper),
|
|
|
|
},
|
2022-06-14 05:51:00 +00:00
|
|
|
reduce: (&appProjection{}).reduceOIDCConfigChanged,
|
2021-11-02 07:26:34 +00:00
|
|
|
want: wantReduce{
|
|
|
|
aggregateType: eventstore.AggregateType("project"),
|
|
|
|
sequence: 15,
|
|
|
|
previousSequence: 10,
|
|
|
|
executer: &testExecuter{
|
|
|
|
executions: []execution{},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2022-11-10 10:59:33 +00:00
|
|
|
name: "project reduceOIDCConfigSecretChanged",
|
2021-11-02 07:26:34 +00:00
|
|
|
args: args{
|
|
|
|
event: getEvent(testEvent(
|
|
|
|
repository.EventType(project.OIDCConfigSecretChangedType),
|
|
|
|
project.AggregateType,
|
|
|
|
[]byte(`{
|
|
|
|
"appId": "app-id",
|
|
|
|
"client_secret": {}
|
|
|
|
}`),
|
|
|
|
), project.OIDCConfigSecretChangedEventMapper),
|
|
|
|
},
|
2022-06-14 05:51:00 +00:00
|
|
|
reduce: (&appProjection{}).reduceOIDCConfigSecretChanged,
|
2021-11-02 07:26:34 +00:00
|
|
|
want: wantReduce{
|
|
|
|
aggregateType: eventstore.AggregateType("project"),
|
|
|
|
sequence: 15,
|
|
|
|
previousSequence: 10,
|
|
|
|
executer: &testExecuter{
|
|
|
|
executions: []execution{
|
|
|
|
{
|
2022-11-30 16:01:17 +00:00
|
|
|
expectedStmt: "UPDATE projections.apps4_oidc_configs SET client_secret = $1 WHERE (app_id = $2) AND (instance_id = $3)",
|
2021-11-02 07:26:34 +00:00
|
|
|
expectedArgs: []interface{}{
|
|
|
|
anyArg{},
|
|
|
|
"app-id",
|
2022-05-25 12:15:13 +00:00
|
|
|
"instance-id",
|
2021-11-02 07:26:34 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2022-11-30 16:01:17 +00:00
|
|
|
expectedStmt: "UPDATE projections.apps4 SET (change_date, sequence) = ($1, $2) WHERE (id = $3) AND (instance_id = $4)",
|
2021-11-02 07:26:34 +00:00
|
|
|
expectedArgs: []interface{}{
|
|
|
|
anyArg{},
|
|
|
|
uint64(15),
|
|
|
|
"app-id",
|
2022-05-25 12:15:13 +00:00
|
|
|
"instance-id",
|
2021-11-02 07:26:34 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2022-11-30 16:01:17 +00:00
|
|
|
{
|
|
|
|
name: "project.reduceOwnerRemoved",
|
|
|
|
args: args{
|
|
|
|
event: getEvent(testEvent(
|
|
|
|
repository.EventType(org.OrgRemovedEventType),
|
|
|
|
org.AggregateType,
|
|
|
|
nil,
|
|
|
|
), org.OrgRemovedEventMapper),
|
|
|
|
},
|
|
|
|
reduce: (&appProjection{}).reduceOwnerRemoved,
|
|
|
|
want: wantReduce{
|
|
|
|
aggregateType: eventstore.AggregateType("org"),
|
|
|
|
sequence: 15,
|
|
|
|
previousSequence: 10,
|
|
|
|
executer: &testExecuter{
|
|
|
|
executions: []execution{
|
|
|
|
{
|
|
|
|
expectedStmt: "UPDATE projections.apps4 SET (change_date, sequence, owner_removed) = ($1, $2, $3) WHERE (instance_id = $4) AND (resource_owner = $5)",
|
|
|
|
expectedArgs: []interface{}{
|
|
|
|
anyArg{},
|
|
|
|
uint64(15),
|
|
|
|
true,
|
|
|
|
"instance-id",
|
|
|
|
"agg-id",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-11-02 07:26:34 +00:00
|
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
|
|
event := baseEvent(t)
|
|
|
|
got, err := tt.reduce(event)
|
|
|
|
if _, ok := err.(errors.InvalidArgument); !ok {
|
|
|
|
t.Errorf("no wrong event mapping: %v, got: %v", err, got)
|
|
|
|
}
|
|
|
|
|
|
|
|
event = tt.args.event(t)
|
|
|
|
got, err = tt.reduce(event)
|
2022-10-20 12:36:52 +00:00
|
|
|
assertReduce(t, got, err, AppProjectionTable, tt.want)
|
2021-11-02 07:26:34 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|