1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-03 20:45:23 +00:00
v2fly/common/protocol/time_test.go

24 lines
461 B
Go
Raw Normal View History

2016-01-12 10:52:40 +00:00
package protocol_test
2015-09-16 22:15:06 +00:00
import (
"testing"
"time"
2016-08-20 18:55:45 +00:00
. "v2ray.com/core/common/protocol"
"v2ray.com/core/testing/assert"
2015-09-16 22:15:06 +00:00
)
func TestGenerateRandomInt64InRange(t *testing.T) {
2016-05-24 19:55:46 +00:00
assert := assert.On(t)
2016-01-12 10:38:43 +00:00
2015-09-16 22:15:06 +00:00
base := time.Now().Unix()
delta := 100
2016-02-25 16:14:49 +00:00
generator := NewTimestampGenerator(Timestamp(base), delta)
2015-09-16 22:15:06 +00:00
for i := 0; i < 100; i++ {
2016-11-27 16:01:44 +00:00
val := int64(generator())
assert.Int64(val).AtMost(base + int64(delta))
assert.Int64(val).AtLeast(base - int64(delta))
2015-09-16 22:15:06 +00:00
}
}