1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-22 05:04:21 -04:00
v2fly/common/protocol/time_test.go

22 lines
464 B
Go
Raw Normal View History

2016-01-12 05:52:40 -05:00
package protocol_test
2015-09-16 18:15:06 -04:00
import (
"testing"
"time"
2021-02-16 15:31:50 -05:00
. "github.com/v2fly/v2ray-core/v4/common/protocol"
2015-09-16 18:15:06 -04:00
)
func TestGenerateRandomInt64InRange(t *testing.T) {
base := time.Now().Unix()
delta := 100
2016-02-25 11:14:49 -05:00
generator := NewTimestampGenerator(Timestamp(base), delta)
2015-09-16 18:15:06 -04:00
for i := 0; i < 100; i++ {
2016-11-27 11:01:44 -05:00
val := int64(generator())
2019-01-08 17:27:02 -05:00
if val > base+int64(delta) || val < base-int64(delta) {
t.Error(val, " not between ", base-int64(delta), " and ", base+int64(delta))
}
2015-09-16 18:15:06 -04:00
}
}