2018-03-07 01:32:41 +00:00
|
|
|
package structs
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/mitchellh/go-testing-interface"
|
|
|
|
)
|
|
|
|
|
2018-03-09 16:34:55 +00:00
|
|
|
// TestRegisterRequest returns a RegisterRequest for registering a typical service.
|
|
|
|
func TestRegisterRequest(t testing.T) *RegisterRequest {
|
|
|
|
return &RegisterRequest{
|
|
|
|
Datacenter: "dc1",
|
|
|
|
Node: "foo",
|
|
|
|
Address: "127.0.0.1",
|
|
|
|
Service: &NodeService{
|
|
|
|
Service: "web",
|
|
|
|
Address: "",
|
|
|
|
Port: 80,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-07 01:32:41 +00:00
|
|
|
// TestRegisterRequestProxy returns a RegisterRequest for registering a
|
|
|
|
// Connect proxy.
|
|
|
|
func TestRegisterRequestProxy(t testing.T) *RegisterRequest {
|
|
|
|
return &RegisterRequest{
|
|
|
|
Datacenter: "dc1",
|
|
|
|
Node: "foo",
|
|
|
|
Address: "127.0.0.1",
|
2018-03-09 06:13:35 +00:00
|
|
|
Service: TestNodeServiceProxy(t),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// TestNodeServiceProxy returns a *NodeService representing a valid
|
|
|
|
// Connect proxy.
|
|
|
|
func TestNodeServiceProxy(t testing.T) *NodeService {
|
|
|
|
return &NodeService{
|
|
|
|
Kind: ServiceKindConnectProxy,
|
2018-03-11 16:31:31 +00:00
|
|
|
Service: "connect-proxy",
|
2018-03-09 06:13:35 +00:00
|
|
|
Address: "127.0.0.2",
|
|
|
|
Port: 2222,
|
|
|
|
ProxyDestination: "web",
|
2018-03-07 01:32:41 +00:00
|
|
|
}
|
|
|
|
}
|