2019-09-13 12:06:02 +00:00
|
|
|
package wdclient
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2022-07-22 09:22:38 +00:00
|
|
|
"google.golang.org/grpc"
|
|
|
|
"strconv"
|
2022-07-22 09:54:57 +00:00
|
|
|
"sync"
|
2019-09-13 12:06:02 +00:00
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestLocationIndex(t *testing.T) {
|
|
|
|
vm := vidMap{}
|
|
|
|
// test must be failed
|
2019-09-14 08:21:51 +00:00
|
|
|
mustFailed := func(length int) {
|
2019-09-13 12:06:02 +00:00
|
|
|
_, err := vm.getLocationIndex(length)
|
|
|
|
if err == nil {
|
|
|
|
t.Errorf("length %d must be failed", length)
|
|
|
|
}
|
|
|
|
if err.Error() != fmt.Sprintf("invalid length: %d", length) {
|
|
|
|
t.Errorf("length %d must be failed. error: %v", length, err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mustFailed(-1)
|
|
|
|
mustFailed(0)
|
|
|
|
|
2019-09-14 08:21:51 +00:00
|
|
|
mustOk := func(length, cursor, expect int) {
|
2019-09-13 12:06:02 +00:00
|
|
|
if length <= 0 {
|
|
|
|
t.Fatal("please don't do this")
|
|
|
|
}
|
2019-09-14 08:21:51 +00:00
|
|
|
vm.cursor = int32(cursor)
|
2019-09-13 12:06:02 +00:00
|
|
|
got, err := vm.getLocationIndex(length)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("length: %d, why? %v\n", length, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if got != expect {
|
|
|
|
t.Errorf("cursor: %d, length: %d, expect: %d, got: %d\n", cursor, length, expect, got)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-14 08:21:51 +00:00
|
|
|
for i := -1; i < 100; i++ {
|
2019-09-13 12:06:02 +00:00
|
|
|
mustOk(7, i, (i+1)%7)
|
|
|
|
}
|
|
|
|
|
|
|
|
// when cursor reaches MaxInt64
|
2019-09-14 08:21:51 +00:00
|
|
|
mustOk(7, maxCursorIndex, 0)
|
2019-09-13 12:06:02 +00:00
|
|
|
|
|
|
|
// test with constructor
|
2020-11-11 21:13:33 +00:00
|
|
|
vm = newVidMap("")
|
2019-09-14 08:21:51 +00:00
|
|
|
length := 7
|
|
|
|
for i := 0; i < 100; i++ {
|
2019-09-13 12:06:02 +00:00
|
|
|
got, err := vm.getLocationIndex(length)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("length: %d, why? %v\n", length, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if got != i%length {
|
|
|
|
t.Errorf("length: %d, i: %d, got: %d\n", length, i, got)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-22 09:22:38 +00:00
|
|
|
func TestLookupFileId(t *testing.T) {
|
2022-07-29 08:15:26 +00:00
|
|
|
mc := NewMasterClient(grpc.EmptyDialOption{}, "", "", "", "", "", nil)
|
2022-07-22 09:22:38 +00:00
|
|
|
length := 5
|
|
|
|
|
|
|
|
//Construct a cache linked list of length 5
|
|
|
|
for i := 0; i < length; i++ {
|
|
|
|
mc.addLocation(uint32(i), Location{Url: strconv.FormatInt(int64(i), 10)})
|
|
|
|
mc.resetVidMap()
|
|
|
|
}
|
|
|
|
for i := 0; i < length; i++ {
|
|
|
|
locations, found := mc.GetLocations(uint32(i))
|
|
|
|
if !found || len(locations) != 1 || locations[0].Url != strconv.FormatInt(int64(i), 10) {
|
|
|
|
t.Fatalf("urls of vid=%d is not valid.", i)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//When continue to add nodes to the linked list, the previous node will be deleted, and the cache of the response will be gone.
|
|
|
|
for i := length; i < length+5; i++ {
|
|
|
|
mc.addLocation(uint32(i), Location{Url: strconv.FormatInt(int64(i), 10)})
|
|
|
|
mc.resetVidMap()
|
|
|
|
}
|
|
|
|
for i := 0; i < length; i++ {
|
|
|
|
locations, found := mc.GetLocations(uint32(i))
|
|
|
|
if found {
|
|
|
|
t.Fatalf("urls of vid[%d] should not exists, but found: %v", i, locations)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//The delete operation will be applied to all cache nodes
|
|
|
|
_, found := mc.GetLocations(uint32(length))
|
|
|
|
if !found {
|
|
|
|
t.Fatalf("urls of vid[%d] not found", length)
|
|
|
|
}
|
|
|
|
|
|
|
|
//If the locations of the current node exist, return directly
|
|
|
|
newUrl := "abc"
|
|
|
|
mc.addLocation(uint32(length), Location{Url: newUrl})
|
|
|
|
locations, found := mc.GetLocations(uint32(length))
|
|
|
|
if !found || locations[0].Url != newUrl {
|
|
|
|
t.Fatalf("urls of vid[%d] not found", length)
|
|
|
|
}
|
|
|
|
|
|
|
|
//After delete `abc`, cache nodes are searched
|
|
|
|
deleteLoc := Location{Url: newUrl}
|
|
|
|
mc.deleteLocation(uint32(length), deleteLoc)
|
|
|
|
locations, found = mc.GetLocations(uint32(length))
|
|
|
|
if found && locations[0].Url != strconv.FormatInt(int64(length), 10) {
|
|
|
|
t.Fatalf("urls of vid[%d] not expected", length)
|
|
|
|
}
|
|
|
|
|
|
|
|
//lock: concurrent test
|
2022-07-22 09:54:57 +00:00
|
|
|
var wg sync.WaitGroup
|
|
|
|
for i := 0; i < 20; i++ {
|
|
|
|
wg.Add(1)
|
|
|
|
go func() {
|
|
|
|
defer wg.Done()
|
|
|
|
for i := 0; i < 100; i++ {
|
|
|
|
for i := 0; i < 20; i++ {
|
|
|
|
_, _ = mc.GetLocations(uint32(i))
|
|
|
|
}
|
2022-07-22 09:22:38 +00:00
|
|
|
}
|
2022-07-22 09:54:57 +00:00
|
|
|
}()
|
|
|
|
}
|
|
|
|
|
|
|
|
for i := 0; i < 100; i++ {
|
|
|
|
mc.addLocation(uint32(i), Location{})
|
2022-07-22 09:22:38 +00:00
|
|
|
}
|
2022-07-22 09:54:57 +00:00
|
|
|
wg.Wait()
|
2022-07-22 09:22:38 +00:00
|
|
|
}
|
|
|
|
|
2019-09-13 12:06:02 +00:00
|
|
|
func BenchmarkLocationIndex(b *testing.B) {
|
|
|
|
b.SetParallelism(8)
|
|
|
|
vm := vidMap{
|
2019-09-14 08:21:51 +00:00
|
|
|
cursor: maxCursorIndex - 4000,
|
2019-09-13 12:06:02 +00:00
|
|
|
}
|
|
|
|
b.ResetTimer()
|
|
|
|
b.RunParallel(func(pb *testing.PB) {
|
|
|
|
for pb.Next() {
|
|
|
|
_, err := vm.getLocationIndex(3)
|
|
|
|
if err != nil {
|
|
|
|
b.Error(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|