1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-14 07:58:16 -04:00
v2fly/proxy/vmess/config/id_test.go

18 lines
420 B
Go
Raw Normal View History

2015-10-16 06:03:22 -04:00
package config
2015-09-07 14:21:12 -04:00
import (
"testing"
2015-09-09 09:26:11 -04:00
"github.com/v2ray/v2ray-core/testing/unit"
2015-09-07 14:21:12 -04:00
)
2015-09-12 16:11:54 -04:00
func TestUUIDToID(t *testing.T) {
2015-09-09 09:26:11 -04:00
assert := unit.Assert(t)
2015-09-07 14:21:12 -04:00
uuid := "2418d087-648d-4990-86e8-19dca1d006d3"
expectedBytes := []byte{0x24, 0x18, 0xd0, 0x87, 0x64, 0x8d, 0x49, 0x90, 0x86, 0xe8, 0x19, 0xdc, 0xa1, 0xd0, 0x06, 0xd3}
2015-09-14 13:03:31 -04:00
actualBytes, _ := NewID(uuid)
2015-09-23 16:17:25 -04:00
assert.Bytes(actualBytes.Bytes[:]).Named("UUID").Equals(expectedBytes)
2015-09-07 14:21:12 -04:00
}