2023-01-23 07:11:40 +00:00
|
|
|
package gitlab
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
|
|
|
|
"github.com/zitadel/zitadel/internal/idp"
|
|
|
|
"github.com/zitadel/zitadel/internal/idp/providers/oidc"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestProvider_BeginAuth(t *testing.T) {
|
|
|
|
type fields struct {
|
|
|
|
clientID string
|
|
|
|
clientSecret string
|
|
|
|
redirectURI string
|
2023-02-28 20:20:58 +00:00
|
|
|
scopes []string
|
2023-01-23 07:11:40 +00:00
|
|
|
opts []oidc.ProviderOpts
|
|
|
|
}
|
|
|
|
tests := []struct {
|
|
|
|
name string
|
|
|
|
fields fields
|
|
|
|
want idp.Session
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
name: "successful auth",
|
|
|
|
fields: fields{
|
|
|
|
clientID: "clientID",
|
|
|
|
clientSecret: "clientSecret",
|
|
|
|
redirectURI: "redirectURI",
|
2023-02-28 20:20:58 +00:00
|
|
|
scopes: []string{"openid"},
|
2023-01-23 07:11:40 +00:00
|
|
|
},
|
|
|
|
want: &oidc.Session{
|
2023-03-13 16:34:29 +00:00
|
|
|
AuthURL: "https://gitlab.com/oauth/authorize?client_id=clientID&redirect_uri=redirectURI&response_type=code&scope=openid&state=testState",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "successful auth default scopes",
|
|
|
|
fields: fields{
|
|
|
|
clientID: "clientID",
|
|
|
|
clientSecret: "clientSecret",
|
|
|
|
redirectURI: "redirectURI",
|
|
|
|
},
|
|
|
|
want: &oidc.Session{
|
|
|
|
AuthURL: "https://gitlab.com/oauth/authorize?client_id=clientID&redirect_uri=redirectURI&response_type=code&scope=openid+profile+email&state=testState",
|
2023-01-23 07:11:40 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
|
|
a := assert.New(t)
|
|
|
|
r := require.New(t)
|
|
|
|
|
2023-02-28 20:20:58 +00:00
|
|
|
provider, err := New(tt.fields.clientID, tt.fields.clientSecret, tt.fields.redirectURI, tt.fields.scopes, tt.fields.opts...)
|
2023-01-23 07:11:40 +00:00
|
|
|
r.NoError(err)
|
|
|
|
|
|
|
|
session, err := provider.BeginAuth(context.Background(), "testState")
|
|
|
|
r.NoError(err)
|
|
|
|
|
|
|
|
a.Equal(tt.want.GetAuthURL(), session.GetAuthURL())
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|