micro/client/selector/default_test.go

33 lines
604 B
Go
Raw Normal View History

2015-12-09 22:23:16 +03:00
package selector
2015-12-09 03:02:45 +03:00
import (
"os"
2015-12-09 03:02:45 +03:00
"testing"
2015-12-09 22:23:16 +03:00
"github.com/micro/go-micro/v2/registry/memory"
2015-12-09 03:02:45 +03:00
)
func TestRegistrySelector(t *testing.T) {
2015-12-09 03:02:45 +03:00
counts := map[string]int{}
r := memory.NewRegistry(memory.Services(testData))
2019-01-14 18:27:25 +03:00
cache := NewSelector(Registry(r))
2015-12-09 03:02:45 +03:00
next, err := cache.Select("foo")
2015-12-09 03:02:45 +03:00
if err != nil {
t.Errorf("Unexpected error calling cache select: %v", err)
2015-12-09 03:02:45 +03: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]++
}
if len(os.Getenv("IN_TRAVIS_CI")) == 0 {
t.Logf("Selector Counts %v", counts)
}
}