Xray-core/common/protocol/time_test.go

22 lines
459 B
Go
Raw Normal View History

2020-11-25 11:01:53 +00:00
package protocol_test
import (
"testing"
"time"
2020-12-04 01:36:16 +00:00
. "github.com/xtls/xray-core/common/protocol"
2020-11-25 11:01:53 +00:00
)
func TestGenerateRandomInt64InRange(t *testing.T) {
base := time.Now().Unix()
delta := 100
generator := NewTimestampGenerator(Timestamp(base), delta)
for i := 0; i < 100; i++ {
val := int64(generator())
if val > base+int64(delta) || val < base-int64(delta) {
t.Error(val, " not between ", base-int64(delta), " and ", base+int64(delta))
}
}
}