You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
boundary/internal/kms/data_key_version_destructio...

19 lines
445 B

package kms
import (
"testing"
"github.com/google/go-cmp/cmp"
"github.com/stretchr/testify/assert"
"google.golang.org/protobuf/testing/protocmp"
)
func Test_DataKeyVersionDestructionJob(t *testing.T) {
job1 := allocDataKeyVersionDestructionJob()
job1.KeyId = "abcd"
job2 := job1.Clone()
assert.Empty(t, cmp.Diff(job1, job2, protocmp.Transform()))
job1.KeyId = "efgh"
assert.NotEmpty(t, cmp.Diff(job1, job2, protocmp.Transform()))
}