micro/selector/default_test.go

29 lines
512 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 (
"testing"
2015-12-09 22:23:16 +03:00
"github.com/micro/go-micro/registry/mock"
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{}
cache := NewSelector(Registry(mock.NewRegistry()))
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]++
}
t.Logf("Selector Counts %v", counts)
}