1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
|
package gplus_test
import (
"fmt"
"os"
"testing"
"github.com/markbates/goth"
"github.com/markbates/goth/providers/gplus"
"github.com/stretchr/testify/assert"
)
func Test_New(t *testing.T) {
t.Parallel()
a := assert.New(t)
provider := gplusProvider()
a.Equal(provider.ClientKey, os.Getenv("GPLUS_KEY"))
a.Equal(provider.Secret, os.Getenv("GPLUS_SECRET"))
a.Equal(provider.CallbackURL, "/foo")
}
func Test_BeginAuth(t *testing.T) {
t.Parallel()
a := assert.New(t)
provider := gplusProvider()
session, err := provider.BeginAuth("test_state")
s := session.(*gplus.Session)
a.NoError(err)
a.Contains(s.AuthURL, "accounts.google.com/o/oauth2/auth")
a.Contains(s.AuthURL, fmt.Sprintf("client_id=%s", os.Getenv("GPLUS_KEY")))
a.Contains(s.AuthURL, "state=test_state")
a.Contains(s.AuthURL, "scope=profile+email+openid")
}
func Test_BeginAuthWithPrompt(t *testing.T) {
// This exists because there was a panic caused by the oauth2 package when
// the AuthCodeOption passed was nil. This test uses it, Test_BeginAuth does
// not, to ensure both cases are covered.
t.Parallel()
a := assert.New(t)
provider := gplusProvider()
provider.SetPrompt("test", "prompts")
session, err := provider.BeginAuth("test_state")
s := session.(*gplus.Session)
a.NoError(err)
a.Contains(s.AuthURL, "accounts.google.com/o/oauth2/auth")
a.Contains(s.AuthURL, fmt.Sprintf("client_id=%s", os.Getenv("GPLUS_KEY")))
a.Contains(s.AuthURL, "state=test_state")
a.Contains(s.AuthURL, "scope=profile+email+openid")
a.Contains(s.AuthURL, "prompt=test+prompts")
}
func Test_Implements_Provider(t *testing.T) {
t.Parallel()
a := assert.New(t)
a.Implements((*goth.Provider)(nil), gplusProvider())
}
func Test_SessionFromJSON(t *testing.T) {
t.Parallel()
a := assert.New(t)
provider := gplusProvider()
s, err := provider.UnmarshalSession(`{"AuthURL":"https://accounts.google.com/o/oauth2/auth","AccessToken":"1234567890"}`)
a.NoError(err)
session := s.(*gplus.Session)
a.Equal(session.AuthURL, "https://accounts.google.com/o/oauth2/auth")
a.Equal(session.AccessToken, "1234567890")
}
func gplusProvider() *gplus.Provider {
return gplus.New(os.Getenv("GPLUS_KEY"), os.Getenv("GPLUS_SECRET"), "/foo")
}
|