Add test for precendence with standard port

Signed-off-by: Troels Thomsen <troels@thomsen.io>
Signed-off-by: Derek McGowan <derek@mcgstyle.net> (github: dmcgowan)
pull/2220/head
Troels Thomsen 2017-03-20 16:10:36 -07:00 committed by Derek McGowan
parent 325b0804fe
commit d0b7c92004
No known key found for this signature in database
GPG Key ID: F58C5D0A4405ACDB
1 changed files with 16 additions and 0 deletions

View File

@ -236,6 +236,22 @@ func TestBuilderFromRequest(t *testing.T) {
}},
base: "http://example.com:443",
},
{
name: "forwarded standard port with non-standard headers",
request: &http.Request{URL: u, Host: u.Host, Header: http.Header{
"X-Forwarded-Proto": []string{"https"},
"X-Forwarded-Port": []string{"443"},
}},
base: "https://example.com",
},
{
name: "forwarded standard port with non-standard headers and explicit port",
request: &http.Request{URL: u, Host: u.Host + ":443", Header: http.Header{
"X-Forwarded-Proto": []string{"https"},
"X-Forwarded-Port": []string{"443"},
}},
base: "https://example.com:443",
},
{
name: "several non-standard headers",
request: &http.Request{URL: u, Host: u.Host, Header: http.Header{