mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-25 23:42:23 +00:00
io: allow to restrict slice size in ReadVarBytes
This commit is contained in:
parent
7e2e5e1879
commit
02d0874200
2 changed files with 38 additions and 1 deletions
|
@ -168,8 +168,16 @@ func (r *BinReader) ReadVarUint() uint64 {
|
||||||
|
|
||||||
// ReadVarBytes reads the next set of bytes from the underlying reader.
|
// ReadVarBytes reads the next set of bytes from the underlying reader.
|
||||||
// ReadVarUInt() is used to determine how large that slice is
|
// ReadVarUInt() is used to determine how large that slice is
|
||||||
func (r *BinReader) ReadVarBytes() []byte {
|
func (r *BinReader) ReadVarBytes(maxSize ...int) []byte {
|
||||||
n := r.ReadVarUint()
|
n := r.ReadVarUint()
|
||||||
|
ms := maxArraySize
|
||||||
|
if len(maxSize) != 0 {
|
||||||
|
ms = maxSize[0]
|
||||||
|
}
|
||||||
|
if n > uint64(ms) {
|
||||||
|
r.Err = fmt.Errorf("byte-slice is too big (%d)", n)
|
||||||
|
return nil
|
||||||
|
}
|
||||||
b := make([]byte, n)
|
b := make([]byte, n)
|
||||||
r.ReadBytes(b)
|
r.ReadBytes(b)
|
||||||
return b
|
return b
|
||||||
|
|
|
@ -143,6 +143,35 @@ func TestBufBinWriter_Len(t *testing.T) {
|
||||||
require.Equal(t, 1, bw.Len())
|
require.Equal(t, 1, bw.Len())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestBinReader_ReadVarBytes(t *testing.T) {
|
||||||
|
buf := make([]byte, 11)
|
||||||
|
for i := range buf {
|
||||||
|
buf[i] = byte(i)
|
||||||
|
}
|
||||||
|
w := NewBufBinWriter()
|
||||||
|
w.WriteVarBytes(buf)
|
||||||
|
require.NoError(t, w.Err)
|
||||||
|
data := w.Bytes()
|
||||||
|
|
||||||
|
t.Run("NoArguments", func(t *testing.T) {
|
||||||
|
r := NewBinReaderFromBuf(data)
|
||||||
|
actual := r.ReadVarBytes()
|
||||||
|
require.NoError(t, r.Err)
|
||||||
|
require.Equal(t, buf, actual)
|
||||||
|
})
|
||||||
|
t.Run("Good", func(t *testing.T) {
|
||||||
|
r := NewBinReaderFromBuf(data)
|
||||||
|
actual := r.ReadVarBytes(11)
|
||||||
|
require.NoError(t, r.Err)
|
||||||
|
require.Equal(t, buf, actual)
|
||||||
|
})
|
||||||
|
t.Run("Bad", func(t *testing.T) {
|
||||||
|
r := NewBinReaderFromBuf(data)
|
||||||
|
r.ReadVarBytes(10)
|
||||||
|
require.Error(t, r.Err)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
func TestWriterErrHandling(t *testing.T) {
|
func TestWriterErrHandling(t *testing.T) {
|
||||||
var badio = &badRW{}
|
var badio = &badRW{}
|
||||||
bw := NewBinWriterFromIO(badio)
|
bw := NewBinWriterFromIO(badio)
|
||||||
|
|
Loading…
Reference in a new issue