ea1184be2b
benchstat old new name old time/op new time/op delta LogEmpty-8 15.2ns ±14% 13.4ns ± 3% -12.11% (p=0.008 n=5+5) Disabled-8 2.50ns ± 1% 2.28ns ± 6% -8.81% (p=0.008 n=5+5) Info-8 44.4ns ± 1% 36.4ns ± 4% -17.99% (p=0.008 n=5+5) ContextFields-8 47.6ns ± 1% 39.4ns ± 7% -17.30% (p=0.008 n=5+5) ContextAppend-8 18.9ns ± 4% 15.2ns ± 4% -19.68% (p=0.008 n=5+5) LogFields-8 181ns ± 2% 173ns ± 2% -4.63% (p=0.008 n=5+5) LogArrayObject-8 530ns ± 3% 487ns ± 3% -8.11% (p=0.008 n=5+5) LogFieldType/Int-8 29.5ns ± 3% 28.8ns ± 2% ~ (p=0.167 n=5+5) LogFieldType/Interface-8 180ns ± 7% 175ns ± 4% ~ (p=0.579 n=5+5) LogFieldType/Interface(Object)-8 87.8ns ± 3% 80.5ns ± 1% -8.29% (p=0.008 n=5+5) LogFieldType/Object-8 83.7ns ± 2% 77.2ns ± 3% -7.76% (p=0.008 n=5+5) LogFieldType/Bools-8 34.6ns ± 3% 32.3ns ± 6% -6.64% (p=0.032 n=5+5) LogFieldType/Float-8 43.0ns ± 4% 40.5ns ± 4% -5.86% (p=0.016 n=5+5) LogFieldType/Str-8 29.8ns ± 2% 26.5ns ± 5% -11.01% (p=0.008 n=5+5) LogFieldType/Err-8 32.8ns ± 2% 29.8ns ± 4% -9.21% (p=0.008 n=5+5) LogFieldType/Durs-8 309ns ± 3% 304ns ± 3% ~ (p=0.238 n=5+5) LogFieldType/Floats-8 175ns ± 2% 174ns ± 3% ~ (p=0.968 n=5+5) LogFieldType/Strs-8 51.0ns ± 3% 48.4ns ± 6% -5.06% (p=0.032 n=5+5) LogFieldType/Dur-8 44.5ns ± 3% 41.3ns ± 3% -7.11% (p=0.008 n=5+5) LogFieldType/Interface(Objects)-8 758ns ± 3% 760ns ± 6% ~ (p=1.000 n=5+5) LogFieldType/Interfaces-8 772ns ± 5% 762ns ± 4% ~ (p=0.794 n=5+5) LogFieldType/Bool-8 28.0ns ± 6% 26.5ns ± 9% ~ (p=0.143 n=5+5) LogFieldType/Ints-8 49.6ns ± 2% 46.2ns ± 2% -6.70% (p=0.008 n=5+5) LogFieldType/Errs-8 46.5ns ±11% 40.9ns ± 4% -11.92% (p=0.008 n=5+5) LogFieldType/Time-8 115ns ± 3% 113ns ± 3% ~ (p=0.167 n=5+5) LogFieldType/Times-8 810ns ± 1% 811ns ± 3% ~ (p=0.889 n=5+5) ContextFieldType/Errs-8 158ns ± 6% 156ns ±12% ~ (p=1.000 n=5+5) ContextFieldType/Times-8 165ns ±11% 173ns ± 9% ~ (p=0.651 n=5+5) ContextFieldType/Interface-8 289ns ±13% 287ns ±11% ~ (p=0.690 n=5+5) ContextFieldType/Interface(Object)-8 285ns ±12% 297ns ± 6% ~ (p=0.238 n=5+5) ContextFieldType/Interface(Objects)-8 941ns ± 6% 941ns ± 5% ~ (p=1.000 n=5+5) ContextFieldType/Object-8 201ns ± 5% 210ns ±12% ~ (p=0.262 n=5+5) ContextFieldType/Ints-8 173ns ±10% 165ns ± 9% ~ (p=0.198 n=5+5) ContextFieldType/Floats-8 297ns ± 6% 292ns ± 7% ~ (p=0.579 n=5+5) ContextFieldType/Timestamp-8 174ns ± 9% 174ns ±11% ~ (p=0.810 n=5+5) ContextFieldType/Durs-8 445ns ± 9% 425ns ± 3% ~ (p=0.151 n=5+5) ContextFieldType/Interfaces-8 944ns ± 6% 876ns ±10% ~ (p=0.095 n=5+5) ContextFieldType/Strs-8 179ns ±11% 165ns ±13% ~ (p=0.135 n=5+5) ContextFieldType/Dur-8 158ns ± 8% 160ns ±19% ~ (p=1.000 n=5+5) ContextFieldType/Time-8 152ns ±15% 148ns ±14% ~ (p=0.952 n=5+5) ContextFieldType/Str-8 146ns ±12% 147ns ±16% ~ (p=0.841 n=5+5) ContextFieldType/Err-8 138ns ±12% 145ns ±17% ~ (p=0.595 n=5+5) ContextFieldType/Int-8 145ns ±10% 146ns ±13% ~ (p=0.873 n=5+5) ContextFieldType/Float-8 181ns ± 9% 162ns ±12% ~ (p=0.151 n=5+5) ContextFieldType/Bool-8 153ns ±10% 131ns ±19% ~ (p=0.063 n=5+5) ContextFieldType/Bools-8 149ns ±11% 160ns ±16% ~ (p=0.500 n=5+5)
119 lines
4.7 KiB
Go
119 lines
4.7 KiB
Go
package cbor
|
||
|
||
import (
|
||
"bytes"
|
||
"testing"
|
||
)
|
||
|
||
var encodeStringTests = []struct {
|
||
plain string
|
||
binary string
|
||
json string //begin and end quotes are implied
|
||
}{
|
||
{"", "\x60", ""},
|
||
{"\\", "\x61\x5c", "\\\\"},
|
||
{"\x00", "\x61\x00", "\\u0000"},
|
||
{"\x01", "\x61\x01", "\\u0001"},
|
||
{"\x02", "\x61\x02", "\\u0002"},
|
||
{"\x03", "\x61\x03", "\\u0003"},
|
||
{"\x04", "\x61\x04", "\\u0004"},
|
||
{"*", "\x61*", "*"},
|
||
{"a", "\x61a", "a"},
|
||
{"IETF", "\x64IETF", "IETF"},
|
||
{"abcdefghijklmnopqrstuvwxyzABCD", "\x78\x1eabcdefghijklmnopqrstuvwxyzABCD", "abcdefghijklmnopqrstuvwxyzABCD"},
|
||
{"<------------------------------------ This is a 100 character string ----------------------------->" +
|
||
"<------------------------------------ This is a 100 character string ----------------------------->" +
|
||
"<------------------------------------ This is a 100 character string ----------------------------->",
|
||
"\x79\x01\x2c<------------------------------------ This is a 100 character string ----------------------------->" +
|
||
"<------------------------------------ This is a 100 character string ----------------------------->" +
|
||
"<------------------------------------ This is a 100 character string ----------------------------->",
|
||
"<------------------------------------ This is a 100 character string ----------------------------->" +
|
||
"<------------------------------------ This is a 100 character string ----------------------------->" +
|
||
"<------------------------------------ This is a 100 character string ----------------------------->"},
|
||
{"emoji \u2764\ufe0f!", "\x6demoji ❤️!", "emoji \u2764\ufe0f!"},
|
||
}
|
||
|
||
var encodeByteTests = []struct {
|
||
plain []byte
|
||
binary string
|
||
}{
|
||
{[]byte{}, "\x40"},
|
||
{[]byte("\\"), "\x41\x5c"},
|
||
{[]byte("\x00"), "\x41\x00"},
|
||
{[]byte("\x01"), "\x41\x01"},
|
||
{[]byte("\x02"), "\x41\x02"},
|
||
{[]byte("\x03"), "\x41\x03"},
|
||
{[]byte("\x04"), "\x41\x04"},
|
||
{[]byte("*"), "\x41*"},
|
||
{[]byte("a"), "\x41a"},
|
||
{[]byte("IETF"), "\x44IETF"},
|
||
{[]byte("abcdefghijklmnopqrstuvwxyzABCD"), "\x58\x1eabcdefghijklmnopqrstuvwxyzABCD"},
|
||
{[]byte("<------------------------------------ This is a 100 character string ----------------------------->" +
|
||
"<------------------------------------ This is a 100 character string ----------------------------->" +
|
||
"<------------------------------------ This is a 100 character string ----------------------------->"),
|
||
"\x59\x01\x2c<------------------------------------ This is a 100 character string ----------------------------->" +
|
||
"<------------------------------------ This is a 100 character string ----------------------------->" +
|
||
"<------------------------------------ This is a 100 character string ----------------------------->"},
|
||
{[]byte("emoji \u2764\ufe0f!"), "\x4demoji ❤️!"},
|
||
}
|
||
|
||
func TestAppendString(t *testing.T) {
|
||
for _, tt := range encodeStringTests {
|
||
b := enc.AppendString([]byte{}, tt.plain)
|
||
if got, want := string(b), tt.binary; got != want {
|
||
t.Errorf("appendString(%q) = %#q, want %#q", tt.plain, got, want)
|
||
}
|
||
}
|
||
//Test a large string > 65535 length
|
||
|
||
var buffer bytes.Buffer
|
||
for i := 0; i < 0x00011170; i++ { //70,000 character string
|
||
buffer.WriteString("a")
|
||
}
|
||
inp := buffer.String()
|
||
want := "\x7a\x00\x01\x11\x70" + inp
|
||
b := enc.AppendString([]byte{}, inp)
|
||
if got := string(b); got != want {
|
||
t.Errorf("appendString(%q) = %#q, want %#q", inp, got, want)
|
||
}
|
||
}
|
||
|
||
func TestAppendBytes(t *testing.T) {
|
||
for _, tt := range encodeByteTests {
|
||
b := enc.AppendBytes([]byte{}, tt.plain)
|
||
if got, want := string(b), tt.binary; got != want {
|
||
t.Errorf("appendString(%q) = %#q, want %#q", tt.plain, got, want)
|
||
}
|
||
}
|
||
//Test a large string > 65535 length
|
||
|
||
inp := []byte{}
|
||
for i := 0; i < 0x00011170; i++ { //70,000 character string
|
||
inp = append(inp, byte('a'))
|
||
}
|
||
want := "\x5a\x00\x01\x11\x70" + string(inp)
|
||
b := enc.AppendBytes([]byte{}, inp)
|
||
if got := string(b); got != want {
|
||
t.Errorf("appendString(%q) = %#q, want %#q", inp, got, want)
|
||
}
|
||
}
|
||
func BenchmarkAppendString(b *testing.B) {
|
||
tests := map[string]string{
|
||
"NoEncoding": `aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa`,
|
||
"EncodingFirst": `"aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa`,
|
||
"EncodingMiddle": `aaaaaaaaaaaaaaaaaaaaaaaaa"aaaaaaaaaaaaaaaaaaaaaaaa`,
|
||
"EncodingLast": `aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"`,
|
||
"MultiBytesFirst": `❤️aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa`,
|
||
"MultiBytesMiddle": `aaaaaaaaaaaaaaaaaaaaaaaaa❤️aaaaaaaaaaaaaaaaaaaaaaaa`,
|
||
"MultiBytesLast": `aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa❤️`,
|
||
}
|
||
for name, str := range tests {
|
||
b.Run(name, func(b *testing.B) {
|
||
buf := make([]byte, 0, 120)
|
||
for i := 0; i < b.N; i++ {
|
||
_ = enc.AppendString(buf, str)
|
||
}
|
||
})
|
||
}
|
||
}
|