2019-11-16 18:52:27 +00:00
|
|
|
package test
|
2019-01-18 17:29:17 +00:00
|
|
|
|
|
|
|
import (
|
2024-06-04 21:40:43 +01:00
|
|
|
"go-micro.dev/v5/registry"
|
2019-01-18 17:29:17 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2022-10-20 13:00:50 +02:00
|
|
|
// Data is a set of mock registry data.
|
2019-11-16 18:52:27 +00:00
|
|
|
Data = map[string][]*registry.Service{
|
2019-11-01 15:07:53 +00:00
|
|
|
"foo": {
|
2019-01-18 17:29:17 +00:00
|
|
|
{
|
|
|
|
Name: "foo",
|
|
|
|
Version: "1.0.0",
|
|
|
|
Nodes: []*registry.Node{
|
|
|
|
{
|
|
|
|
Id: "foo-1.0.0-123",
|
2019-07-08 08:01:42 +01:00
|
|
|
Address: "localhost:9999",
|
2019-01-18 17:29:17 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
Id: "foo-1.0.0-321",
|
2019-07-08 08:01:42 +01:00
|
|
|
Address: "localhost:9999",
|
2019-01-18 17:29:17 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "foo",
|
|
|
|
Version: "1.0.1",
|
|
|
|
Nodes: []*registry.Node{
|
|
|
|
{
|
|
|
|
Id: "foo-1.0.1-321",
|
2019-07-08 08:01:42 +01:00
|
|
|
Address: "localhost:6666",
|
2019-01-18 17:29:17 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "foo",
|
|
|
|
Version: "1.0.3",
|
|
|
|
Nodes: []*registry.Node{
|
|
|
|
{
|
|
|
|
Id: "foo-1.0.3-345",
|
2019-07-08 08:01:42 +01:00
|
|
|
Address: "localhost:8888",
|
2019-01-18 17:29:17 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
)
|
2022-10-20 13:00:50 +02:00
|
|
|
|
|
|
|
// EmptyChannel will empty out a error channel by checking if an error is
|
|
|
|
// present, and if so return the error.
|
|
|
|
func EmptyChannel(c chan error) error {
|
|
|
|
select {
|
|
|
|
case err := <-c:
|
|
|
|
return err
|
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|