mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 19:14:23 +00:00
3549a8b64e
* move mgmt pkg * begin package restructure * rename auth package to authz * begin start api * move auth * move admin * fix merge * configs and interceptors * interceptor * revert generate-grpc.sh * some cleanups * console * move console * fix tests and merging * js linting * merge * merging and configs * change k8s base to current ports * fixes * cleanup * regenerate proto * remove unnecessary whitespace * missing param * go mod tidy * fix merging * move login pkg * cleanup * move api pkgs again * fix pkg naming * fix generate-static.sh for login * update workflow * fixes * logging * remove duplicate * comment for optional gateway interfaces * regenerate protos * fix proto imports for grpc web * protos * grpc web generate * grpc web generate * fix changes * add translation interceptor * fix merging * regenerate mgmt proto
159 lines
3.0 KiB
Go
159 lines
3.0 KiB
Go
package server
|
|
|
|
import (
|
|
"context"
|
|
"reflect"
|
|
"testing"
|
|
|
|
"github.com/golang/protobuf/ptypes/empty"
|
|
|
|
"github.com/caos/zitadel/internal/errors"
|
|
)
|
|
|
|
func TestValidator_Healthz(t *testing.T) {
|
|
type fields struct {
|
|
validations map[string]ValidationFunction
|
|
}
|
|
type res struct {
|
|
want *empty.Empty
|
|
hasErr bool
|
|
}
|
|
tests := []struct {
|
|
name string
|
|
fields fields
|
|
res res
|
|
}{
|
|
{
|
|
"ok",
|
|
fields{},
|
|
res{
|
|
&empty.Empty{},
|
|
false,
|
|
},
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
v := &Validator{
|
|
validations: tt.fields.validations,
|
|
}
|
|
got, err := v.Healthz(nil, &empty.Empty{})
|
|
if (err != nil) != tt.res.hasErr {
|
|
t.Errorf("Healthz() error = %v, wantErr %v", err, tt.res.hasErr)
|
|
return
|
|
}
|
|
if !reflect.DeepEqual(got, tt.res.want) {
|
|
t.Errorf("Healthz() got = %v, want %v", got, tt.res.want)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestValidator_Ready(t *testing.T) {
|
|
type fields struct {
|
|
validations map[string]ValidationFunction
|
|
}
|
|
type res struct {
|
|
want *empty.Empty
|
|
hasErr bool
|
|
}
|
|
tests := []struct {
|
|
name string
|
|
fields fields
|
|
res res
|
|
}{
|
|
{
|
|
"unready error",
|
|
fields{validations: map[string]ValidationFunction{
|
|
"error": func(_ context.Context) error {
|
|
return errors.ThrowInternal(nil, "id", "message")
|
|
},
|
|
}},
|
|
res{
|
|
nil,
|
|
true,
|
|
},
|
|
},
|
|
{
|
|
"ready ok",
|
|
fields{validations: map[string]ValidationFunction{
|
|
"ok": func(_ context.Context) error {
|
|
return nil
|
|
},
|
|
}},
|
|
res{
|
|
&empty.Empty{},
|
|
false,
|
|
},
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
v := &Validator{
|
|
validations: tt.fields.validations,
|
|
}
|
|
got, err := v.Ready(context.Background(), &empty.Empty{})
|
|
if (err != nil) != tt.res.hasErr {
|
|
t.Errorf("Ready() error = %v, wantErr %v", err, tt.res.hasErr)
|
|
return
|
|
}
|
|
if !reflect.DeepEqual(got, tt.res.want) {
|
|
t.Errorf("Ready() got = %v, want %v", got, tt.res.want)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func Test_validate(t *testing.T) {
|
|
type args struct {
|
|
validations map[string]ValidationFunction
|
|
}
|
|
type res struct {
|
|
want map[string]error
|
|
}
|
|
tests := []struct {
|
|
name string
|
|
args args
|
|
res res
|
|
}{
|
|
{
|
|
"no error empty",
|
|
args{
|
|
validations: map[string]ValidationFunction{
|
|
"ok": func(_ context.Context) error {
|
|
return nil
|
|
},
|
|
},
|
|
},
|
|
res{
|
|
map[string]error{},
|
|
},
|
|
},
|
|
{
|
|
"error in list",
|
|
args{
|
|
validations: map[string]ValidationFunction{
|
|
"ok": func(_ context.Context) error {
|
|
return nil
|
|
},
|
|
"error": func(_ context.Context) error {
|
|
return errors.ThrowInternal(nil, "id", "message")
|
|
},
|
|
},
|
|
},
|
|
res{
|
|
map[string]error{
|
|
"error": errors.ThrowInternal(nil, "id", "message"),
|
|
},
|
|
},
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
if got := validate(context.Background(), tt.args.validations); !reflect.DeepEqual(got, tt.res.want) {
|
|
t.Errorf("validate() = %v, want %v", got, tt.res.want)
|
|
}
|
|
})
|
|
}
|
|
}
|