forked from TrueCloudLab/frostfs-node
Alex Vanin
20de74a505
Due to source code relocation from GitHub. Signed-off-by: Alex Vanin <a.vanin@yadro.com>
44 lines
1.1 KiB
Go
44 lines
1.1 KiB
Go
package control_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
control "git.frostfs.info/TrueCloudLab/frostfs-node/pkg/services/control/ir"
|
|
"github.com/stretchr/testify/require"
|
|
"google.golang.org/protobuf/proto"
|
|
)
|
|
|
|
type protoMessage interface {
|
|
StableMarshal([]byte) []byte
|
|
proto.Message
|
|
}
|
|
|
|
func testStableMarshal(t *testing.T, m1, m2 protoMessage, cmp func(m1, m2 protoMessage) bool) {
|
|
require.NoError(t, proto.Unmarshal(m1.StableMarshal(nil), m2))
|
|
|
|
require.True(t, cmp(m1, m2))
|
|
}
|
|
|
|
func TestHealthCheckResponse_Body_StableMarshal(t *testing.T) {
|
|
testStableMarshal(t,
|
|
generateHealthCheckResponseBody(),
|
|
new(control.HealthCheckResponse_Body),
|
|
func(m1, m2 protoMessage) bool {
|
|
return equalHealthCheckResponseBodies(
|
|
m1.(*control.HealthCheckResponse_Body),
|
|
m2.(*control.HealthCheckResponse_Body),
|
|
)
|
|
},
|
|
)
|
|
}
|
|
|
|
func generateHealthCheckResponseBody() *control.HealthCheckResponse_Body {
|
|
body := new(control.HealthCheckResponse_Body)
|
|
body.SetHealthStatus(control.HealthStatus_SHUTTING_DOWN)
|
|
|
|
return body
|
|
}
|
|
|
|
func equalHealthCheckResponseBodies(b1, b2 *control.HealthCheckResponse_Body) bool {
|
|
return b1.GetHealthStatus() == b2.GetHealthStatus()
|
|
}
|