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

26 lines
611 B
Go
Raw Normal View History

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