2022-06-28 12:33:27 -04:00
|
|
|
package resources
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2022-08-29 08:30:20 -04:00
|
|
|
"github.com/edgelesssys/constellation/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) {
|
|
|
|
deployment := NewVerificationDaemonSet("csp")
|
|
|
|
deploymentYAML, err := deployment.Marshal()
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
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)
|
|
|
|
}
|