oauth2/transport_test.go

54 lines
1.1 KiB
Go
Raw Normal View History

2014-06-17 11:22:06 -04:00
package oauth2
import (
"net/http"
"net/http/httptest"
"testing"
"time"
)
type tokenSource struct{ token *Token }
2014-06-17 11:22:06 -04:00
func (t *tokenSource) Token() (*Token, error) {
return t.token, nil
}
func TestTransportTokenSource(t *testing.T) {
ts := &tokenSource{
2014-06-17 11:22:06 -04:00
token: &Token{
AccessToken: "abc",
},
}
tr := &Transport{
Source: ts,
}
2014-06-17 11:22:06 -04:00
server := newMockServer(func(w http.ResponseWriter, r *http.Request) {
if r.Header.Get("Authorization") != "Bearer abc" {
2014-07-09 01:27:34 -04:00
t.Errorf("Transport doesn't set the Authorization header from the fetched token")
2014-06-17 11:22:06 -04:00
}
})
defer server.Close()
client := http.Client{Transport: tr}
client.Get(server.URL)
}
func TestTokenValidNoAccessToken(t *testing.T) {
2014-06-17 11:22:06 -04:00
token := &Token{}
if token.Valid() {
t.Errorf("Token should not be valid with no access token")
2014-06-17 11:22:06 -04:00
}
}
func TestExpiredWithExpiry(t *testing.T) {
token := &Token{
Expiry: time.Now().Add(-5 * time.Hour),
}
if token.Valid() {
t.Errorf("Token should not be valid if it expired in the past")
2014-06-17 11:22:06 -04:00
}
}
func newMockServer(handler func(w http.ResponseWriter, r *http.Request)) *httptest.Server {
return httptest.NewServer(http.HandlerFunc(handler))
}