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...

22 lines
522 B

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
package kms
import (
"testing"
"github.com/google/go-cmp/cmp"
"github.com/stretchr/testify/assert"
"google.golang.org/protobuf/testing/protocmp"
)
func Test_DataKeyVersionDestructionJobRun(t *testing.T) {
run1 := allocDataKeyVersionDestructionJobRun()
run1.KeyId = "abcd"
run2 := run1.Clone()
assert.Empty(t, cmp.Diff(run1, run2, protocmp.Transform()))
run1.KeyId = "efgh"
assert.NotEmpty(t, cmp.Diff(run1, run2, protocmp.Transform()))
}