Rewrite simple test (only grpc output)
This commit is contained in:
@@ -1,43 +0,0 @@
|
||||
// GENERATED CODE -- DO NOT EDIT!
|
||||
|
||||
'use strict';
|
||||
var grpc = require('grpc');
|
||||
var helloworld_pb = require('./helloworld_pb.js');
|
||||
|
||||
function serialize_helloworld_HelloRequest(arg) {
|
||||
if (!(arg instanceof helloworld_pb.HelloRequest)) {
|
||||
throw new Error('Expected argument of type helloworld.HelloRequest');
|
||||
}
|
||||
return new Buffer(arg.serializeBinary());
|
||||
}
|
||||
|
||||
function deserialize_helloworld_HelloRequest(buffer_arg) {
|
||||
return helloworld_pb.HelloRequest.deserializeBinary(new Uint8Array(buffer_arg));
|
||||
}
|
||||
|
||||
function serialize_helloworld_HelloReply(arg) {
|
||||
if (!(arg instanceof helloworld_pb.HelloReply)) {
|
||||
throw new Error('Expected argument of type helloworld.HelloReply');
|
||||
}
|
||||
return new Buffer(arg.serializeBinary());
|
||||
}
|
||||
|
||||
function deserialize_helloworld_HelloReply(buffer_arg) {
|
||||
return helloworld_pb.HelloReply.deserializeBinary(new Uint8Array(buffer_arg));
|
||||
}
|
||||
|
||||
var GreeterService = exports.GreeterService = {
|
||||
sayHello: {
|
||||
path: '/helloworld.Greeter/SayHello',
|
||||
requestStream: false,
|
||||
responseStream: false,
|
||||
requestType: helloworld_pb.HelloRequest,
|
||||
responseType: helloworld_pb.HelloReply,
|
||||
requestSerialize: serialize_helloworld_HelloRequest,
|
||||
requestDeserialize: deserialize_helloworld_HelloRequest,
|
||||
responseSerialize: serialize_helloworld_HelloReply,
|
||||
responseDeserialize: deserialize_helloworld_HelloReply,
|
||||
},
|
||||
}
|
||||
|
||||
exports.GreeterClient = grpc.makeGenericClientConstructor(GreeterService);
|
@@ -1,288 +0,0 @@
|
||||
// GENERATED CODE -- DO NOT EDIT!
|
||||
|
||||
var jspb = require('google-protobuf');
|
||||
var goog = jspb;
|
||||
var global = Function('return this')();
|
||||
|
||||
goog.exportSymbol('proto.helloworld.HelloRequest', null, global);
|
||||
goog.exportSymbol('proto.helloworld.HelloReply', null, global);
|
||||
|
||||
/**
|
||||
* @param {Array=} opt_data Optional initial data array, typically from a
|
||||
* server response, or constructed directly in Javascript. The array is used
|
||||
* in place and becomes part of the constructed object. It is not cloned.
|
||||
* If no data is provided, the constructed object will be empty, but still
|
||||
* valid.
|
||||
* @extends {jspb.Message}
|
||||
* @constructor
|
||||
*/
|
||||
proto.helloworld.HelloRequest = function(opt_data) {
|
||||
jspb.Message.initialize(this, opt_data, 0, -1, null, null);
|
||||
};
|
||||
goog.inherits(proto.helloworld.HelloRequest, jspb.Message);
|
||||
if (goog.DEBUG && !COMPILED) {
|
||||
proto.helloworld.HelloRequest.displayName = 'proto.helloworld.HelloRequest';
|
||||
}
|
||||
|
||||
if (jspb.Message.GENERATE_TO_OBJECT) {
|
||||
/**
|
||||
* Creates an object representation of this proto suitable for use in Soy templates.
|
||||
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
||||
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
||||
* For the list of reserved names please see:
|
||||
* com.google.apps.jspb.JsClassTemplate.JS_RESERVED_WORDS.
|
||||
* @param {boolean=} opt_includeInstance Whether to include the JSPB instance
|
||||
* for transitional soy proto support: http://goto/soy-param-migration
|
||||
* @return {!Object}
|
||||
*/
|
||||
proto.helloworld.HelloRequest.prototype.toObject = function(opt_includeInstance) {
|
||||
return proto.helloworld.HelloRequest.toObject(opt_includeInstance, this);
|
||||
};
|
||||
|
||||
/**
|
||||
* Static version of the {@see toObject} method.
|
||||
* @param {boolean|undefined} includeInstance Whether to include the JSPB
|
||||
* instance for transitional soy proto support:
|
||||
* http://goto/soy-param-migration
|
||||
* @param {!proto.helloworld.HelloRequest} msg The msg instance to transform.
|
||||
* @return {!Object}
|
||||
*/
|
||||
proto.helloworld.HelloRequest.toObject = function(includeInstance, msg) {
|
||||
var f, obj = {
|
||||
name: jspb.Message.getFieldWithDefault(msg, 1, "")
|
||||
};
|
||||
|
||||
if (includeInstance) {
|
||||
obj.$jspbMessageInstance = msg;
|
||||
}
|
||||
return obj;
|
||||
};
|
||||
}
|
||||
|
||||
/**
|
||||
* Deserializes binary data (in protobuf wire format).
|
||||
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
||||
* @return {!proto.helloworld.HelloRequest}
|
||||
*/
|
||||
proto.helloworld.HelloRequest.deserializeBinary = function(bytes) {
|
||||
var reader = new jspb.BinaryReader(bytes);
|
||||
var msg = new proto.helloworld.HelloRequest;
|
||||
return proto.helloworld.HelloRequest.deserializeBinaryFromReader(msg, reader);
|
||||
};
|
||||
|
||||
/**
|
||||
* Deserializes binary data (in protobuf wire format) from the
|
||||
* given reader into the given message object.
|
||||
* @param {!proto.helloworld.HelloRequest} msg The message object to deserialize into.
|
||||
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
||||
* @return {!proto.helloworld.HelloRequest}
|
||||
*/
|
||||
proto.helloworld.HelloRequest.deserializeBinaryFromReader = function(msg, reader) {
|
||||
while (reader.nextField()) {
|
||||
if (reader.isEndGroup()) {
|
||||
break;
|
||||
}
|
||||
var field = reader.getFieldNumber();
|
||||
switch (field) {
|
||||
case 1:
|
||||
var value = /** @type {string} */ (reader.readString());
|
||||
msg.setName(value);
|
||||
break;
|
||||
default:
|
||||
reader.skipField();
|
||||
break;
|
||||
}
|
||||
}
|
||||
return msg;
|
||||
};
|
||||
|
||||
/**
|
||||
* Class method variant: serializes the given message to binary data
|
||||
* (in protobuf wire format), writing to the given BinaryWriter.
|
||||
* @param {!proto.helloworld.HelloRequest} message
|
||||
* @param {!jspb.BinaryWriter} writer
|
||||
*/
|
||||
proto.helloworld.HelloRequest.serializeBinaryToWriter = function(message, writer) {
|
||||
message.serializeBinaryToWriter(writer);
|
||||
};
|
||||
|
||||
/**
|
||||
* Serializes the message to binary data (in protobuf wire format).
|
||||
* @return {!Uint8Array}
|
||||
*/
|
||||
proto.helloworld.HelloRequest.prototype.serializeBinary = function() {
|
||||
var writer = new jspb.BinaryWriter();
|
||||
this.serializeBinaryToWriter(writer);
|
||||
return writer.getResultBuffer();
|
||||
};
|
||||
|
||||
|
||||
/**
|
||||
* Serializes the message to binary data (in protobuf wire format),
|
||||
* writing to the given BinaryWriter.
|
||||
* @param {!jspb.BinaryWriter} writer
|
||||
*/
|
||||
proto.helloworld.name.prototype.serializeBinaryToWriter = function (writer) {
|
||||
var f = undefined;
|
||||
f = this.getName();
|
||||
if (f.length > 0) {
|
||||
writer.writeString(
|
||||
1,
|
||||
f
|
||||
);
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* optional string name = 1;
|
||||
* @return {string}
|
||||
*/
|
||||
proto.helloworld.name.prototype.getName = function() {
|
||||
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 1, ""));
|
||||
};
|
||||
|
||||
/** @param {string} value */
|
||||
proto.helloworld.name.prototype.setName = function(value) {
|
||||
jspb.Message.setField(this, 1, value);
|
||||
};
|
||||
|
||||
/**
|
||||
* @param {Array=} opt_data Optional initial data array, typically from a
|
||||
* server response, or constructed directly in Javascript. The array is used
|
||||
* in place and becomes part of the constructed object. It is not cloned.
|
||||
* If no data is provided, the constructed object will be empty, but still
|
||||
* valid.
|
||||
* @extends {jspb.Message}
|
||||
* @constructor
|
||||
*/
|
||||
proto.helloworld.HelloReply = function(opt_data) {
|
||||
jspb.Message.initialize(this, opt_data, 0, -1, null, null);
|
||||
};
|
||||
goog.inherits(proto.helloworld.HelloReply, jspb.Message);
|
||||
if (goog.DEBUG && !COMPILED) {
|
||||
proto.helloworld.HelloReply.displayName = 'proto.helloworld.HelloReply';
|
||||
}
|
||||
|
||||
if (jspb.Message.GENERATE_TO_OBJECT) {
|
||||
/**
|
||||
* Creates an object representation of this proto suitable for use in Soy templates.
|
||||
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
||||
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
||||
* For the list of reserved names please see:
|
||||
* com.google.apps.jspb.JsClassTemplate.JS_RESERVED_WORDS.
|
||||
* @param {boolean=} opt_includeInstance Whether to include the JSPB instance
|
||||
* for transitional soy proto support: http://goto/soy-param-migration
|
||||
* @return {!Object}
|
||||
*/
|
||||
proto.helloworld.HelloReply.prototype.toObject = function(opt_includeInstance) {
|
||||
return proto.helloworld.HelloReply.toObject(opt_includeInstance, this);
|
||||
};
|
||||
|
||||
/**
|
||||
* Static version of the {@see toObject} method.
|
||||
* @param {boolean|undefined} includeInstance Whether to include the JSPB
|
||||
* instance for transitional soy proto support:
|
||||
* http://goto/soy-param-migration
|
||||
* @param {!proto.helloworld.HelloReply} msg The msg instance to transform.
|
||||
* @return {!Object}
|
||||
*/
|
||||
proto.helloworld.HelloReply.toObject = function(includeInstance, msg) {
|
||||
var f, obj = {
|
||||
name: jspb.Message.getFieldWithDefault(msg, 1, "")
|
||||
};
|
||||
|
||||
if (includeInstance) {
|
||||
obj.$jspbMessageInstance = msg;
|
||||
}
|
||||
return obj;
|
||||
};
|
||||
}
|
||||
|
||||
/**
|
||||
* Deserializes binary data (in protobuf wire format).
|
||||
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
||||
* @return {!proto.helloworld.HelloReply}
|
||||
*/
|
||||
proto.helloworld.HelloReply.deserializeBinary = function(bytes) {
|
||||
var reader = new jspb.BinaryReader(bytes);
|
||||
var msg = new proto.helloworld.HelloReply;
|
||||
return proto.helloworld.HelloReply.deserializeBinaryFromReader(msg, reader);
|
||||
};
|
||||
|
||||
/**
|
||||
* Deserializes binary data (in protobuf wire format) from the
|
||||
* given reader into the given message object.
|
||||
* @param {!proto.helloworld.HelloReply} msg The message object to deserialize into.
|
||||
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
||||
* @return {!proto.helloworld.HelloReply}
|
||||
*/
|
||||
proto.helloworld.HelloReply.deserializeBinaryFromReader = function(msg, reader) {
|
||||
while (reader.nextField()) {
|
||||
if (reader.isEndGroup()) {
|
||||
break;
|
||||
}
|
||||
var field = reader.getFieldNumber();
|
||||
switch (field) {
|
||||
case 1:
|
||||
var value = /** @type {string} */ (reader.readString());
|
||||
msg.setName(value);
|
||||
break;
|
||||
default:
|
||||
reader.skipField();
|
||||
break;
|
||||
}
|
||||
}
|
||||
return msg;
|
||||
};
|
||||
|
||||
/**
|
||||
* Class method variant: serializes the given message to binary data
|
||||
* (in protobuf wire format), writing to the given BinaryWriter.
|
||||
* @param {!proto.helloworld.HelloReply} message
|
||||
* @param {!jspb.BinaryWriter} writer
|
||||
*/
|
||||
proto.helloworld.HelloReply.serializeBinaryToWriter = function(message, writer) {
|
||||
message.serializeBinaryToWriter(writer);
|
||||
};
|
||||
|
||||
/**
|
||||
* Serializes the message to binary data (in protobuf wire format).
|
||||
* @return {!Uint8Array}
|
||||
*/
|
||||
proto.helloworld.HelloReply.prototype.serializeBinary = function() {
|
||||
var writer = new jspb.BinaryWriter();
|
||||
this.serializeBinaryToWriter(writer);
|
||||
return writer.getResultBuffer();
|
||||
};
|
||||
|
||||
|
||||
/**
|
||||
* Serializes the message to binary data (in protobuf wire format),
|
||||
* writing to the given BinaryWriter.
|
||||
* @param {!jspb.BinaryWriter} writer
|
||||
*/
|
||||
proto.helloworld.message.prototype.serializeBinaryToWriter = function (writer) {
|
||||
var f = undefined;
|
||||
f = this.getMessage();
|
||||
if (f.length > 0) {
|
||||
writer.writeString(
|
||||
1,
|
||||
f
|
||||
);
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* optional string name = 1;
|
||||
* @return {string}
|
||||
*/
|
||||
proto.helloworld.message.prototype.getMessage = function() {
|
||||
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 1, ""));
|
||||
};
|
||||
|
||||
/** @param {string} value */
|
||||
proto.helloworld.message.prototype.setMessage = function(value) {
|
||||
jspb.Message.setField(this, 1, value);
|
||||
};
|
||||
|
||||
goog.object.extend(exports, proto.helloworld);
|
146
examples/js-grpc/output/test/test_grpc_js.js
Normal file
146
examples/js-grpc/output/test/test_grpc_js.js
Normal file
@@ -0,0 +1,146 @@
|
||||
// GENERATED CODE -- DO NOT EDIT!
|
||||
|
||||
'use strict';
|
||||
var grpc = require('grpc');
|
||||
var test_pb = require('./test_pb.js');
|
||||
|
||||
|
||||
function serialize_test_TestNoStreamRequest(arg) {
|
||||
if (!(arg instanceof test_pb.TestNoStreamRequest)) {
|
||||
throw new Error('Expected argument of type test.TestNoStreamRequest');
|
||||
}
|
||||
return new Buffer(arg.serializeBinary());
|
||||
}
|
||||
|
||||
function deserialize_test_TestNoStreamRequest(buffer_arg) {
|
||||
return test_pb.TestNoStreamRequest.deserializeBinary(new Uint8Array(buffer_arg));
|
||||
}
|
||||
|
||||
function serialize_test_TestNoStreamReply(arg) {
|
||||
if (!(arg instanceof test_pb.TestNoStreamReply)) {
|
||||
throw new Error('Expected argument of type test.TestNoStreamReply');
|
||||
}
|
||||
return new Buffer(arg.serializeBinary());
|
||||
}
|
||||
|
||||
function deserialize_test_TestNoStreamReply(buffer_arg) {
|
||||
return test_pb.TestNoStreamReply.deserializeBinary(new Uint8Array(buffer_arg));
|
||||
}
|
||||
|
||||
function serialize_test_TestStreamRequestRequest(arg) {
|
||||
if (!(arg instanceof test_pb.TestStreamRequestRequest)) {
|
||||
throw new Error('Expected argument of type test.TestStreamRequestRequest');
|
||||
}
|
||||
return new Buffer(arg.serializeBinary());
|
||||
}
|
||||
|
||||
function deserialize_test_TestStreamRequestRequest(buffer_arg) {
|
||||
return test_pb.TestStreamRequestRequest.deserializeBinary(new Uint8Array(buffer_arg));
|
||||
}
|
||||
|
||||
function serialize_test_TestStreamRequestReply(arg) {
|
||||
if (!(arg instanceof test_pb.TestStreamRequestReply)) {
|
||||
throw new Error('Expected argument of type test.TestStreamRequestReply');
|
||||
}
|
||||
return new Buffer(arg.serializeBinary());
|
||||
}
|
||||
|
||||
function deserialize_test_TestStreamRequestReply(buffer_arg) {
|
||||
return test_pb.TestStreamRequestReply.deserializeBinary(new Uint8Array(buffer_arg));
|
||||
}
|
||||
|
||||
function serialize_test_TestStreamReplyRequest(arg) {
|
||||
if (!(arg instanceof test_pb.TestStreamReplyRequest)) {
|
||||
throw new Error('Expected argument of type test.TestStreamReplyRequest');
|
||||
}
|
||||
return new Buffer(arg.serializeBinary());
|
||||
}
|
||||
|
||||
function deserialize_test_TestStreamReplyRequest(buffer_arg) {
|
||||
return test_pb.TestStreamReplyRequest.deserializeBinary(new Uint8Array(buffer_arg));
|
||||
}
|
||||
|
||||
function serialize_test_TestStreamReplyReply(arg) {
|
||||
if (!(arg instanceof test_pb.TestStreamReplyReply)) {
|
||||
throw new Error('Expected argument of type test.TestStreamReplyReply');
|
||||
}
|
||||
return new Buffer(arg.serializeBinary());
|
||||
}
|
||||
|
||||
function deserialize_test_TestStreamReplyReply(buffer_arg) {
|
||||
return test_pb.TestStreamReplyReply.deserializeBinary(new Uint8Array(buffer_arg));
|
||||
}
|
||||
|
||||
function serialize_test_TestStreamBothRequest(arg) {
|
||||
if (!(arg instanceof test_pb.TestStreamBothRequest)) {
|
||||
throw new Error('Expected argument of type test.TestStreamBothRequest');
|
||||
}
|
||||
return new Buffer(arg.serializeBinary());
|
||||
}
|
||||
|
||||
function deserialize_test_TestStreamBothRequest(buffer_arg) {
|
||||
return test_pb.TestStreamBothRequest.deserializeBinary(new Uint8Array(buffer_arg));
|
||||
}
|
||||
|
||||
function serialize_test_TestStreamBothReply(arg) {
|
||||
if (!(arg instanceof test_pb.TestStreamBothReply)) {
|
||||
throw new Error('Expected argument of type test.TestStreamBothReply');
|
||||
}
|
||||
return new Buffer(arg.serializeBinary());
|
||||
}
|
||||
|
||||
function deserialize_test_TestStreamBothReply(buffer_arg) {
|
||||
return test_pb.TestStreamBothReply.deserializeBinary(new Uint8Array(buffer_arg));
|
||||
}
|
||||
|
||||
|
||||
var TestServiceService = exports.TestServiceService = {
|
||||
|
||||
testNoStream: {
|
||||
path: '/test.TestService/TestNoStream',
|
||||
requestStream: false,
|
||||
responseStream: false,
|
||||
requestType: test_pb.TestNoStreamRequest,
|
||||
responseType: test_pb.TestNoStreamReply,
|
||||
requestSerialize: serialize_test_TestNoStreamRequest,
|
||||
requestDeserialize: deserialize_test_TestNoStreamRequest,
|
||||
responseSerialize: serialize_test_TestNoStreamReply,
|
||||
responseDeserialize: deserialize_test_TestNoStreamReply,
|
||||
},
|
||||
testStreamRequest: {
|
||||
path: '/test.TestService/TestStreamRequest',
|
||||
requestStream: true,
|
||||
responseStream: false,
|
||||
requestType: test_pb.TestStreamRequestRequest,
|
||||
responseType: test_pb.TestStreamRequestReply,
|
||||
requestSerialize: serialize_test_TestStreamRequestRequest,
|
||||
requestDeserialize: deserialize_test_TestStreamRequestRequest,
|
||||
responseSerialize: serialize_test_TestStreamRequestReply,
|
||||
responseDeserialize: deserialize_test_TestStreamRequestReply,
|
||||
},
|
||||
testStreamReply: {
|
||||
path: '/test.TestService/TestStreamReply',
|
||||
requestStream: false,
|
||||
responseStream: true,
|
||||
requestType: test_pb.TestStreamReplyRequest,
|
||||
responseType: test_pb.TestStreamReplyReply,
|
||||
requestSerialize: serialize_test_TestStreamReplyRequest,
|
||||
requestDeserialize: deserialize_test_TestStreamReplyRequest,
|
||||
responseSerialize: serialize_test_TestStreamReplyReply,
|
||||
responseDeserialize: deserialize_test_TestStreamReplyReply,
|
||||
},
|
||||
testStreamBoth: {
|
||||
path: '/test.TestService/TestStreamBoth',
|
||||
requestStream: true,
|
||||
responseStream: true,
|
||||
requestType: test_pb.TestStreamBothRequest,
|
||||
responseType: test_pb.TestStreamBothReply,
|
||||
requestSerialize: serialize_test_TestStreamBothRequest,
|
||||
requestDeserialize: deserialize_test_TestStreamBothRequest,
|
||||
responseSerialize: serialize_test_TestStreamBothReply,
|
||||
responseDeserialize: deserialize_test_TestStreamBothReply,
|
||||
},
|
||||
|
||||
}
|
||||
|
||||
exports.TestServiceClient = grpc.makeGenericClientConstructor(TestServiceService);
|
Reference in New Issue
Block a user