From fea47f053b8a69c448d83f93160e126edd6028c2 Mon Sep 17 00:00:00 2001 From: V2Ray Date: Mon, 7 Sep 2015 20:21:12 +0200 Subject: [PATCH] test case for vid --- vid_test.go | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 vid_test.go diff --git a/vid_test.go b/vid_test.go new file mode 100644 index 000000000..0e2263883 --- /dev/null +++ b/vid_test.go @@ -0,0 +1,16 @@ +package core + +import ( + "bytes" + "testing" +) + +func TestUUIDToVID(t *testing.T) { + uuid := "2418d087-648d-4990-86e8-19dca1d006d3" + expectedBytes := []byte{0x24, 0x18, 0xd0, 0x87, 0x64, 0x8d, 0x49, 0x90, 0x86, 0xe8, 0x19, 0xdc, 0xa1, 0xd0, 0x06, 0xd3} + + actualBytes, _ := UUIDToVID(uuid) + if !bytes.Equal(expectedBytes, actualBytes[:]) { + t.Errorf("Expected bytes %v, but got %v", expectedBytes, actualBytes) + } +}