1
0
Fork 0
forked from mirrors/tar-split
tar-split/tar/common/utf8_test.go

35 lines
672 B
Go
Raw Normal View History

2015-09-23 17:30:00 +00:00
package common
import "testing"
func TestStringValidation(t *testing.T) {
cases := []struct {
value string
result bool
}{
{"aä\uFFFD本☺", false},
{"aä本☺", true},
}
for _, c := range cases {
if got := IsValidUtf8String(c.value); got != c.result {
t.Errorf("string %q - expected %v, got %v", c.value, c.result, got)
}
}
}
func TestBytesValidation(t *testing.T) {
cases := []struct {
value []byte
result bool
}{
{[]byte{0xE4}, false},
{[]byte("aä本☺"), true},
}
for _, c := range cases {
if got := IsValidUtf8Btyes(c.value); got != c.result {
t.Errorf("bytes %q - expected %v, got %v", c.value, c.result, got)
}
}
}