diff --git a/docs/supported-libraries.md b/docs/supported-libraries.md index a2a3d612..699b7111 100644 --- a/docs/supported-libraries.md +++ b/docs/supported-libraries.md @@ -8,13 +8,13 @@ | fasthttp | https://github.com/valyala/fasthttp | v1.45.0 | v1.57.0 | | fiber | https://github.com/gofiber/fiber | v2.43.0 | v2.52.5 | | gin | https://github.com/gin-gonic/gin | v1.7.0 | v1.10.0 | -| gorestful | https://github.com/emicklei/go-restful | v3.7.0 | v3.12.1 | +| gorestful | https://github.com/emicklei/go-restful | v3.7.0 | v3.12.1 | | go-redis | https://github.com/redis/go-redis | v9.0.5 | v9.5.1 | | go-redis v8 | https://github.com/redis/go-redis | v8.11.0 | v8.11.5 | | gorm | https://github.com/go-gorm/gorm | v1.22.0 | v1.25.9 | -| grpc | https://google.golang.org/grpc | v1.44.0 | v1.67.0 | +| grpc | https://google.golang.org/grpc | v1.44.0 | v1.68.1 | | hertz | https://github.com/cloudwego/hertz | v0.8.0 | v0.9.2 | -| kitex | https://github.com/cloudwego/kitex | v0.5.1 | v0.11.3 | +| kitex | https://github.com/cloudwego/kitex | v0.5.1 | v0.11.3 | | kratos | https://github.com/go-kratos/kratos | v2.6.3 | v2.8.2 | | log | https://pkg.go.dev/log | - | - | | logrus | https://github.com/sirupsen/logrus | v1.5.0 | v1.9.3 | @@ -25,4 +25,9 @@ | redigo | https://github.com/gomodule/redigo | v1.9.0 | v1.9.2 | | slog | https://pkg.go.dev/log/slog | - | - | | zap | https://github.com/uber-go/zap | v1.20.0 | v1.27.0 | -| zerolog | https://github.com/rs/zerolog | v1.10.0 | v1.33.0 | \ No newline at end of file +| zerolog | https://github.com/rs/zerolog | v1.10.0 | v1.33.0 | + + +### Notice + +#### grpc stream is not support yet \ No newline at end of file diff --git a/test/grpc_tests.go b/test/grpc_tests.go index ba78db03..09c1d7d0 100644 --- a/test/grpc_tests.go +++ b/test/grpc_tests.go @@ -23,7 +23,6 @@ func init() { TestCases = append(TestCases, NewGeneralTestCase("grpc-basic-test", grpc_module_name, "v1.44.0", "", "1.21", "", TestBasicGrpc), NewGeneralTestCase("grpc-fail-status-test", grpc_module_name, "v1.44.0", "", "1.21", "", TestGrpcStatus), - NewGeneralTestCase("grpc-stream-test", grpc_module_name, "v1.44.0", "", "1.21", "", TestGrpcStream), NewLatestDepthTestCase("grpc-latest-depth", grpc_dependency_name, grpc_module_name, "v1.44.0", "", "1.21", "", TestBasicGrpc), NewMuzzleTestCase("grpc-muzzle", grpc_dependency_name, grpc_module_name, "v1.44.0", "", "1.21", "", []string{"go", "build", "test_grpc_basic.go", "grpc_common.go", "grpc.pb.go", "grpc_grpc.pb.go"}), ) @@ -42,10 +41,3 @@ func TestGrpcStatus(t *testing.T, env ...string) { env = append(env, "GOLANG_PROTOBUF_REGISTRATION_CONFLICT=warn") RunApp(t, "test_grpc_fail_status", env...) } - -func TestGrpcStream(t *testing.T, env ...string) { - UseApp("grpc_stream") - RunGoBuild(t, "go", "build", "test_grpc_stream.go") - env = append(env, "GOLANG_PROTOBUF_REGISTRATION_CONFLICT=warn") - RunApp(t, "test_grpc_stream", env...) -}