mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 03:24:26 +00:00
150 lines
3.5 KiB
Go
150 lines
3.5 KiB
Go
|
package admin
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/caos/zitadel/internal/test"
|
||
|
admin_pb "github.com/caos/zitadel/pkg/grpc/admin"
|
||
|
"github.com/caos/zitadel/pkg/grpc/idp"
|
||
|
)
|
||
|
|
||
|
func Test_addOIDCIDPRequestToDomain(t *testing.T) {
|
||
|
type args struct {
|
||
|
req *admin_pb.AddOIDCIDPRequest
|
||
|
}
|
||
|
tests := []struct {
|
||
|
name string
|
||
|
args args
|
||
|
}{
|
||
|
{
|
||
|
name: "all fields filled",
|
||
|
args: args{
|
||
|
req: &admin_pb.AddOIDCIDPRequest{
|
||
|
Name: "ZITADEL",
|
||
|
StylingType: idp.IDPStylingType_STYLING_TYPE_GOOGLE,
|
||
|
ClientId: "test1234",
|
||
|
ClientSecret: "test4321",
|
||
|
Issuer: "zitadel.ch",
|
||
|
Scopes: []string{"email", "profile"},
|
||
|
DisplayNameMapping: idp.OIDCMappingField_OIDC_MAPPING_FIELD_EMAIL,
|
||
|
UsernameMapping: idp.OIDCMappingField_OIDC_MAPPING_FIELD_PREFERRED_USERNAME,
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
}
|
||
|
for _, tt := range tests {
|
||
|
t.Run(tt.name, func(t *testing.T) {
|
||
|
got := addOIDCIDPRequestToDomain(tt.args.req)
|
||
|
test.AssertFieldsMapped(t, got,
|
||
|
"ObjectRoot",
|
||
|
"OIDCConfig.ClientSecret",
|
||
|
"OIDCConfig.ObjectRoot",
|
||
|
"OIDCConfig.IDPConfigID",
|
||
|
"IDPConfigID",
|
||
|
"State",
|
||
|
"Type", //TODO: default (0) is oidc
|
||
|
)
|
||
|
})
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func Test_addOIDCIDPRequestToDomainOIDCIDPConfig(t *testing.T) {
|
||
|
type args struct {
|
||
|
req *admin_pb.AddOIDCIDPRequest
|
||
|
}
|
||
|
tests := []struct {
|
||
|
name string
|
||
|
args args
|
||
|
}{
|
||
|
{
|
||
|
name: "all fields filled",
|
||
|
args: args{
|
||
|
req: &admin_pb.AddOIDCIDPRequest{
|
||
|
ClientId: "test1234",
|
||
|
ClientSecret: "test4321",
|
||
|
Issuer: "zitadel.ch",
|
||
|
Scopes: []string{"email", "profile"},
|
||
|
DisplayNameMapping: idp.OIDCMappingField_OIDC_MAPPING_FIELD_EMAIL,
|
||
|
UsernameMapping: idp.OIDCMappingField_OIDC_MAPPING_FIELD_PREFERRED_USERNAME,
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
}
|
||
|
for _, tt := range tests {
|
||
|
t.Run(tt.name, func(t *testing.T) {
|
||
|
got := addOIDCIDPRequestToDomainOIDCIDPConfig(tt.args.req)
|
||
|
test.AssertFieldsMapped(t, got,
|
||
|
"ObjectRoot",
|
||
|
"ClientSecret", //TODO: is client secret string enough for backend?
|
||
|
"IDPConfigID",
|
||
|
)
|
||
|
})
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func Test_updateIDPToDomain(t *testing.T) {
|
||
|
type args struct {
|
||
|
req *admin_pb.UpdateIDPRequest
|
||
|
}
|
||
|
tests := []struct {
|
||
|
name string
|
||
|
args args
|
||
|
}{
|
||
|
{
|
||
|
name: "all fields filled",
|
||
|
args: args{
|
||
|
req: &admin_pb.UpdateIDPRequest{
|
||
|
Id: "13523",
|
||
|
Name: "new name",
|
||
|
StylingType: idp.IDPStylingType_STYLING_TYPE_GOOGLE,
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
}
|
||
|
for _, tt := range tests {
|
||
|
t.Run(tt.name, func(t *testing.T) {
|
||
|
got := updateIDPToDomain(tt.args.req)
|
||
|
test.AssertFieldsMapped(t, got,
|
||
|
"ObjectRoot",
|
||
|
"OIDCConfig",
|
||
|
"State",
|
||
|
"Type", //TODO: type should not be changeable
|
||
|
)
|
||
|
})
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func Test_updateOIDCConfigToDomain(t *testing.T) {
|
||
|
type args struct {
|
||
|
req *admin_pb.UpdateIDPOIDCConfigRequest
|
||
|
}
|
||
|
tests := []struct {
|
||
|
name string
|
||
|
args args
|
||
|
}{
|
||
|
{
|
||
|
name: "all fields filled",
|
||
|
args: args{
|
||
|
req: &admin_pb.UpdateIDPOIDCConfigRequest{
|
||
|
IdpId: "4208",
|
||
|
Issuer: "zitadel.ch",
|
||
|
ClientId: "ZITEADEL",
|
||
|
ClientSecret: "i'm so secret",
|
||
|
Scopes: []string{"profile"},
|
||
|
DisplayNameMapping: idp.OIDCMappingField_OIDC_MAPPING_FIELD_EMAIL,
|
||
|
UsernameMapping: idp.OIDCMappingField_OIDC_MAPPING_FIELD_PREFERRED_USERNAME,
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
}
|
||
|
for _, tt := range tests {
|
||
|
t.Run(tt.name, func(t *testing.T) {
|
||
|
got := updateOIDCConfigToDomain(tt.args.req)
|
||
|
test.AssertFieldsMapped(t, got,
|
||
|
"ObjectRoot",
|
||
|
"ClientSecret",
|
||
|
)
|
||
|
})
|
||
|
}
|
||
|
}
|