mirror of https://github.com/XTLS/Xray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
459 B
21 lines
459 B
package protocol_test |
|
|
|
import ( |
|
"testing" |
|
"time" |
|
|
|
. "github.com/xtls/xray-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)) |
|
} |
|
} |
|
}
|
|
|