move test data

This commit is contained in:
Asim Aslam
2019-11-16 18:52:27 +00:00
parent 90d7a87914
commit eeed493766
5 changed files with 13 additions and 11 deletions

47
util/test/test.go Normal file
View File

@@ -0,0 +1,47 @@
package test
import (
"github.com/micro/go-micro/registry"
)
var (
// 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",
},
},
},
},
}
)