fix latest CI breakages by forking code from grpc-go's interop/testing

Also moves testing package to internal/testing
This commit is contained in:
Joshua Humphries
2020-08-31 14:44:59 -04:00
committed by GitHub
parent 54ffdcacda
commit ba5f667e13
48 changed files with 1258 additions and 126 deletions

View File

@@ -0,0 +1,21 @@
syntax = "proto3";
import "google/protobuf/descriptor.proto";
import "google/protobuf/empty.proto";
import "google/protobuf/timestamp.proto";
import "example2.proto";
message TestRequest {
repeated string file_names = 1;
repeated Extension extensions = 2;
}
message TestResponse {
map<string, google.protobuf.FileDescriptorProto> file_protos = 1;
google.protobuf.Timestamp last_update_date = 2;
}
service TestService {
rpc GetFiles (TestRequest) returns (TestResponse);
rpc Ping (google.protobuf.Empty) returns (google.protobuf.Empty);
}