Skip to content

Commit

Permalink
delete stream test
Browse files Browse the repository at this point in the history
  • Loading branch information
NameHaibinZhang committed Dec 27, 2024
1 parent 8eb2892 commit fb36daa
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 12 deletions.
13 changes: 9 additions & 4 deletions docs/supported-libraries.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
Expand All @@ -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 |
| zerolog | https://github.com/rs/zerolog | v1.10.0 | v1.33.0 |


### Notice

#### grpc stream is not support yet
8 changes: 0 additions & 8 deletions test/grpc_tests.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"}),
)
Expand All @@ -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...)
}

0 comments on commit fb36daa

Please sign in to comment.