mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-04 17:27:23 -05:00
25 lines
528 B
Go
25 lines
528 B
Go
package protocol_test
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
|
|
. "github.com/v2ray/v2ray-core/common/protocol"
|
|
v2testing "github.com/v2ray/v2ray-core/testing"
|
|
"github.com/v2ray/v2ray-core/testing/assert"
|
|
)
|
|
|
|
func TestGenerateRandomInt64InRange(t *testing.T) {
|
|
v2testing.Current(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))
|
|
}
|
|
}
|