open-nomad/client/serviceregistration/service_registration_test.go
James Rasell 7cd28a6fb6
client: refactor common service registration objects from Consul.
This commit performs refactoring to pull out common service
registration objects into a new `client/serviceregistration`
package. This new package will form the base point for all
client specific service registration functionality.

The Consul specific implementation is not moved as it also
includes non-service registration implementations; this reduces
the blast radius of the changes as well.
2022-03-15 09:38:30 +01:00

54 lines
1.2 KiB
Go

package serviceregistration
import (
"testing"
"github.com/hashicorp/nomad/nomad/structs"
"github.com/stretchr/testify/require"
)
func TestAllocRegistration_Copy(t *testing.T) {
testCases := []struct {
inputAllocRegistration *AllocRegistration
name string
}{
{
inputAllocRegistration: &AllocRegistration{
Tasks: map[string]*ServiceRegistrations{},
},
name: "empty tasks map",
},
{
inputAllocRegistration: &AllocRegistration{
Tasks: map[string]*ServiceRegistrations{
"cache": {
Services: map[string]*ServiceRegistration{
"redis-db": {
ServiceID: "service-id-1",
CheckIDs: map[string]struct{}{
"check-id-1": {},
"check-id-2": {},
"check-id-3": {},
},
CheckOnUpdate: map[string]string{
"check-id-1": structs.OnUpdateIgnore,
"check-id-2": structs.OnUpdateRequireHealthy,
"check-id-3": structs.OnUpdateIgnoreWarn,
},
},
},
},
},
},
name: "non-empty tasks map",
},
}
for _, tc := range testCases {
t.Run(tc.name, func(t *testing.T) {
actualOutput := tc.inputAllocRegistration.Copy()
require.Equal(t, tc.inputAllocRegistration, actualOutput)
})
}
}