1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-06 16:10:43 +00:00
v2fly/common/protocol/time_test.go
2016-08-20 20:55:45 +02:00

24 lines
455 B
Go

package protocol_test
import (
"testing"
"time"
. "v2ray.com/core/common/protocol"
"v2ray.com/core/testing/assert"
)
func TestGenerateRandomInt64InRange(t *testing.T) {
assert := assert.On(t)
base := time.Now().Unix()
delta := 100
generator := NewTimestampGenerator(Timestamp(base), delta)
for i := 0; i < 100; i++ {
v := int64(generator())
assert.Int64(v).AtMost(base + int64(delta))
assert.Int64(v).AtLeast(base - int64(delta))
}
}