mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-02 17:27:50 -04:00
24 lines
461 B
Go
24 lines
461 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++ {
|
|
val := int64(generator())
|
|
assert.Int64(val).AtMost(base + int64(delta))
|
|
assert.Int64(val).AtLeast(base - int64(delta))
|
|
}
|
|
}
|