2019-06-12 17:20:06 +03:00
|
|
|
package client
|
2019-01-18 20:29:17 +03:00
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/micro/go-micro/registry"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
// mock data
|
2019-06-12 17:20:06 +03:00
|
|
|
testData = map[string][]*registry.Service{
|
2019-11-01 18:07:53 +03:00
|
|
|
"foo": {
|
2019-01-18 20:29:17 +03:00
|
|
|
{
|
|
|
|
Name: "foo",
|
|
|
|
Version: "1.0.0",
|
|
|
|
Nodes: []*registry.Node{
|
|
|
|
{
|
|
|
|
Id: "foo-1.0.0-123",
|
2019-07-08 10:01:42 +03:00
|
|
|
Address: "localhost:9999",
|
2019-11-25 19:31:43 +03:00
|
|
|
Metadata: map[string]string{
|
|
|
|
"protocol": "mucp",
|
|
|
|
},
|
2019-01-18 20:29:17 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
Id: "foo-1.0.0-321",
|
2019-07-08 10:01:42 +03:00
|
|
|
Address: "localhost:9999",
|
2019-11-25 19:31:43 +03:00
|
|
|
Metadata: map[string]string{
|
|
|
|
"protocol": "mucp",
|
|
|
|
},
|
2019-01-18 20:29:17 +03:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "foo",
|
|
|
|
Version: "1.0.1",
|
|
|
|
Nodes: []*registry.Node{
|
|
|
|
{
|
|
|
|
Id: "foo-1.0.1-321",
|
2019-07-08 10:01:42 +03:00
|
|
|
Address: "localhost:6666",
|
2019-11-25 19:31:43 +03:00
|
|
|
Metadata: map[string]string{
|
|
|
|
"protocol": "mucp",
|
|
|
|
},
|
2019-01-18 20:29:17 +03:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "foo",
|
|
|
|
Version: "1.0.3",
|
|
|
|
Nodes: []*registry.Node{
|
|
|
|
{
|
|
|
|
Id: "foo-1.0.3-345",
|
2019-07-08 10:01:42 +03:00
|
|
|
Address: "localhost:8888",
|
2019-11-25 19:31:43 +03:00
|
|
|
Metadata: map[string]string{
|
|
|
|
"protocol": "mucp",
|
|
|
|
},
|
2019-01-18 20:29:17 +03:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
)
|