id_test.go 467 B

123456789101112131415161718
  1. package config
  2. import (
  3. "testing"
  4. v2testing "github.com/v2ray/v2ray-core/testing"
  5. "github.com/v2ray/v2ray-core/testing/assert"
  6. )
  7. func TestUUIDToID(t *testing.T) {
  8. v2testing.Current(t)
  9. uuid := "2418d087-648d-4990-86e8-19dca1d006d3"
  10. expectedBytes := []byte{0x24, 0x18, 0xd0, 0x87, 0x64, 0x8d, 0x49, 0x90, 0x86, 0xe8, 0x19, 0xdc, 0xa1, 0xd0, 0x06, 0xd3}
  11. actualBytes, _ := NewID(uuid)
  12. assert.Bytes(actualBytes.Bytes[:]).Named("UUID").Equals(expectedBytes)
  13. }