Commit 58eca41c authored by Danyal Prout's avatar Danyal Prout

Remove space after comma

parent 0600fe87
...@@ -1170,6 +1170,6 @@ func RecordBatchRPCForward(ctx context.Context, backendName string, reqs []*RPCR ...@@ -1170,6 +1170,6 @@ func RecordBatchRPCForward(ctx context.Context, backendName string, reqs []*RPCR
} }
func stripXFF(xff string) string { func stripXFF(xff string) string {
ipList := strings.Split(xff, ", ") ipList := strings.Split(xff, ",")
return strings.TrimSpace(ipList[0]) return strings.TrimSpace(ipList[0])
} }
package proxyd
import (
"github.com/stretchr/testify/assert"
"testing"
)
func TestStripXFF(t *testing.T) {
tests := []struct {
in, out string
}{
{"1.2.3, 4.5.6, 7.8.9", "1.2.3"},
{"1.2.3,4.5.6", "1.2.3"},
{" 1.2.3 , 4.5.6 ", "1.2.3"},
}
for _, test := range tests {
actual := stripXFF(test.in)
assert.Equal(t, test.out, actual)
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment