1
0
mirror of https://github.com/go-micro/go-micro.git synced 2024-11-24 08:02:32 +02:00
go-micro/client/common_test.go

60 lines
1.0 KiB
Go
Raw Normal View History

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