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 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
|
package shellescape_test
import (
"testing"
"github.com/alessio/shellescape"
)
func assertEqual(t *testing.T, s, expected string) {
if s != expected {
t.Errorf("%q (expected: %q)", s, expected)
}
}
func TestEmptyString(t *testing.T) {
s := shellescape.Quote("")
expected := "''"
assertEqual(t, s, expected)
}
func TestDoubleQuotedString(t *testing.T) {
s := shellescape.Quote(`"double quoted"`)
expected := `'"double quoted"'`
assertEqual(t, s, expected)
}
func TestSingleQuotedString(t *testing.T) {
s := shellescape.Quote(`'single quoted'`)
expected := `''"'"'single quoted'"'"''`
assertEqual(t, s, expected)
}
func TestUnquotedString(t *testing.T) {
s := shellescape.Quote(`no quotes`)
expected := `'no quotes'`
assertEqual(t, s, expected)
}
func TestSingleInvalid(t *testing.T) {
s := shellescape.Quote(`;`)
expected := `';'`
assertEqual(t, s, expected)
}
func TestAllInvalid(t *testing.T) {
s := shellescape.Quote(`;${}`)
expected := `';${}'`
assertEqual(t, s, expected)
}
func TestCleanString(t *testing.T) {
s := shellescape.Quote("foo.example.com")
expected := `foo.example.com`
assertEqual(t, s, expected)
}
func TestQuoteCommand(t *testing.T) {
s := shellescape.QuoteCommand([]string{"ls", "-l", "file with space"})
expected := `ls -l 'file with space'`
assertEqual(t, s, expected)
}
func TestStripUnsafe(t *testing.T) {
type args struct {
s string
}
tests := []struct {
name string
args args
want string
}{
{"all ASCII printable characters", args{`"printable!" characters '' 12321312"`}, `"printable!" characters '' 12321312"`},
{"some non printable characters", args{"print\u0081ble"}, "printble"},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := shellescape.StripUnsafe(tt.args.s); got != tt.want {
t.Errorf("StripUnsafe() = %v, want %v", got, tt.want)
}
})
}
}
|