blob: 549d57c4357edb8ac6c12976a1e09a0e98f1fcc4 [file]
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package memory_test
import (
"bytes"
"testing"
"github.com/apache/arrow-go/v18/arrow/memory"
"github.com/stretchr/testify/assert"
)
type movingAllocator struct{}
func (*movingAllocator) Allocate(size int) []byte { return make([]byte, size) }
func (*movingAllocator) Reallocate(size int, old []byte) []byte {
next := make([]byte, size)
copy(next, old)
clear(old)
return next
}
func (*movingAllocator) Free([]byte) {}
func TestNewResizableBuffer(t *testing.T) {
mem := memory.NewCheckedAllocator(memory.NewGoAllocator())
defer mem.AssertSize(t, 0)
buf := memory.NewResizableBuffer(mem)
buf.Retain() // refCount == 2
exp := 10
buf.Resize(exp)
assert.NotNil(t, buf.Bytes())
assert.Equal(t, exp, len(buf.Bytes()))
assert.Equal(t, exp, buf.Len())
buf.Release() // refCount == 1
assert.NotNil(t, buf.Bytes())
buf.Release() // refCount == 0
assert.Nil(t, buf.Bytes())
assert.Zero(t, buf.Len())
}
func TestBufferReset(t *testing.T) {
mem := memory.NewCheckedAllocator(memory.NewGoAllocator())
defer mem.AssertSize(t, 0)
buf := memory.NewResizableBuffer(mem)
buf.Resize(64)
newBytes := []byte("some-new-bytes")
buf.Reset(newBytes)
assert.Equal(t, newBytes, buf.Bytes())
assert.Equal(t, len(newBytes), buf.Len())
assert.Equal(t, 64, mem.CurrentAlloc())
newBytes[0] = 'S'
assert.Equal(t, byte('s'), buf.Bytes()[0])
grownBytes := bytes.Repeat([]byte("g"), 96)
buf.Reset(grownBytes)
assert.Equal(t, grownBytes, buf.Bytes())
assert.Equal(t, 96, buf.Len())
assert.Equal(t, 128, mem.CurrentAlloc())
grownBytes[0] = 'G'
assert.Equal(t, byte('g'), buf.Bytes()[0])
buf.Reset(nil)
assert.Empty(t, buf.Bytes())
assert.Zero(t, mem.CurrentAlloc())
buf.Release()
}
func TestBufferSlice(t *testing.T) {
mem := memory.NewCheckedAllocator(memory.NewGoAllocator())
defer mem.AssertSize(t, 0)
buf := memory.NewResizableBuffer(mem)
buf.Resize(1024)
assert.Equal(t, 1024, mem.CurrentAlloc())
slice := memory.SliceBuffer(buf, 512, 256)
buf.Release()
assert.Equal(t, 1024, mem.CurrentAlloc())
slice.Release()
}
func TestBufferResetFromOwnedSlice(t *testing.T) {
mem := memory.NewCheckedAllocator(&movingAllocator{})
defer mem.AssertSize(t, 0)
buf := memory.NewResizableBuffer(mem)
buf.Resize(128)
copy(buf.Bytes(), bytes.Repeat([]byte("0123456789abcdef"), 8))
want := bytes.Clone(buf.Bytes()[32:64])
buf.Reset(buf.Bytes()[32:64])
assert.Equal(t, want, buf.Bytes())
buf.Release()
}