代码拉取完成,页面将自动刷新
package routine
import (
"math/rand"
"sync"
"testing"
"github.com/stretchr/testify/assert"
)
const (
concurrency = 500
loopTimes = 200
)
func TestSupplier(t *testing.T) {
var supplier Supplier[string] = func() string {
return "Hello"
}
assert.Equal(t, "Hello", supplier())
//
var fun func() string = supplier
assert.Equal(t, "Hello", fun())
}
//===
func TestNewThreadLocal_Single(t *testing.T) {
tls := NewThreadLocal[string]()
tls.Set("Hello")
assert.Equal(t, "Hello", tls.Get())
//
tls2 := NewThreadLocal[int]()
assert.Equal(t, "Hello", tls.Get())
tls2.Set(22)
assert.Equal(t, 22, tls2.Get())
//
tls2.Set(33)
assert.Equal(t, 33, tls2.Get())
//
task := GoWait(func(token CancelToken) {
assert.Equal(t, "", tls.Get())
assert.Equal(t, 0, tls2.Get())
})
task.Get()
}
func TestNewThreadLocal_Multi(t *testing.T) {
tls := NewThreadLocal[string]()
tls2 := NewThreadLocal[int]()
tls.Set("Hello")
tls2.Set(22)
assert.Equal(t, 22, tls2.Get())
assert.Equal(t, "Hello", tls.Get())
//
tls2.Set(33)
assert.Equal(t, 33, tls2.Get())
//
task := GoWait(func(token CancelToken) {
assert.Equal(t, "", tls.Get())
assert.Equal(t, 0, tls2.Get())
})
task.Get()
}
func TestNewThreadLocal_Concurrency(t *testing.T) {
tls := NewThreadLocal[uint64]()
tls2 := NewThreadLocal[uint64]()
//
tls2.Set(33)
assert.Equal(t, uint64(33), tls2.Get())
//
wg := &sync.WaitGroup{}
wg.Add(concurrency)
for i := 0; i < concurrency; i++ {
assert.Equal(t, uint64(0), tls.Get())
assert.Equal(t, uint64(33), tls2.Get())
Go(func() {
assert.Equal(t, uint64(0), tls.Get())
assert.Equal(t, uint64(0), tls2.Get())
v := rand.Uint64()
v2 := rand.Uint64()
for j := 0; j < loopTimes; j++ {
tls.Set(v)
tmp := tls.Get()
assert.Equal(t, v, tmp)
//
tls2.Set(v2)
tmp2 := tls2.Get()
assert.Equal(t, v2, tmp2)
}
wg.Done()
})
}
wg.Wait()
//
task := GoWait(func(token CancelToken) {
assert.Equal(t, uint64(0), tls.Get())
assert.Equal(t, uint64(0), tls2.Get())
})
task.Get()
}
func TestNewThreadLocal_Interface(t *testing.T) {
tls := NewThreadLocal[Cloneable]()
tls2 := NewThreadLocal[Cloneable]()
//
assert.Nil(t, tls.Get())
assert.Nil(t, tls2.Get())
//
tls.Set(nil)
tls2.Set(nil)
assert.Nil(t, tls.Get())
assert.Nil(t, tls2.Get())
//
tls.Set(&personCloneable{Id: 1, Name: "Hello"})
tls2.Set(&personCloneable{Id: 1, Name: "Hello"})
assert.NotNil(t, tls.Get())
assert.NotNil(t, tls2.Get())
//
tls.Remove()
tls2.Remove()
assert.Nil(t, tls.Get())
assert.Nil(t, tls2.Get())
//
task := GoWait(func(token CancelToken) {
assert.Nil(t, tls.Get())
assert.Nil(t, tls2.Get())
})
task.Get()
}
func TestNewThreadLocal_Pointer(t *testing.T) {
tls := NewThreadLocal[*personCloneable]()
tls2 := NewThreadLocal[*personCloneable]()
//
assert.Nil(t, tls.Get())
assert.Nil(t, tls2.Get())
//
tls.Set(nil)
tls2.Set(nil)
assert.Nil(t, tls.Get())
assert.Nil(t, tls2.Get())
//
tls.Set(&personCloneable{Id: 1, Name: "Hello"})
tls2.Set(&personCloneable{Id: 1, Name: "Hello"})
assert.NotNil(t, tls.Get())
assert.NotNil(t, tls2.Get())
//
tls.Remove()
tls2.Remove()
assert.Nil(t, tls.Get())
assert.Nil(t, tls2.Get())
//
task := GoWait(func(token CancelToken) {
assert.Nil(t, tls.Get())
assert.Nil(t, tls2.Get())
})
task.Get()
}
//===
func TestNewThreadLocalWithInitial_Single(t *testing.T) {
tls := NewThreadLocalWithInitial[string](func() string {
return "Hello"
})
assert.Equal(t, "Hello", tls.Get())
//
tls2 := NewThreadLocalWithInitial[int](func() int {
return 22
})
assert.Equal(t, "Hello", tls.Get())
assert.Equal(t, 22, tls2.Get())
//
tls2.Set(33)
assert.Equal(t, 33, tls2.Get())
//
task := GoWait(func(token CancelToken) {
assert.Equal(t, "Hello", tls.Get())
assert.Equal(t, 22, tls2.Get())
})
task.Get()
}
func TestNewThreadLocalWithInitial_Multi(t *testing.T) {
tls := NewThreadLocalWithInitial[string](func() string {
return "Hello"
})
tls2 := NewThreadLocalWithInitial[int](func() int {
return 22
})
tls.Set("Hello")
tls2.Set(22)
assert.Equal(t, 22, tls2.Get())
assert.Equal(t, "Hello", tls.Get())
//
tls2.Set(33)
assert.Equal(t, 33, tls2.Get())
//
task := GoWait(func(token CancelToken) {
assert.Equal(t, "Hello", tls.Get())
assert.Equal(t, 22, tls2.Get())
})
task.Get()
}
func TestNewThreadLocalWithInitial_Concurrency(t *testing.T) {
tls := NewThreadLocalWithInitial[any](func() any {
return "Hello"
})
tls2 := NewThreadLocalWithInitial[uint64](func() uint64 {
return uint64(22)
})
//
tls2.Set(33)
assert.Equal(t, uint64(33), tls2.Get())
//
wg := &sync.WaitGroup{}
wg.Add(concurrency)
for i := 0; i < concurrency; i++ {
assert.Equal(t, "Hello", tls.Get())
assert.Equal(t, uint64(33), tls2.Get())
Go(func() {
assert.Equal(t, "Hello", tls.Get())
assert.Equal(t, uint64(22), tls2.Get())
v := rand.Uint64()
v2 := rand.Uint64()
for j := 0; j < loopTimes; j++ {
tls.Set(v)
tmp := tls.Get()
assert.Equal(t, v, tmp.(uint64))
//
tls2.Set(v2)
tmp2 := tls2.Get()
assert.Equal(t, v2, tmp2)
}
wg.Done()
})
}
wg.Wait()
//
task := GoWait(func(token CancelToken) {
assert.Equal(t, "Hello", tls.Get())
assert.Equal(t, uint64(22), tls2.Get())
})
task.Get()
}
func TestNewThreadLocalWithInitial_Interface(t *testing.T) {
tls := NewThreadLocalWithInitial[Cloneable](func() Cloneable {
return nil
})
tls2 := NewThreadLocalWithInitial[Cloneable](func() Cloneable {
return nil
})
//
assert.Nil(t, tls.Get())
assert.Nil(t, tls2.Get())
//
tls.Set(nil)
tls2.Set(nil)
assert.Nil(t, tls.Get())
assert.Nil(t, tls2.Get())
//
tls.Set(&personCloneable{Id: 1, Name: "Hello"})
tls2.Set(&personCloneable{Id: 1, Name: "Hello"})
assert.NotNil(t, tls.Get())
assert.NotNil(t, tls2.Get())
//
tls.Remove()
tls2.Remove()
assert.Nil(t, tls.Get())
assert.Nil(t, tls2.Get())
//
task := GoWait(func(token CancelToken) {
assert.Nil(t, tls.Get())
assert.Nil(t, tls2.Get())
})
task.Get()
}
func TestNewThreadLocalWithInitial_Pointer(t *testing.T) {
tls := NewThreadLocalWithInitial[*personCloneable](func() *personCloneable {
return nil
})
tls2 := NewThreadLocalWithInitial[*personCloneable](func() *personCloneable {
return nil
})
//
assert.Nil(t, tls.Get())
assert.Nil(t, tls2.Get())
//
tls.Set(nil)
tls2.Set(nil)
assert.Nil(t, tls.Get())
assert.Nil(t, tls2.Get())
//
tls.Set(&personCloneable{Id: 1, Name: "Hello"})
tls2.Set(&personCloneable{Id: 1, Name: "Hello"})
assert.NotNil(t, tls.Get())
assert.NotNil(t, tls2.Get())
//
tls.Remove()
tls2.Remove()
assert.Nil(t, tls.Get())
assert.Nil(t, tls2.Get())
//
task := GoWait(func(token CancelToken) {
assert.Nil(t, tls.Get())
assert.Nil(t, tls2.Get())
})
task.Get()
}
//===
func TestNewInheritableThreadLocal_Single(t *testing.T) {
tls := NewInheritableThreadLocal[string]()
tls.Set("Hello")
assert.Equal(t, "Hello", tls.Get())
//
tls2 := NewInheritableThreadLocal[int]()
assert.Equal(t, "Hello", tls.Get())
tls2.Set(22)
assert.Equal(t, 22, tls2.Get())
//
tls2.Set(33)
assert.Equal(t, 33, tls2.Get())
//
task := GoWait(func(token CancelToken) {
assert.Equal(t, "Hello", tls.Get())
assert.Equal(t, 33, tls2.Get())
})
task.Get()
}
func TestNewInheritableThreadLocal_Multi(t *testing.T) {
tls := NewInheritableThreadLocal[string]()
tls2 := NewInheritableThreadLocal[int]()
tls.Set("Hello")
tls2.Set(22)
assert.Equal(t, 22, tls2.Get())
assert.Equal(t, "Hello", tls.Get())
//
tls2.Set(33)
assert.Equal(t, 33, tls2.Get())
//
task := GoWait(func(token CancelToken) {
assert.Equal(t, "Hello", tls.Get())
assert.Equal(t, 33, tls2.Get())
})
task.Get()
}
func TestNewInheritableThreadLocal_Concurrency(t *testing.T) {
tls := NewInheritableThreadLocal[uint64]()
tls2 := NewInheritableThreadLocal[uint64]()
//
tls2.Set(33)
assert.Equal(t, uint64(33), tls2.Get())
//
wg := &sync.WaitGroup{}
wg.Add(concurrency)
for i := 0; i < concurrency; i++ {
assert.Equal(t, uint64(0), tls.Get())
assert.Equal(t, uint64(33), tls2.Get())
Go(func() {
assert.Equal(t, uint64(0), tls.Get())
assert.Equal(t, uint64(33), tls2.Get())
v := rand.Uint64()
v2 := rand.Uint64()
for j := 0; j < loopTimes; j++ {
tls.Set(v)
tmp := tls.Get()
assert.Equal(t, v, tmp)
//
tls2.Set(v2)
tmp2 := tls2.Get()
assert.Equal(t, v2, tmp2)
}
wg.Done()
})
}
wg.Wait()
//
task := GoWait(func(token CancelToken) {
assert.Equal(t, uint64(0), tls.Get())
assert.Equal(t, uint64(33), tls2.Get())
})
task.Get()
}
func TestNewInheritableThreadLocal_Interface(t *testing.T) {
tls := NewInheritableThreadLocal[Cloneable]()
tls2 := NewInheritableThreadLocal[Cloneable]()
//
assert.Nil(t, tls.Get())
assert.Nil(t, tls2.Get())
//
tls.Set(nil)
tls2.Set(nil)
assert.Nil(t, tls.Get())
assert.Nil(t, tls2.Get())
//
tls.Set(&personCloneable{Id: 1, Name: "Hello"})
tls2.Set(&personCloneable{Id: 1, Name: "Hello"})
assert.NotNil(t, tls.Get())
assert.NotNil(t, tls2.Get())
//
tls.Remove()
tls2.Remove()
assert.Nil(t, tls.Get())
assert.Nil(t, tls2.Get())
//
task := GoWait(func(token CancelToken) {
assert.Nil(t, tls.Get())
assert.Nil(t, tls2.Get())
})
task.Get()
}
func TestNewInheritableThreadLocal_Pointer(t *testing.T) {
tls := NewInheritableThreadLocal[*personCloneable]()
tls2 := NewInheritableThreadLocal[*personCloneable]()
//
assert.Nil(t, tls.Get())
assert.Nil(t, tls2.Get())
//
tls.Set(nil)
tls2.Set(nil)
assert.Nil(t, tls.Get())
assert.Nil(t, tls2.Get())
//
tls.Set(&personCloneable{Id: 1, Name: "Hello"})
tls2.Set(&personCloneable{Id: 1, Name: "Hello"})
assert.NotNil(t, tls.Get())
assert.NotNil(t, tls2.Get())
//
tls.Remove()
tls2.Remove()
assert.Nil(t, tls.Get())
assert.Nil(t, tls2.Get())
//
task := GoWait(func(token CancelToken) {
assert.Nil(t, tls.Get())
assert.Nil(t, tls2.Get())
})
task.Get()
}
//===
func TestNewInheritableThreadLocalWithInitial_Single(t *testing.T) {
tls := NewInheritableThreadLocalWithInitial[string](func() string {
return "Hello"
})
assert.Equal(t, "Hello", tls.Get())
//
tls2 := NewInheritableThreadLocalWithInitial[int](func() int {
return 22
})
assert.Equal(t, "Hello", tls.Get())
assert.Equal(t, 22, tls2.Get())
//
tls2.Set(33)
assert.Equal(t, 33, tls2.Get())
//
task := GoWait(func(token CancelToken) {
assert.Equal(t, "Hello", tls.Get())
assert.Equal(t, 33, tls2.Get())
})
task.Get()
}
func TestNewInheritableThreadLocalWithInitial_Multi(t *testing.T) {
tls := NewInheritableThreadLocalWithInitial[string](func() string {
return "Hello"
})
tls2 := NewInheritableThreadLocalWithInitial[int](func() int {
return 22
})
tls.Set("Hello")
tls2.Set(22)
assert.Equal(t, 22, tls2.Get())
assert.Equal(t, "Hello", tls.Get())
//
tls2.Set(33)
assert.Equal(t, 33, tls2.Get())
//
task := GoWait(func(token CancelToken) {
assert.Equal(t, "Hello", tls.Get())
assert.Equal(t, 33, tls2.Get())
})
task.Get()
}
func TestNewInheritableThreadLocalWithInitial_Concurrency(t *testing.T) {
tls := NewInheritableThreadLocalWithInitial[any](func() any {
return "Hello"
})
tls2 := NewInheritableThreadLocalWithInitial[uint64](func() uint64 {
return uint64(22)
})
//
tls2.Set(33)
assert.Equal(t, uint64(33), tls2.Get())
//
wg := &sync.WaitGroup{}
wg.Add(concurrency)
for i := 0; i < concurrency; i++ {
assert.Equal(t, "Hello", tls.Get())
assert.Equal(t, uint64(33), tls2.Get())
Go(func() {
assert.Equal(t, "Hello", tls.Get())
assert.Equal(t, uint64(33), tls2.Get())
v := rand.Uint64()
v2 := rand.Uint64()
for j := 0; j < loopTimes; j++ {
tls.Set(v)
tmp := tls.Get()
assert.Equal(t, v, tmp.(uint64))
//
tls2.Set(v2)
tmp2 := tls2.Get()
assert.Equal(t, v2, tmp2)
}
wg.Done()
})
}
wg.Wait()
//
task := GoWait(func(token CancelToken) {
assert.Equal(t, "Hello", tls.Get())
assert.Equal(t, uint64(33), tls2.Get())
})
task.Get()
}
func TestNewInheritableThreadLocalWithInitial_Interface(t *testing.T) {
tls := NewInheritableThreadLocalWithInitial[Cloneable](func() Cloneable {
return nil
})
tls2 := NewInheritableThreadLocalWithInitial[Cloneable](func() Cloneable {
return nil
})
//
assert.Nil(t, tls.Get())
assert.Nil(t, tls2.Get())
//
tls.Set(nil)
tls2.Set(nil)
assert.Nil(t, tls.Get())
assert.Nil(t, tls2.Get())
//
tls.Set(&personCloneable{Id: 1, Name: "Hello"})
tls2.Set(&personCloneable{Id: 1, Name: "Hello"})
assert.NotNil(t, tls.Get())
assert.NotNil(t, tls2.Get())
//
tls.Remove()
tls2.Remove()
assert.Nil(t, tls.Get())
assert.Nil(t, tls2.Get())
//
task := GoWait(func(token CancelToken) {
assert.Nil(t, tls.Get())
assert.Nil(t, tls2.Get())
})
task.Get()
}
func TestNewInheritableThreadLocalWithInitial_Pointer(t *testing.T) {
tls := NewInheritableThreadLocalWithInitial[*personCloneable](func() *personCloneable {
return nil
})
tls2 := NewInheritableThreadLocalWithInitial[*personCloneable](func() *personCloneable {
return nil
})
//
assert.Nil(t, tls.Get())
assert.Nil(t, tls2.Get())
//
tls.Set(nil)
tls2.Set(nil)
assert.Nil(t, tls.Get())
assert.Nil(t, tls2.Get())
//
tls.Set(&personCloneable{Id: 1, Name: "Hello"})
tls2.Set(&personCloneable{Id: 1, Name: "Hello"})
assert.NotNil(t, tls.Get())
assert.NotNil(t, tls2.Get())
//
tls.Remove()
tls2.Remove()
assert.Nil(t, tls.Get())
assert.Nil(t, tls2.Get())
//
task := GoWait(func(token CancelToken) {
assert.Nil(t, tls.Get())
assert.Nil(t, tls2.Get())
})
task.Get()
}
//===
// BenchmarkThreadLocal-8 13636471 94.17 ns/op 7 B/op 0 allocs/op
func BenchmarkThreadLocal(b *testing.B) {
tlsCount := 100
tlsSlice := make([]ThreadLocal[int], tlsCount)
for i := 0; i < tlsCount; i++ {
tlsSlice[i] = NewThreadLocal[int]()
}
b.ReportAllocs()
b.ResetTimer()
for i := 0; i < b.N; i++ {
index := i % tlsCount
tls := tlsSlice[index]
initValue := tls.Get()
if initValue != 0 {
b.Fail()
}
tls.Set(i)
if tls.Get() != i {
b.Fail()
}
tls.Remove()
}
}
// BenchmarkThreadLocalWithInitial-8 13674153 86.76 ns/op 7 B/op 0 allocs/op
func BenchmarkThreadLocalWithInitial(b *testing.B) {
tlsCount := 100
tlsSlice := make([]ThreadLocal[int], tlsCount)
for i := 0; i < tlsCount; i++ {
index := i
tlsSlice[i] = NewThreadLocalWithInitial[int](func() int {
return index
})
}
b.ReportAllocs()
b.ResetTimer()
for i := 0; i < b.N; i++ {
index := i % tlsCount
tls := tlsSlice[index]
initValue := tls.Get()
if initValue != index {
b.Fail()
}
tls.Set(i)
if tls.Get() != i {
b.Fail()
}
tls.Remove()
}
}
// BenchmarkInheritableThreadLocal-8 13917819 84.27 ns/op 7 B/op 0 allocs/op
func BenchmarkInheritableThreadLocal(b *testing.B) {
tlsCount := 100
tlsSlice := make([]ThreadLocal[int], tlsCount)
for i := 0; i < tlsCount; i++ {
tlsSlice[i] = NewInheritableThreadLocal[int]()
}
b.ReportAllocs()
b.ResetTimer()
for i := 0; i < b.N; i++ {
index := i % tlsCount
tls := tlsSlice[index]
initValue := tls.Get()
if initValue != 0 {
b.Fail()
}
tls.Set(i)
if tls.Get() != i {
b.Fail()
}
tls.Remove()
}
}
// BenchmarkInheritableThreadLocalWithInitial-8 13483130 90.03 ns/op 7 B/op 0 allocs/op
func BenchmarkInheritableThreadLocalWithInitial(b *testing.B) {
tlsCount := 100
tlsSlice := make([]ThreadLocal[int], tlsCount)
for i := 0; i < tlsCount; i++ {
index := i
tlsSlice[i] = NewInheritableThreadLocalWithInitial[int](func() int {
return index
})
}
b.ReportAllocs()
b.ResetTimer()
for i := 0; i < b.N; i++ {
index := i % tlsCount
tls := tlsSlice[index]
initValue := tls.Get()
if initValue != index {
b.Fail()
}
tls.Set(i)
if tls.Get() != i {
b.Fail()
}
tls.Remove()
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。