quoteBytes

check new quoteBytes
pull/2136/head
merlin 2024-10-01 14:30:05 +03:00
parent 1752f7b4c1
commit 58d4c0c94f
No known key found for this signature in database
GPG Key ID: 7EDDCEA6A90062E0
2 changed files with 40 additions and 2 deletions

View File

@ -4,6 +4,7 @@ import (
"bytes"
"encoding/hex"
"fmt"
"slices"
"strconv"
"strings"
"sync"
@ -78,7 +79,7 @@ func (q *Query) Sanitize(args ...any) (string, error) {
case bool:
p = strconv.AppendBool(buf.AvailableBuffer(), arg)
case []byte:
p = []byte(QuoteBytes(arg))
p = quoteBytes(buf.AvailableBuffer(), arg)
case string:
p = []byte(QuoteString(arg))
case time.Time:
@ -127,7 +128,19 @@ func QuoteString(str string) string {
}
func QuoteBytes(buf []byte) string {
return `'\x` + hex.EncodeToString(buf) + "'"
return string(quoteBytes(nil, buf))
}
func quoteBytes(dst, buf []byte) []byte {
dst = append(dst, `'\x`...)
n := hex.EncodedLen(len(buf))
p := slices.Grow(dst[len(dst):], n)[:n]
hex.Encode(p, buf)
dst = append(dst, p...)
dst = append(dst, `'`...)
return dst
}
type sqlLexer struct {

View File

@ -1,6 +1,7 @@
package sanitize_test
import (
"encoding/hex"
"testing"
"time"
@ -227,3 +228,27 @@ func TestQuerySanitize(t *testing.T) {
}
}
}
func TestQuoteBytes(t *testing.T) {
tc := func(name string, input []byte) {
t.Run(name, func(t *testing.T) {
t.Parallel()
got := sanitize.QuoteBytes(input)
want := oldQuoteBytes(input)
if got != want {
t.Errorf("got: %s", got)
t.Fatalf("want: %s", want)
}
})
}
tc("nil", nil)
tc("empty", []byte{})
tc("text", []byte("abcd"))
}
func oldQuoteBytes(buf []byte) string {
return `'\x` + hex.EncodeToString(buf) + "'"
}