You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
498 B
22 lines
498 B
4 years ago
|
package status
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/go-kratos/kratos/v2/errors"
|
||
|
"google.golang.org/grpc/codes"
|
||
|
"google.golang.org/grpc/status"
|
||
|
)
|
||
|
|
||
|
func TestErrEncoder(t *testing.T) {
|
||
|
err := errors.InvalidArgument("InvalidArgument", "format")
|
||
|
en := errorEncode(err)
|
||
|
if code := status.Code(en); code != codes.InvalidArgument {
|
||
|
t.Errorf("expected %d got %d", codes.InvalidArgument, code)
|
||
|
}
|
||
|
de := errorDecode(en)
|
||
|
if !errors.IsInvalidArgument(de) {
|
||
|
t.Errorf("expected %v got %v", err, de)
|
||
|
}
|
||
|
}
|