Xray-core/common/task/periodic_test.go

37 lines
668 B
Go
Raw Normal View History

2020-11-25 13:01:53 +02:00
package task_test
import (
"testing"
"time"
2020-12-04 03:36:16 +02:00
"github.com/xtls/xray-core/common"
. "github.com/xtls/xray-core/common/task"
2020-11-25 13:01:53 +02:00
)
func TestPeriodicTaskStop(t *testing.T) {
value := 0
task := &Periodic{
Interval: time.Second * 2,
Execute: func() error {
value++
return nil
},
}
common.Must(task.Start())
time.Sleep(time.Second * 5)
common.Must(task.Close())
if value != 3 {
t.Fatal("expected 3, but got ", value)
}
time.Sleep(time.Second * 4)
if value != 3 {
t.Fatal("expected 3, but got ", value)
}
common.Must(task.Start())
time.Sleep(time.Second * 3)
if value != 5 {
t.Fatal("Expected 5, but ", value)
}
common.Must(task.Close())
}