mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-14 03:54:21 +00:00
52 lines
1.1 KiB
Go
52 lines
1.1 KiB
Go
|
package google
|
||
|
|
||
|
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
|
||
|
}
|
||
|
tests := []struct {
|
||
|
name string
|
||
|
fields fields
|
||
|
want idp.Session
|
||
|
}{
|
||
|
{
|
||
|
name: "successful auth",
|
||
|
fields: fields{
|
||
|
clientID: "clientID",
|
||
|
clientSecret: "clientSecret",
|
||
|
redirectURI: "redirectURI",
|
||
|
},
|
||
|
want: &oidc.Session{
|
||
|
AuthURL: "https://accounts.google.com/o/oauth2/v2/auth?client_id=clientID&redirect_uri=redirectURI&response_type=code&scope=openid&state=testState",
|
||
|
},
|
||
|
},
|
||
|
}
|
||
|
for _, tt := range tests {
|
||
|
t.Run(tt.name, func(t *testing.T) {
|
||
|
a := assert.New(t)
|
||
|
r := require.New(t)
|
||
|
|
||
|
provider, err := New(tt.fields.clientID, tt.fields.clientSecret, tt.fields.redirectURI)
|
||
|
r.NoError(err)
|
||
|
|
||
|
session, err := provider.BeginAuth(context.Background(), "testState")
|
||
|
r.NoError(err)
|
||
|
|
||
|
a.Equal(tt.want.GetAuthURL(), session.GetAuthURL())
|
||
|
})
|
||
|
}
|
||
|
}
|