Skip to content

Commit f7458fa

Browse files
committed
fix test failures
1 parent efd447a commit f7458fa

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

internal/auth.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -137,10 +137,10 @@ func ValidateRedirect(r *http.Request, redirect string) (*url.URL, error) {
137137
}
138138

139139
// If we're using an auth domain?
140-
if use, authHost, _ := useAuthDomain(r); use {
140+
if use, _, reqHost := useAuthDomain(r); use {
141141
// If we are using an auth domain, they redirect must share a common
142142
// suffix with the requested redirect
143-
if !strings.HasSuffix(redirectURL.Host, authHost) {
143+
if !strings.HasSuffix(redirectURL.Host, reqHost) {
144144
return nil, errors.New("Redirect host does not match any expected hosts (should match cookie domain when using auth host)")
145145
}
146146
} else {

internal/auth_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ func TestAuthValidateRedirect(t *testing.T) {
266266
//
267267
// With Auth Host
268268
//
269-
config.AuthHost = "auth.example.com"
269+
config.AuthHosts = CommaSeparatedList{"auth.example.com"}
270270
config.CookieDomains = []CookieDomain{*NewCookieDomain("example.com")}
271271
errStr = "Redirect host does not match any expected hosts (should match cookie domain when using auth host)"
272272

0 commit comments

Comments
 (0)