Add limit tests for ReadBytesMaxInto

This commit is contained in:
Jakob Borg 2014-04-09 09:49:47 +02:00
parent 536613f008
commit 711587492c
1 changed files with 25 additions and 0 deletions

View File

@ -55,3 +55,28 @@ func TestBytesGiven(t *testing.T) {
t.Error(err)
}
}
func TestReadMaxInto(t *testing.T) {
var max = 64
for tot := 32; tot < 128; tot++ {
for diff := -32; diff <= 32; diff++ {
var b = new(bytes.Buffer)
var r = NewReader(b)
var w = NewWriter(b)
var toWrite = make([]byte, tot)
w.WriteBytes(toWrite)
var buf = make([]byte, tot+diff)
var bs = r.ReadBytesMaxInto(max, buf)
if tot <= max {
if read := len(bs); read != tot {
t.Errorf("Incorrect read bytes, wrote=%d, buf=%d, max=%d, read=%d", tot, tot+diff, max, read)
}
} else if r.err != ErrElementSizeExceeded {
t.Errorf("Unexpected non-ErrElementSizeExceeded error for wrote=%d, max=%d: %v", tot, max, r.err)
}
}
}
}