From 9c344a0a95c44ef9cebade7b8a65ac160d9eb900 Mon Sep 17 00:00:00 2001 From: Niall Sheridan Date: Sat, 11 Feb 2017 20:20:35 +0000 Subject: Revert "Remove the oauth_callback_url config option" --- server/auth/provider_test.go | 30 ------------------------------ 1 file changed, 30 deletions(-) delete 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 deleted file mode 100644 index e35dcea..0000000 --- a/server/auth/provider_test.go +++ /dev/null @@ -1,30 +0,0 @@ -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