add docs to sanitize tests

pull/2136/head
merlin 2024-10-01 17:15:38 +03:00
parent 59d6aa87b9
commit 90a77b13b2
No known key found for this signature in database
GPG Key ID: 7EDDCEA6A90062E0
1 changed files with 4 additions and 0 deletions

View File

@ -250,6 +250,8 @@ func TestQuoteString(t *testing.T) {
tc("with quotes", `one's hat is always a cat`)
}
// This function was used before optimizations.
// You should keep for testing purposes - we want to ensure there are no breaking changes.
func oldQuoteString(str string) string {
return "'" + strings.ReplaceAll(str, "'", "''") + "'"
}
@ -274,6 +276,8 @@ func TestQuoteBytes(t *testing.T) {
tc("text", []byte("abcd"))
}
// This function was used before optimizations.
// You should keep for testing purposes - we want to ensure there are no breaking changes.
func oldQuoteBytes(buf []byte) string {
return `'\x` + hex.EncodeToString(buf) + "'"
}