constellation/bootstrapper/internal/kubernetes/k8sapi/resources/verification_test.go

26 lines
608 B
Go
Raw Normal View History

/*
Copyright (c) Edgeless Systems GmbH
SPDX-License-Identifier: AGPL-3.0-only
*/
2022-06-28 16:33:27 +00:00
package resources
import (
"testing"
"github.com/edgelesssys/constellation/internal/kubernetes"
2022-06-28 16:33:27 +00:00
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestNewVerificationDaemonset(t *testing.T) {
2022-09-01 13:01:23 +00:00
deployment := NewVerificationDaemonSet("csp", "192.168.2.1")
2022-06-28 16:33:27 +00:00
deploymentYAML, err := deployment.Marshal()
require.NoError(t, err)
var recreated verificationDaemonset
require.NoError(t, kubernetes.UnmarshalK8SResources(deploymentYAML, &recreated))
2022-06-28 16:33:27 +00:00
assert.Equal(t, deployment, &recreated)
}