zitadel/internal/integration/assert.go

42 lines
1.2 KiB
Go
Raw Normal View History

2023-04-28 11:39:53 +00:00
package integration
import (
"testing"
"time"
"github.com/stretchr/testify/assert"
object "github.com/zitadel/zitadel/pkg/grpc/object/v2alpha"
)
type DetailsMsg interface {
GetDetails() *object.Details
}
2023-05-02 16:24:24 +00:00
// AssertDetails asserts values in a message's object Details,
// if the object Details in expected is a non-nil value.
// It targets API v2 messages that have the `GetDetails()` method.
//
// Dynamically generated values are not compared with expected.
// Instead a sanity check is performed.
// For the sequence a non-zero value is expected.
// The change date has to be now, with a tollerance of 1 second.
//
// The resource owner is compared with expected and is
// therefore the only value that has to be set.
2023-04-28 11:39:53 +00:00
func AssertDetails[D DetailsMsg](t testing.TB, exptected, actual D) {
wantDetails, gotDetails := exptected.GetDetails(), actual.GetDetails()
2023-05-02 16:24:24 +00:00
if wantDetails == nil {
assert.Nil(t, gotDetails)
return
2023-04-28 11:39:53 +00:00
}
2023-05-02 16:24:24 +00:00
assert.NotZero(t, gotDetails.GetSequence())
gotCD := gotDetails.GetChangeDate().AsTime()
now := time.Now()
assert.WithinRange(t, gotCD, now.Add(-time.Minute), now.Add(time.Minute))
2023-05-02 16:24:24 +00:00
2023-04-28 11:39:53 +00:00
assert.Equal(t, wantDetails.GetResourceOwner(), gotDetails.GetResourceOwner())
}