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
|
package dropbox
import (
"os"
"testing"
"github.com/markbates/goth"
"github.com/stretchr/testify/assert"
)
func provider() *Provider {
return New(os.Getenv("DROPBOX_KEY"), os.Getenv("DROPBOX_SECRET"), "/foo", "email")
}
func Test_New(t *testing.T) {
t.Parallel()
a := assert.New(t)
p := provider()
a.Equal(p.ClientKey, os.Getenv("DROPBOX_KEY"))
a.Equal(p.Secret, os.Getenv("DROPBOX_SECRET"))
a.Equal(p.CallbackURL, "/foo")
}
func Test_Implements_Provider(t *testing.T) {
t.Parallel()
a := assert.New(t)
a.Implements((*goth.Provider)(nil), provider())
}
func Test_ImplementsSession(t *testing.T) {
t.Parallel()
a := assert.New(t)
s := &Session{}
a.Implements((*goth.Session)(nil), s)
}
func Test_BeginAuth(t *testing.T) {
t.Parallel()
a := assert.New(t)
p := provider()
session, err := p.BeginAuth("test_state")
s := session.(*Session)
a.NoError(err)
a.Contains(s.AuthURL, "www.dropbox.com/1/oauth2/authorize")
}
func Test_SessionFromJSON(t *testing.T) {
t.Parallel()
a := assert.New(t)
p := provider()
session, err := p.UnmarshalSession(`{"AuthURL":"https://www.dropbox.com/1/oauth2/authorize","Token":"1234567890"}`)
a.NoError(err)
s := session.(*Session)
a.Equal(s.AuthURL, "https://www.dropbox.com/1/oauth2/authorize")
a.Equal(s.Token, "1234567890")
}
func Test_SessionToJSON(t *testing.T) {
t.Parallel()
a := assert.New(t)
s := &Session{}
data := s.Marshal()
a.Equal(data, `{"AuthURL":"","Token":""}`)
}
func Test_GetAuthURL(t *testing.T) {
t.Parallel()
a := assert.New(t)
s := &Session{}
_, err := s.GetAuthURL()
a.Error(err)
s.AuthURL = "/foo"
url, _ := s.GetAuthURL()
a.Equal(url, "/foo")
}
|