mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-10-31 16:27:41 -04:00
22 lines
448 B
Go
22 lines
448 B
Go
package protocol_test
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
|
|
. "v2ray.com/core/common/protocol"
|
|
)
|
|
|
|
func TestGenerateRandomInt64InRange(t *testing.T) {
|
|
base := time.Now().Unix()
|
|
delta := 100
|
|
generator := NewTimestampGenerator(Timestamp(base), delta)
|
|
|
|
for i := 0; i < 100; i++ {
|
|
val := int64(generator())
|
|
if val > base+int64(delta) || val < base-int64(delta) {
|
|
t.Error(val, " not between ", base-int64(delta), " and ", base+int64(delta))
|
|
}
|
|
}
|
|
}
|