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
577 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_DataKeyVersionDestructionJobProgress(t *testing.T) {
progress1 := allocDataKeyVersionDestructionJobProgress()
progress1.KeyId = "abcd"
progress2 := progress1.Clone()
assert.Empty(t, cmp.Diff(progress1, progress2, protocmp.Transform()))
progress1.KeyId = "efgh"
assert.NotEmpty(t, cmp.Diff(progress1, progress2, protocmp.Transform()))
}