mirror of
				https://github.com/edgelesssys/constellation.git
				synced 2025-11-03 20:24:16 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
	
		
			608 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
	
		
			608 B
		
	
	
	
		
			Go
		
	
	
	
	
	
/*
 | 
						|
Copyright (c) Edgeless Systems GmbH
 | 
						|
 | 
						|
SPDX-License-Identifier: AGPL-3.0-only
 | 
						|
*/
 | 
						|
 | 
						|
package resources
 | 
						|
 | 
						|
import (
 | 
						|
	"testing"
 | 
						|
 | 
						|
	"github.com/edgelesssys/constellation/v2/internal/kubernetes"
 | 
						|
	"github.com/stretchr/testify/assert"
 | 
						|
	"github.com/stretchr/testify/require"
 | 
						|
)
 | 
						|
 | 
						|
func TestAuditPolicyMarshalUnmarshal(t *testing.T) {
 | 
						|
	require := require.New(t)
 | 
						|
	assert := assert.New(t)
 | 
						|
 | 
						|
	auditPolicy := NewDefaultAuditPolicy()
 | 
						|
	data, err := auditPolicy.Marshal()
 | 
						|
	require.NoError(err)
 | 
						|
 | 
						|
	var recreated AuditPolicy
 | 
						|
	require.NoError(kubernetes.UnmarshalK8SResources(data, &recreated))
 | 
						|
	assert.Equal(auditPolicy, &recreated)
 | 
						|
}
 |