vid_test.go 413 B

12345678910111213141516
  1. package core
  2. import (
  3. "bytes"
  4. "testing"
  5. )
  6. func TestUUIDToVID(t *testing.T) {
  7. uuid := "2418d087-648d-4990-86e8-19dca1d006d3"
  8. expectedBytes := []byte{0x24, 0x18, 0xd0, 0x87, 0x64, 0x8d, 0x49, 0x90, 0x86, 0xe8, 0x19, 0xdc, 0xa1, 0xd0, 0x06, 0xd3}
  9. actualBytes, _ := UUIDToVID(uuid)
  10. if !bytes.Equal(expectedBytes, actualBytes[:]) {
  11. t.Errorf("Expected bytes %v, but got %v", expectedBytes, actualBytes)
  12. }
  13. }