2018-10-01 15:27:59 +00:00
|
|
|
package services
|
2018-09-28 06:52:17 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2018-10-01 15:05:57 +00:00
|
|
|
"github.com/hashicorp/consul/agent/structs"
|
2018-09-28 06:52:17 +00:00
|
|
|
"github.com/hashicorp/consul/api"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
)
|
|
|
|
|
2018-10-01 15:05:57 +00:00
|
|
|
func TestStructsToAgentService(t *testing.T) {
|
2018-09-28 06:52:17 +00:00
|
|
|
cases := []struct {
|
|
|
|
Name string
|
2018-10-01 15:05:57 +00:00
|
|
|
Input *structs.ServiceDefinition
|
2018-09-28 06:52:17 +00:00
|
|
|
Output *api.AgentServiceRegistration
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
"Basic service with port",
|
2018-10-01 15:05:57 +00:00
|
|
|
&structs.ServiceDefinition{
|
|
|
|
Name: "web",
|
2018-09-28 06:52:17 +00:00
|
|
|
Tags: []string{"leader"},
|
2018-10-01 15:05:57 +00:00
|
|
|
Port: 1234,
|
2018-09-28 06:52:17 +00:00
|
|
|
},
|
|
|
|
&api.AgentServiceRegistration{
|
|
|
|
Name: "web",
|
|
|
|
Tags: []string{"leader"},
|
|
|
|
Port: 1234,
|
|
|
|
},
|
|
|
|
},
|
2018-10-01 02:17:45 +00:00
|
|
|
{
|
|
|
|
"Service with a check",
|
2018-10-01 15:05:57 +00:00
|
|
|
&structs.ServiceDefinition{
|
|
|
|
Name: "web",
|
|
|
|
Check: structs.CheckType{
|
|
|
|
Name: "ping",
|
2018-10-01 02:17:45 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
&api.AgentServiceRegistration{
|
|
|
|
Name: "web",
|
|
|
|
Check: &api.AgentServiceCheck{
|
|
|
|
Name: "ping",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"Service with checks",
|
2018-10-01 15:05:57 +00:00
|
|
|
&structs.ServiceDefinition{
|
|
|
|
Name: "web",
|
|
|
|
Checks: structs.CheckTypes{
|
|
|
|
&structs.CheckType{
|
|
|
|
Name: "ping",
|
2018-10-01 02:17:45 +00:00
|
|
|
},
|
2018-10-01 15:05:57 +00:00
|
|
|
&structs.CheckType{
|
|
|
|
Name: "pong",
|
2018-10-01 02:17:45 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
&api.AgentServiceRegistration{
|
|
|
|
Name: "web",
|
|
|
|
Checks: api.AgentServiceChecks{
|
|
|
|
&api.AgentServiceCheck{
|
|
|
|
Name: "ping",
|
|
|
|
},
|
|
|
|
&api.AgentServiceCheck{
|
|
|
|
Name: "pong",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2018-09-28 06:52:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, tc := range cases {
|
|
|
|
t.Run(tc.Name, func(t *testing.T) {
|
|
|
|
require := require.New(t)
|
2018-10-01 15:05:57 +00:00
|
|
|
actual, err := serviceToAgentService(tc.Input)
|
2018-09-28 06:52:17 +00:00
|
|
|
require.NoError(err)
|
|
|
|
require.Equal(tc.Output, actual)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func intPtr(v int) *int { return &v }
|
|
|
|
func strPtr(v string) *string { return &v }
|