mirror of
https://github.com/infinite-iroha/touka.git
synced 2026-06-13 15:47:38 +08:00
feat: add Replace support for reverse proxy header ops
- Support substring replacement via Search field - Support regex replacement via SearchRegexp field (precompiled at Provision) - Support wildcard field name '*' to apply replacement to all headers - Validate that Search and SearchRegexp are mutually exclusive - Add 5 functional tests and 9 benchmark tests covering all operations Benchmark results (no external allocs in hot paths): Add: 527 ns/op, 448 B/op, 5 allocs/op Set: 891 ns/op, 480 B/op, 7 allocs/op Delete(single): 476 ns/op, 48 B/op, 3 allocs/op Delete(wildcard): 1073 ns/op, 104 B/op, 7 allocs/op Replace(sub): 303 ns/op, 64 B/op, 2 allocs/op Replace(regex): 1503 ns/op, 224 B/op, 6 allocs/op Replace(wild): 731 ns/op, 80 B/op, 4 allocs/op Mixed: 1527 ns/op, 128 B/op, 7 allocs/op
This commit is contained in:
parent
06a6d42de1
commit
93f5edc6eb
2 changed files with 494 additions and 3 deletions
|
|
@ -20,6 +20,7 @@ import (
|
||||||
"net/netip"
|
"net/netip"
|
||||||
"net/textproto"
|
"net/textproto"
|
||||||
"net/url"
|
"net/url"
|
||||||
|
"regexp"
|
||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
"sync"
|
"sync"
|
||||||
|
|
@ -80,9 +81,17 @@ var (
|
||||||
)
|
)
|
||||||
|
|
||||||
type HeaderOps struct {
|
type HeaderOps struct {
|
||||||
Add map[string][]string
|
Add map[string][]string
|
||||||
Set map[string][]string
|
Set map[string][]string
|
||||||
Delete []string
|
Delete []string
|
||||||
|
Replace map[string][]Replacement
|
||||||
|
}
|
||||||
|
|
||||||
|
type Replacement struct {
|
||||||
|
Search string
|
||||||
|
Replace string
|
||||||
|
SearchRegexp string
|
||||||
|
re *regexp.Regexp
|
||||||
}
|
}
|
||||||
|
|
||||||
type RespHeaderOps struct {
|
type RespHeaderOps struct {
|
||||||
|
|
@ -146,6 +155,8 @@ func (ops *HeaderOps) applyToRequest(req *http.Request) {
|
||||||
req.Header.Del(fieldName)
|
req.Header.Del(fieldName)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ops.applyReplace(req.Header, replacer)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (ops *RespHeaderOps) applyToResponse(hdr http.Header) {
|
func (ops *RespHeaderOps) applyToResponse(hdr http.Header) {
|
||||||
|
|
@ -216,6 +227,71 @@ func (ops *HeaderOps) applyTo(hdr http.Header, repl *reverseProxyReplacer) {
|
||||||
hdr.Del(fieldName)
|
hdr.Del(fieldName)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ops.applyReplace(hdr, repl)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (ops *HeaderOps) applyReplace(hdr http.Header, repl *reverseProxyReplacer) {
|
||||||
|
if ops == nil || len(ops.Replace) == 0 {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
for fieldName, replacements := range ops.Replace {
|
||||||
|
fieldName = http.CanonicalHeaderKey(repl.Replace(fieldName))
|
||||||
|
if fieldName == "*" {
|
||||||
|
for fn, vals := range hdr {
|
||||||
|
for i := range vals {
|
||||||
|
for _, r := range replacements {
|
||||||
|
hdr[fn][i] = r.apply(vals[i])
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
vals, ok := hdr[fieldName]
|
||||||
|
if !ok {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
for i := range vals {
|
||||||
|
for _, r := range replacements {
|
||||||
|
hdr[fieldName][i] = r.apply(vals[i])
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (r *Replacement) apply(s string) string {
|
||||||
|
if r == nil || s == "" {
|
||||||
|
return s
|
||||||
|
}
|
||||||
|
if r.SearchRegexp != "" && r.re != nil {
|
||||||
|
return r.re.ReplaceAllString(s, r.Replace)
|
||||||
|
}
|
||||||
|
if r.Search != "" {
|
||||||
|
return strings.ReplaceAll(s, r.Search, r.Replace)
|
||||||
|
}
|
||||||
|
return s
|
||||||
|
}
|
||||||
|
|
||||||
|
func (ops *HeaderOps) Provision() error {
|
||||||
|
if ops == nil {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
for fieldName, replacements := range ops.Replace {
|
||||||
|
for i, r := range replacements {
|
||||||
|
if r.SearchRegexp == "" {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
if r.Search != "" {
|
||||||
|
return fmt.Errorf("replacement %d for header field %q: cannot specify both Search and SearchRegexp", i, fieldName)
|
||||||
|
}
|
||||||
|
re, err := regexp.Compile(r.SearchRegexp)
|
||||||
|
if err != nil {
|
||||||
|
return fmt.Errorf("replacement %d for header field %q: %v", i, fieldName, err)
|
||||||
|
}
|
||||||
|
replacements[i].re = re
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
type reverseProxyReplacer struct {
|
type reverseProxyReplacer struct {
|
||||||
|
|
@ -417,6 +493,19 @@ func newReverseProxyHandler(config ReverseProxyConfig) *reverseProxyHandler {
|
||||||
receivedBy: reverseProxyReceivedBy(config.Via),
|
receivedBy: reverseProxyReceivedBy(config.Via),
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if config.RequestHeaders != nil {
|
||||||
|
if err := config.RequestHeaders.Provision(); err != nil {
|
||||||
|
proxy.configError = err
|
||||||
|
return proxy
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if config.ResponseHeaders != nil && config.ResponseHeaders.HeaderOps != nil {
|
||||||
|
if err := config.ResponseHeaders.HeaderOps.Provision(); err != nil {
|
||||||
|
proxy.configError = err
|
||||||
|
return proxy
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
upstreams, err := buildReverseProxyUpstreams(config)
|
upstreams, err := buildReverseProxyUpstreams(config)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
proxy.configError = err
|
proxy.configError = err
|
||||||
|
|
|
||||||
402
reverseproxy_headers_replace_test.go
Normal file
402
reverseproxy_headers_replace_test.go
Normal file
|
|
@ -0,0 +1,402 @@
|
||||||
|
package touka
|
||||||
|
|
||||||
|
import (
|
||||||
|
"io"
|
||||||
|
"net/http"
|
||||||
|
"net/http/httptest"
|
||||||
|
"net/url"
|
||||||
|
"regexp"
|
||||||
|
"testing"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestReverseProxyHeaderOpsReplaceSubstring(t *testing.T) {
|
||||||
|
t.Helper()
|
||||||
|
|
||||||
|
backend := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||||
|
if got := r.Header.Get("X-Server"); got != "Caddy" {
|
||||||
|
t.Errorf("expected X-Server=Caddy, got %q", got)
|
||||||
|
}
|
||||||
|
if got := r.Header.Get("X-Location"); got != "/api/v2/resource" {
|
||||||
|
t.Errorf("expected X-Location=/api/v2/resource, got %q", got)
|
||||||
|
}
|
||||||
|
w.WriteHeader(http.StatusOK)
|
||||||
|
_, _ = w.Write([]byte("ok"))
|
||||||
|
}))
|
||||||
|
defer backend.Close()
|
||||||
|
|
||||||
|
target, err := url.Parse(backend.URL)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("parse target: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
engine := New()
|
||||||
|
engine.GET("/test", ReverseProxy(ReverseProxyConfig{
|
||||||
|
Target: target,
|
||||||
|
RequestHeaders: &HeaderOps{
|
||||||
|
Replace: map[string][]Replacement{
|
||||||
|
"X-Server": {{Search: "NGINX", Replace: "Caddy"}},
|
||||||
|
"X-Location": {{Search: "v1", Replace: "v2"}},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}))
|
||||||
|
|
||||||
|
proxy := httptest.NewServer(engine)
|
||||||
|
defer proxy.Close()
|
||||||
|
|
||||||
|
req, _ := http.NewRequest(http.MethodGet, proxy.URL+"/test", nil)
|
||||||
|
req.Header.Set("X-Server", "NGINX")
|
||||||
|
req.Header.Set("X-Location", "/api/v1/resource")
|
||||||
|
resp, err := http.DefaultClient.Do(req)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("request failed: %v", err)
|
||||||
|
}
|
||||||
|
defer resp.Body.Close()
|
||||||
|
_, _ = io.ReadAll(resp.Body)
|
||||||
|
|
||||||
|
if resp.StatusCode != http.StatusOK {
|
||||||
|
t.Errorf("expected status 200, got %d", resp.StatusCode)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestReverseProxyHeaderOpsReplaceRegexp(t *testing.T) {
|
||||||
|
t.Helper()
|
||||||
|
|
||||||
|
backend := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||||
|
if got := r.Header.Get("X-Route"); got != "/proxy-upstream" {
|
||||||
|
t.Errorf("expected X-Route=/proxy-upstream, got %q", got)
|
||||||
|
}
|
||||||
|
w.WriteHeader(http.StatusOK)
|
||||||
|
_, _ = w.Write([]byte("ok"))
|
||||||
|
}))
|
||||||
|
defer backend.Close()
|
||||||
|
|
||||||
|
target, err := url.Parse(backend.URL)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("parse target: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
engine := New()
|
||||||
|
engine.GET("/test", ReverseProxy(ReverseProxyConfig{
|
||||||
|
Target: target,
|
||||||
|
RequestHeaders: &HeaderOps{
|
||||||
|
Replace: map[string][]Replacement{
|
||||||
|
"X-Route": {{SearchRegexp: `^/([^/]+)/(.+)$`, Replace: "/proxy-$2"}},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}))
|
||||||
|
|
||||||
|
proxy := httptest.NewServer(engine)
|
||||||
|
defer proxy.Close()
|
||||||
|
|
||||||
|
req, _ := http.NewRequest(http.MethodGet, proxy.URL+"/test", nil)
|
||||||
|
req.Header.Set("X-Route", "/original/upstream")
|
||||||
|
resp, err := http.DefaultClient.Do(req)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("request failed: %v", err)
|
||||||
|
}
|
||||||
|
defer resp.Body.Close()
|
||||||
|
_, _ = io.ReadAll(resp.Body)
|
||||||
|
|
||||||
|
if resp.StatusCode != http.StatusOK {
|
||||||
|
t.Errorf("expected status 200, got %d", resp.StatusCode)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestReverseProxyHeaderOpsReplaceWildcard(t *testing.T) {
|
||||||
|
t.Helper()
|
||||||
|
|
||||||
|
backend := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||||
|
if got := r.Header.Get("X-Host-A"); got != "new.example.com" {
|
||||||
|
t.Errorf("expected X-Host-A=new.example.com, got %q", got)
|
||||||
|
}
|
||||||
|
if got := r.Header.Get("X-Host-B"); got != "new.example.com" {
|
||||||
|
t.Errorf("expected X-Host-B=new.example.com, got %q", got)
|
||||||
|
}
|
||||||
|
w.WriteHeader(http.StatusOK)
|
||||||
|
_, _ = w.Write([]byte("ok"))
|
||||||
|
}))
|
||||||
|
defer backend.Close()
|
||||||
|
|
||||||
|
target, err := url.Parse(backend.URL)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("parse target: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
engine := New()
|
||||||
|
engine.GET("/test", ReverseProxy(ReverseProxyConfig{
|
||||||
|
Target: target,
|
||||||
|
RequestHeaders: &HeaderOps{
|
||||||
|
Replace: map[string][]Replacement{
|
||||||
|
"*": {{Search: "old.example.com", Replace: "new.example.com"}},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}))
|
||||||
|
|
||||||
|
proxy := httptest.NewServer(engine)
|
||||||
|
defer proxy.Close()
|
||||||
|
|
||||||
|
req, _ := http.NewRequest(http.MethodGet, proxy.URL+"/test", nil)
|
||||||
|
req.Header.Set("X-Host-A", "old.example.com")
|
||||||
|
req.Header.Set("X-Host-B", "old.example.com")
|
||||||
|
resp, err := http.DefaultClient.Do(req)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("request failed: %v", err)
|
||||||
|
}
|
||||||
|
defer resp.Body.Close()
|
||||||
|
_, _ = io.ReadAll(resp.Body)
|
||||||
|
|
||||||
|
if resp.StatusCode != http.StatusOK {
|
||||||
|
t.Errorf("expected status 200, got %d", resp.StatusCode)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestReverseProxyHeaderOpsReplaceResponse(t *testing.T) {
|
||||||
|
t.Helper()
|
||||||
|
|
||||||
|
backend := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||||
|
w.Header().Set("X-Backend", "backend-internal:8080")
|
||||||
|
w.WriteHeader(http.StatusOK)
|
||||||
|
_, _ = w.Write([]byte("ok"))
|
||||||
|
}))
|
||||||
|
defer backend.Close()
|
||||||
|
|
||||||
|
target, err := url.Parse(backend.URL)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("parse target: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
engine := New()
|
||||||
|
engine.GET("/test", ReverseProxy(ReverseProxyConfig{
|
||||||
|
Target: target,
|
||||||
|
ResponseHeaders: &RespHeaderOps{
|
||||||
|
HeaderOps: &HeaderOps{
|
||||||
|
Replace: map[string][]Replacement{
|
||||||
|
"X-Backend": {{Search: "backend-internal:8080", Replace: "public.example.com"}},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}))
|
||||||
|
|
||||||
|
proxy := httptest.NewServer(engine)
|
||||||
|
defer proxy.Close()
|
||||||
|
|
||||||
|
resp, err := http.Get(proxy.URL + "/test")
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("request failed: %v", err)
|
||||||
|
}
|
||||||
|
defer resp.Body.Close()
|
||||||
|
_, _ = io.ReadAll(resp.Body)
|
||||||
|
|
||||||
|
if got := resp.Header.Get("X-Backend"); got != "public.example.com" {
|
||||||
|
t.Errorf("expected X-Backend=public.example.com, got %q", got)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestReverseProxyHeaderOpsProvisionInvalidRegexp(t *testing.T) {
|
||||||
|
_ = New()
|
||||||
|
ReverseProxy(ReverseProxyConfig{
|
||||||
|
Target: mustParseURL(t, "http://example.com"),
|
||||||
|
RequestHeaders: &HeaderOps{
|
||||||
|
Replace: map[string][]Replacement{
|
||||||
|
"X-Test": {{SearchRegexp: "[invalid"}},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestReplacementApply(t *testing.T) {
|
||||||
|
tests := []struct {
|
||||||
|
name string
|
||||||
|
r *Replacement
|
||||||
|
s string
|
||||||
|
want string
|
||||||
|
}{
|
||||||
|
{name: "nil replacement", r: nil, s: "hello", want: "hello"},
|
||||||
|
{name: "empty string", r: &Replacement{Search: "x", Replace: "y"}, s: "", want: ""},
|
||||||
|
{name: "substring match", r: &Replacement{Search: "world", Replace: "go"}, s: "hello world", want: "hello go"},
|
||||||
|
{name: "substring no match", r: &Replacement{Search: "foo", Replace: "bar"}, s: "hello world", want: "hello world"},
|
||||||
|
{name: "substring multiple", r: &Replacement{Search: "a", Replace: "b"}, s: "aaa", want: "bbb"},
|
||||||
|
{name: "regexp match", r: &Replacement{SearchRegexp: `\d+`, Replace: "N", re: regexp.MustCompile(`\d+`)}, s: "abc123def", want: "abcNdef"},
|
||||||
|
{name: "regexp no match", r: &Replacement{SearchRegexp: `z+`, Replace: "Z", re: regexp.MustCompile(`z+`)}, s: "abc", want: "abc"},
|
||||||
|
{name: "empty search and regexp", r: &Replacement{}, s: "unchanged", want: "unchanged"},
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, tt := range tests {
|
||||||
|
t.Run(tt.name, func(t *testing.T) {
|
||||||
|
if got := tt.r.apply(tt.s); got != tt.want {
|
||||||
|
t.Errorf("Replacement.apply() = %q, want %q", got, tt.want)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func BenchmarkHeaderOpsAdd(b *testing.B) {
|
||||||
|
ops := &HeaderOps{
|
||||||
|
Add: map[string][]string{
|
||||||
|
"X-Custom-1": {"value-1"},
|
||||||
|
"X-Custom-2": {"value-2"},
|
||||||
|
"X-Custom-3": {"value-3"},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
hdr := make(http.Header)
|
||||||
|
repl := &reverseProxyReplacer{}
|
||||||
|
|
||||||
|
b.ReportAllocs()
|
||||||
|
b.ResetTimer()
|
||||||
|
for i := 0; i < b.N; i++ {
|
||||||
|
hdr = make(http.Header)
|
||||||
|
ops.applyTo(hdr, repl)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func BenchmarkHeaderOpsSet(b *testing.B) {
|
||||||
|
ops := &HeaderOps{
|
||||||
|
Set: map[string][]string{
|
||||||
|
"X-Frame-Options": {"DENY"},
|
||||||
|
"X-Content-Type-Options": {"nosniff"},
|
||||||
|
"X-XSS-Protection": {"1; mode=block"},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
hdr := make(http.Header)
|
||||||
|
repl := &reverseProxyReplacer{}
|
||||||
|
|
||||||
|
b.ReportAllocs()
|
||||||
|
b.ResetTimer()
|
||||||
|
for i := 0; i < b.N; i++ {
|
||||||
|
hdr = make(http.Header)
|
||||||
|
ops.applyTo(hdr, repl)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func BenchmarkHeaderOpsDeleteSingle(b *testing.B) {
|
||||||
|
ops := &HeaderOps{
|
||||||
|
Delete: []string{"X-Powered-By"},
|
||||||
|
}
|
||||||
|
repl := &reverseProxyReplacer{}
|
||||||
|
|
||||||
|
b.ReportAllocs()
|
||||||
|
b.ResetTimer()
|
||||||
|
for i := 0; i < b.N; i++ {
|
||||||
|
hdr := make(http.Header)
|
||||||
|
hdr.Set("X-Powered-By", "Express")
|
||||||
|
hdr.Set("X-Keep", "value")
|
||||||
|
ops.applyTo(hdr, repl)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func BenchmarkHeaderOpsDeleteWildcard(b *testing.B) {
|
||||||
|
ops := &HeaderOps{
|
||||||
|
Delete: []string{"X-Debug-*"},
|
||||||
|
}
|
||||||
|
repl := &reverseProxyReplacer{}
|
||||||
|
|
||||||
|
b.ReportAllocs()
|
||||||
|
b.ResetTimer()
|
||||||
|
for i := 0; i < b.N; i++ {
|
||||||
|
hdr := make(http.Header)
|
||||||
|
hdr.Set("X-Debug-1", "v1")
|
||||||
|
hdr.Set("X-Debug-2", "v2")
|
||||||
|
hdr.Set("X-Keep", "value")
|
||||||
|
ops.applyTo(hdr, repl)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func BenchmarkHeaderOpsReplaceSubstring(b *testing.B) {
|
||||||
|
ops := &HeaderOps{
|
||||||
|
Replace: map[string][]Replacement{
|
||||||
|
"Location": {{Search: "http://internal:8080", Replace: "https://public.example.com"}},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
repl := &reverseProxyReplacer{}
|
||||||
|
|
||||||
|
b.ReportAllocs()
|
||||||
|
b.ResetTimer()
|
||||||
|
for i := 0; i < b.N; i++ {
|
||||||
|
hdr := make(http.Header)
|
||||||
|
hdr.Set("Location", "http://internal:8080/api/v1/users")
|
||||||
|
ops.applyTo(hdr, repl)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func BenchmarkHeaderOpsReplaceRegexp(b *testing.B) {
|
||||||
|
re := regexp.MustCompile(`^http://([^/]+)(/.*)$`)
|
||||||
|
ops := &HeaderOps{
|
||||||
|
Replace: map[string][]Replacement{
|
||||||
|
"Location": {{SearchRegexp: `^http://([^/]+)(/.*)$`, Replace: "https://public.example.com$2", re: re}},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
repl := &reverseProxyReplacer{}
|
||||||
|
|
||||||
|
b.ReportAllocs()
|
||||||
|
b.ResetTimer()
|
||||||
|
for i := 0; i < b.N; i++ {
|
||||||
|
hdr := make(http.Header)
|
||||||
|
hdr.Set("Location", "http://internal:8080/api/v1/users")
|
||||||
|
ops.applyTo(hdr, repl)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func BenchmarkHeaderOpsReplaceWildcard(b *testing.B) {
|
||||||
|
ops := &HeaderOps{
|
||||||
|
Replace: map[string][]Replacement{
|
||||||
|
"*": {{Search: "internal.example.com", Replace: "public.example.com"}},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
repl := &reverseProxyReplacer{}
|
||||||
|
|
||||||
|
b.ReportAllocs()
|
||||||
|
b.ResetTimer()
|
||||||
|
for i := 0; i < b.N; i++ {
|
||||||
|
hdr := make(http.Header)
|
||||||
|
hdr.Set("X-Host", "internal.example.com")
|
||||||
|
hdr.Set("X-Origin", "internal.example.com")
|
||||||
|
ops.applyTo(hdr, repl)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func BenchmarkHeaderOpsMixed(b *testing.B) {
|
||||||
|
ops := &HeaderOps{
|
||||||
|
Add: map[string][]string{
|
||||||
|
"X-Request-ID": {"req-123"},
|
||||||
|
},
|
||||||
|
Set: map[string][]string{
|
||||||
|
"X-Frame-Options": {"DENY"},
|
||||||
|
},
|
||||||
|
Delete: []string{"X-Powered-By"},
|
||||||
|
Replace: map[string][]Replacement{
|
||||||
|
"Location": {{Search: "http://internal:8080", Replace: "https://public.example.com"}},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
repl := &reverseProxyReplacer{}
|
||||||
|
|
||||||
|
b.ReportAllocs()
|
||||||
|
b.ResetTimer()
|
||||||
|
for i := 0; i < b.N; i++ {
|
||||||
|
hdr := make(http.Header)
|
||||||
|
hdr.Set("X-Powered-By", "Express")
|
||||||
|
hdr.Set("Location", "http://internal:8080/api")
|
||||||
|
ops.applyTo(hdr, repl)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func BenchmarkReplacementApplySubstring(b *testing.B) {
|
||||||
|
r := &Replacement{Search: "old.example.com", Replace: "new.example.com"}
|
||||||
|
s := "https://old.example.com/api/v1/resource"
|
||||||
|
|
||||||
|
b.ReportAllocs()
|
||||||
|
b.ResetTimer()
|
||||||
|
for i := 0; i < b.N; i++ {
|
||||||
|
_ = r.apply(s)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func BenchmarkReplacementApplyRegexp(b *testing.B) {
|
||||||
|
r := &Replacement{SearchRegexp: `^https?://[^/]+`, Replace: "https://new.example.com", re: regexp.MustCompile(`^https?://[^/]+`)}
|
||||||
|
s := "https://old.example.com/api/v1/resource"
|
||||||
|
|
||||||
|
b.ReportAllocs()
|
||||||
|
b.ResetTimer()
|
||||||
|
for i := 0; i < b.N; i++ {
|
||||||
|
_ = r.apply(s)
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue