mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
590160ddbb
The added helper functions - SetLength() and ExtendCapacity() - replace error-prone code with simple function calls.
38 lines
763 B
Go
38 lines
763 B
Go
package leveledbytebufferpool
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/slicesutil"
|
|
)
|
|
|
|
func TestGetPutConcurrent(t *testing.T) {
|
|
const concurrency = 10
|
|
doneCh := make(chan struct{}, concurrency)
|
|
for i := 0; i < concurrency; i++ {
|
|
go func() {
|
|
for capacity := -1; capacity < 100; capacity++ {
|
|
bb := Get(capacity)
|
|
if len(bb.B) > 0 {
|
|
panic(fmt.Errorf("len(bb.B) must be zero; got %d", len(bb.B)))
|
|
}
|
|
if capacity < 0 {
|
|
capacity = 0
|
|
}
|
|
bb.B = slicesutil.SetLength(bb.B, len(bb.B)+capacity)
|
|
Put(bb)
|
|
}
|
|
doneCh <- struct{}{}
|
|
}()
|
|
}
|
|
tc := time.After(10 * time.Second)
|
|
for i := 0; i < concurrency; i++ {
|
|
select {
|
|
case <-tc:
|
|
t.Fatalf("timeout")
|
|
case <-doneCh:
|
|
}
|
|
}
|
|
}
|