mirror of https://github.com/v2ray/v2ray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
757 B
35 lines
757 B
package signal_test
|
|
|
|
import (
|
|
"context"
|
|
"runtime"
|
|
"testing"
|
|
"time"
|
|
|
|
. "v2ray.com/core/common/signal"
|
|
. "v2ray.com/ext/assert"
|
|
)
|
|
|
|
func TestActivityTimer(t *testing.T) {
|
|
assert := With(t)
|
|
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
timer := CancelAfterInactivity(ctx, cancel, time.Second*5)
|
|
time.Sleep(time.Second * 6)
|
|
assert(ctx.Err(), IsNotNil)
|
|
runtime.KeepAlive(timer)
|
|
}
|
|
|
|
func TestActivityTimerUpdate(t *testing.T) {
|
|
assert := With(t)
|
|
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
timer := CancelAfterInactivity(ctx, cancel, time.Second*10)
|
|
time.Sleep(time.Second * 3)
|
|
assert(ctx.Err(), IsNil)
|
|
timer.SetTimeout(time.Second * 1)
|
|
time.Sleep(time.Second * 2)
|
|
assert(ctx.Err(), IsNotNil)
|
|
runtime.KeepAlive(timer)
|
|
}
|