From 44cb8512c9881687e091cca589a0adcb9f72fa7a Mon Sep 17 00:00:00 2001 From: Niall Sheridan Date: Sat, 4 Feb 2017 23:55:31 +0000 Subject: Remove the oauth_callback_url config option Infer the redirect url from the request instead --- server/auth/provider_test.go | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 server/auth/provider_test.go (limited to 'server/auth/provider_test.go') diff --git a/server/auth/provider_test.go b/server/auth/provider_test.go new file mode 100644 index 0000000..e35dcea --- /dev/null +++ b/server/auth/provider_test.go @@ -0,0 +1,30 @@ +package auth + +import ( + "crypto/tls" + "net/http" + "testing" +) + +func TestHTTP(t *testing.T) { + want := "http://example.com/auth/callback" + r := &http.Request{ + Host: "example.com", + } + ret := Oauth2RedirectURL(r) + if want != ret { + t.Errorf("Wanted %s, got %s", want, ret) + } +} + +func TestHTTPS(t *testing.T) { + want := "https://example.com/auth/callback" + r := &http.Request{ + Host: "example.com", + TLS: &tls.ConnectionState{}, + } + ret := Oauth2RedirectURL(r) + if want != ret { + t.Errorf("Wanted %s, got %s", want, ret) + } +} -- cgit v1.2.3