1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
load("@io_bazel_rules_go//go:def.bzl", "go_test")
go_test(
name = "integration_test",
srcs = [
"client_test.go",
"integration_test.go",
"main_test.go",
],
deps = [
"//examples/internal/clients/abe",
"//examples/internal/clients/echo",
"//examples/internal/clients/unannotatedecho",
"//examples/internal/gateway",
"//examples/internal/proto/examplepb",
"//examples/internal/proto/pathenum",
"//examples/internal/proto/sub",
"//examples/internal/server",
"//runtime",
"@com_github_google_go_cmp//cmp",
"@com_github_rogpeppe_fastuuid//:fastuuid",
"@org_golang_google_genproto_googleapis_rpc//status",
"@org_golang_google_grpc//codes",
"@org_golang_google_grpc//grpclog",
"@org_golang_google_protobuf//encoding/protojson",
"@org_golang_google_protobuf//proto",
"@org_golang_google_protobuf//testing/protocmp",
"@org_golang_google_protobuf//types/known/emptypb",
"@org_golang_google_protobuf//types/known/fieldmaskpb",
"@org_golang_google_protobuf//types/known/structpb",
],
)
|