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, 30 insertions, 0 deletions
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)
+ }
+}