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 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190
|
package parse
import (
"bytes"
"math/rand"
"testing"
"github.com/tdewolff/test"
)
func helperRandChars(n, m int, chars string) [][]byte {
r := make([][]byte, n)
for i := range r {
for j := 0; j < m; j++ {
r[i] = append(r[i], chars[rand.Intn(len(chars))])
}
}
return r
}
func helperRandStrings(n, m int, ss []string) [][]byte {
r := make([][]byte, n)
for i := range r {
for j := 0; j < m; j++ {
r[i] = append(r[i], []byte(ss[rand.Intn(len(ss))])...)
}
}
return r
}
////////////////////////////////////////////////////////////////
var wsSlices [][]byte
func init() {
wsSlices = helperRandChars(10000, 50, "abcdefg \n\r\f\t")
}
func TestCopy(t *testing.T) {
foo := []byte("abc")
bar := Copy(foo)
foo[0] = 'b'
test.String(t, string(foo), "bbc")
test.String(t, string(bar), "abc")
}
func TestToLower(t *testing.T) {
foo := []byte("Abc")
bar := ToLower(foo)
bar[1] = 'B'
test.String(t, string(foo), "aBc")
test.String(t, string(bar), "aBc")
}
func TestEqualFold(t *testing.T) {
test.That(t, EqualFold([]byte("Abc"), []byte("abc")))
test.That(t, !EqualFold([]byte("Abcd"), []byte("abc")))
test.That(t, !EqualFold([]byte("Bbc"), []byte("abc")))
test.That(t, !EqualFold([]byte("[]"), []byte("{}"))) // same distance in ASCII as 'a' and 'A'
}
func TestWhitespace(t *testing.T) {
test.That(t, IsAllWhitespace([]byte("\t \r\n\f")))
test.That(t, !IsAllWhitespace([]byte("\t \r\n\fx")))
}
func TestTrim(t *testing.T) {
test.Bytes(t, TrimWhitespace([]byte("a")), []byte("a"))
test.Bytes(t, TrimWhitespace([]byte(" a")), []byte("a"))
test.Bytes(t, TrimWhitespace([]byte("a ")), []byte("a"))
test.Bytes(t, TrimWhitespace([]byte(" ")), []byte(""))
}
func TestPrintable(t *testing.T) {
var tests = []struct {
s string
printable string
}{
{"a", "a"},
{"\x00", "0x00"},
{"\x7F", "0x7F"},
{"\u0800", "ࠀ"},
{"\u200F", "U+200F"},
}
for _, tt := range tests {
t.Run(tt.s, func(t *testing.T) {
printable := ""
for _, r := range tt.s {
printable += Printable(r)
}
test.T(t, printable, tt.printable)
})
}
}
////////////////////////////////////////////////////////////////
func BenchmarkBytesTrim(b *testing.B) {
for i := 0; i < b.N; i++ {
for _, e := range wsSlices {
bytes.TrimSpace(e)
}
}
}
func BenchmarkTrim(b *testing.B) {
for i := 0; i < b.N; i++ {
for _, e := range wsSlices {
TrimWhitespace(e)
}
}
}
func BenchmarkWhitespaceTable(b *testing.B) {
n := 0
for i := 0; i < b.N; i++ {
for _, e := range wsSlices {
for _, c := range e {
if IsWhitespace(c) {
n++
}
}
}
}
}
func BenchmarkWhitespaceIf1(b *testing.B) {
n := 0
for i := 0; i < b.N; i++ {
for _, e := range wsSlices {
for _, c := range e {
if c == ' ' {
n++
}
}
}
}
}
func BenchmarkWhitespaceIf2(b *testing.B) {
n := 0
for i := 0; i < b.N; i++ {
for _, e := range wsSlices {
for _, c := range e {
if c == ' ' || c == '\n' {
n++
}
}
}
}
}
func BenchmarkWhitespaceIf3(b *testing.B) {
n := 0
for i := 0; i < b.N; i++ {
for _, e := range wsSlices {
for _, c := range e {
if c == ' ' || c == '\n' || c == '\r' {
n++
}
}
}
}
}
func BenchmarkWhitespaceIf4(b *testing.B) {
n := 0
for i := 0; i < b.N; i++ {
for _, e := range wsSlices {
for _, c := range e {
if c == ' ' || c == '\n' || c == '\r' || c == '\t' {
n++
}
}
}
}
}
func BenchmarkWhitespaceIf5(b *testing.B) {
n := 0
for i := 0; i < b.N; i++ {
for _, e := range wsSlices {
for _, c := range e {
if c == ' ' || c == '\n' || c == '\r' || c == '\t' || c == '\f' {
n++
}
}
}
}
}
|