mirror of https://github.com/grpc/grpc-node.git
Added and fixed interop tests
This commit is contained in:
parent
db205efc67
commit
e3f3c2184e
|
@ -115,11 +115,14 @@ function GrpcClientStream(call, options) {
|
|||
}, function(event) {
|
||||
self.emit('metadata', event.data);
|
||||
}, function(event) {
|
||||
debugger;
|
||||
self.emit('status', event.data);
|
||||
}, 0);
|
||||
this.on('finish', function() {
|
||||
call.writesDone(function() {});
|
||||
try {
|
||||
call.writesDone(function() {});
|
||||
} catch (e) {
|
||||
debugger;
|
||||
}
|
||||
});
|
||||
/**
|
||||
* Indicate that reads should start, and start them if the INVOKE_ACCEPTED
|
||||
|
|
|
@ -0,0 +1,19 @@
|
|||
syntax = "proto2";
|
||||
|
||||
package grpc.testing;
|
||||
|
||||
// An empty message that you can re-use to avoid defining duplicated empty
|
||||
// messages in your project. A typical example is to use it as argument or the
|
||||
// return value of a service API. For instance:
|
||||
//
|
||||
// service Foo {
|
||||
// rpc Bar (grpc.testing.Empty) returns (grpc.testing.Empty) { };
|
||||
// };
|
||||
//
|
||||
// MOE:begin_strip
|
||||
// The difference between this one and net/rpc/empty-message.proto is that
|
||||
// 1) The generated message here is in proto2 C++ API.
|
||||
// 2) The proto2.Empty has minimum dependencies
|
||||
// (no message_set or net/rpc dependencies)
|
||||
// MOE:end_strip
|
||||
message Empty {}
|
|
@ -0,0 +1,218 @@
|
|||
/*
|
||||
*
|
||||
* Copyright 2014, Google Inc.
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions are
|
||||
* met:
|
||||
*
|
||||
* * Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* * Redistributions in binary form must reproduce the above
|
||||
* copyright notice, this list of conditions and the following disclaimer
|
||||
* in the documentation and/or other materials provided with the
|
||||
* distribution.
|
||||
* * Neither the name of Google Inc. nor the names of its
|
||||
* contributors may be used to endorse or promote products derived from
|
||||
* this software without specific prior written permission.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*
|
||||
*/
|
||||
|
||||
var grpc = require('..');
|
||||
var testProto = grpc.load(__dirname + '/test.proto').grpc.testing;
|
||||
|
||||
var assert = require('assert');
|
||||
|
||||
function zeroBuffer(size) {
|
||||
var zeros = new Buffer(size);
|
||||
zeros.fill(0);
|
||||
return zeros;
|
||||
}
|
||||
|
||||
function emptyUnary(client, done) {
|
||||
var call = client.emptyCall({}, function(err, resp) {
|
||||
assert.ifError(err);
|
||||
});
|
||||
call.on('status', function(status) {
|
||||
assert.strictEqual(status.code, grpc.status.OK);
|
||||
if (done) {
|
||||
done();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
function largeUnary(client, done) {
|
||||
var arg = {
|
||||
response_type: testProto.PayloadType.COMPRESSABLE,
|
||||
response_size: 314159,
|
||||
payload: {
|
||||
body: zeroBuffer(271828)
|
||||
}
|
||||
};
|
||||
var call = client.unaryCall(arg, function(err, resp) {
|
||||
assert.ifError(err);
|
||||
assert.strictEqual(resp.payload.type, testProto.PayloadType.COMPRESSABLE);
|
||||
assert.strictEqual(resp.payload.body.limit - resp.payload.body.offset,
|
||||
314159);
|
||||
});
|
||||
call.on('status', function(status) {
|
||||
assert.strictEqual(status.code, grpc.status.OK);
|
||||
if (done) {
|
||||
done();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
function clientStreaming(client, done) {
|
||||
var call = client.streamingInputCall(function(err, resp) {
|
||||
assert.ifError(err);
|
||||
assert.strictEqual(resp.aggregated_payload_size, 74922);
|
||||
});
|
||||
call.on('status', function(status) {
|
||||
assert.strictEqual(status.code, grpc.status.OK);
|
||||
if (done) {
|
||||
done();
|
||||
}
|
||||
});
|
||||
var payload_sizes = [27182, 8, 1828, 45904];
|
||||
for (var i = 0; i < payload_sizes.length; i++) {
|
||||
call.write({payload: {body: zeroBuffer(payload_sizes[i])}});
|
||||
}
|
||||
call.end();
|
||||
}
|
||||
|
||||
function serverStreaming(client, done) {
|
||||
var arg = {
|
||||
response_type: testProto.PayloadType.COMPRESSABLE,
|
||||
response_parameters: [
|
||||
{size: 31415},
|
||||
{size: 9},
|
||||
{size: 2653},
|
||||
{size: 58979}
|
||||
]
|
||||
};
|
||||
var call = client.streamingOutputCall(arg);
|
||||
var resp_index = 0;
|
||||
call.on('data', function(value) {
|
||||
assert(resp_index < 4);
|
||||
assert.strictEqual(value.payload.type, testProto.PayloadType.COMPRESSABLE);
|
||||
assert.strictEqual(value.payload.body.limit - value.payload.body.offset,
|
||||
arg.response_parameters[resp_index].size);
|
||||
resp_index += 1;
|
||||
});
|
||||
call.on('status', function(status) {
|
||||
assert.strictEqual(resp_index, 4);
|
||||
assert.strictEqual(status.code, grpc.status.OK);
|
||||
if (done) {
|
||||
done();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
function pingPong(client, done) {
|
||||
var payload_sizes = [27182, 8, 1828, 45904];
|
||||
var response_sizes = [31415, 9, 2653, 58979];
|
||||
var call = client.fullDuplexCall();
|
||||
call.on('status', function(status) {
|
||||
assert.strictEqual(status.code, grpc.status.OK);
|
||||
if (done) {
|
||||
done();
|
||||
}
|
||||
});
|
||||
var index = 0;
|
||||
call.write({
|
||||
response_type: testProto.PayloadType.COMPRESSABLE,
|
||||
response_parameters: [
|
||||
{size: response_sizes[index]}
|
||||
],
|
||||
payload: {body: zeroBuffer(payload_sizes[index])}
|
||||
});
|
||||
call.on('data', function(response) {
|
||||
assert.strictEqual(response.payload.type,
|
||||
testProto.PayloadType.COMPRESSABLE);
|
||||
assert.equal(response.payload.body.limit - response.payload.body.offset,
|
||||
response_sizes[index]);
|
||||
index += 1;
|
||||
if (index == 4) {
|
||||
call.end();
|
||||
} else {
|
||||
call.write({
|
||||
response_type: testProto.PayloadType.COMPRESSABLE,
|
||||
response_parameters: [
|
||||
{size: response_sizes[index]}
|
||||
],
|
||||
payload: {body: zeroBuffer(payload_sizes[index])}
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
function emptyStream(client, done) {
|
||||
var call = client.fullDuplexCall();
|
||||
call.on('status', function(status) {
|
||||
assert.strictEqual(status.code, grpc.status.OK);
|
||||
if (done) {
|
||||
done();
|
||||
}
|
||||
});
|
||||
call.on('data', function(value) {
|
||||
assert.fail(value, null, 'No data should have been received', '!==');
|
||||
});
|
||||
call.end();
|
||||
}
|
||||
|
||||
var test_cases = {
|
||||
empty_unary: emptyUnary,
|
||||
large_unary: largeUnary,
|
||||
client_streaming: clientStreaming,
|
||||
server_streaming: serverStreaming,
|
||||
ping_pong: pingPong,
|
||||
empty_stream: emptyStream
|
||||
};
|
||||
|
||||
/**
|
||||
* Execute a single test case.
|
||||
* @param {string} address The address of the server to connect to, in the
|
||||
* format "hostname:port"
|
||||
* @param {string} host_overrirde The hostname of the server to use as an SSL
|
||||
* override
|
||||
* @param {string} test_case The name of the test case to run
|
||||
* @param {bool} tls Indicates that a secure channel should be used
|
||||
* @param {function} done Callback to call when the test is completed. Included
|
||||
* primarily for use with mocha
|
||||
*/
|
||||
function runTest(address, host_override, test_case, tls, done) {
|
||||
// TODO(mlumish): enable TLS functionality
|
||||
// TODO(mlumish): fix namespaces and service name
|
||||
var client = new testProto.TestService(address);
|
||||
|
||||
test_cases[test_case](client, done);
|
||||
}
|
||||
|
||||
if (require.main === module) {
|
||||
var parseArgs = require('minimist');
|
||||
var argv = parseArgs(process.argv, {
|
||||
string: ['server_host', 'server_host_override', 'server_port', 'test_case',
|
||||
'use_tls', 'use_test_ca']
|
||||
});
|
||||
runTest(argv.server_host + ':' + argv.server_port, argv.server_host_override,
|
||||
argv.test_case, argv.use_tls === 'true');
|
||||
}
|
||||
|
||||
/**
|
||||
* See docs for runTest
|
||||
*/
|
||||
exports.runTest = runTest;
|
|
@ -0,0 +1,34 @@
|
|||
/*
|
||||
*
|
||||
* Copyright 2014, Google Inc.
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions are
|
||||
* met:
|
||||
*
|
||||
* * Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* * Redistributions in binary form must reproduce the above
|
||||
* copyright notice, this list of conditions and the following disclaimer
|
||||
* in the documentation and/or other materials provided with the
|
||||
* distribution.
|
||||
* * Neither the name of Google Inc. nor the names of its
|
||||
* contributors may be used to endorse or promote products derived from
|
||||
* this software without specific prior written permission.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*
|
||||
*/
|
||||
|
||||
var grpc = require('..');
|
|
@ -0,0 +1,144 @@
|
|||
/*
|
||||
*
|
||||
* Copyright 2014, Google Inc.
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions are
|
||||
* met:
|
||||
*
|
||||
* * Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* * Redistributions in binary form must reproduce the above
|
||||
* copyright notice, this list of conditions and the following disclaimer
|
||||
* in the documentation and/or other materials provided with the
|
||||
* distribution.
|
||||
* * Neither the name of Google Inc. nor the names of its
|
||||
* contributors may be used to endorse or promote products derived from
|
||||
* this software without specific prior written permission.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*
|
||||
*/
|
||||
|
||||
var _ = require('underscore');
|
||||
var grpc = require('..');
|
||||
var testProto = grpc.load(__dirname + '/test.proto').grpc.testing;
|
||||
var Server = grpc.buildServer([testProto.TestService.service]);
|
||||
|
||||
function zeroBuffer(size) {
|
||||
var zeros = new Buffer(size);
|
||||
zeros.fill(0);
|
||||
return zeros;
|
||||
}
|
||||
|
||||
function handleEmpty(call, callback) {
|
||||
callback(null, {});
|
||||
}
|
||||
|
||||
function handleUnary(call, callback) {
|
||||
var req = call.request;
|
||||
var zeros = zeroBuffer(req.response_size);
|
||||
var payload_type = req.response_type;
|
||||
if (payload_type === testProto.PayloadType.RANDOM) {
|
||||
payload_type = [
|
||||
testProto.PayloadType.COMPRESSABLE,
|
||||
testProto.PayloadType.UNCOMPRESSABLE][Math.random() < 0.5 ? 0 : 1];
|
||||
}
|
||||
callback(null, {payload: {type: payload_type, body: zeros}});
|
||||
}
|
||||
|
||||
function handleStreamingInput(call, callback) {
|
||||
var aggregate_size = 0;
|
||||
call.on('data', function(value) {
|
||||
aggregate_size += value.payload.body.limit - value.payload.body.offset;
|
||||
});
|
||||
call.on('end', function() {
|
||||
callback(null, {aggregated_payload_size: aggregate_size});
|
||||
});
|
||||
}
|
||||
|
||||
function handleStreamingOutput(call) {
|
||||
var req = call.request;
|
||||
var payload_type = req.response_type;
|
||||
if (payload_type === testProto.PayloadType.RANDOM) {
|
||||
payload_type = [
|
||||
testProto.PayloadType.COMPRESSABLE,
|
||||
testProto.PayloadType.UNCOMPRESSABLE][Math.random() < 0.5 ? 0 : 1];
|
||||
}
|
||||
_.each(req.response_parameters, function(resp_param) {
|
||||
call.write({
|
||||
payload: {
|
||||
body: zeroBuffer(resp_param.size),
|
||||
type: payload_type
|
||||
}
|
||||
});
|
||||
});
|
||||
call.end();
|
||||
}
|
||||
|
||||
function handleFullDuplex(call) {
|
||||
call.on('data', function(value) {
|
||||
var payload_type = value.response_type;
|
||||
if (payload_type === testProto.PayloadType.RANDOM) {
|
||||
payload_type = [
|
||||
testProto.PayloadType.COMPRESSABLE,
|
||||
testProto.PayloadType.UNCOMPRESSABLE][Math.random() < 0.5 ? 0 : 1];
|
||||
}
|
||||
_.each(value.response_parameters, function(resp_param) {
|
||||
call.write({
|
||||
payload: {
|
||||
body: zeroBuffer(resp_param.size),
|
||||
type: payload_type
|
||||
}
|
||||
});
|
||||
});
|
||||
});
|
||||
call.on('end', function() {
|
||||
call.end();
|
||||
});
|
||||
}
|
||||
|
||||
function handleHalfDuplex(call) {
|
||||
throw new Error('HalfDuplexCall not yet implemented');
|
||||
}
|
||||
|
||||
function getServer(port, tls) {
|
||||
// TODO(mlumish): enable TLS functionality
|
||||
var server = new Server({
|
||||
'grpc.testing.TestService' : {
|
||||
emptyCall: handleEmpty,
|
||||
unaryCall: handleUnary,
|
||||
streamingOutputCall: handleStreamingOutput,
|
||||
streamingInputCall: handleStreamingInput,
|
||||
fullDuplexCall: handleFullDuplex,
|
||||
halfDuplexCall: handleHalfDuplex
|
||||
}
|
||||
});
|
||||
server.bind('0.0.0.0:' + port);
|
||||
return server;
|
||||
}
|
||||
|
||||
if (require.main === module) {
|
||||
var parseArgs = require('minimist');
|
||||
var argv = parseArgs(process.argv, {
|
||||
string: ['port', 'use_tls']
|
||||
});
|
||||
var server = getServer(argv.port, argv.use_tls === 'true');
|
||||
server.start();
|
||||
}
|
||||
|
||||
/**
|
||||
* See docs for getServer
|
||||
*/
|
||||
exports.getServer = getServer;
|
|
@ -0,0 +1,53 @@
|
|||
/*
|
||||
*
|
||||
* Copyright 2014, Google Inc.
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions are
|
||||
* met:
|
||||
*
|
||||
* * Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* * Redistributions in binary form must reproduce the above
|
||||
* copyright notice, this list of conditions and the following disclaimer
|
||||
* in the documentation and/or other materials provided with the
|
||||
* distribution.
|
||||
* * Neither the name of Google Inc. nor the names of its
|
||||
* contributors may be used to endorse or promote products derived from
|
||||
* this software without specific prior written permission.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*
|
||||
*/
|
||||
|
||||
var grpc = require('..');
|
||||
var testProto = grpc.load('test.proto').grpc.testing;
|
||||
var Server = grpc.buildServer([testProto.TestService.Service]);
|
||||
|
||||
function handleEmpty(call, callback) {
|
||||
callback(null, {});
|
||||
}
|
||||
|
||||
function handleUnary(call, callback) {
|
||||
var req = call.request;
|
||||
var zeros = new Buffer(req.response_size);
|
||||
zeros.fill(0);
|
||||
var payload_type = req.response_type;
|
||||
if (payload_type === testProto.PayloadType.RANDOM) {
|
||||
payload_type = [
|
||||
testProto.PayloadType.COMPRESSABLE,
|
||||
testProto.PayloadType.UNCOMPRESSABLE][Math.random() < 0.5 ? 0 : 1];
|
||||
}
|
||||
callback(null, {payload: {type: payload_type, body: zeros}});
|
||||
}
|
|
@ -0,0 +1,94 @@
|
|||
// Message definitions to be used by integration test service definitions.
|
||||
|
||||
syntax = "proto2";
|
||||
|
||||
package grpc.testing;
|
||||
|
||||
// The type of payload that should be returned.
|
||||
enum PayloadType {
|
||||
// Compressable text format.
|
||||
COMPRESSABLE = 0;
|
||||
|
||||
// Uncompressable binary format.
|
||||
UNCOMPRESSABLE = 1;
|
||||
|
||||
// Randomly chosen from all other formats defined in this enum.
|
||||
RANDOM = 2;
|
||||
}
|
||||
|
||||
// A block of data, to simply increase gRPC message size.
|
||||
message Payload {
|
||||
// The type of data in body.
|
||||
optional PayloadType type = 1;
|
||||
// Primary contents of payload.
|
||||
optional bytes body = 2;
|
||||
}
|
||||
|
||||
// Unary request.
|
||||
message SimpleRequest {
|
||||
// Desired payload type in the response from the server.
|
||||
// If response_type is RANDOM, server randomly chooses one from other formats.
|
||||
optional PayloadType response_type = 1;
|
||||
|
||||
// Desired payload size in the response from the server.
|
||||
// If response_type is COMPRESSABLE, this denotes the size before compression.
|
||||
optional int32 response_size = 2;
|
||||
|
||||
// Optional input payload sent along with the request.
|
||||
optional Payload payload = 3;
|
||||
}
|
||||
|
||||
// Unary response, as configured by the request.
|
||||
message SimpleResponse {
|
||||
// Payload to increase message size.
|
||||
optional Payload payload = 1;
|
||||
// The user the request came from, for verifying authentication was
|
||||
// successful when the client expected it.
|
||||
optional int64 effective_gaia_user_id = 2;
|
||||
}
|
||||
|
||||
// Client-streaming request.
|
||||
message StreamingInputCallRequest {
|
||||
// Optional input payload sent along with the request.
|
||||
optional Payload payload = 1;
|
||||
|
||||
// Not expecting any payload from the response.
|
||||
}
|
||||
|
||||
// Client-streaming response.
|
||||
message StreamingInputCallResponse {
|
||||
// Aggregated size of payloads received from the client.
|
||||
optional int32 aggregated_payload_size = 1;
|
||||
}
|
||||
|
||||
// Configuration for a particular response.
|
||||
message ResponseParameters {
|
||||
// Desired payload sizes in responses from the server.
|
||||
// If response_type is COMPRESSABLE, this denotes the size before compression.
|
||||
optional int32 size = 1;
|
||||
|
||||
// Desired interval between consecutive responses in the response stream in
|
||||
// microseconds.
|
||||
optional int32 interval_us = 2;
|
||||
}
|
||||
|
||||
// Server-streaming request.
|
||||
message StreamingOutputCallRequest {
|
||||
// Desired payload type in the response from the server.
|
||||
// If response_type is RANDOM, the payload from each response in the stream
|
||||
// might be of different types. This is to simulate a mixed type of payload
|
||||
// stream.
|
||||
optional PayloadType response_type = 1;
|
||||
|
||||
// Configuration for each expected response message.
|
||||
repeated ResponseParameters response_parameters = 2;
|
||||
|
||||
// Optional input payload sent along with the request.
|
||||
optional Payload payload = 3;
|
||||
}
|
||||
|
||||
// Server-streaming response, as configured by the request and parameters.
|
||||
message StreamingOutputCallResponse {
|
||||
// Payload to increase response size.
|
||||
optional Payload payload = 1;
|
||||
}
|
|
@ -0,0 +1,42 @@
|
|||
// An integration test service that covers all the method signature permutations
|
||||
// of unary/streaming requests/responses.
|
||||
syntax = "proto2";
|
||||
|
||||
import "empty.proto";
|
||||
import "messages.proto";
|
||||
|
||||
package grpc.testing;
|
||||
|
||||
// A simple service to test the various types of RPCs and experiment with
|
||||
// performance with various types of payload.
|
||||
service TestService {
|
||||
// One empty request followed by one empty response.
|
||||
rpc EmptyCall(grpc.testing.Empty) returns (grpc.testing.Empty);
|
||||
|
||||
// One request followed by one response.
|
||||
// The server returns the client payload as-is.
|
||||
rpc UnaryCall(SimpleRequest) returns (SimpleResponse);
|
||||
|
||||
// One request followed by a sequence of responses (streamed download).
|
||||
// The server returns the payload with client desired type and sizes.
|
||||
rpc StreamingOutputCall(StreamingOutputCallRequest)
|
||||
returns (stream StreamingOutputCallResponse);
|
||||
|
||||
// A sequence of requests followed by one response (streamed upload).
|
||||
// The server returns the aggregated size of client payload as the result.
|
||||
rpc StreamingInputCall(stream StreamingInputCallRequest)
|
||||
returns (StreamingInputCallResponse);
|
||||
|
||||
// A sequence of requests with each request served by the server immediately.
|
||||
// As one request could lead to multiple responses, this interface
|
||||
// demonstrates the idea of full duplexing.
|
||||
rpc FullDuplexCall(stream StreamingOutputCallRequest)
|
||||
returns (stream StreamingOutputCallResponse);
|
||||
|
||||
// A sequence of requests followed by a sequence of responses.
|
||||
// The server buffers all the client requests and then serves them in order. A
|
||||
// stream of responses are returned to the client when the server starts with
|
||||
// first request.
|
||||
rpc HalfDuplexCall(stream StreamingOutputCallRequest)
|
||||
returns (stream StreamingOutputCallResponse);
|
||||
}
|
|
@ -0,0 +1,42 @@
|
|||
// An integration test service that covers all the method signature permutations
|
||||
// of unary/streaming requests/responses.
|
||||
syntax = "proto2";
|
||||
|
||||
import "test/cpp/interop/empty.proto";
|
||||
import "test/cpp/interop/messages.proto";
|
||||
|
||||
package grpc.testing;
|
||||
|
||||
// A simple service to test the various types of RPCs and experiment with
|
||||
// performance with various types of payload.
|
||||
service TestService {
|
||||
// One empty request followed by one empty response.
|
||||
rpc EmptyCall(grpc.testing.Empty) returns (grpc.testing.Empty);
|
||||
|
||||
// One request followed by one response.
|
||||
// The server returns the client payload as-is.
|
||||
rpc UnaryCall(SimpleRequest) returns (SimpleResponse);
|
||||
|
||||
// One request followed by a sequence of responses (streamed download).
|
||||
// The server returns the payload with client desired type and sizes.
|
||||
rpc StreamingOutputCall(StreamingOutputCallRequest)
|
||||
returns (stream StreamingOutputCallResponse);
|
||||
|
||||
// A sequence of requests followed by one response (streamed upload).
|
||||
// The server returns the aggregated size of client payload as the result.
|
||||
rpc StreamingInputCall(stream StreamingInputCallRequest)
|
||||
returns (StreamingInputCallResponse);
|
||||
|
||||
// A sequence of requests with each request served by the server immediately.
|
||||
// As one request could lead to multiple responses, this interface
|
||||
// demonstrates the idea of full duplexing.
|
||||
rpc FullDuplexCall(stream StreamingOutputCallRequest)
|
||||
returns (stream StreamingOutputCallResponse);
|
||||
|
||||
// A sequence of requests followed by a sequence of responses.
|
||||
// The server buffers all the client requests and then serves them in order. A
|
||||
// stream of responses are returned to the client when the server starts with
|
||||
// first request.
|
||||
rpc HalfDuplexCall(stream StreamingOutputCallRequest)
|
||||
returns (stream StreamingOutputCallResponse);
|
||||
}
|
2
main.js
2
main.js
|
@ -55,7 +55,7 @@ function loadObject(value) {
|
|||
return result;
|
||||
} else if (value.className === 'Service') {
|
||||
return surface_client.makeClientConstructor(value);
|
||||
} else if (value.className === 'Service.Message') {
|
||||
} else if (value.className === 'Message' || value.className === 'Enum') {
|
||||
return value.build();
|
||||
} else {
|
||||
return value;
|
||||
|
|
|
@ -193,6 +193,7 @@ function Server(options) {
|
|||
* @param {grpc.Event} event The event to handle with tag SERVER_RPC_NEW
|
||||
*/
|
||||
function handleNewCall(event) {
|
||||
debugger;
|
||||
var call = event.call;
|
||||
var data = event.data;
|
||||
if (data == null) {
|
||||
|
|
|
@ -52,7 +52,6 @@ var util = require('util');
|
|||
|
||||
function forwardEvent(fromEmitter, toEmitter, event) {
|
||||
fromEmitter.on(event, function forward() {
|
||||
debugger;
|
||||
_.partial(toEmitter.emit, event).apply(toEmitter, arguments);
|
||||
});
|
||||
}
|
||||
|
|
|
@ -44,11 +44,13 @@ describe('Interop tests', function() {
|
|||
before(function(done) {
|
||||
port_picker.nextAvailablePort(function(addr) {
|
||||
server = interop_server.getServer(addr.substring(addr.indexOf(':') + 1));
|
||||
server.listen();
|
||||
port = addr;
|
||||
done();
|
||||
});
|
||||
});
|
||||
it.only('should pass empty_unary', function(done) {
|
||||
// This depends on not using a binary stream
|
||||
it.skip('should pass empty_unary', function(done) {
|
||||
interop_client.runTest(port, null, 'empty_unary', false, done);
|
||||
});
|
||||
it('should pass large_unary', function(done) {
|
||||
|
@ -63,7 +65,8 @@ describe('Interop tests', function() {
|
|||
it('should pass ping_pong', function(done) {
|
||||
interop_client.runTest(port, null, 'ping_pong', false, done);
|
||||
});
|
||||
it('should pass empty_stream', function(done) {
|
||||
// This depends on the new invoke API
|
||||
it.skip('should pass empty_stream', function(done) {
|
||||
interop_client.runTest(port, null, 'empty_stream', false, done);
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue