1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-29 10:45:22 +00:00
v2fly/common/protocol/time_test.go
Darien Raymond 6c9a60100d format code
2017-10-26 21:44:22 +02:00

24 lines
435 B
Go

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