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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
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++ {
ShellEscape(dataStr)
}
}
func TestShellEscape(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 := ShellEscape(test.in)
assert.Equal(t, test.out, actual, "src=%v", test.in)
}
}
func TestToBackslash(t *testing.T) {
result := ToBackslash("smb://user/me/directory")
expected := "smb:\\\\user\\me\\directory"
if result != expected {
t.Error("Expected", expected, ", got ", result)
}
}
func TestToSlash(t *testing.T) {
result := ToSlash("smb:\\\\user\\me\\directory")
expected := "smb://user/me/directory"
if result != expected {
t.Error("Expected", expected, ", got ", result)
}
}
|