forked from grpc/grpc-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/grpc/grpc-node
- Loading branch information
Showing
33 changed files
with
1,774 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
|
||
// Copyright 2015 gRPC authors. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
syntax = "proto3"; | ||
|
||
package grpc.testing; | ||
|
||
import "grpc/testing/echo_messages.proto"; | ||
import "grpc/testing/simple_messages.proto"; | ||
|
||
service EchoTestService { | ||
rpc Echo(EchoRequest) returns (EchoResponse); | ||
rpc Echo1(EchoRequest) returns (EchoResponse); | ||
rpc Echo2(EchoRequest) returns (EchoResponse); | ||
rpc CheckDeadlineUpperBound(SimpleRequest) returns (StringValue); | ||
rpc CheckDeadlineSet(SimpleRequest) returns (StringValue); | ||
// A service which checks that the initial metadata sent over contains some | ||
// expected key value pair | ||
rpc CheckClientInitialMetadata(SimpleRequest) returns (SimpleResponse); | ||
rpc RequestStream(stream EchoRequest) returns (EchoResponse); | ||
rpc ResponseStream(EchoRequest) returns (stream EchoResponse); | ||
rpc BidiStream(stream EchoRequest) returns (stream EchoResponse); | ||
rpc Unimplemented(EchoRequest) returns (EchoResponse); | ||
rpc UnimplementedBidi(stream EchoRequest) returns (stream EchoResponse); | ||
} | ||
|
||
service EchoTest1Service { | ||
rpc Echo(EchoRequest) returns (EchoResponse); | ||
rpc Echo1(EchoRequest) returns (EchoResponse); | ||
rpc Echo2(EchoRequest) returns (EchoResponse); | ||
// A service which checks that the initial metadata sent over contains some | ||
// expected key value pair | ||
rpc CheckClientInitialMetadata(SimpleRequest) returns (SimpleResponse); | ||
rpc RequestStream(stream EchoRequest) returns (EchoResponse); | ||
rpc ResponseStream(EchoRequest) returns (stream EchoResponse); | ||
rpc BidiStream(stream EchoRequest) returns (stream EchoResponse); | ||
rpc Unimplemented(EchoRequest) returns (EchoResponse); | ||
} | ||
|
||
service EchoTest2Service { | ||
rpc Echo(EchoRequest) returns (EchoResponse); | ||
rpc Echo1(EchoRequest) returns (EchoResponse); | ||
rpc Echo2(EchoRequest) returns (EchoResponse); | ||
// A service which checks that the initial metadata sent over contains some | ||
// expected key value pair | ||
rpc CheckClientInitialMetadata(SimpleRequest) returns (SimpleResponse); | ||
rpc RequestStream(stream EchoRequest) returns (EchoResponse); | ||
rpc ResponseStream(EchoRequest) returns (stream EchoResponse); | ||
rpc BidiStream(stream EchoRequest) returns (stream EchoResponse); | ||
rpc Unimplemented(EchoRequest) returns (EchoResponse); | ||
} | ||
|
||
service UnimplementedEchoService { | ||
rpc Unimplemented(EchoRequest) returns (EchoResponse); | ||
} | ||
|
||
// A service without any rpc defined to test coverage. | ||
service NoRpcService {} |
74 changes: 74 additions & 0 deletions
74
packages/grpc-js-xds/proto/grpc/testing/echo_messages.proto
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
|
||
// Copyright 2015 gRPC authors. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
syntax = "proto3"; | ||
|
||
package grpc.testing; | ||
|
||
option cc_enable_arenas = true; | ||
|
||
import "grpc/testing/xds/v3/orca_load_report.proto"; | ||
|
||
// Message to be echoed back serialized in trailer. | ||
message DebugInfo { | ||
repeated string stack_entries = 1; | ||
string detail = 2; | ||
} | ||
|
||
// Error status client expects to see. | ||
message ErrorStatus { | ||
int32 code = 1; | ||
string error_message = 2; | ||
string binary_error_details = 3; | ||
} | ||
|
||
message RequestParams { | ||
bool echo_deadline = 1; | ||
int32 client_cancel_after_us = 2; | ||
int32 server_cancel_after_us = 3; | ||
bool echo_metadata = 4; | ||
bool check_auth_context = 5; | ||
int32 response_message_length = 6; | ||
bool echo_peer = 7; | ||
string expected_client_identity = 8; // will force check_auth_context. | ||
bool skip_cancelled_check = 9; | ||
string expected_transport_security_type = 10; | ||
DebugInfo debug_info = 11; | ||
bool server_die = 12; // Server should not see a request with this set. | ||
string binary_error_details = 13; | ||
ErrorStatus expected_error = 14; | ||
int32 server_sleep_us = 15; // sleep when invoking server for deadline tests | ||
int32 backend_channel_idx = 16; // which backend to send request to | ||
bool echo_metadata_initially = 17; | ||
bool server_notify_client_when_started = 18; | ||
xds.data.orca.v3.OrcaLoadReport backend_metrics = 19; | ||
bool echo_host_from_authority_header = 20; | ||
} | ||
|
||
message EchoRequest { | ||
string message = 1; | ||
RequestParams param = 2; | ||
} | ||
|
||
message ResponseParams { | ||
int64 request_deadline = 1; | ||
string host = 2; | ||
string peer = 3; | ||
} | ||
|
||
message EchoResponse { | ||
string message = 1; | ||
ResponseParams param = 2; | ||
} |
26 changes: 26 additions & 0 deletions
26
packages/grpc-js-xds/proto/grpc/testing/simple_messages.proto
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
|
||
// Copyright 2018 gRPC authors. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
syntax = "proto3"; | ||
|
||
package grpc.testing; | ||
|
||
message SimpleRequest {} | ||
|
||
message SimpleResponse {} | ||
|
||
message StringValue { | ||
string message = 1; | ||
} |
44 changes: 44 additions & 0 deletions
44
packages/grpc-js-xds/proto/grpc/testing/xds/v3/orca_load_report.proto
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
// Copyright 2020 The gRPC Authors | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
// Local copy of Envoy xDS proto file, used for testing only. | ||
|
||
syntax = "proto3"; | ||
|
||
package xds.data.orca.v3; | ||
|
||
// See section `ORCA load report format` of the design document in | ||
// :ref:`https://github.com/envoyproxy/envoy/issues/6614`. | ||
|
||
message OrcaLoadReport { | ||
// CPU utilization expressed as a fraction of available CPU resources. This | ||
// should be derived from the latest sample or measurement. | ||
double cpu_utilization = 1; | ||
|
||
// Memory utilization expressed as a fraction of available memory | ||
// resources. This should be derived from the latest sample or measurement. | ||
double mem_utilization = 2; | ||
|
||
// Total RPS being served by an endpoint. This should cover all services that an endpoint is | ||
// responsible for. | ||
uint64 rps = 3; | ||
|
||
// Application specific requests costs. Each value is an absolute cost (e.g. 3487 bytes of | ||
// storage) associated with the request. | ||
map<string, double> request_cost = 4; | ||
|
||
// Resource utilization values. Each value is expressed as a fraction of total resources | ||
// available, derived from the latest sample or measurement. | ||
map<string, double> utilization = 5; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.