mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 19:14:23 +00:00
fa9f581d56
* chore: move to new org * logging * fix: org rename caos -> zitadel Co-authored-by: adlerhurst <silvan.reusser@gmail.com>
27 lines
507 B
Go
27 lines
507 B
Go
package middleware
|
|
|
|
import (
|
|
"context"
|
|
|
|
"google.golang.org/grpc"
|
|
|
|
"github.com/zitadel/zitadel/internal/errors"
|
|
)
|
|
|
|
func emptyMockHandler(_ context.Context, req interface{}) (interface{}, error) {
|
|
return req, nil
|
|
}
|
|
|
|
func errorMockHandler(_ context.Context, req interface{}) (interface{}, error) {
|
|
return nil, errors.ThrowInternal(nil, "test", "error")
|
|
}
|
|
|
|
type mockReq struct{}
|
|
|
|
func mockInfo(path string) *grpc.UnaryServerInfo {
|
|
return &grpc.UnaryServerInfo{
|
|
Server: nil,
|
|
FullMethod: path,
|
|
}
|
|
}
|