Skip to content

Commit

Permalink
Revert "Http: do not use escaped Query, because it will break templat…
Browse files Browse the repository at this point in the history
…ing (#14146)"

This reverts commit 4f88806.
  • Loading branch information
andig committed Jun 4, 2024
1 parent 59fafcc commit 20afad3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 9 deletions.
4 changes: 1 addition & 3 deletions util/net.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,7 @@ func DefaultScheme(uri, scheme string) string {
}
}

// do not use escaped Query, because it will break templating
res, _ := url.QueryUnescape(u.String())
return res
return u.String()
}

// LocalIPs returns a slice of local IPv4 addresses
Expand Down
12 changes: 6 additions & 6 deletions util/net_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,23 +18,23 @@ func TestDefaultPort(t *testing.T) {
}

func TestDefaultScheme(t *testing.T) {
expect := "http://localhost/a={{b}}?a={{b}}"
expect := "http://localhost"

if uri := DefaultScheme("localhost/a={{b}}?a={{b}}", "http"); uri != expect {
if uri := DefaultScheme("localhost", "http"); uri != expect {
t.Errorf("expected %s, got %s", expect, uri)
}

if uri := DefaultScheme("http://localhost/a={{b}}?a={{b}}", "http"); uri != expect {
if uri := DefaultScheme("http://localhost", "http"); uri != expect {
t.Errorf("expected %s, got %s", expect, uri)
}

if uri := DefaultScheme("http://localhost/a={{b}}?a={{b}}", "https"); uri != expect {
if uri := DefaultScheme("http://localhost", "https"); uri != expect {
t.Errorf("expected %s, got %s", expect, uri)
}

expect = "ws://localhost:8080/a={{b}}?a={{b}}"
expect = "ws://localhost:8080"

if uri := DefaultScheme("localhost:8080/a={{b}}?a={{b}}", "ws"); uri != expect {
if uri := DefaultScheme("localhost:8080", "ws"); uri != expect {
t.Errorf("expected %s, got %s", expect, uri)
}
}
Expand Down

0 comments on commit 20afad3

Please sign in to comment.