mirror of
				https://github.com/v2fly/v2ray-core.git
				synced 2025-10-29 16:59:28 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			493 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			493 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package protocol_test
 | |
| 
 | |
| import (
 | |
| 	"testing"
 | |
| 
 | |
| 	"v2ray.com/core/common/predicate"
 | |
| 	. "v2ray.com/core/common/protocol"
 | |
| 	"v2ray.com/core/common/uuid"
 | |
| 	. "v2ray.com/ext/assert"
 | |
| )
 | |
| 
 | |
| func TestCmdKey(t *testing.T) {
 | |
| 	assert := With(t)
 | |
| 
 | |
| 	id := NewID(uuid.New())
 | |
| 	assert(predicate.BytesAll(id.CmdKey(), 0), IsFalse)
 | |
| }
 | |
| 
 | |
| func TestIdEquals(t *testing.T) {
 | |
| 	assert := With(t)
 | |
| 
 | |
| 	id1 := NewID(uuid.New())
 | |
| 	id2 := NewID(id1.UUID())
 | |
| 
 | |
| 	assert(id1.Equals(id2), IsTrue)
 | |
| 	assert(id1.String(), Equals, id2.String())
 | |
| }
 | 
