mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-12-11 17:04:22 -05:00
26e9c67a00
Decouples cloud provider metadata packages from kubernetes related code Signed-off-by: Malte Poll <mp@edgeless.systems>
20 lines
510 B
Go
20 lines
510 B
Go
package resources
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/edgelesssys/constellation/internal/kubernetes"
|
|
"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
|
|
require.NoError(t, kubernetes.UnmarshalK8SResources(deploymentYAML, &recreated))
|
|
assert.Equal(t, deployment, &recreated)
|
|
}
|