clash/common/singledo/singledo_test.go

70 lines
1.1 KiB
Go
Raw Normal View History

package singledo
import (
"sync"
2020-07-18 12:56:13 +00:00
"sync/atomic"
"testing"
"time"
"github.com/stretchr/testify/assert"
)
func TestBasic(t *testing.T) {
single := NewSingle(time.Millisecond * 30)
foo := 0
2020-07-18 12:56:13 +00:00
var shardCount int32 = 0
call := func() (interface{}, error) {
foo++
2019-12-10 08:26:15 +00:00
time.Sleep(time.Millisecond * 5)
return nil, nil
}
var wg sync.WaitGroup
2020-04-30 12:13:27 +00:00
const n = 5
wg.Add(n)
for i := 0; i < n; i++ {
go func() {
_, _, shard := single.Do(call)
if shard {
2020-07-18 12:56:13 +00:00
atomic.AddInt32(&shardCount, 1)
}
wg.Done()
}()
}
wg.Wait()
assert.Equal(t, 1, foo)
2020-07-18 12:56:13 +00:00
assert.Equal(t, int32(4), shardCount)
}
func TestTimer(t *testing.T) {
single := NewSingle(time.Millisecond * 30)
foo := 0
call := func() (interface{}, error) {
foo++
return nil, nil
}
single.Do(call)
time.Sleep(10 * time.Millisecond)
_, _, shard := single.Do(call)
assert.Equal(t, 1, foo)
assert.True(t, shard)
}
2020-04-30 12:13:27 +00:00
func TestReset(t *testing.T) {
single := NewSingle(time.Millisecond * 30)
foo := 0
call := func() (interface{}, error) {
foo++
return nil, nil
}
single.Do(call)
single.Reset()
single.Do(call)
assert.Equal(t, 2, foo)
}