2019-04-19 04:43:36 +00:00
|
|
|
package needle
|
2016-04-09 03:33:06 +00:00
|
|
|
|
2018-07-08 09:39:04 +00:00
|
|
|
import (
|
2018-07-22 00:39:10 +00:00
|
|
|
"testing"
|
2019-04-19 04:43:36 +00:00
|
|
|
|
2022-07-29 07:17:28 +00:00
|
|
|
"github.com/seaweedfs/seaweedfs/weed/storage/types"
|
2018-07-08 09:39:04 +00:00
|
|
|
)
|
2016-04-09 03:33:06 +00:00
|
|
|
|
|
|
|
func TestParseKeyHash(t *testing.T) {
|
|
|
|
testcases := []struct {
|
|
|
|
KeyHash string
|
2018-07-08 09:39:04 +00:00
|
|
|
ID types.NeedleId
|
|
|
|
Cookie types.Cookie
|
2016-04-09 03:33:06 +00:00
|
|
|
Err bool
|
|
|
|
}{
|
|
|
|
// normal
|
|
|
|
{"4ed4c8116e41", 0x4ed4, 0xc8116e41, false},
|
|
|
|
// cookie with leading zeros
|
|
|
|
{"4ed401116e41", 0x4ed4, 0x01116e41, false},
|
|
|
|
// odd length
|
|
|
|
{"ed400116e41", 0xed4, 0x00116e41, false},
|
|
|
|
// uint
|
|
|
|
{"fed4c8114ed4c811f0116e41", 0xfed4c8114ed4c811, 0xf0116e41, false},
|
|
|
|
// err: too short
|
|
|
|
{"4ed4c811", 0, 0, true},
|
|
|
|
// err: too long
|
|
|
|
{"4ed4c8114ed4c8114ed4c8111", 0, 0, true},
|
|
|
|
// err: invalid character
|
|
|
|
{"helloworld", 0, 0, true},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, tc := range testcases {
|
2018-07-08 09:28:04 +00:00
|
|
|
if id, cookie, err := ParseNeedleIdCookie(tc.KeyHash); err != nil && !tc.Err {
|
2016-04-09 03:33:06 +00:00
|
|
|
t.Fatalf("Parse %s error: %v", tc.KeyHash, err)
|
|
|
|
} else if err == nil && tc.Err {
|
|
|
|
t.Fatalf("Parse %s expected error got nil", tc.KeyHash)
|
|
|
|
} else if id != tc.ID || cookie != tc.Cookie {
|
|
|
|
t.Fatalf("Parse %s wrong result. Expected: (%d, %d) got: (%d, %d)", tc.KeyHash, tc.ID, tc.Cookie, id, cookie)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func BenchmarkParseKeyHash(b *testing.B) {
|
|
|
|
b.ReportAllocs()
|
|
|
|
|
|
|
|
for i := 0; i < b.N; i++ {
|
2018-07-08 09:28:04 +00:00
|
|
|
ParseNeedleIdCookie("4ed44ed44ed44ed4c8116e41")
|
2016-04-09 03:33:06 +00:00
|
|
|
}
|
|
|
|
}
|