mirror of
https://github.com/go-micro/go-micro.git
synced 2024-12-18 08:26:38 +02:00
a3980c2308
Co-authored-by: Rene Jochum <rene@jochum.dev>
59 lines
973 B
Go
59 lines
973 B
Go
package test
|
|
|
|
import (
|
|
"go-micro.dev/v4/registry"
|
|
)
|
|
|
|
var (
|
|
// Data is a set of mock registry data.
|
|
Data = map[string][]*registry.Service{
|
|
"foo": {
|
|
{
|
|
Name: "foo",
|
|
Version: "1.0.0",
|
|
Nodes: []*registry.Node{
|
|
{
|
|
Id: "foo-1.0.0-123",
|
|
Address: "localhost:9999",
|
|
},
|
|
{
|
|
Id: "foo-1.0.0-321",
|
|
Address: "localhost:9999",
|
|
},
|
|
},
|
|
},
|
|
{
|
|
Name: "foo",
|
|
Version: "1.0.1",
|
|
Nodes: []*registry.Node{
|
|
{
|
|
Id: "foo-1.0.1-321",
|
|
Address: "localhost:6666",
|
|
},
|
|
},
|
|
},
|
|
{
|
|
Name: "foo",
|
|
Version: "1.0.3",
|
|
Nodes: []*registry.Node{
|
|
{
|
|
Id: "foo-1.0.3-345",
|
|
Address: "localhost:8888",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
)
|
|
|
|
// 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
|
|
}
|
|
}
|