2023-07-10 13:27:00 +00:00
|
|
|
package command
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2023-10-19 10:34:00 +00:00
|
|
|
"net"
|
|
|
|
"net/http"
|
2023-07-10 13:27:00 +00:00
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/muhlemmer/gu"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"github.com/stretchr/testify/require"
|
2023-11-22 10:56:43 +00:00
|
|
|
"go.uber.org/mock/gomock"
|
2023-07-14 11:16:16 +00:00
|
|
|
"golang.org/x/text/language"
|
2023-07-10 13:27:00 +00:00
|
|
|
|
|
|
|
"github.com/zitadel/zitadel/internal/api/authz"
|
|
|
|
"github.com/zitadel/zitadel/internal/crypto"
|
|
|
|
"github.com/zitadel/zitadel/internal/domain"
|
|
|
|
"github.com/zitadel/zitadel/internal/eventstore"
|
|
|
|
"github.com/zitadel/zitadel/internal/id"
|
|
|
|
"github.com/zitadel/zitadel/internal/id/mock"
|
|
|
|
"github.com/zitadel/zitadel/internal/repository/authrequest"
|
|
|
|
"github.com/zitadel/zitadel/internal/repository/oidcsession"
|
|
|
|
"github.com/zitadel/zitadel/internal/repository/session"
|
2023-07-14 11:16:16 +00:00
|
|
|
"github.com/zitadel/zitadel/internal/repository/user"
|
2023-12-08 14:30:55 +00:00
|
|
|
"github.com/zitadel/zitadel/internal/zerrors"
|
2023-07-10 13:27:00 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
testNow = time.Now()
|
|
|
|
tokenCreationNow = time.Time{}
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestCommands_AddOIDCSessionAccessToken(t *testing.T) {
|
|
|
|
type fields struct {
|
|
|
|
eventstore *eventstore.Eventstore
|
|
|
|
idGenerator id.Generator
|
|
|
|
defaultAccessTokenLifetime time.Duration
|
|
|
|
defaultRefreshTokenLifetime time.Duration
|
|
|
|
defaultRefreshTokenIdleLifetime time.Duration
|
|
|
|
keyAlgorithm crypto.EncryptionAlgorithm
|
|
|
|
}
|
|
|
|
type args struct {
|
|
|
|
ctx context.Context
|
|
|
|
authRequestID string
|
|
|
|
}
|
|
|
|
type res struct {
|
|
|
|
id string
|
|
|
|
expiration time.Time
|
|
|
|
err error
|
|
|
|
}
|
|
|
|
tests := []struct {
|
|
|
|
name string
|
|
|
|
fields fields
|
|
|
|
args args
|
|
|
|
res res
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
"unauthenticated error",
|
|
|
|
fields{
|
|
|
|
eventstore: eventstoreExpect(t,
|
|
|
|
expectFilter(),
|
|
|
|
),
|
|
|
|
},
|
|
|
|
args{
|
|
|
|
ctx: authz.WithInstanceID(context.Background(), "instanceID"),
|
|
|
|
authRequestID: "V2_authRequestID",
|
|
|
|
},
|
|
|
|
res{
|
2023-12-08 14:30:55 +00:00
|
|
|
err: zerrors.ThrowPreconditionFailed(nil, "AUTHR-SF2r2", "Errors.AuthRequest.NotAuthenticated"),
|
2023-07-10 13:27:00 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"inactive session error",
|
|
|
|
fields{
|
|
|
|
eventstore: eventstoreExpect(t,
|
|
|
|
expectFilter(
|
|
|
|
eventFromEventPusher(
|
|
|
|
authrequest.NewAddedEvent(context.Background(), &authrequest.NewAggregate("V2_authRequestID", "instanceID").Aggregate,
|
|
|
|
"loginClient",
|
|
|
|
"clientID",
|
|
|
|
"redirectURI",
|
|
|
|
"state",
|
|
|
|
"nonce",
|
|
|
|
[]string{"openid"},
|
|
|
|
[]string{"audience"},
|
|
|
|
domain.OIDCResponseTypeCode,
|
|
|
|
&domain.OIDCCodeChallenge{
|
|
|
|
Challenge: "challenge",
|
|
|
|
Method: domain.CodeChallengeMethodS256,
|
|
|
|
},
|
|
|
|
[]domain.Prompt{domain.PromptNone},
|
|
|
|
[]string{"en", "de"},
|
|
|
|
gu.Ptr(time.Duration(0)),
|
|
|
|
gu.Ptr("loginHint"),
|
|
|
|
gu.Ptr("hintUserID"),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
authrequest.NewSessionLinkedEvent(context.Background(), &authrequest.NewAggregate("V2_authRequestID", "instanceID").Aggregate,
|
|
|
|
"sessionID",
|
|
|
|
"userID",
|
|
|
|
testNow,
|
2023-07-12 12:24:01 +00:00
|
|
|
[]domain.UserAuthMethodType{domain.UserAuthMethodTypePassword},
|
2023-07-10 13:27:00 +00:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
authrequest.NewCodeAddedEvent(context.Background(), &authrequest.NewAggregate("V2_authRequestID", "instanceID").Aggregate),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
authrequest.NewCodeExchangedEvent(context.Background(), &authrequest.NewAggregate("V2_authRequestID", "instanceID").Aggregate),
|
|
|
|
),
|
|
|
|
),
|
2023-07-14 11:16:16 +00:00
|
|
|
expectFilter(), // inactive session
|
2023-07-10 13:27:00 +00:00
|
|
|
),
|
|
|
|
},
|
|
|
|
args{
|
|
|
|
ctx: authz.WithInstanceID(context.Background(), "instanceID"),
|
|
|
|
authRequestID: "V2_authRequestID",
|
|
|
|
},
|
|
|
|
res{
|
2023-12-08 14:30:55 +00:00
|
|
|
err: zerrors.ThrowPreconditionFailed(nil, "COMMAND-Flk38", "Errors.Session.NotExisting"),
|
2023-07-10 13:27:00 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"add successful",
|
|
|
|
fields{
|
|
|
|
eventstore: eventstoreExpect(t,
|
|
|
|
expectFilter(
|
|
|
|
eventFromEventPusher(
|
|
|
|
authrequest.NewAddedEvent(context.Background(), &authrequest.NewAggregate("V2_authRequestID", "instanceID").Aggregate,
|
|
|
|
"loginClient",
|
|
|
|
"clientID",
|
|
|
|
"redirectURI",
|
|
|
|
"state",
|
|
|
|
"nonce",
|
|
|
|
[]string{"openid"},
|
|
|
|
[]string{"audience"},
|
|
|
|
domain.OIDCResponseTypeCode,
|
|
|
|
&domain.OIDCCodeChallenge{
|
|
|
|
Challenge: "challenge",
|
|
|
|
Method: domain.CodeChallengeMethodS256,
|
|
|
|
},
|
|
|
|
[]domain.Prompt{domain.PromptNone},
|
|
|
|
[]string{"en", "de"},
|
|
|
|
gu.Ptr(time.Duration(0)),
|
|
|
|
gu.Ptr("loginHint"),
|
|
|
|
gu.Ptr("hintUserID"),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
authrequest.NewSessionLinkedEvent(context.Background(), &authrequest.NewAggregate("V2_authRequestID", "instanceID").Aggregate,
|
|
|
|
"sessionID",
|
|
|
|
"userID",
|
|
|
|
testNow,
|
2023-07-12 12:24:01 +00:00
|
|
|
[]domain.UserAuthMethodType{domain.UserAuthMethodTypePassword},
|
2023-07-10 13:27:00 +00:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
authrequest.NewCodeAddedEvent(context.Background(), &authrequest.NewAggregate("V2_authRequestID", "instanceID").Aggregate),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
authrequest.NewCodeExchangedEvent(context.Background(), &authrequest.NewAggregate("V2_authRequestID", "instanceID").Aggregate),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
expectFilter(
|
|
|
|
eventFromEventPusher(
|
2023-10-19 10:34:00 +00:00
|
|
|
session.NewAddedEvent(context.Background(),
|
2023-11-16 06:35:50 +00:00
|
|
|
&session.NewAggregate("sessionID", "instance1").Aggregate,
|
2023-10-19 10:34:00 +00:00
|
|
|
&domain.UserAgent{
|
|
|
|
FingerprintID: gu.Ptr("fp1"),
|
|
|
|
IP: net.ParseIP("1.2.3.4"),
|
|
|
|
Description: gu.Ptr("firefox"),
|
|
|
|
Header: http.Header{"foo": []string{"bar"}},
|
|
|
|
},
|
|
|
|
),
|
2023-07-10 13:27:00 +00:00
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
session.NewUserCheckedEvent(context.Background(), &session.NewAggregate("sessionID", "instanceID").Aggregate,
|
2023-11-16 06:35:50 +00:00
|
|
|
"userID", "org1", testNow),
|
2023-07-10 13:27:00 +00:00
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
session.NewPasswordCheckedEvent(context.Background(), &session.NewAggregate("sessionID", "instanceID").Aggregate,
|
|
|
|
testNow),
|
|
|
|
),
|
|
|
|
),
|
2023-07-14 11:16:16 +00:00
|
|
|
expectFilter(
|
|
|
|
eventFromEventPusher(
|
|
|
|
user.NewHumanAddedEvent(context.Background(), &user.NewAggregate("userID", "org1").Aggregate,
|
|
|
|
"username", "firstName", "lastName", "", "", language.English, domain.GenderUnspecified, "", false,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
2023-07-10 13:27:00 +00:00
|
|
|
expectFilter(), // token lifetime
|
|
|
|
expectPush(
|
2023-10-19 10:19:10 +00:00
|
|
|
oidcsession.NewAddedEvent(context.Background(), &oidcsession.NewAggregate("V2_oidcSessionID", "org1").Aggregate,
|
|
|
|
"userID", "sessionID", "clientID", []string{"audience"}, []string{"openid"}, []domain.UserAuthMethodType{domain.UserAuthMethodTypePassword}, testNow),
|
|
|
|
oidcsession.NewAccessTokenAddedEvent(context.Background(), &oidcsession.NewAggregate("V2_oidcSessionID", "org1").Aggregate,
|
2024-03-20 10:18:46 +00:00
|
|
|
"at_accessTokenID", []string{"openid"}, time.Hour, domain.TokenReasonAuthRequest, nil),
|
2023-10-19 10:19:10 +00:00
|
|
|
authrequest.NewSucceededEvent(context.Background(), &authrequest.NewAggregate("V2_authRequestID", "instanceID").Aggregate),
|
2023-07-10 13:27:00 +00:00
|
|
|
),
|
|
|
|
),
|
|
|
|
idGenerator: mock.NewIDGeneratorExpectIDs(t, "oidcSessionID", "accessTokenID"),
|
|
|
|
defaultAccessTokenLifetime: time.Hour,
|
|
|
|
},
|
|
|
|
args{
|
|
|
|
ctx: authz.WithInstanceID(context.Background(), "instanceID"),
|
|
|
|
authRequestID: "V2_authRequestID",
|
|
|
|
},
|
|
|
|
res{
|
2023-07-17 12:33:37 +00:00
|
|
|
id: "V2_oidcSessionID-at_accessTokenID",
|
2023-07-10 13:27:00 +00:00
|
|
|
expiration: tokenCreationNow.Add(time.Hour),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
|
|
c := &Commands{
|
|
|
|
eventstore: tt.fields.eventstore,
|
|
|
|
idGenerator: tt.fields.idGenerator,
|
|
|
|
defaultAccessTokenLifetime: tt.fields.defaultAccessTokenLifetime,
|
|
|
|
defaultRefreshTokenLifetime: tt.fields.defaultRefreshTokenLifetime,
|
|
|
|
defaultRefreshTokenIdleLifetime: tt.fields.defaultRefreshTokenIdleLifetime,
|
|
|
|
keyAlgorithm: tt.fields.keyAlgorithm,
|
|
|
|
}
|
|
|
|
gotID, gotExpiration, err := c.AddOIDCSessionAccessToken(tt.args.ctx, tt.args.authRequestID)
|
|
|
|
assert.Equal(t, tt.res.id, gotID)
|
|
|
|
assert.Equal(t, tt.res.expiration, gotExpiration)
|
|
|
|
assert.ErrorIs(t, err, tt.res.err)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCommands_AddOIDCSessionRefreshAndAccessToken(t *testing.T) {
|
|
|
|
type fields struct {
|
|
|
|
eventstore *eventstore.Eventstore
|
|
|
|
idGenerator id.Generator
|
|
|
|
defaultAccessTokenLifetime time.Duration
|
|
|
|
defaultRefreshTokenLifetime time.Duration
|
|
|
|
defaultRefreshTokenIdleLifetime time.Duration
|
|
|
|
keyAlgorithm crypto.EncryptionAlgorithm
|
|
|
|
}
|
|
|
|
type args struct {
|
|
|
|
ctx context.Context
|
|
|
|
authRequestID string
|
|
|
|
}
|
|
|
|
type res struct {
|
|
|
|
id string
|
|
|
|
refreshToken string
|
|
|
|
expiration time.Time
|
|
|
|
err error
|
|
|
|
}
|
|
|
|
tests := []struct {
|
|
|
|
name string
|
|
|
|
fields fields
|
|
|
|
args args
|
|
|
|
res res
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
"unauthenticated error",
|
|
|
|
fields{
|
|
|
|
eventstore: eventstoreExpect(t,
|
|
|
|
expectFilter(),
|
|
|
|
),
|
|
|
|
},
|
|
|
|
args{
|
|
|
|
ctx: authz.WithInstanceID(context.Background(), "instanceID"),
|
|
|
|
authRequestID: "V2_authRequestID",
|
|
|
|
},
|
|
|
|
res{
|
2023-12-08 14:30:55 +00:00
|
|
|
err: zerrors.ThrowPreconditionFailed(nil, "AUTHR-SF2r2", "Errors.AuthRequest.NotAuthenticated"),
|
2023-07-10 13:27:00 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"inactive session error",
|
|
|
|
fields{
|
|
|
|
eventstore: eventstoreExpect(t,
|
|
|
|
expectFilter(
|
|
|
|
eventFromEventPusher(
|
|
|
|
authrequest.NewAddedEvent(context.Background(), &authrequest.NewAggregate("V2_authRequestID", "instanceID").Aggregate,
|
|
|
|
"loginClient",
|
|
|
|
"clientID",
|
|
|
|
"redirectURI",
|
|
|
|
"state",
|
|
|
|
"nonce",
|
|
|
|
[]string{"openid", "offline_access"},
|
|
|
|
[]string{"audience"},
|
|
|
|
domain.OIDCResponseTypeCode,
|
|
|
|
&domain.OIDCCodeChallenge{
|
|
|
|
Challenge: "challenge",
|
|
|
|
Method: domain.CodeChallengeMethodS256,
|
|
|
|
},
|
|
|
|
[]domain.Prompt{domain.PromptNone},
|
|
|
|
[]string{"en", "de"},
|
|
|
|
gu.Ptr(time.Duration(0)),
|
|
|
|
gu.Ptr("loginHint"),
|
|
|
|
gu.Ptr("hintUserID"),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
authrequest.NewSessionLinkedEvent(context.Background(), &authrequest.NewAggregate("V2_authRequestID", "instanceID").Aggregate,
|
|
|
|
"sessionID",
|
|
|
|
"userID",
|
|
|
|
testNow,
|
2023-07-12 12:24:01 +00:00
|
|
|
[]domain.UserAuthMethodType{domain.UserAuthMethodTypePassword},
|
2023-07-10 13:27:00 +00:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
authrequest.NewCodeAddedEvent(context.Background(), &authrequest.NewAggregate("V2_authRequestID", "instanceID").Aggregate),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
authrequest.NewCodeExchangedEvent(context.Background(), &authrequest.NewAggregate("V2_authRequestID", "instanceID").Aggregate),
|
|
|
|
),
|
|
|
|
),
|
2023-07-14 11:16:16 +00:00
|
|
|
expectFilter(), // inactive session
|
2023-07-10 13:27:00 +00:00
|
|
|
),
|
|
|
|
},
|
|
|
|
args{
|
|
|
|
ctx: authz.WithInstanceID(context.Background(), "instanceID"),
|
|
|
|
authRequestID: "V2_authRequestID",
|
|
|
|
},
|
|
|
|
res{
|
2023-12-08 14:30:55 +00:00
|
|
|
err: zerrors.ThrowPreconditionFailed(nil, "COMMAND-Flk38", "Errors.Session.NotExisting"),
|
2023-07-10 13:27:00 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"add successful",
|
|
|
|
fields{
|
|
|
|
eventstore: eventstoreExpect(t,
|
|
|
|
expectFilter(
|
|
|
|
eventFromEventPusher(
|
|
|
|
authrequest.NewAddedEvent(context.Background(), &authrequest.NewAggregate("V2_authRequestID", "instanceID").Aggregate,
|
|
|
|
"loginClient",
|
|
|
|
"clientID",
|
|
|
|
"redirectURI",
|
|
|
|
"state",
|
|
|
|
"nonce",
|
|
|
|
[]string{"openid", "offline_access"},
|
|
|
|
[]string{"audience"},
|
|
|
|
domain.OIDCResponseTypeCode,
|
|
|
|
&domain.OIDCCodeChallenge{
|
|
|
|
Challenge: "challenge",
|
|
|
|
Method: domain.CodeChallengeMethodS256,
|
|
|
|
},
|
|
|
|
[]domain.Prompt{domain.PromptNone},
|
|
|
|
[]string{"en", "de"},
|
|
|
|
gu.Ptr(time.Duration(0)),
|
|
|
|
gu.Ptr("loginHint"),
|
|
|
|
gu.Ptr("hintUserID"),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
authrequest.NewSessionLinkedEvent(context.Background(), &authrequest.NewAggregate("V2_authRequestID", "instanceID").Aggregate,
|
|
|
|
"sessionID",
|
|
|
|
"userID",
|
|
|
|
testNow,
|
2023-07-12 12:24:01 +00:00
|
|
|
[]domain.UserAuthMethodType{domain.UserAuthMethodTypePassword},
|
2023-07-10 13:27:00 +00:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
authrequest.NewCodeAddedEvent(context.Background(), &authrequest.NewAggregate("V2_authRequestID", "instanceID").Aggregate),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
authrequest.NewCodeExchangedEvent(context.Background(), &authrequest.NewAggregate("V2_authRequestID", "instanceID").Aggregate),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
expectFilter(
|
|
|
|
eventFromEventPusher(
|
2023-10-19 10:34:00 +00:00
|
|
|
session.NewAddedEvent(context.Background(),
|
2023-11-16 06:35:50 +00:00
|
|
|
&session.NewAggregate("sessionID", "instance1").Aggregate,
|
2023-10-19 10:34:00 +00:00
|
|
|
&domain.UserAgent{
|
|
|
|
FingerprintID: gu.Ptr("fp1"),
|
|
|
|
IP: net.ParseIP("1.2.3.4"),
|
|
|
|
Description: gu.Ptr("firefox"),
|
|
|
|
Header: http.Header{"foo": []string{"bar"}},
|
|
|
|
},
|
|
|
|
),
|
2023-07-10 13:27:00 +00:00
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
session.NewUserCheckedEvent(context.Background(), &session.NewAggregate("sessionID", "instanceID").Aggregate,
|
2023-11-16 06:35:50 +00:00
|
|
|
"userID", "org1", testNow),
|
2023-07-10 13:27:00 +00:00
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
session.NewPasswordCheckedEvent(context.Background(), &session.NewAggregate("sessionID", "instanceID").Aggregate,
|
|
|
|
testNow),
|
|
|
|
),
|
|
|
|
),
|
2023-07-14 11:16:16 +00:00
|
|
|
expectFilter(
|
|
|
|
eventFromEventPusher(
|
|
|
|
user.NewHumanAddedEvent(context.Background(), &user.NewAggregate("userID", "org1").Aggregate,
|
|
|
|
"username", "firstName", "lastName", "", "", language.English, domain.GenderUnspecified, "", false,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
2023-07-10 13:27:00 +00:00
|
|
|
expectFilter(), // token lifetime
|
|
|
|
expectPush(
|
2023-10-19 10:19:10 +00:00
|
|
|
oidcsession.NewAddedEvent(context.Background(), &oidcsession.NewAggregate("V2_oidcSessionID", "org1").Aggregate,
|
|
|
|
"userID", "sessionID", "clientID", []string{"audience"}, []string{"openid", "offline_access"}, []domain.UserAuthMethodType{domain.UserAuthMethodTypePassword}, testNow),
|
|
|
|
oidcsession.NewAccessTokenAddedEvent(context.Background(), &oidcsession.NewAggregate("V2_oidcSessionID", "org1").Aggregate,
|
2024-03-20 10:18:46 +00:00
|
|
|
"at_accessTokenID", []string{"openid", "offline_access"}, time.Hour, domain.TokenReasonAuthRequest, nil),
|
2023-10-19 10:19:10 +00:00
|
|
|
oidcsession.NewRefreshTokenAddedEvent(context.Background(), &oidcsession.NewAggregate("V2_oidcSessionID", "org1").Aggregate,
|
|
|
|
"rt_refreshTokenID", 7*24*time.Hour, 24*time.Hour),
|
|
|
|
authrequest.NewSucceededEvent(context.Background(), &authrequest.NewAggregate("V2_authRequestID", "instanceID").Aggregate),
|
2023-07-10 13:27:00 +00:00
|
|
|
),
|
|
|
|
),
|
|
|
|
idGenerator: mock.NewIDGeneratorExpectIDs(t, "oidcSessionID", "accessTokenID", "refreshTokenID"),
|
|
|
|
defaultAccessTokenLifetime: time.Hour,
|
|
|
|
defaultRefreshTokenLifetime: 7 * 24 * time.Hour,
|
|
|
|
defaultRefreshTokenIdleLifetime: 24 * time.Hour,
|
|
|
|
keyAlgorithm: crypto.CreateMockEncryptionAlg(gomock.NewController(t)),
|
|
|
|
},
|
|
|
|
args{
|
|
|
|
ctx: authz.WithInstanceID(context.Background(), "instanceID"),
|
|
|
|
authRequestID: "V2_authRequestID",
|
|
|
|
},
|
|
|
|
res{
|
2023-07-17 12:33:37 +00:00
|
|
|
id: "V2_oidcSessionID-at_accessTokenID",
|
|
|
|
refreshToken: "VjJfb2lkY1Nlc3Npb25JRC1ydF9yZWZyZXNoVG9rZW5JRDp1c2VySUQ", //V2_oidcSessionID-rt_refreshTokenID:userID
|
2023-07-10 13:27:00 +00:00
|
|
|
expiration: tokenCreationNow.Add(time.Hour),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
|
|
c := &Commands{
|
|
|
|
eventstore: tt.fields.eventstore,
|
|
|
|
idGenerator: tt.fields.idGenerator,
|
|
|
|
defaultAccessTokenLifetime: tt.fields.defaultAccessTokenLifetime,
|
|
|
|
defaultRefreshTokenLifetime: tt.fields.defaultRefreshTokenLifetime,
|
|
|
|
defaultRefreshTokenIdleLifetime: tt.fields.defaultRefreshTokenIdleLifetime,
|
|
|
|
keyAlgorithm: tt.fields.keyAlgorithm,
|
|
|
|
}
|
|
|
|
gotID, gotRefreshToken, gotExpiration, err := c.AddOIDCSessionRefreshAndAccessToken(tt.args.ctx, tt.args.authRequestID)
|
|
|
|
assert.Equal(t, tt.res.id, gotID)
|
|
|
|
assert.Equal(t, tt.res.refreshToken, gotRefreshToken)
|
|
|
|
assert.Equal(t, tt.res.expiration, gotExpiration)
|
|
|
|
assert.ErrorIs(t, err, tt.res.err)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCommands_ExchangeOIDCSessionRefreshAndAccessToken(t *testing.T) {
|
|
|
|
type fields struct {
|
2024-03-20 10:18:46 +00:00
|
|
|
eventstore func(*testing.T) *eventstore.Eventstore
|
2023-07-10 13:27:00 +00:00
|
|
|
idGenerator id.Generator
|
|
|
|
defaultAccessTokenLifetime time.Duration
|
|
|
|
defaultRefreshTokenLifetime time.Duration
|
|
|
|
defaultRefreshTokenIdleLifetime time.Duration
|
|
|
|
keyAlgorithm crypto.EncryptionAlgorithm
|
|
|
|
}
|
|
|
|
type args struct {
|
|
|
|
ctx context.Context
|
|
|
|
oidcSessionID string
|
|
|
|
refreshToken string
|
|
|
|
scope []string
|
|
|
|
}
|
|
|
|
type res struct {
|
|
|
|
id string
|
|
|
|
refreshToken string
|
|
|
|
expiration time.Time
|
|
|
|
err error
|
|
|
|
}
|
|
|
|
tests := []struct {
|
|
|
|
name string
|
|
|
|
fields fields
|
|
|
|
args args
|
|
|
|
res res
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
"invalid refresh token format error",
|
|
|
|
fields{
|
2024-03-20 10:18:46 +00:00
|
|
|
eventstore: expectEventstore(),
|
2023-07-10 13:27:00 +00:00
|
|
|
keyAlgorithm: crypto.CreateMockEncryptionAlg(gomock.NewController(t)),
|
|
|
|
},
|
|
|
|
args{
|
|
|
|
ctx: authz.WithInstanceID(context.Background(), "instanceID"),
|
|
|
|
oidcSessionID: "V2_oidcSessionID",
|
2023-07-17 12:33:37 +00:00
|
|
|
refreshToken: "aW52YWxpZA", // invalid
|
2023-07-10 13:27:00 +00:00
|
|
|
},
|
|
|
|
res{
|
2023-12-08 14:30:55 +00:00
|
|
|
err: zerrors.ThrowPreconditionFailed(nil, "OIDCS-JOI23", "Errors.OIDCSession.RefreshTokenInvalid"),
|
2023-07-10 13:27:00 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"inactive session error",
|
|
|
|
fields{
|
2024-03-20 10:18:46 +00:00
|
|
|
eventstore: expectEventstore(
|
2023-07-10 13:27:00 +00:00
|
|
|
expectFilter(),
|
|
|
|
),
|
|
|
|
keyAlgorithm: crypto.CreateMockEncryptionAlg(gomock.NewController(t)),
|
|
|
|
},
|
|
|
|
args{
|
|
|
|
ctx: authz.WithInstanceID(context.Background(), "instanceID"),
|
|
|
|
oidcSessionID: "V2_oidcSessionID",
|
2023-07-17 12:33:37 +00:00
|
|
|
refreshToken: "VjJfb2lkY1Nlc3Npb25JRC1ydF9yZWZyZXNoVG9rZW5JRDp1c2VySUQ", //V2_oidcSessionID:rt_refreshTokenID:userID
|
2023-07-10 13:27:00 +00:00
|
|
|
},
|
|
|
|
res{
|
2023-12-08 14:30:55 +00:00
|
|
|
err: zerrors.ThrowPreconditionFailed(nil, "OIDCS-s3hjk", "Errors.OIDCSession.RefreshTokenInvalid"),
|
2023-07-10 13:27:00 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"invalid refresh token error",
|
|
|
|
fields{
|
2024-03-20 10:18:46 +00:00
|
|
|
eventstore: expectEventstore(
|
2023-07-10 13:27:00 +00:00
|
|
|
expectFilter(
|
|
|
|
eventFromEventPusher(
|
2023-07-14 11:16:16 +00:00
|
|
|
oidcsession.NewAddedEvent(context.Background(), &oidcsession.NewAggregate("V2_oidcSessionID", "org1").Aggregate,
|
2023-07-12 12:24:01 +00:00
|
|
|
"userID", "sessionID", "clientID", []string{"audience"}, []string{"openid", "profile", "offline_access"}, []domain.UserAuthMethodType{domain.UserAuthMethodTypePassword}, testNow),
|
2023-07-10 13:27:00 +00:00
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
2023-07-14 11:16:16 +00:00
|
|
|
oidcsession.NewAccessTokenAddedEvent(context.Background(), &oidcsession.NewAggregate("V2_oidcSessionID", "org1").Aggregate,
|
2024-03-20 10:18:46 +00:00
|
|
|
"accessTokenID", []string{"openid", "profile", "offline_access"}, time.Hour, domain.TokenReasonAuthRequest, nil),
|
2023-07-10 13:27:00 +00:00
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
keyAlgorithm: crypto.CreateMockEncryptionAlg(gomock.NewController(t)),
|
|
|
|
},
|
|
|
|
args{
|
|
|
|
ctx: authz.WithInstanceID(context.Background(), "instanceID"),
|
|
|
|
oidcSessionID: "V2_oidcSessionID",
|
2023-07-17 12:33:37 +00:00
|
|
|
refreshToken: "VjJfb2lkY1Nlc3Npb25JRC1ydF9yZWZyZXNoVG9rZW5JRDp1c2VySUQ", //V2_oidcSessionID:rt_refreshTokenID:userID
|
2023-07-10 13:27:00 +00:00
|
|
|
},
|
|
|
|
res{
|
2023-12-08 14:30:55 +00:00
|
|
|
err: zerrors.ThrowPreconditionFailed(nil, "OIDCS-28ubl", "Errors.OIDCSession.RefreshTokenInvalid"),
|
2023-07-10 13:27:00 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"expired refresh token error",
|
|
|
|
fields{
|
2024-03-20 10:18:46 +00:00
|
|
|
eventstore: expectEventstore(
|
2023-07-10 13:27:00 +00:00
|
|
|
expectFilter(
|
|
|
|
eventFromEventPusher(
|
2023-07-14 11:16:16 +00:00
|
|
|
oidcsession.NewAddedEvent(context.Background(), &oidcsession.NewAggregate("V2_oidcSessionID", "org1").Aggregate,
|
2023-07-12 12:24:01 +00:00
|
|
|
"userID", "sessionID", "clientID", []string{"audience"}, []string{"openid", "profile", "offline_access"}, []domain.UserAuthMethodType{domain.UserAuthMethodTypePassword}, testNow),
|
2023-07-10 13:27:00 +00:00
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
2023-07-14 11:16:16 +00:00
|
|
|
oidcsession.NewAccessTokenAddedEvent(context.Background(), &oidcsession.NewAggregate("V2_oidcSessionID", "org1").Aggregate,
|
2024-03-20 10:18:46 +00:00
|
|
|
"at_accessTokenID", []string{"openid", "profile", "offline_access"}, time.Hour, domain.TokenReasonAuthRequest, nil),
|
2023-07-10 13:27:00 +00:00
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
2023-07-14 11:16:16 +00:00
|
|
|
oidcsession.NewRefreshTokenAddedEvent(context.Background(), &oidcsession.NewAggregate("V2_oidcSessionID", "org1").Aggregate,
|
2023-07-17 12:33:37 +00:00
|
|
|
"rt_refreshTokenID", 7*24*time.Hour, 24*time.Hour),
|
2023-07-10 13:27:00 +00:00
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
keyAlgorithm: crypto.CreateMockEncryptionAlg(gomock.NewController(t)),
|
|
|
|
},
|
|
|
|
args{
|
|
|
|
ctx: authz.WithInstanceID(context.Background(), "instanceID"),
|
|
|
|
oidcSessionID: "V2_oidcSessionID",
|
2023-07-17 12:33:37 +00:00
|
|
|
refreshToken: "VjJfb2lkY1Nlc3Npb25JRC1ydF9yZWZyZXNoVG9rZW5JRDp1c2VySUQ", //V2_oidcSessionID:rt_refreshTokenID:userID
|
2023-07-10 13:27:00 +00:00
|
|
|
},
|
|
|
|
res{
|
2023-12-08 14:30:55 +00:00
|
|
|
err: zerrors.ThrowPreconditionFailed(nil, "OIDCS-3jt2w", "Errors.OIDCSession.RefreshTokenInvalid"),
|
2023-07-10 13:27:00 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"refresh successful",
|
|
|
|
fields{
|
2024-03-20 10:18:46 +00:00
|
|
|
eventstore: expectEventstore(
|
2023-07-10 13:27:00 +00:00
|
|
|
expectFilter(
|
|
|
|
eventFromEventPusherWithCreationDateNow(
|
2023-07-14 11:16:16 +00:00
|
|
|
oidcsession.NewAddedEvent(context.Background(), &oidcsession.NewAggregate("V2_oidcSessionID", "org1").Aggregate,
|
2023-07-12 12:24:01 +00:00
|
|
|
"userID", "sessionID", "clientID", []string{"audience"}, []string{"openid", "profile", "offline_access"}, []domain.UserAuthMethodType{domain.UserAuthMethodTypePassword}, testNow),
|
2023-07-10 13:27:00 +00:00
|
|
|
),
|
|
|
|
eventFromEventPusherWithCreationDateNow(
|
2023-07-14 11:16:16 +00:00
|
|
|
oidcsession.NewAccessTokenAddedEvent(context.Background(), &oidcsession.NewAggregate("V2_oidcSessionID", "org1").Aggregate,
|
2024-03-20 10:18:46 +00:00
|
|
|
"at_accessTokenID", []string{"openid", "profile", "offline_access"}, time.Hour, domain.TokenReasonAuthRequest, nil),
|
2023-07-10 13:27:00 +00:00
|
|
|
),
|
|
|
|
eventFromEventPusherWithCreationDateNow(
|
2023-07-14 11:16:16 +00:00
|
|
|
oidcsession.NewRefreshTokenAddedEvent(context.Background(), &oidcsession.NewAggregate("V2_oidcSessionID", "org1").Aggregate,
|
2023-07-17 12:33:37 +00:00
|
|
|
"rt_refreshTokenID", 7*24*time.Hour, 24*time.Hour),
|
2023-07-10 13:27:00 +00:00
|
|
|
),
|
|
|
|
),
|
|
|
|
expectFilter(), // token lifetime
|
|
|
|
expectPush(
|
2023-10-19 10:19:10 +00:00
|
|
|
oidcsession.NewAccessTokenAddedEvent(context.Background(), &oidcsession.NewAggregate("V2_oidcSessionID", "org1").Aggregate,
|
2024-03-20 10:18:46 +00:00
|
|
|
"at_accessTokenID", []string{"openid", "offline_access"}, time.Hour, domain.TokenReasonRefresh, nil),
|
2023-10-19 10:19:10 +00:00
|
|
|
oidcsession.NewRefreshTokenRenewedEvent(context.Background(), &oidcsession.NewAggregate("V2_oidcSessionID", "org1").Aggregate,
|
|
|
|
"rt_refreshTokenID2", 24*time.Hour),
|
2023-07-10 13:27:00 +00:00
|
|
|
),
|
|
|
|
),
|
|
|
|
idGenerator: mock.NewIDGeneratorExpectIDs(t, "accessTokenID", "refreshTokenID2"),
|
|
|
|
defaultAccessTokenLifetime: time.Hour,
|
|
|
|
defaultRefreshTokenLifetime: 7 * 24 * time.Hour,
|
|
|
|
defaultRefreshTokenIdleLifetime: 24 * time.Hour,
|
|
|
|
keyAlgorithm: crypto.CreateMockEncryptionAlg(gomock.NewController(t)),
|
|
|
|
},
|
|
|
|
args{
|
|
|
|
ctx: authz.WithInstanceID(context.Background(), "instanceID"),
|
|
|
|
oidcSessionID: "V2_oidcSessionID",
|
2023-07-17 12:33:37 +00:00
|
|
|
refreshToken: "VjJfb2lkY1Nlc3Npb25JRC1ydF9yZWZyZXNoVG9rZW5JRDp1c2VySUQ", //V2_oidcSessionID:rt_refreshTokenID:userID
|
2023-07-10 13:27:00 +00:00
|
|
|
scope: []string{"openid", "offline_access"},
|
|
|
|
},
|
|
|
|
res{
|
2023-07-17 12:33:37 +00:00
|
|
|
id: "V2_oidcSessionID-at_accessTokenID",
|
|
|
|
refreshToken: "VjJfb2lkY1Nlc3Npb25JRC1ydF9yZWZyZXNoVG9rZW5JRDI6dXNlcklE", // V2_oidcSessionID-rt_refreshTokenID2:userID%
|
2023-07-10 13:27:00 +00:00
|
|
|
expiration: time.Time{}.Add(time.Hour),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
|
|
c := &Commands{
|
2024-03-20 10:18:46 +00:00
|
|
|
eventstore: tt.fields.eventstore(t),
|
2023-07-10 13:27:00 +00:00
|
|
|
idGenerator: tt.fields.idGenerator,
|
|
|
|
defaultAccessTokenLifetime: tt.fields.defaultAccessTokenLifetime,
|
|
|
|
defaultRefreshTokenLifetime: tt.fields.defaultRefreshTokenLifetime,
|
|
|
|
defaultRefreshTokenIdleLifetime: tt.fields.defaultRefreshTokenIdleLifetime,
|
|
|
|
keyAlgorithm: tt.fields.keyAlgorithm,
|
|
|
|
}
|
|
|
|
gotID, gotRefreshToken, gotExpiration, err := c.ExchangeOIDCSessionRefreshAndAccessToken(tt.args.ctx, tt.args.oidcSessionID, tt.args.refreshToken, tt.args.scope)
|
|
|
|
assert.Equal(t, tt.res.id, gotID)
|
|
|
|
assert.Equal(t, tt.res.refreshToken, gotRefreshToken)
|
|
|
|
assert.Equal(t, tt.res.expiration, gotExpiration)
|
|
|
|
assert.ErrorIs(t, err, tt.res.err)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCommands_OIDCSessionByRefreshToken(t *testing.T) {
|
|
|
|
type fields struct {
|
|
|
|
eventstore *eventstore.Eventstore
|
|
|
|
idGenerator id.Generator
|
|
|
|
defaultAccessTokenLifetime time.Duration
|
|
|
|
defaultRefreshTokenLifetime time.Duration
|
|
|
|
defaultRefreshTokenIdleLifetime time.Duration
|
|
|
|
keyAlgorithm crypto.EncryptionAlgorithm
|
|
|
|
}
|
|
|
|
type args struct {
|
|
|
|
ctx context.Context
|
|
|
|
refreshToken string
|
|
|
|
}
|
|
|
|
type res struct {
|
|
|
|
model *OIDCSessionWriteModel
|
|
|
|
err error
|
|
|
|
}
|
|
|
|
tests := []struct {
|
|
|
|
name string
|
|
|
|
fields fields
|
|
|
|
args args
|
|
|
|
res res
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
"invalid refresh token format error",
|
|
|
|
fields{
|
|
|
|
eventstore: eventstoreExpect(t),
|
|
|
|
keyAlgorithm: crypto.CreateMockEncryptionAlg(gomock.NewController(t)),
|
|
|
|
},
|
|
|
|
args{
|
|
|
|
ctx: authz.WithInstanceID(context.Background(), "instanceID"),
|
|
|
|
refreshToken: "invalid",
|
|
|
|
},
|
|
|
|
res{
|
2023-12-08 14:30:55 +00:00
|
|
|
err: zerrors.ThrowPreconditionFailed(nil, "OIDCS-JOI23", "Errors.OIDCSession.RefreshTokenInvalid"),
|
2023-07-10 13:27:00 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"inactive session error",
|
|
|
|
fields{
|
|
|
|
eventstore: eventstoreExpect(t,
|
|
|
|
expectFilter(),
|
|
|
|
),
|
|
|
|
keyAlgorithm: crypto.CreateMockEncryptionAlg(gomock.NewController(t)),
|
|
|
|
},
|
|
|
|
args{
|
|
|
|
ctx: authz.WithInstanceID(context.Background(), "instanceID"),
|
2023-07-17 12:33:37 +00:00
|
|
|
refreshToken: "V2_oidcSessionID-rt_refreshTokenID:userID",
|
2023-07-10 13:27:00 +00:00
|
|
|
},
|
|
|
|
res{
|
2023-12-08 14:30:55 +00:00
|
|
|
err: zerrors.ThrowPreconditionFailed(nil, "OIDCS-s3hjk", "Errors.OIDCSession.RefreshTokenInvalid"),
|
2023-07-10 13:27:00 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"invalid refresh token error",
|
|
|
|
fields{
|
|
|
|
eventstore: eventstoreExpect(t,
|
|
|
|
expectFilter(
|
|
|
|
eventFromEventPusher(
|
2023-07-14 11:16:16 +00:00
|
|
|
oidcsession.NewAddedEvent(context.Background(), &oidcsession.NewAggregate("V2_oidcSessionID", "org1").Aggregate,
|
2023-07-12 12:24:01 +00:00
|
|
|
"userID", "sessionID", "clientID", []string{"audience"}, []string{"openid", "profile", "offline_access"}, []domain.UserAuthMethodType{domain.UserAuthMethodTypePassword}, testNow),
|
2023-07-10 13:27:00 +00:00
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
2023-07-14 11:16:16 +00:00
|
|
|
oidcsession.NewAccessTokenAddedEvent(context.Background(), &oidcsession.NewAggregate("V2_oidcSessionID", "org1").Aggregate,
|
2024-03-20 10:18:46 +00:00
|
|
|
"at_accessTokenID", []string{"openid", "profile", "offline_access"}, time.Hour, domain.TokenReasonAuthRequest, nil),
|
2023-07-10 13:27:00 +00:00
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
keyAlgorithm: crypto.CreateMockEncryptionAlg(gomock.NewController(t)),
|
|
|
|
},
|
|
|
|
args{
|
|
|
|
ctx: authz.WithInstanceID(context.Background(), "instanceID"),
|
2023-07-17 12:33:37 +00:00
|
|
|
refreshToken: "V2_oidcSessionID-rt_refreshTokenID:userID",
|
2023-07-10 13:27:00 +00:00
|
|
|
},
|
|
|
|
res{
|
2023-12-08 14:30:55 +00:00
|
|
|
err: zerrors.ThrowPreconditionFailed(nil, "OIDCS-28ubl", "Errors.OIDCSession.RefreshTokenInvalid"),
|
2023-07-10 13:27:00 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"expired refresh token error",
|
|
|
|
fields{
|
|
|
|
eventstore: eventstoreExpect(t,
|
|
|
|
expectFilter(
|
|
|
|
eventFromEventPusher(
|
2023-07-14 11:16:16 +00:00
|
|
|
oidcsession.NewAddedEvent(context.Background(), &oidcsession.NewAggregate("V2_oidcSessionID", "org1").Aggregate,
|
2023-07-12 12:24:01 +00:00
|
|
|
"userID", "sessionID", "clientID", []string{"audience"}, []string{"openid", "profile", "offline_access"}, []domain.UserAuthMethodType{domain.UserAuthMethodTypePassword}, testNow),
|
2023-07-10 13:27:00 +00:00
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
2023-07-14 11:16:16 +00:00
|
|
|
oidcsession.NewAccessTokenAddedEvent(context.Background(), &oidcsession.NewAggregate("V2_oidcSessionID", "org1").Aggregate,
|
2024-03-20 10:18:46 +00:00
|
|
|
"at_accessTokenID", []string{"openid", "profile", "offline_access"}, time.Hour, domain.TokenReasonAuthRequest, nil),
|
2023-07-10 13:27:00 +00:00
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
2023-07-14 11:16:16 +00:00
|
|
|
oidcsession.NewRefreshTokenAddedEvent(context.Background(), &oidcsession.NewAggregate("V2_oidcSessionID", "org1").Aggregate,
|
2023-07-17 12:33:37 +00:00
|
|
|
"rt_refreshTokenID", 7*24*time.Hour, 24*time.Hour),
|
2023-07-10 13:27:00 +00:00
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
keyAlgorithm: crypto.CreateMockEncryptionAlg(gomock.NewController(t)),
|
|
|
|
},
|
|
|
|
args{
|
|
|
|
ctx: authz.WithInstanceID(context.Background(), "instanceID"),
|
2023-07-17 12:33:37 +00:00
|
|
|
refreshToken: "V2_oidcSessionID-rt_refreshTokenID:userID",
|
2023-07-10 13:27:00 +00:00
|
|
|
},
|
|
|
|
res{
|
2023-12-08 14:30:55 +00:00
|
|
|
err: zerrors.ThrowPreconditionFailed(nil, "OIDCS-3jt2w", "Errors.OIDCSession.RefreshTokenInvalid"),
|
2023-07-10 13:27:00 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"get successful",
|
|
|
|
fields{
|
|
|
|
eventstore: eventstoreExpect(t,
|
|
|
|
expectFilter(
|
|
|
|
eventFromEventPusherWithCreationDateNow(
|
2023-07-14 11:16:16 +00:00
|
|
|
oidcsession.NewAddedEvent(context.Background(), &oidcsession.NewAggregate("V2_oidcSessionID", "org1").Aggregate,
|
2023-07-12 12:24:01 +00:00
|
|
|
"userID", "sessionID", "clientID", []string{"audience"}, []string{"openid", "profile", "offline_access"}, []domain.UserAuthMethodType{domain.UserAuthMethodTypePassword}, testNow),
|
2023-07-10 13:27:00 +00:00
|
|
|
),
|
|
|
|
eventFromEventPusherWithCreationDateNow(
|
2023-07-14 11:16:16 +00:00
|
|
|
oidcsession.NewAccessTokenAddedEvent(context.Background(), &oidcsession.NewAggregate("V2_oidcSessionID", "org1").Aggregate,
|
2024-03-20 10:18:46 +00:00
|
|
|
"at_accessTokenID", []string{"openid", "profile", "offline_access"}, time.Hour, domain.TokenReasonAuthRequest, nil),
|
2023-07-10 13:27:00 +00:00
|
|
|
),
|
|
|
|
eventFromEventPusherWithCreationDateNow(
|
2023-07-14 11:16:16 +00:00
|
|
|
oidcsession.NewRefreshTokenAddedEvent(context.Background(), &oidcsession.NewAggregate("V2_oidcSessionID", "org1").Aggregate,
|
2023-07-17 12:33:37 +00:00
|
|
|
"rt_refreshTokenID", 7*24*time.Hour, 24*time.Hour),
|
2023-07-10 13:27:00 +00:00
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
keyAlgorithm: crypto.CreateMockEncryptionAlg(gomock.NewController(t)),
|
|
|
|
},
|
|
|
|
args{
|
|
|
|
ctx: authz.WithInstanceID(context.Background(), "instanceID"),
|
2023-07-17 12:33:37 +00:00
|
|
|
refreshToken: "V2_oidcSessionID-rt_refreshTokenID:userID",
|
2023-07-10 13:27:00 +00:00
|
|
|
},
|
|
|
|
res{
|
|
|
|
model: &OIDCSessionWriteModel{
|
|
|
|
WriteModel: eventstore.WriteModel{
|
|
|
|
AggregateID: "V2_oidcSessionID",
|
|
|
|
ChangeDate: testNow,
|
|
|
|
},
|
|
|
|
UserID: "userID",
|
|
|
|
SessionID: "sessionID",
|
|
|
|
ClientID: "clientID",
|
|
|
|
Audience: []string{"audience"},
|
|
|
|
Scope: []string{"openid", "profile", "offline_access"},
|
2023-07-12 12:24:01 +00:00
|
|
|
AuthMethods: []domain.UserAuthMethodType{domain.UserAuthMethodTypePassword},
|
2023-07-10 13:27:00 +00:00
|
|
|
AuthTime: testNow,
|
|
|
|
State: domain.OIDCSessionStateActive,
|
2023-07-17 12:33:37 +00:00
|
|
|
RefreshTokenID: "rt_refreshTokenID",
|
2023-07-10 13:27:00 +00:00
|
|
|
RefreshTokenExpiration: testNow.Add(7 * 24 * time.Hour),
|
|
|
|
RefreshTokenIdleExpiration: testNow.Add(24 * time.Hour),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
|
|
c := &Commands{
|
|
|
|
eventstore: tt.fields.eventstore,
|
|
|
|
idGenerator: tt.fields.idGenerator,
|
|
|
|
defaultAccessTokenLifetime: tt.fields.defaultAccessTokenLifetime,
|
|
|
|
defaultRefreshTokenLifetime: tt.fields.defaultRefreshTokenLifetime,
|
|
|
|
defaultRefreshTokenIdleLifetime: tt.fields.defaultRefreshTokenIdleLifetime,
|
|
|
|
keyAlgorithm: tt.fields.keyAlgorithm,
|
|
|
|
}
|
|
|
|
got, err := c.OIDCSessionByRefreshToken(tt.args.ctx, tt.args.refreshToken)
|
|
|
|
require.ErrorIs(t, err, tt.res.err)
|
|
|
|
if tt.res.err == nil {
|
2023-08-10 13:38:30 +00:00
|
|
|
assert.WithinRange(t, got.ChangeDate, tt.res.model.ChangeDate, time.Now())
|
2023-07-10 13:27:00 +00:00
|
|
|
assert.Equal(t, tt.res.model.AggregateID, got.AggregateID)
|
|
|
|
assert.Equal(t, tt.res.model.UserID, got.UserID)
|
|
|
|
assert.Equal(t, tt.res.model.SessionID, got.SessionID)
|
|
|
|
assert.Equal(t, tt.res.model.ClientID, got.ClientID)
|
|
|
|
assert.Equal(t, tt.res.model.Audience, got.Audience)
|
|
|
|
assert.Equal(t, tt.res.model.Scope, got.Scope)
|
2023-07-12 12:24:01 +00:00
|
|
|
assert.Equal(t, tt.res.model.AuthMethods, got.AuthMethods)
|
2023-08-10 13:38:30 +00:00
|
|
|
assert.WithinRange(t, got.AuthTime, tt.res.model.AuthTime, tt.res.model.AuthTime)
|
2023-07-10 13:27:00 +00:00
|
|
|
assert.Equal(t, tt.res.model.State, got.State)
|
|
|
|
assert.Equal(t, tt.res.model.RefreshTokenID, got.RefreshTokenID)
|
2023-08-10 13:38:30 +00:00
|
|
|
duration := tt.res.model.RefreshTokenExpiration.Sub(testNow)
|
|
|
|
assert.WithinRange(t, got.RefreshTokenExpiration, tt.res.model.RefreshTokenExpiration, time.Now().Add(duration))
|
|
|
|
idleDuration := tt.res.model.RefreshTokenIdleExpiration.Sub(testNow)
|
|
|
|
assert.WithinRange(t, got.RefreshTokenIdleExpiration, tt.res.model.RefreshTokenIdleExpiration, time.Now().Add(idleDuration))
|
2023-07-10 13:27:00 +00:00
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
2023-07-17 12:33:37 +00:00
|
|
|
|
|
|
|
func TestCommands_RevokeOIDCSessionToken(t *testing.T) {
|
|
|
|
type fields struct {
|
|
|
|
eventstore *eventstore.Eventstore
|
|
|
|
keyAlgorithm crypto.EncryptionAlgorithm
|
|
|
|
}
|
|
|
|
type args struct {
|
|
|
|
ctx context.Context
|
|
|
|
token string
|
|
|
|
clientID string
|
|
|
|
}
|
|
|
|
type res struct {
|
|
|
|
err error
|
|
|
|
}
|
|
|
|
tests := []struct {
|
|
|
|
name string
|
|
|
|
fields fields
|
|
|
|
args args
|
|
|
|
res res
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
"invalid token",
|
|
|
|
fields{
|
|
|
|
eventstore: eventstoreExpect(t),
|
|
|
|
keyAlgorithm: crypto.CreateMockEncryptionAlg(gomock.NewController(t)),
|
|
|
|
},
|
|
|
|
args{
|
|
|
|
ctx: authz.WithInstanceID(context.Background(), "instanceID"),
|
|
|
|
token: "invalid",
|
|
|
|
},
|
|
|
|
res{
|
|
|
|
err: nil,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"refresh_token inactive",
|
|
|
|
fields{
|
|
|
|
eventstore: eventstoreExpect(t,
|
|
|
|
expectFilter(
|
|
|
|
eventFromEventPusher(
|
|
|
|
oidcsession.NewAddedEvent(context.Background(), &oidcsession.NewAggregate("V2_oidcSessionID", "org1").Aggregate,
|
|
|
|
"userID", "sessionID", "clientID", []string{"clientID"}, []string{"openid", "profile", "offline_access"}, []domain.UserAuthMethodType{domain.UserAuthMethodTypePassword}, testNow),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
keyAlgorithm: crypto.CreateMockEncryptionAlg(gomock.NewController(t)),
|
|
|
|
},
|
|
|
|
args{
|
|
|
|
ctx: authz.WithInstanceID(context.Background(), "instanceID"),
|
|
|
|
token: "V2_oidcSessionID-rt_refreshTokenID",
|
|
|
|
clientID: "clientID",
|
|
|
|
},
|
|
|
|
res{
|
|
|
|
err: nil,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"refresh_token invalid client",
|
|
|
|
fields{
|
|
|
|
eventstore: eventstoreExpect(t,
|
|
|
|
expectFilter(
|
|
|
|
eventFromEventPusher(
|
|
|
|
oidcsession.NewAddedEvent(context.Background(), &oidcsession.NewAggregate("V2_oidcSessionID", "org1").Aggregate,
|
|
|
|
"userID", "sessionID", "otherClientID", []string{"otherClientID"}, []string{"openid", "profile", "offline_access"}, []domain.UserAuthMethodType{domain.UserAuthMethodTypePassword}, testNow),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
keyAlgorithm: crypto.CreateMockEncryptionAlg(gomock.NewController(t)),
|
|
|
|
},
|
|
|
|
args{
|
|
|
|
ctx: authz.WithInstanceID(context.Background(), "instanceID"),
|
|
|
|
token: "V2_oidcSessionID-rt_refreshTokenID",
|
|
|
|
clientID: "clientID",
|
|
|
|
},
|
|
|
|
res{
|
2023-12-08 14:30:55 +00:00
|
|
|
err: zerrors.ThrowPreconditionFailed(nil, "OIDCS-SKjl3", "Errors.OIDCSession.InvalidClient"),
|
2023-07-17 12:33:37 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"refresh_token revoked",
|
|
|
|
fields{
|
|
|
|
eventstore: eventstoreExpect(t,
|
|
|
|
expectFilter(
|
|
|
|
eventFromEventPusher(
|
|
|
|
oidcsession.NewAddedEvent(context.Background(), &oidcsession.NewAggregate("V2_oidcSessionID", "org1").Aggregate,
|
|
|
|
"userID", "sessionID", "clientID", []string{"clientID"}, []string{"openid", "profile", "offline_access"}, []domain.UserAuthMethodType{domain.UserAuthMethodTypePassword}, testNow),
|
|
|
|
),
|
|
|
|
eventFromEventPusherWithCreationDateNow(
|
|
|
|
oidcsession.NewAccessTokenAddedEvent(context.Background(), &oidcsession.NewAggregate("V2_oidcSessionID", "org1").Aggregate,
|
2024-03-20 10:18:46 +00:00
|
|
|
"at_accessTokenID", []string{"openid", "profile", "offline_access"}, time.Hour, domain.TokenReasonAuthRequest, nil),
|
2023-07-17 12:33:37 +00:00
|
|
|
),
|
|
|
|
eventFromEventPusherWithCreationDateNow(
|
|
|
|
oidcsession.NewRefreshTokenAddedEvent(context.Background(), &oidcsession.NewAggregate("V2_oidcSessionID", "org1").Aggregate,
|
|
|
|
"rt_refreshTokenID", 7*24*time.Hour, 24*time.Hour),
|
|
|
|
),
|
|
|
|
),
|
2023-10-19 10:19:10 +00:00
|
|
|
expectPush(
|
|
|
|
oidcsession.NewRefreshTokenRevokedEvent(context.Background(), &oidcsession.NewAggregate("V2_oidcSessionID", "org1").Aggregate),
|
|
|
|
),
|
2023-07-17 12:33:37 +00:00
|
|
|
),
|
|
|
|
keyAlgorithm: crypto.CreateMockEncryptionAlg(gomock.NewController(t)),
|
|
|
|
},
|
|
|
|
args{
|
|
|
|
ctx: authz.WithInstanceID(context.Background(), "instanceID"),
|
|
|
|
token: "V2_oidcSessionID-rt_refreshTokenID",
|
|
|
|
clientID: "clientID",
|
|
|
|
},
|
|
|
|
res{
|
|
|
|
err: nil,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"access_token inactive session",
|
|
|
|
fields{
|
|
|
|
eventstore: eventstoreExpect(t,
|
|
|
|
expectFilter(
|
|
|
|
eventFromEventPusher(
|
|
|
|
oidcsession.NewAddedEvent(context.Background(), &oidcsession.NewAggregate("V2_oidcSessionID", "org1").Aggregate,
|
|
|
|
"userID", "sessionID", "clientID", []string{"clientID"}, []string{"openid", "profile", "offline_access"}, []domain.UserAuthMethodType{domain.UserAuthMethodTypePassword}, testNow),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
keyAlgorithm: crypto.CreateMockEncryptionAlg(gomock.NewController(t)),
|
|
|
|
},
|
|
|
|
args{
|
|
|
|
ctx: authz.WithInstanceID(context.Background(), "instanceID"),
|
|
|
|
token: "V2_oidcSessionID-at_accessTokenID",
|
|
|
|
clientID: "clientID",
|
|
|
|
},
|
|
|
|
res{
|
|
|
|
err: nil,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"access_token invalid client",
|
|
|
|
fields{
|
|
|
|
eventstore: eventstoreExpect(t,
|
|
|
|
expectFilter(
|
|
|
|
eventFromEventPusher(
|
|
|
|
oidcsession.NewAddedEvent(context.Background(), &oidcsession.NewAggregate("V2_oidcSessionID", "org1").Aggregate,
|
|
|
|
"userID", "sessionID", "otherClientID", []string{"otherClientID"}, []string{"openid", "profile", "offline_access"}, []domain.UserAuthMethodType{domain.UserAuthMethodTypePassword}, testNow),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
keyAlgorithm: crypto.CreateMockEncryptionAlg(gomock.NewController(t)),
|
|
|
|
},
|
|
|
|
args{
|
|
|
|
ctx: authz.WithInstanceID(context.Background(), "instanceID"),
|
|
|
|
token: "V2_oidcSessionID-at_accessTokenID",
|
|
|
|
clientID: "clientID",
|
|
|
|
},
|
|
|
|
res{
|
2023-12-08 14:30:55 +00:00
|
|
|
err: zerrors.ThrowPreconditionFailed(nil, "OIDCS-SKjl3", "Errors.OIDCSession.InvalidClient"),
|
2023-07-17 12:33:37 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"access_token revoked",
|
|
|
|
fields{
|
|
|
|
eventstore: eventstoreExpect(t,
|
|
|
|
expectFilter(
|
|
|
|
eventFromEventPusher(
|
|
|
|
oidcsession.NewAddedEvent(context.Background(), &oidcsession.NewAggregate("V2_oidcSessionID", "org1").Aggregate,
|
|
|
|
"userID", "sessionID", "clientID", []string{"clientID"}, []string{"openid", "profile", "offline_access"}, []domain.UserAuthMethodType{domain.UserAuthMethodTypePassword}, testNow),
|
|
|
|
),
|
|
|
|
eventFromEventPusherWithCreationDateNow(
|
|
|
|
oidcsession.NewAccessTokenAddedEvent(context.Background(), &oidcsession.NewAggregate("V2_oidcSessionID", "org1").Aggregate,
|
2024-03-20 10:18:46 +00:00
|
|
|
"at_accessTokenID", []string{"openid", "profile", "offline_access"}, time.Hour, domain.TokenReasonAuthRequest, nil),
|
2023-07-17 12:33:37 +00:00
|
|
|
),
|
|
|
|
eventFromEventPusherWithCreationDateNow(
|
|
|
|
oidcsession.NewRefreshTokenAddedEvent(context.Background(), &oidcsession.NewAggregate("V2_oidcSessionID", "org1").Aggregate,
|
|
|
|
"rt_refreshTokenID", 7*24*time.Hour, 24*time.Hour),
|
|
|
|
),
|
|
|
|
),
|
2023-10-19 10:19:10 +00:00
|
|
|
expectPush(
|
|
|
|
oidcsession.NewAccessTokenRevokedEvent(context.Background(), &oidcsession.NewAggregate("V2_oidcSessionID", "org1").Aggregate),
|
|
|
|
),
|
2023-07-17 12:33:37 +00:00
|
|
|
),
|
|
|
|
keyAlgorithm: crypto.CreateMockEncryptionAlg(gomock.NewController(t)),
|
|
|
|
},
|
|
|
|
args{
|
|
|
|
ctx: authz.WithInstanceID(context.Background(), "instanceID"),
|
|
|
|
token: "V2_oidcSessionID-at_accessTokenID",
|
|
|
|
clientID: "clientID",
|
|
|
|
},
|
|
|
|
res{
|
|
|
|
err: nil,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
|
|
c := &Commands{
|
|
|
|
eventstore: tt.fields.eventstore,
|
|
|
|
keyAlgorithm: tt.fields.keyAlgorithm,
|
|
|
|
}
|
|
|
|
err := c.RevokeOIDCSessionToken(tt.args.ctx, tt.args.token, tt.args.clientID)
|
|
|
|
require.ErrorIs(t, err, tt.res.err)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|