2015-10-16 10:03:22 +00:00
|
|
|
package config
|
2015-09-07 18:21:12 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
2015-09-09 13:26:11 +00:00
|
|
|
|
2015-12-02 15:26:11 +00:00
|
|
|
v2testing "github.com/v2ray/v2ray-core/testing"
|
2015-12-02 14:27:18 +00:00
|
|
|
"github.com/v2ray/v2ray-core/testing/assert"
|
2015-09-07 18:21:12 +00:00
|
|
|
)
|
|
|
|
|
2015-09-12 20:11:54 +00:00
|
|
|
func TestUUIDToID(t *testing.T) {
|
2015-12-02 14:27:18 +00:00
|
|
|
v2testing.Current(t)
|
2015-09-09 13:26:11 +00:00
|
|
|
|
2015-09-07 18:21:12 +00: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 17:03:31 +00:00
|
|
|
actualBytes, _ := NewID(uuid)
|
2015-09-23 20:17:25 +00:00
|
|
|
assert.Bytes(actualBytes.Bytes[:]).Named("UUID").Equals(expectedBytes)
|
2015-09-07 18:21:12 +00:00
|
|
|
}
|