e071084ebe
govulncheck / govulncheck (push) Waiting to run
Harness (E2E) / Harnesses (mock LLM) (push) Waiting to run
Harness (E2E) / Provider harnesses (live LLM conformance) (push) Waiting to run
Lint / golangci-lint (push) Waiting to run
Run Tests / Unit Tests (push) Waiting to run
Run Tests / Etcd Integration Tests (push) Waiting to run
60 lines
1013 B
Go
60 lines
1013 B
Go
package client
|
|
|
|
import (
|
|
"go-micro.dev/v6/registry"
|
|
)
|
|
|
|
var (
|
|
// mock data.
|
|
testData = map[string][]*registry.Service{
|
|
"foo": {
|
|
{
|
|
Name: "foo",
|
|
Version: "1.0.0",
|
|
Nodes: []*registry.Node{
|
|
{
|
|
Id: "foo-1.0.0-123",
|
|
Address: "localhost:9999",
|
|
Metadata: map[string]string{
|
|
"protocol": "mucp",
|
|
},
|
|
},
|
|
{
|
|
Id: "foo-1.0.0-321",
|
|
Address: "localhost:9999",
|
|
Metadata: map[string]string{
|
|
"protocol": "mucp",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
Name: "foo",
|
|
Version: "1.0.1",
|
|
Nodes: []*registry.Node{
|
|
{
|
|
Id: "foo-1.0.1-321",
|
|
Address: "localhost:6666",
|
|
Metadata: map[string]string{
|
|
"protocol": "mucp",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
Name: "foo",
|
|
Version: "1.0.3",
|
|
Nodes: []*registry.Node{
|
|
{
|
|
Id: "foo-1.0.3-345",
|
|
Address: "localhost:8888",
|
|
Metadata: map[string]string{
|
|
"protocol": "mucp",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
)
|