gf/os/grpool/grpool_z_unit_test.go
2021-11-17 23:20:58 +08:00

129 lines
2.6 KiB
Go

// Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
//
// This Source Code Form is subject to the terms of the MIT License.
// If a copy of the MIT was not distributed with this file,
// You can obtain one at https://github.com/gogf/gf.
// go test *.go -bench=".*" -count=1
package grpool_test
import (
"context"
"sync"
"testing"
"time"
"github.com/gogf/gf/v2/container/garray"
"github.com/gogf/gf/v2/os/grpool"
"github.com/gogf/gf/v2/test/gtest"
)
func Test_Basic(t *testing.T) {
gtest.C(t, func(t *gtest.T) {
var (
wg = sync.WaitGroup{}
array = garray.NewArray(true)
size = 100
)
wg.Add(size)
for i := 0; i < size; i++ {
grpool.Add(ctx, func(ctx context.Context) {
array.Append(1)
wg.Done()
})
}
wg.Wait()
time.Sleep(100 * time.Millisecond)
t.Assert(array.Len(), size)
t.Assert(grpool.Jobs(), 0)
t.Assert(grpool.Size(), 0)
})
}
func Test_Limit1(t *testing.T) {
gtest.C(t, func(t *gtest.T) {
var (
wg = sync.WaitGroup{}
array = garray.NewArray(true)
size = 100
pool = grpool.New(10)
)
wg.Add(size)
for i := 0; i < size; i++ {
pool.Add(ctx, func(ctx context.Context) {
array.Append(1)
wg.Done()
})
}
wg.Wait()
t.Assert(array.Len(), size)
})
}
func Test_Limit2(t *testing.T) {
gtest.C(t, func(t *gtest.T) {
var (
wg = sync.WaitGroup{}
array = garray.NewArray(true)
size = 100
pool = grpool.New(1)
)
wg.Add(size)
for i := 0; i < size; i++ {
pool.Add(ctx, func(ctx context.Context) {
defer wg.Done()
array.Append(1)
})
}
wg.Wait()
t.Assert(array.Len(), size)
})
}
func Test_Limit3(t *testing.T) {
gtest.C(t, func(t *gtest.T) {
var (
array = garray.NewArray(true)
size = 1000
pool = grpool.New(100)
)
t.Assert(pool.Cap(), 100)
for i := 0; i < size; i++ {
pool.Add(ctx, func(ctx context.Context) {
array.Append(1)
time.Sleep(2 * time.Second)
})
}
time.Sleep(time.Second)
t.Assert(pool.Size(), 100)
t.Assert(pool.Jobs(), 900)
t.Assert(array.Len(), 100)
pool.Close()
time.Sleep(2 * time.Second)
t.Assert(pool.Size(), 0)
t.Assert(pool.Jobs(), 900)
t.Assert(array.Len(), 100)
t.Assert(pool.IsClosed(), true)
t.AssertNE(pool.Add(ctx, func(ctx context.Context) {}), nil)
})
}
func Test_AddWithRecover(t *testing.T) {
gtest.C(t, func(t *gtest.T) {
array := garray.NewArray(true)
grpool.AddWithRecover(ctx, func(ctx context.Context) {
array.Append(1)
panic(1)
}, func(err error) {
array.Append(1)
})
grpool.AddWithRecover(ctx, func(ctx context.Context) {
panic(1)
array.Append(1)
})
time.Sleep(500 * time.Millisecond)
t.Assert(array.Len(), 2)
})
}