1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-01 11:35:23 +00:00
v2fly/common/signal/timer_test.go

47 lines
1.0 KiB
Go
Raw Normal View History

package signal_test
import (
"context"
"runtime"
"testing"
"time"
. "v2ray.com/core/common/signal"
2017-10-24 14:15:35 +00:00
. "v2ray.com/ext/assert"
)
func TestActivityTimer(t *testing.T) {
2017-10-24 14:15:35 +00:00
assert := With(t)
2017-11-14 23:36:14 +00:00
ctx, cancel := context.WithCancel(context.Background())
timer := CancelAfterInactivity(ctx, cancel, time.Second*5)
time.Sleep(time.Second * 6)
2017-10-24 14:15:35 +00:00
assert(ctx.Err(), IsNotNil)
runtime.KeepAlive(timer)
}
func TestActivityTimerUpdate(t *testing.T) {
2017-10-24 14:15:35 +00:00
assert := With(t)
2017-11-14 23:36:14 +00:00
ctx, cancel := context.WithCancel(context.Background())
timer := CancelAfterInactivity(ctx, cancel, time.Second*10)
time.Sleep(time.Second * 3)
2017-10-24 14:15:35 +00:00
assert(ctx.Err(), IsNil)
timer.SetTimeout(time.Second * 1)
time.Sleep(time.Second * 2)
2017-10-24 14:15:35 +00:00
assert(ctx.Err(), IsNotNil)
runtime.KeepAlive(timer)
}
2018-02-06 10:16:49 +00:00
func TestActivityTimerNonBlocking(t *testing.T) {
assert := With(t)
ctx, cancel := context.WithCancel(context.Background())
timer := CancelAfterInactivity(ctx, cancel, 0)
time.Sleep(time.Second * 1)
assert(ctx, HasDone)
timer.SetTimeout(0)
timer.SetTimeout(1)
timer.SetTimeout(2)
}