Add a test for OutMessage.Reset.

geesefs-0-30-9
Aaron Jacobs 2016-12-19 10:46:17 +11:00
parent e1a6f0e2d8
commit e329c0ef33
1 changed files with 56 additions and 4 deletions

View File

@ -4,16 +4,47 @@ import (
"crypto/rand" "crypto/rand"
"fmt" "fmt"
"io" "io"
"reflect"
"testing" "testing"
"unsafe" "unsafe"
) )
func toByteSlice(p unsafe.Pointer, n int) []byte {
sh := reflect.SliceHeader{
Data: uintptr(p),
Len: n,
Cap: n,
}
return *(*[]byte)(unsafe.Pointer(&sh))
}
// fillWithGarbage writes random data to [p, p+n).
func fillWithGarbage(p unsafe.Pointer, n int) (err error) {
b := toByteSlice(p, n)
_, err = io.ReadFull(rand.Reader, b)
return
}
func randBytes(n int) (b []byte, err error) { func randBytes(n int) (b []byte, err error) {
b = make([]byte, n) b = make([]byte, n)
_, err = io.ReadFull(rand.Reader, b) _, err = io.ReadFull(rand.Reader, b)
return return
} }
// findNonZero finds the offset of the first non-zero byte in [p, p+n). If
// none, it returns n.
func findNonZero(p unsafe.Pointer, n int) int {
b := toByteSlice(p, n)
for i, x := range b {
if x != 0 {
return i
}
}
return n
}
func TestMemclr(t *testing.T) { func TestMemclr(t *testing.T) {
// All sizes up to 32 bytes. // All sizes up to 32 bytes.
var sizes []int var sizes []int
@ -48,15 +79,36 @@ func TestMemclr(t *testing.T) {
memclr(p, uintptr(len(b))) memclr(p, uintptr(len(b)))
// Check // Check
for i, x := range b { if i := findNonZero(p, len(b)); i != len(b) {
if x != 0 { t.Fatalf("non-zero byte at offset %d", i)
t.Fatalf("non-zero byte %d at offset %d", x, i)
}
} }
}) })
} }
} }
func TestOutMessageReset(t *testing.T) {
var om OutMessage
h := om.OutHeader()
const trials = 100
for i := 0; i < trials; i++ {
fillWithGarbage(unsafe.Pointer(h), int(unsafe.Sizeof(*h)))
om.Reset()
if h.Len != 0 {
t.Fatalf("non-zero Len %v", h.Len)
}
if h.Error != 0 {
t.Fatalf("non-zero Error %v", h.Error)
}
if h.Unique != 0 {
t.Fatalf("non-zero Unique %v", h.Unique)
}
}
}
func BenchmarkOutMessageReset(b *testing.B) { func BenchmarkOutMessageReset(b *testing.B) {
// A single buffer, which should fit in some level of CPU cache. // A single buffer, which should fit in some level of CPU cache.
b.Run("Single buffer", func(b *testing.B) { b.Run("Single buffer", func(b *testing.B) {