mirror of
				https://github.com/v2fly/v2ray-core.git
				synced 2025-11-04 03:39:24 +00: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))
 | 
						|
	}
 | 
						|
}
 |