github.com/matrixorigin/matrixone@v1.2.0/pkg/common/arenaskl/arena_test.go (about) 1 /* 2 * Copyright 2017 Dgraph Labs, Inc. and Contributors 3 * Modifications copyright (C) 2017 Andy Kimball and Contributors 4 * and copyright (C) 2024 MatrixOrigin Inc. 5 * 6 * Licensed under the Apache License, Version 2.0 (the "License"); 7 * you may not use this file except in compliance with the License. 8 * You may obtain a copy of the License at 9 * 10 * http://www.apache.org/licenses/LICENSE-2.0 11 * 12 * Unless required by applicable law or agreed to in writing, software 13 * distributed under the License is distributed on an "AS IS" BASIS, 14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 * See the License for the specific language governing permissions and 16 * limitations under the License. 17 */ 18 19 package arenaskl 20 21 import ( 22 "math" 23 "testing" 24 25 "github.com/stretchr/testify/require" 26 ) 27 28 func newArena(n uint32) *Arena { 29 return NewArena(make([]byte, n)) 30 } 31 32 // TestArenaSizeOverflow tests that large allocations do not cause Arena's 33 // internal size accounting to overflow and produce incorrect results. 34 func TestArenaSizeOverflow(t *testing.T) { 35 a := newArena(maxArenaSize) 36 37 // Allocating under the limit throws no error. 38 offset, _, err := a.alloc(math.MaxUint16, 1, 0) 39 require.Nil(t, err) 40 require.Equal(t, uint32(1), offset) 41 require.Equal(t, uint32(math.MaxUint16)+1, a.Size()) 42 43 // Allocating over the limit could cause an accounting 44 // overflow if 32-bit arithmetic was used. It shouldn't. 45 _, _, err = a.alloc(math.MaxUint32, 1, 0) 46 require.Equal(t, ErrArenaFull, err) 47 require.Equal(t, uint32(maxArenaSize), a.Size()) 48 49 // Continuing to allocate continues to throw an error. 50 _, _, err = a.alloc(math.MaxUint16, 1, 0) 51 require.Equal(t, ErrArenaFull, err) 52 require.Equal(t, uint32(maxArenaSize), a.Size()) 53 }