aboutsummaryrefslogtreecommitdiff
path: root/server/auth/provider_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'server/auth/provider_test.go')
-rw-r--r--server/auth/provider_test.go30
1 files changed, 0 insertions, 30 deletions
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)
- }
-}