mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-12 01:27:32 +00:00
refactor: rename package errors to zerrors (#7039)
* chore: rename package errors to zerrors * rename package errors to gerrors * fix error related linting issues * fix zitadel error assertion * fix gosimple linting issues * fix deprecated linting issues * resolve gci linting issues * fix import structure --------- Co-authored-by: Elio Bischof <elio@zitadel.com>
This commit is contained in:
172
internal/api/grpc/gerrors/zitadel_errors_test.go
Normal file
172
internal/api/grpc/gerrors/zitadel_errors_test.go
Normal file
@@ -0,0 +1,172 @@
|
||||
package gerrors
|
||||
|
||||
import (
|
||||
"errors"
|
||||
"testing"
|
||||
|
||||
"google.golang.org/grpc/codes"
|
||||
|
||||
"github.com/zitadel/zitadel/internal/zerrors"
|
||||
)
|
||||
|
||||
func TestCaosToGRPCError(t *testing.T) {
|
||||
type args struct {
|
||||
err error
|
||||
}
|
||||
tests := []struct {
|
||||
name string
|
||||
args args
|
||||
wantErr bool
|
||||
}{
|
||||
{
|
||||
"no error",
|
||||
args{},
|
||||
false,
|
||||
},
|
||||
{
|
||||
"unknown error",
|
||||
args{errors.New("unknown")},
|
||||
true,
|
||||
},
|
||||
{
|
||||
"caos error",
|
||||
args{zerrors.ThrowInternal(nil, "", "message")},
|
||||
true,
|
||||
},
|
||||
}
|
||||
for _, tt := range tests {
|
||||
t.Run(tt.name, func(t *testing.T) {
|
||||
if err := ZITADELToGRPCError(tt.args.err); (err != nil) != tt.wantErr {
|
||||
t.Errorf("ZITADELToGRPCError() error = %v, wantErr %v", err, tt.wantErr)
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
func Test_Extract(t *testing.T) {
|
||||
type args struct {
|
||||
err error
|
||||
}
|
||||
tests := []struct {
|
||||
name string
|
||||
args args
|
||||
wantC codes.Code
|
||||
wantMsg string
|
||||
wantID string
|
||||
wantOk bool
|
||||
}{
|
||||
{
|
||||
"already exists",
|
||||
args{zerrors.ThrowAlreadyExists(nil, "id", "already exists")},
|
||||
codes.AlreadyExists,
|
||||
"already exists",
|
||||
"id",
|
||||
true,
|
||||
},
|
||||
{
|
||||
"deadline exceeded",
|
||||
args{zerrors.ThrowDeadlineExceeded(nil, "id", "deadline exceeded")},
|
||||
codes.DeadlineExceeded,
|
||||
"deadline exceeded",
|
||||
"id",
|
||||
true,
|
||||
},
|
||||
{
|
||||
"internal error",
|
||||
args{zerrors.ThrowInternal(nil, "id", "internal error")},
|
||||
codes.Internal,
|
||||
"internal error",
|
||||
"id",
|
||||
true,
|
||||
},
|
||||
{
|
||||
"invalid argument",
|
||||
args{zerrors.ThrowInvalidArgument(nil, "id", "invalid argument")},
|
||||
codes.InvalidArgument,
|
||||
"invalid argument",
|
||||
"id",
|
||||
true,
|
||||
},
|
||||
{
|
||||
"not found",
|
||||
args{zerrors.ThrowNotFound(nil, "id", "not found")},
|
||||
codes.NotFound,
|
||||
"not found",
|
||||
"id",
|
||||
true,
|
||||
},
|
||||
{
|
||||
"permission denied",
|
||||
args{zerrors.ThrowPermissionDenied(nil, "id", "permission denied")},
|
||||
codes.PermissionDenied,
|
||||
"permission denied",
|
||||
"id",
|
||||
true,
|
||||
},
|
||||
{
|
||||
"precondition failed",
|
||||
args{zerrors.ThrowPreconditionFailed(nil, "id", "precondition failed")},
|
||||
codes.FailedPrecondition,
|
||||
"precondition failed",
|
||||
"id",
|
||||
true,
|
||||
},
|
||||
{
|
||||
"unauthenticated",
|
||||
args{zerrors.ThrowUnauthenticated(nil, "id", "unauthenticated")},
|
||||
codes.Unauthenticated,
|
||||
"unauthenticated",
|
||||
"id",
|
||||
true,
|
||||
},
|
||||
{
|
||||
"unavailable",
|
||||
args{zerrors.ThrowUnavailable(nil, "id", "unavailable")},
|
||||
codes.Unavailable,
|
||||
"unavailable",
|
||||
"id",
|
||||
true,
|
||||
},
|
||||
{
|
||||
"unimplemented",
|
||||
args{zerrors.ThrowUnimplemented(nil, "id", "unimplemented")},
|
||||
codes.Unimplemented,
|
||||
"unimplemented",
|
||||
"id",
|
||||
true,
|
||||
},
|
||||
{
|
||||
"exhausted",
|
||||
args{zerrors.ThrowResourceExhausted(nil, "id", "exhausted")},
|
||||
codes.ResourceExhausted,
|
||||
"exhausted",
|
||||
"id",
|
||||
true,
|
||||
},
|
||||
{
|
||||
"unknown",
|
||||
args{errors.New("unknown")},
|
||||
codes.Unknown,
|
||||
"unknown",
|
||||
"",
|
||||
false,
|
||||
},
|
||||
}
|
||||
for _, tt := range tests {
|
||||
t.Run(tt.name, func(t *testing.T) {
|
||||
gotC, gotMsg, gotID, gotOk := ExtractZITADELError(tt.args.err)
|
||||
if gotC != tt.wantC {
|
||||
t.Errorf("extract() gotC = %v, want %v", gotC, tt.wantC)
|
||||
}
|
||||
if gotMsg != tt.wantMsg {
|
||||
t.Errorf("extract() gotMsg = %v, want %v", gotMsg, tt.wantMsg)
|
||||
}
|
||||
if gotID != tt.wantID {
|
||||
t.Errorf("extract() gotID = %v, want %v", gotID, tt.wantID)
|
||||
}
|
||||
if gotOk != tt.wantOk {
|
||||
t.Errorf("extract() gotOk = %v, want %v", gotOk, tt.wantOk)
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user