2022-09-05 03:06:08 -04:00
|
|
|
/*
|
|
|
|
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)
|
|
|
|
|
2022-10-05 09:02:46 -04:00
|
|
|
var recreated VerificationDaemonset
|
2022-08-29 08:30:20 -04:00
|
|
|
require.NoError(t, kubernetes.UnmarshalK8SResources(deploymentYAML, &recreated))
|
2022-06-28 12:33:27 -04:00
|
|
|
assert.Equal(t, deployment, &recreated)
|
|
|
|
}
|