mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 11:34:26 +00:00
a301c40f9f
* command/crypto: DRY the code - reuse the the algorithm switch to create a secret generator - add a verifyCryptoCode function * command: crypto code tests * migrate webauthn package * finish integration tests with webauthn mock client
37 lines
782 B
Go
37 lines
782 B
Go
package grpc
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"google.golang.org/protobuf/reflect/protoreflect"
|
|
)
|
|
|
|
// AllFieldsSet recusively checks if all values in a message
|
|
// have a non-zero value.
|
|
func AllFieldsSet(t testing.TB, msg protoreflect.Message, ignoreTypes ...protoreflect.FullName) {
|
|
ignore := make(map[protoreflect.FullName]bool, len(ignoreTypes))
|
|
for _, name := range ignoreTypes {
|
|
ignore[name] = true
|
|
}
|
|
|
|
md := msg.Descriptor()
|
|
name := md.FullName()
|
|
if ignore[name] {
|
|
return
|
|
}
|
|
|
|
fields := md.Fields()
|
|
|
|
for i := 0; i < fields.Len(); i++ {
|
|
fd := fields.Get(i)
|
|
if !msg.Has(fd) {
|
|
t.Errorf("not all fields set in %q, missing %q", name, fd.Name())
|
|
continue
|
|
}
|
|
|
|
if fd.Kind() == protoreflect.MessageKind {
|
|
AllFieldsSet(t, msg.Get(fd).Message(), ignoreTypes...)
|
|
}
|
|
}
|
|
}
|