micro/selector/default_test.go

31 lines
554 B
Go
Raw Normal View History

2015-12-09 19:23:16 +00:00
package selector
2015-12-09 00:02:45 +00:00
import (
"testing"
2015-12-09 19:23:16 +00:00
2019-01-14 15:27:25 +00:00
"github.com/micro/go-micro/registry/memory"
2015-12-09 00:02:45 +00:00
)
func TestRegistrySelector(t *testing.T) {
2015-12-09 00:02:45 +00:00
counts := map[string]int{}
2019-01-14 15:27:25 +00:00
r := memory.NewRegistry()
r.(*memory.Registry).Setup()
cache := NewSelector(Registry(r))
2015-12-09 00:02:45 +00:00
next, err := cache.Select("foo")
2015-12-09 00:02:45 +00:00
if err != nil {
t.Errorf("Unexpected error calling cache select: %v", err)
2015-12-09 00:02:45 +00:00
}
for i := 0; i < 100; i++ {
node, err := next()
if err != nil {
t.Errorf("Expected node err, got err: %v", err)
}
counts[node.Id]++
}
t.Logf("Selector Counts %v", counts)
}