1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
//go:build !integration
// +build !integration
package helpers
import (
"crypto/rand"
"testing"
"github.com/stretchr/testify/assert"
)
func BenchmarkShellEscape(b *testing.B) {
data := make([]byte, 1024*1024)
if _, err := rand.Read(data); err != nil {
panic(err)
}
dataStr := string(data)
for i := 0; i < b.N; i++ {
ShellEscapeLegacy(dataStr)
}
}
func TestShellEscapeLegacy(t *testing.T) {
var tests = []struct {
in string
out string
}{
{"standard string", "$'standard string'"},
{"+\t\n\r&", "$'+\\t\\n\\r&'"},
{"", "''"},
}
for _, test := range tests {
actual := ShellEscapeLegacy(test.in)
assert.Equal(t, test.out, actual, "src=%v", test.in)
}
}
|