393 lines
11 KiB
Go
393 lines
11 KiB
Go
package tfa
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
"net/url"
|
|
"strings"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/thomseddon/traefik-forward-auth/internal/provider"
|
|
)
|
|
|
|
/**
|
|
* Tests
|
|
*/
|
|
|
|
func TestAuthValidateCookie(t *testing.T) {
|
|
assert := assert.New(t)
|
|
config, _ = NewConfig([]string{})
|
|
r, _ := http.NewRequest("GET", "http://example.com", nil)
|
|
c := &http.Cookie{}
|
|
|
|
// Should require 3 parts
|
|
c.Value = ""
|
|
_, err := ValidateCookie(r, c)
|
|
if assert.Error(err) {
|
|
assert.Equal("Invalid cookie format", err.Error())
|
|
}
|
|
c.Value = "1|2"
|
|
_, err = ValidateCookie(r, c)
|
|
if assert.Error(err) {
|
|
assert.Equal("Invalid cookie format", err.Error())
|
|
}
|
|
c.Value = "1|2|3|4"
|
|
_, err = ValidateCookie(r, c)
|
|
if assert.Error(err) {
|
|
assert.Equal("Invalid cookie format", err.Error())
|
|
}
|
|
|
|
// Should catch invalid mac
|
|
c.Value = "MQ==|2|3"
|
|
_, err = ValidateCookie(r, c)
|
|
if assert.Error(err) {
|
|
assert.Equal("Invalid cookie mac", err.Error())
|
|
}
|
|
|
|
// Should catch expired
|
|
config.Lifetime = time.Second * time.Duration(-1)
|
|
c = MakeCookie(r, "test@test.com")
|
|
_, err = ValidateCookie(r, c)
|
|
if assert.Error(err) {
|
|
assert.Equal("Cookie has expired", err.Error())
|
|
}
|
|
|
|
// Should accept valid cookie
|
|
config.Lifetime = time.Second * time.Duration(10)
|
|
c = MakeCookie(r, "test@test.com")
|
|
email, err := ValidateCookie(r, c)
|
|
assert.Nil(err, "valid request should not return an error")
|
|
assert.Equal("test@test.com", email, "valid request should return user email")
|
|
}
|
|
|
|
func TestAuthValidateEmail(t *testing.T) {
|
|
assert := assert.New(t)
|
|
config, _ = NewConfig([]string{})
|
|
|
|
// Should allow any
|
|
v := ValidateEmail("test@test.com")
|
|
assert.True(v, "should allow any domain if email domain is not defined")
|
|
v = ValidateEmail("one@two.com")
|
|
assert.True(v, "should allow any domain if email domain is not defined")
|
|
|
|
// Should block non matching domain
|
|
config.Domains = []string{"test.com"}
|
|
v = ValidateEmail("one@two.com")
|
|
assert.False(v, "should not allow user from another domain")
|
|
|
|
// Should allow matching domain
|
|
config.Domains = []string{"test.com"}
|
|
v = ValidateEmail("test@test.com")
|
|
assert.True(v, "should allow user from allowed domain")
|
|
|
|
// Should block non whitelisted email address
|
|
config.Domains = []string{}
|
|
config.Whitelist = []string{"test@test.com"}
|
|
v = ValidateEmail("one@two.com")
|
|
assert.False(v, "should not allow user not in whitelist")
|
|
|
|
// Should allow matching whitelisted email address
|
|
config.Domains = []string{}
|
|
config.Whitelist = []string{"test@test.com"}
|
|
v = ValidateEmail("test@test.com")
|
|
assert.True(v, "should allow user in whitelist")
|
|
}
|
|
|
|
// TODO: Split google tests out
|
|
func TestAuthGetLoginURL(t *testing.T) {
|
|
assert := assert.New(t)
|
|
google := provider.Google{
|
|
ClientId: "idtest",
|
|
ClientSecret: "sectest",
|
|
Scope: "scopetest",
|
|
Prompt: "consent select_account",
|
|
LoginURL: &url.URL{
|
|
Scheme: "https",
|
|
Host: "test.com",
|
|
Path: "/auth",
|
|
},
|
|
}
|
|
|
|
config, _ = NewConfig([]string{})
|
|
config.Providers.Google = google
|
|
|
|
r, _ := http.NewRequest("GET", "http://example.com", nil)
|
|
r.Header.Add("X-Forwarded-Proto", "http")
|
|
r.Header.Add("X-Forwarded-Host", "example.com")
|
|
r.Header.Add("X-Forwarded-Uri", "/hello")
|
|
|
|
// Check url
|
|
uri, err := url.Parse(GetLoginURL(r, "nonce"))
|
|
assert.Nil(err)
|
|
assert.Equal("https", uri.Scheme)
|
|
assert.Equal("test.com", uri.Host)
|
|
assert.Equal("/auth", uri.Path)
|
|
|
|
// Check query string
|
|
qs := uri.Query()
|
|
expectedQs := url.Values{
|
|
"client_id": []string{"idtest"},
|
|
"redirect_uri": []string{"http://example.com/_oauth"},
|
|
"response_type": []string{"code"},
|
|
"scope": []string{"scopetest"},
|
|
"prompt": []string{"consent select_account"},
|
|
"state": []string{"nonce:http://example.com/hello"},
|
|
}
|
|
assert.Equal(expectedQs, qs)
|
|
|
|
//
|
|
// With Auth URL but no matching cookie domain
|
|
// - will not use auth host
|
|
//
|
|
config, _ = NewConfig([]string{})
|
|
config.AuthHost = "auth.example.com"
|
|
config.Providers.Google = google
|
|
|
|
// Check url
|
|
uri, err = url.Parse(GetLoginURL(r, "nonce"))
|
|
assert.Nil(err)
|
|
assert.Equal("https", uri.Scheme)
|
|
assert.Equal("test.com", uri.Host)
|
|
assert.Equal("/auth", uri.Path)
|
|
|
|
// Check query string
|
|
qs = uri.Query()
|
|
expectedQs = url.Values{
|
|
"client_id": []string{"idtest"},
|
|
"redirect_uri": []string{"http://example.com/_oauth"},
|
|
"response_type": []string{"code"},
|
|
"scope": []string{"scopetest"},
|
|
"prompt": []string{"consent select_account"},
|
|
"state": []string{"nonce:http://example.com/hello"},
|
|
}
|
|
assert.Equal(expectedQs, qs)
|
|
|
|
//
|
|
// With correct Auth URL + cookie domain
|
|
//
|
|
config, _ = NewConfig([]string{})
|
|
config.AuthHost = "auth.example.com"
|
|
config.CookieDomains = []CookieDomain{*NewCookieDomain("example.com")}
|
|
config.Providers.Google = google
|
|
|
|
// Check url
|
|
uri, err = url.Parse(GetLoginURL(r, "nonce"))
|
|
assert.Nil(err)
|
|
assert.Equal("https", uri.Scheme)
|
|
assert.Equal("test.com", uri.Host)
|
|
assert.Equal("/auth", uri.Path)
|
|
|
|
// Check query string
|
|
qs = uri.Query()
|
|
expectedQs = url.Values{
|
|
"client_id": []string{"idtest"},
|
|
"redirect_uri": []string{"http://auth.example.com/_oauth"},
|
|
"response_type": []string{"code"},
|
|
"scope": []string{"scopetest"},
|
|
"state": []string{"nonce:http://example.com/hello"},
|
|
"prompt": []string{"consent select_account"},
|
|
}
|
|
assert.Equal(expectedQs, qs)
|
|
|
|
//
|
|
// With Auth URL + cookie domain, but from different domain
|
|
// - will not use auth host
|
|
//
|
|
r, _ = http.NewRequest("GET", "http://another.com", nil)
|
|
r.Header.Add("X-Forwarded-Proto", "http")
|
|
r.Header.Add("X-Forwarded-Host", "another.com")
|
|
r.Header.Add("X-Forwarded-Uri", "/hello")
|
|
|
|
// Check url
|
|
uri, err = url.Parse(GetLoginURL(r, "nonce"))
|
|
assert.Nil(err)
|
|
assert.Equal("https", uri.Scheme)
|
|
assert.Equal("test.com", uri.Host)
|
|
assert.Equal("/auth", uri.Path)
|
|
|
|
// Check query string
|
|
qs = uri.Query()
|
|
expectedQs = url.Values{
|
|
"client_id": []string{"idtest"},
|
|
"redirect_uri": []string{"http://another.com/_oauth"},
|
|
"response_type": []string{"code"},
|
|
"scope": []string{"scopetest"},
|
|
"state": []string{"nonce:http://another.com/hello"},
|
|
"prompt": []string{"consent select_account"},
|
|
}
|
|
assert.Equal(expectedQs, qs)
|
|
}
|
|
|
|
// TODO
|
|
// func TestAuthExchangeCode(t *testing.T) {
|
|
// }
|
|
|
|
// TODO
|
|
// func TestAuthGetUser(t *testing.T) {
|
|
// }
|
|
|
|
func TestAuthMakeCookie(t *testing.T) {
|
|
assert := assert.New(t)
|
|
config, _ = NewConfig([]string{})
|
|
r, _ := http.NewRequest("GET", "http://app.example.com", nil)
|
|
r.Header.Add("X-Forwarded-Host", "app.example.com")
|
|
|
|
c := MakeCookie(r, "test@example.com")
|
|
assert.Equal("_forward_auth", c.Name)
|
|
parts := strings.Split(c.Value, "|")
|
|
assert.Len(parts, 3, "cookie should be 3 parts")
|
|
_, err := ValidateCookie(r, c)
|
|
assert.Nil(err, "should generate valid cookie")
|
|
assert.Equal("/", c.Path)
|
|
assert.Equal("app.example.com", c.Domain)
|
|
assert.True(c.Secure)
|
|
|
|
expires := time.Now().Local().Add(config.Lifetime)
|
|
assert.WithinDuration(expires, c.Expires, 10*time.Second)
|
|
|
|
config.CookieName = "testname"
|
|
config.InsecureCookie = true
|
|
c = MakeCookie(r, "test@example.com")
|
|
assert.Equal("testname", c.Name)
|
|
assert.False(c.Secure)
|
|
}
|
|
|
|
func TestAuthMakeCSRFCookie(t *testing.T) {
|
|
assert := assert.New(t)
|
|
config, _ = NewConfig([]string{})
|
|
r, _ := http.NewRequest("GET", "http://app.example.com", nil)
|
|
r.Header.Add("X-Forwarded-Host", "app.example.com")
|
|
|
|
// No cookie domain or auth url
|
|
c := MakeCSRFCookie(r, "12345678901234567890123456789012")
|
|
assert.Equal("app.example.com", c.Domain)
|
|
|
|
// With cookie domain but no auth url
|
|
config = Config{
|
|
CookieDomains: []CookieDomain{*NewCookieDomain("example.com")},
|
|
}
|
|
c = MakeCSRFCookie(r, "12345678901234567890123456789012")
|
|
assert.Equal("app.example.com", c.Domain)
|
|
|
|
// With cookie domain and auth url
|
|
config = Config{
|
|
AuthHost: "auth.example.com",
|
|
CookieDomains: []CookieDomain{*NewCookieDomain("example.com")},
|
|
}
|
|
c = MakeCSRFCookie(r, "12345678901234567890123456789012")
|
|
assert.Equal("example.com", c.Domain)
|
|
}
|
|
|
|
func TestAuthClearCSRFCookie(t *testing.T) {
|
|
config, _ = NewConfig([]string{})
|
|
r, _ := http.NewRequest("GET", "http://example.com", nil)
|
|
|
|
c := ClearCSRFCookie(r)
|
|
if c.Value != "" {
|
|
t.Error("ClearCSRFCookie should create cookie with empty value")
|
|
}
|
|
}
|
|
|
|
func TestAuthValidateCSRFCookie(t *testing.T) {
|
|
assert := assert.New(t)
|
|
config, _ = NewConfig([]string{})
|
|
c := &http.Cookie{}
|
|
|
|
newCsrfRequest := func(state string) *http.Request {
|
|
u := fmt.Sprintf("http://example.com?state=%s", state)
|
|
r, _ := http.NewRequest("GET", u, nil)
|
|
return r
|
|
}
|
|
|
|
// Should require 32 char string
|
|
r := newCsrfRequest("")
|
|
c.Value = ""
|
|
valid, _, err := ValidateCSRFCookie(r, c)
|
|
assert.False(valid)
|
|
if assert.Error(err) {
|
|
assert.Equal("Invalid CSRF cookie value", err.Error())
|
|
}
|
|
c.Value = "123456789012345678901234567890123"
|
|
valid, _, err = ValidateCSRFCookie(r, c)
|
|
assert.False(valid)
|
|
if assert.Error(err) {
|
|
assert.Equal("Invalid CSRF cookie value", err.Error())
|
|
}
|
|
|
|
// Should require valid state
|
|
r = newCsrfRequest("12345678901234567890123456789012:")
|
|
c.Value = "12345678901234567890123456789012"
|
|
valid, _, err = ValidateCSRFCookie(r, c)
|
|
assert.False(valid)
|
|
if assert.Error(err) {
|
|
assert.Equal("Invalid CSRF state value", err.Error())
|
|
}
|
|
|
|
// Should allow valid state
|
|
r = newCsrfRequest("12345678901234567890123456789012:99")
|
|
c.Value = "12345678901234567890123456789012"
|
|
valid, state, err := ValidateCSRFCookie(r, c)
|
|
assert.True(valid, "valid request should return valid")
|
|
assert.Nil(err, "valid request should not return an error")
|
|
assert.Equal("99", state, "valid request should return correct state")
|
|
}
|
|
|
|
func TestAuthNonce(t *testing.T) {
|
|
assert := assert.New(t)
|
|
err, nonce1 := Nonce()
|
|
assert.Nil(err, "error generating nonce")
|
|
assert.Len(nonce1, 32, "length should be 32 chars")
|
|
|
|
err, nonce2 := Nonce()
|
|
assert.Nil(err, "error generating nonce")
|
|
assert.Len(nonce2, 32, "length should be 32 chars")
|
|
|
|
assert.NotEqual(nonce1, nonce2, "nonce should not be equal")
|
|
}
|
|
|
|
func TestAuthCookieDomainMatch(t *testing.T) {
|
|
assert := assert.New(t)
|
|
cd := NewCookieDomain("example.com")
|
|
|
|
// Exact should match
|
|
assert.True(cd.Match("example.com"), "exact domain should match")
|
|
|
|
// Subdomain should match
|
|
assert.True(cd.Match("test.example.com"), "subdomain should match")
|
|
|
|
// Derived domain should not match
|
|
assert.False(cd.Match("testexample.com"), "derived domain should not match")
|
|
|
|
// Other domain should not match
|
|
assert.False(cd.Match("test.com"), "other domain should not match")
|
|
}
|
|
|
|
func TestAuthCookieDomains(t *testing.T) {
|
|
assert := assert.New(t)
|
|
cds := CookieDomains{}
|
|
|
|
err := cds.UnmarshalFlag("one.com,two.org")
|
|
assert.Nil(err)
|
|
expected := CookieDomains{
|
|
CookieDomain{
|
|
Domain: "one.com",
|
|
DomainLen: 7,
|
|
SubDomain: ".one.com",
|
|
SubDomainLen: 8,
|
|
},
|
|
CookieDomain{
|
|
Domain: "two.org",
|
|
DomainLen: 7,
|
|
SubDomain: ".two.org",
|
|
SubDomainLen: 8,
|
|
},
|
|
}
|
|
assert.Equal(expected, cds)
|
|
|
|
marshal, err := cds.MarshalFlag()
|
|
assert.Nil(err)
|
|
assert.Equal("one.com,two.org", marshal)
|
|
}
|