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 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
|
// Package faux is used exclusively for testing purposes. I would strongly suggest you move along
// as there's nothing to see here.
package faux
import (
"encoding/json"
"fmt"
"net/http"
"strings"
"github.com/markbates/goth"
"golang.org/x/oauth2"
)
// Provider is used only for testing.
type Provider struct {
HTTPClient *http.Client
providerName string
}
// Session is used only for testing.
type Session struct {
ID string
Name string
Email string
AuthURL string
AccessToken string
}
// Name is used only for testing.
func (p *Provider) Name() string {
return "faux"
}
// SetName is to update the name of the provider (needed in case of multiple providers of 1 type)
func (p *Provider) SetName(name string) {
p.providerName = name
}
// BeginAuth is used only for testing.
func (p *Provider) BeginAuth(state string) (goth.Session, error) {
c := &oauth2.Config{
Endpoint: oauth2.Endpoint{
AuthURL: "http://example.com/auth",
},
}
url := c.AuthCodeURL(state)
return &Session{
ID: "id",
AuthURL: url,
}, nil
}
// FetchUser is used only for testing.
func (p *Provider) FetchUser(session goth.Session) (goth.User, error) {
sess := session.(*Session)
user := goth.User{
UserID: sess.ID,
Name: sess.Name,
Email: sess.Email,
Provider: p.Name(),
AccessToken: sess.AccessToken,
}
if user.AccessToken == "" {
return user, fmt.Errorf("%s cannot get user information without accessToken", p.providerName)
}
return user, nil
}
// UnmarshalSession is used only for testing.
func (p *Provider) UnmarshalSession(data string) (goth.Session, error) {
sess := &Session{}
err := json.NewDecoder(strings.NewReader(data)).Decode(sess)
return sess, err
}
func (p *Provider) Client() *http.Client {
return goth.HTTPClientWithFallBack(p.HTTPClient)
}
// Debug is used only for testing.
func (p *Provider) Debug(debug bool) {}
//RefreshTokenAvailable is used only for testing
func (p *Provider) RefreshTokenAvailable() bool {
return false
}
//RefreshToken is used only for testing
func (p *Provider) RefreshToken(refreshToken string) (*oauth2.Token, error) {
return nil, nil
}
// Authorize is used only for testing.
func (s *Session) Authorize(provider goth.Provider, params goth.Params) (string, error) {
s.AccessToken = "access"
return s.AccessToken, nil
}
// Marshal is used only for testing.
func (s *Session) Marshal() string {
b, _ := json.Marshal(s)
return string(b)
}
// GetAuthURL is used only for testing.
func (s *Session) GetAuthURL() (string, error) {
return s.AuthURL, nil
}
|