23 lines
537 B
Go
23 lines
537 B
Go
package structs
|
|
|
|
import (
|
|
"github.com/mitchellh/go-testing-interface"
|
|
)
|
|
|
|
// 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",
|
|
Service: &NodeService{
|
|
Kind: ServiceKindConnectProxy,
|
|
Service: ConnectProxyServiceName,
|
|
Address: "127.0.0.2",
|
|
Port: 2222,
|
|
ProxyDestination: "web",
|
|
},
|
|
}
|
|
}
|