mirror of https://github.com/grpc/grpc.git
commit
5e42211e7f
25 changed files with 812 additions and 486 deletions
@ -0,0 +1,17 @@ |
||||
#!/bin/bash |
||||
# Copyright 2017 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. |
||||
|
||||
protoc --proto_path=./../protos --php_out=./ --grpc_out=./ --plugin=protoc-gen-grpc=./../../bins/opt/grpc_php_plugin ./../protos/helloworld.proto |
||||
|
@ -1,58 +0,0 @@ |
||||
<?php |
||||
# Generated by the protocol buffer compiler. DO NOT EDIT! |
||||
# source: helloworld.proto |
||||
|
||||
namespace Helloworld; |
||||
|
||||
use Google\Protobuf\Internal\DescriptorPool; |
||||
use Google\Protobuf\Internal\GPBType; |
||||
use Google\Protobuf\Internal\RepeatedField; |
||||
use Google\Protobuf\Internal\GPBUtil; |
||||
|
||||
class HelloRequest extends \Google\Protobuf\Internal\Message |
||||
{ |
||||
private $name = ''; |
||||
|
||||
public function getName() |
||||
{ |
||||
return $this->name; |
||||
} |
||||
|
||||
public function setName($var) |
||||
{ |
||||
GPBUtil::checkString($var, True); |
||||
$this->name = $var; |
||||
} |
||||
|
||||
} |
||||
|
||||
class HelloReply extends \Google\Protobuf\Internal\Message |
||||
{ |
||||
private $message = ''; |
||||
|
||||
public function getMessage() |
||||
{ |
||||
return $this->message; |
||||
} |
||||
|
||||
public function setMessage($var) |
||||
{ |
||||
GPBUtil::checkString($var, True); |
||||
$this->message = $var; |
||||
} |
||||
|
||||
} |
||||
|
||||
$pool = DescriptorPool::getGeneratedPool(); |
||||
|
||||
$pool->internalAddGeneratedFile(hex2bin( |
||||
"0ae6010a1068656c6c6f776f726c642e70726f746f120a68656c6c6f776f" . |
||||
"726c64221c0a0c48656c6c6f52657175657374120c0a046e616d65180120" . |
||||
"012809221d0a0a48656c6c6f5265706c79120f0a076d6573736167651801" . |
||||
"2001280932490a0747726565746572123e0a0853617948656c6c6f12182e" . |
||||
"68656c6c6f776f726c642e48656c6c6f526571756573741a162e68656c6c" . |
||||
"6f776f726c642e48656c6c6f5265706c79220042360a1b696f2e67727063" . |
||||
"2e6578616d706c65732e68656c6c6f776f726c64420f48656c6c6f576f72" . |
||||
"6c6450726f746f5001a20203484c57620670726f746f33" |
||||
)); |
||||
|
@ -1,49 +0,0 @@ |
||||
<?php |
||||
// GENERATED CODE -- DO NOT EDIT! |
||||
|
||||
// Original file comments: |
||||
// 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. |
||||
// |
||||
namespace Helloworld { |
||||
|
||||
// The greeting service definition. |
||||
class GreeterClient extends \Grpc\BaseStub { |
||||
|
||||
/** |
||||
* @param string $hostname hostname |
||||
* @param array $opts channel options |
||||
* @param Grpc\Channel $channel (optional) re-use channel object |
||||
*/ |
||||
public function __construct($hostname, $opts, $channel = null) { |
||||
parent::__construct($hostname, $opts, $channel); |
||||
} |
||||
|
||||
/** |
||||
* Sends a greeting |
||||
* @param \Helloworld\HelloRequest $argument input argument |
||||
* @param array $metadata metadata |
||||
* @param array $options call options |
||||
*/ |
||||
public function SayHello(\Helloworld\HelloRequest $argument, |
||||
$metadata = [], $options = []) { |
||||
return $this->_simpleRequest('/helloworld.Greeter/SayHello', |
||||
$argument, |
||||
['\Helloworld\HelloReply', 'decode'], |
||||
$metadata, $options); |
||||
} |
||||
|
||||
} |
||||
|
||||
} |
@ -1,209 +0,0 @@ |
||||
<?php |
||||
# Generated by the protocol buffer compiler. DO NOT EDIT! |
||||
# source: route_guide.proto |
||||
|
||||
namespace Routeguide; |
||||
|
||||
use Google\Protobuf\Internal\DescriptorPool; |
||||
use Google\Protobuf\Internal\GPBType; |
||||
use Google\Protobuf\Internal\RepeatedField; |
||||
use Google\Protobuf\Internal\GPBUtil; |
||||
|
||||
class Point extends \Google\Protobuf\Internal\Message |
||||
{ |
||||
private $latitude = 0; |
||||
private $longitude = 0; |
||||
|
||||
public function getLatitude() |
||||
{ |
||||
return $this->latitude; |
||||
} |
||||
|
||||
public function setLatitude($var) |
||||
{ |
||||
GPBUtil::checkInt32($var); |
||||
$this->latitude = $var; |
||||
} |
||||
|
||||
public function getLongitude() |
||||
{ |
||||
return $this->longitude; |
||||
} |
||||
|
||||
public function setLongitude($var) |
||||
{ |
||||
GPBUtil::checkInt32($var); |
||||
$this->longitude = $var; |
||||
} |
||||
|
||||
} |
||||
|
||||
class Rectangle extends \Google\Protobuf\Internal\Message |
||||
{ |
||||
private $lo = null; |
||||
private $hi = null; |
||||
|
||||
public function getLo() |
||||
{ |
||||
return $this->lo; |
||||
} |
||||
|
||||
public function setLo(&$var) |
||||
{ |
||||
GPBUtil::checkMessage($var, \Routeguide\Point::class); |
||||
$this->lo = $var; |
||||
} |
||||
|
||||
public function getHi() |
||||
{ |
||||
return $this->hi; |
||||
} |
||||
|
||||
public function setHi(&$var) |
||||
{ |
||||
GPBUtil::checkMessage($var, \Routeguide\Point::class); |
||||
$this->hi = $var; |
||||
} |
||||
|
||||
} |
||||
|
||||
class Feature extends \Google\Protobuf\Internal\Message |
||||
{ |
||||
private $name = ''; |
||||
private $location = null; |
||||
|
||||
public function getName() |
||||
{ |
||||
return $this->name; |
||||
} |
||||
|
||||
public function setName($var) |
||||
{ |
||||
GPBUtil::checkString($var, True); |
||||
$this->name = $var; |
||||
} |
||||
|
||||
public function getLocation() |
||||
{ |
||||
return $this->location; |
||||
} |
||||
|
||||
public function setLocation(&$var) |
||||
{ |
||||
GPBUtil::checkMessage($var, \Routeguide\Point::class); |
||||
$this->location = $var; |
||||
} |
||||
|
||||
} |
||||
|
||||
class RouteNote extends \Google\Protobuf\Internal\Message |
||||
{ |
||||
private $location = null; |
||||
private $message = ''; |
||||
|
||||
public function getLocation() |
||||
{ |
||||
return $this->location; |
||||
} |
||||
|
||||
public function setLocation(&$var) |
||||
{ |
||||
GPBUtil::checkMessage($var, \Routeguide\Point::class); |
||||
$this->location = $var; |
||||
} |
||||
|
||||
public function getMessage() |
||||
{ |
||||
return $this->message; |
||||
} |
||||
|
||||
public function setMessage($var) |
||||
{ |
||||
GPBUtil::checkString($var, True); |
||||
$this->message = $var; |
||||
} |
||||
|
||||
} |
||||
|
||||
class RouteSummary extends \Google\Protobuf\Internal\Message |
||||
{ |
||||
private $point_count = 0; |
||||
private $feature_count = 0; |
||||
private $distance = 0; |
||||
private $elapsed_time = 0; |
||||
|
||||
public function getPointCount() |
||||
{ |
||||
return $this->point_count; |
||||
} |
||||
|
||||
public function setPointCount($var) |
||||
{ |
||||
GPBUtil::checkInt32($var); |
||||
$this->point_count = $var; |
||||
} |
||||
|
||||
public function getFeatureCount() |
||||
{ |
||||
return $this->feature_count; |
||||
} |
||||
|
||||
public function setFeatureCount($var) |
||||
{ |
||||
GPBUtil::checkInt32($var); |
||||
$this->feature_count = $var; |
||||
} |
||||
|
||||
public function getDistance() |
||||
{ |
||||
return $this->distance; |
||||
} |
||||
|
||||
public function setDistance($var) |
||||
{ |
||||
GPBUtil::checkInt32($var); |
||||
$this->distance = $var; |
||||
} |
||||
|
||||
public function getElapsedTime() |
||||
{ |
||||
return $this->elapsed_time; |
||||
} |
||||
|
||||
public function setElapsedTime($var) |
||||
{ |
||||
GPBUtil::checkInt32($var); |
||||
$this->elapsed_time = $var; |
||||
} |
||||
|
||||
} |
||||
|
||||
$pool = DescriptorPool::getGeneratedPool(); |
||||
|
||||
$pool->internalAddGeneratedFile(hex2bin( |
||||
"0ac5050a11726f7574655f67756964652e70726f746f120a726f75746567" . |
||||
"75696465222c0a05506f696e7412100a086c617469747564651801200128" . |
||||
"0512110a096c6f6e67697475646518022001280522490a0952656374616e" . |
||||
"676c65121d0a026c6f18012001280b32112e726f75746567756964652e50" . |
||||
"6f696e74121d0a02686918022001280b32112e726f75746567756964652e" . |
||||
"506f696e74223c0a0746656174757265120c0a046e616d65180120012809" . |
||||
"12230a086c6f636174696f6e18022001280b32112e726f75746567756964" . |
||||
"652e506f696e7422410a09526f7574654e6f746512230a086c6f63617469" . |
||||
"6f6e18012001280b32112e726f75746567756964652e506f696e74120f0a" . |
||||
"076d65737361676518022001280922620a0c526f75746553756d6d617279" . |
||||
"12130a0b706f696e745f636f756e7418012001280512150a0d6665617475" . |
||||
"72655f636f756e7418022001280512100a0864697374616e636518032001" . |
||||
"280512140a0c656c61707365645f74696d651804200128053285020a0a52" . |
||||
"6f757465477569646512360a0a4765744665617475726512112e726f7574" . |
||||
"6567756964652e506f696e741a132e726f75746567756964652e46656174" . |
||||
"7572652200123e0a0c4c697374466561747572657312152e726f75746567" . |
||||
"756964652e52656374616e676c651a132e726f75746567756964652e4665" . |
||||
"617475726522003001123e0a0b5265636f7264526f75746512112e726f75" . |
||||
"746567756964652e506f696e741a182e726f75746567756964652e526f75" . |
||||
"746553756d6d61727922002801123f0a09526f7574654368617412152e72" . |
||||
"6f75746567756964652e526f7574654e6f74651a152e726f757465677569" . |
||||
"64652e526f7574654e6f746522002801300142360a1b696f2e677270632e" . |
||||
"6578616d706c65732e726f7574656775696465420f526f75746547756964" . |
||||
"6550726f746f5001a20203525447620670726f746f33" |
||||
)); |
||||
|
@ -1,101 +0,0 @@ |
||||
<?php |
||||
// GENERATED CODE -- DO NOT EDIT! |
||||
|
||||
// Original file comments: |
||||
// 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. |
||||
// |
||||
namespace Routeguide { |
||||
|
||||
// Interface exported by the server. |
||||
class RouteGuideClient extends \Grpc\BaseStub { |
||||
|
||||
/** |
||||
* @param string $hostname hostname |
||||
* @param array $opts channel options |
||||
* @param Grpc\Channel $channel (optional) re-use channel object |
||||
*/ |
||||
public function __construct($hostname, $opts, $channel = null) { |
||||
parent::__construct($hostname, $opts, $channel); |
||||
} |
||||
|
||||
/** |
||||
* A simple RPC. |
||||
* |
||||
* Obtains the feature at a given position. |
||||
* |
||||
* A feature with an empty name is returned if there's no feature at the given |
||||
* position. |
||||
* @param \Routeguide\Point $argument input argument |
||||
* @param array $metadata metadata |
||||
* @param array $options call options |
||||
*/ |
||||
public function GetFeature(\Routeguide\Point $argument, |
||||
$metadata = [], $options = []) { |
||||
return $this->_simpleRequest('/routeguide.RouteGuide/GetFeature', |
||||
$argument, |
||||
['\Routeguide\Feature', 'decode'], |
||||
$metadata, $options); |
||||
} |
||||
|
||||
/** |
||||
* A server-to-client streaming RPC. |
||||
* |
||||
* Obtains the Features available within the given Rectangle. Results are |
||||
* streamed rather than returned at once (e.g. in a response message with a |
||||
* repeated field), as the rectangle may cover a large area and contain a |
||||
* huge number of features. |
||||
* @param \Routeguide\Rectangle $argument input argument |
||||
* @param array $metadata metadata |
||||
* @param array $options call options |
||||
*/ |
||||
public function ListFeatures(\Routeguide\Rectangle $argument, |
||||
$metadata = [], $options = []) { |
||||
return $this->_serverStreamRequest('/routeguide.RouteGuide/ListFeatures', |
||||
$argument, |
||||
['\Routeguide\Feature', 'decode'], |
||||
$metadata, $options); |
||||
} |
||||
|
||||
/** |
||||
* A client-to-server streaming RPC. |
||||
* |
||||
* Accepts a stream of Points on a route being traversed, returning a |
||||
* RouteSummary when traversal is completed. |
||||
* @param array $metadata metadata |
||||
* @param array $options call options |
||||
*/ |
||||
public function RecordRoute($metadata = [], $options = []) { |
||||
return $this->_clientStreamRequest('/routeguide.RouteGuide/RecordRoute', |
||||
['\Routeguide\RouteSummary','decode'], |
||||
$metadata, $options); |
||||
} |
||||
|
||||
/** |
||||
* A Bidirectional streaming RPC. |
||||
* |
||||
* Accepts a stream of RouteNotes sent while a route is being traversed, |
||||
* while receiving other RouteNotes (e.g. from other users). |
||||
* @param array $metadata metadata |
||||
* @param array $options call options |
||||
*/ |
||||
public function RouteChat($metadata = [], $options = []) { |
||||
return $this->_bidiRequest('/routeguide.RouteGuide/RouteChat', |
||||
['\Routeguide\RouteNote','decode'], |
||||
$metadata, $options); |
||||
} |
||||
|
||||
} |
||||
|
||||
} |
@ -0,0 +1,16 @@ |
||||
#!/bin/bash |
||||
# 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. |
||||
|
||||
protoc --proto_path=./../../protos --php_out=./ --grpc_out=./ --plugin=protoc-gen-grpc=./../../../bins/opt/grpc_php_plugin ./../../protos/route_guide.proto |
@ -0,0 +1,458 @@ |
||||
/* Generated from ares_config.h.cmake*/ |
||||
|
||||
/* Define if building universal (internal helper macro) */ |
||||
#undef AC_APPLE_UNIVERSAL_BUILD |
||||
|
||||
/* define this if ares is built for a big endian system */ |
||||
#undef ARES_BIG_ENDIAN |
||||
|
||||
/* when building as static part of libcurl */ |
||||
#undef BUILDING_LIBCURL |
||||
|
||||
/* Defined for build that exposes internal static functions for testing. */ |
||||
#undef CARES_EXPOSE_STATICS |
||||
|
||||
/* Defined for build with symbol hiding. */ |
||||
#undef CARES_SYMBOL_HIDING |
||||
|
||||
/* Definition to make a library symbol externally visible. */ |
||||
#undef CARES_SYMBOL_SCOPE_EXTERN |
||||
|
||||
/* Use resolver library to configure cares */ |
||||
/* #undef CARES_USE_LIBRESOLV */ |
||||
|
||||
/* if a /etc/inet dir is being used */ |
||||
#undef ETC_INET |
||||
|
||||
/* Define to the type of arg 2 for gethostname. */ |
||||
#define GETHOSTNAME_TYPE_ARG2 size_t |
||||
|
||||
/* Define to the type qualifier of arg 1 for getnameinfo. */ |
||||
#define GETNAMEINFO_QUAL_ARG1 |
||||
|
||||
/* Define to the type of arg 1 for getnameinfo. */ |
||||
#define GETNAMEINFO_TYPE_ARG1 struct sockaddr * |
||||
|
||||
/* Define to the type of arg 2 for getnameinfo. */ |
||||
#define GETNAMEINFO_TYPE_ARG2 socklen_t |
||||
|
||||
/* Define to the type of args 4 and 6 for getnameinfo. */ |
||||
#define GETNAMEINFO_TYPE_ARG46 socklen_t |
||||
|
||||
/* Define to the type of arg 7 for getnameinfo. */ |
||||
#define GETNAMEINFO_TYPE_ARG7 int |
||||
|
||||
/* Specifies the number of arguments to getservbyport_r */ |
||||
#define GETSERVBYPORT_R_ARGS |
||||
|
||||
/* Define to 1 if you have AF_INET6. */ |
||||
#define HAVE_AF_INET6 |
||||
|
||||
/* Define to 1 if you have the <arpa/inet.h> header file. */ |
||||
#define HAVE_ARPA_INET_H |
||||
|
||||
/* Define to 1 if you have the <arpa/nameser_compat.h> header file. */ |
||||
#define HAVE_ARPA_NAMESER_COMPAT_H |
||||
|
||||
/* Define to 1 if you have the <arpa/nameser.h> header file. */ |
||||
#define HAVE_ARPA_NAMESER_H |
||||
|
||||
/* Define to 1 if you have the <assert.h> header file. */ |
||||
#define HAVE_ASSERT_H |
||||
|
||||
/* Define to 1 if you have the `bitncmp' function. */ |
||||
/* #undef HAVE_BITNCMP */ |
||||
|
||||
/* Define to 1 if bool is an available type. */ |
||||
#define HAVE_BOOL_T |
||||
|
||||
/* Define HAVE_CLOCK_GETTIME_MONOTONIC if you have the clock_gettime
|
||||
* function and monotonic timer. |
||||
* |
||||
* IMPORTANT: gRPC MANUAL EDIT HERE! |
||||
* Note: setting HAVE_CLOCK_GETTIME_MONOTONIC causes use of the clock_gettime |
||||
* function from glibc, don't set it to support glibc < 2.17 */ |
||||
#ifndef GPR_BACKWARDS_COMPATIBILITY_MODE |
||||
#define HAVE_CLOCK_GETTIME_MONOTONIC |
||||
#endif |
||||
|
||||
/* Define to 1 if you have the closesocket function. */ |
||||
/* #undef HAVE_CLOSESOCKET */ |
||||
|
||||
/* Define to 1 if you have the CloseSocket camel case function. */ |
||||
/* #undef HAVE_CLOSESOCKET_CAMEL */ |
||||
|
||||
/* Define to 1 if you have the connect function. */ |
||||
#define HAVE_CONNECT |
||||
|
||||
/* define if the compiler supports basic C++11 syntax */ |
||||
/* #undef HAVE_CXX11 */ |
||||
|
||||
/* Define to 1 if you have the <dlfcn.h> header file. */ |
||||
#define HAVE_DLFCN_H |
||||
|
||||
/* Define to 1 if you have the <errno.h> header file. */ |
||||
#define HAVE_ERRNO_H |
||||
|
||||
/* Define to 1 if you have the fcntl function. */ |
||||
#define HAVE_FCNTL |
||||
|
||||
/* Define to 1 if you have the <fcntl.h> header file. */ |
||||
#define HAVE_FCNTL_H |
||||
|
||||
/* Define to 1 if you have a working fcntl O_NONBLOCK function. */ |
||||
#define HAVE_FCNTL_O_NONBLOCK |
||||
|
||||
/* Define to 1 if you have the freeaddrinfo function. */ |
||||
#define HAVE_FREEADDRINFO |
||||
|
||||
/* Define to 1 if you have a working getaddrinfo function. */ |
||||
#define HAVE_GETADDRINFO |
||||
|
||||
/* Define to 1 if the getaddrinfo function is threadsafe. */ |
||||
/* #undef HAVE_GETADDRINFO_THREADSAFE */ |
||||
|
||||
/* Define to 1 if you have the getenv function. */ |
||||
#define HAVE_GETENV |
||||
|
||||
/* Define to 1 if you have the gethostbyaddr function. */ |
||||
#define HAVE_GETHOSTBYADDR |
||||
|
||||
/* Define to 1 if you have the gethostbyname function. */ |
||||
#define HAVE_GETHOSTBYNAME |
||||
|
||||
/* Define to 1 if you have the gethostname function. */ |
||||
#define HAVE_GETHOSTNAME |
||||
|
||||
/* Define to 1 if you have the getnameinfo function. */ |
||||
#define HAVE_GETNAMEINFO |
||||
|
||||
/* Define to 1 if you have the getservbyport_r function. */ |
||||
/* #undef HAVE_GETSERVBYPORT_R */ |
||||
|
||||
/* Define to 1 if you have the `gettimeofday' function. */ |
||||
#define HAVE_GETTIMEOFDAY |
||||
|
||||
/* Define to 1 if you have the `if_indextoname' function. */ |
||||
#define HAVE_IF_INDEXTONAME |
||||
|
||||
/* Define to 1 if you have a IPv6 capable working inet_net_pton function. */ |
||||
/* #undef HAVE_INET_NET_PTON */ |
||||
|
||||
/* Define to 1 if you have a IPv6 capable working inet_ntop function. */ |
||||
#define HAVE_INET_NTOP |
||||
|
||||
/* Define to 1 if you have a IPv6 capable working inet_pton function. */ |
||||
#define HAVE_INET_PTON |
||||
|
||||
/* Define to 1 if you have the <inttypes.h> header file. */ |
||||
#define HAVE_INTTYPES_H |
||||
|
||||
/* Define to 1 if you have the ioctl function. */ |
||||
#define HAVE_IOCTL |
||||
|
||||
/* Define to 1 if you have the ioctlsocket function. */ |
||||
/* #undef HAVE_IOCTLSOCKET */ |
||||
|
||||
/* Define to 1 if you have the IoctlSocket camel case function. */ |
||||
/* #undef HAVE_IOCTLSOCKET_CAMEL */ |
||||
|
||||
/* Define to 1 if you have a working IoctlSocket camel case FIONBIO function.
|
||||
*/ |
||||
/* #undef HAVE_IOCTLSOCKET_CAMEL_FIONBIO */ |
||||
|
||||
/* Define to 1 if you have a working ioctlsocket FIONBIO function. */ |
||||
/* #undef HAVE_IOCTLSOCKET_FIONBIO */ |
||||
|
||||
/* Define to 1 if you have a working ioctl FIONBIO function. */ |
||||
#define HAVE_IOCTL_FIONBIO |
||||
|
||||
/* Define to 1 if you have a working ioctl SIOCGIFADDR function. */ |
||||
#define HAVE_IOCTL_SIOCGIFADDR |
||||
|
||||
/* Define to 1 if you have the `resolve' library (-lresolve). */ |
||||
/* #undef HAVE_LIBRESOLV */ |
||||
|
||||
/* Define to 1 if you have the <limits.h> header file. */ |
||||
#define HAVE_LIMITS_H |
||||
|
||||
/* if your compiler supports LL */ |
||||
#define HAVE_LL |
||||
|
||||
/* Define to 1 if the compiler supports the 'long long' data type. */ |
||||
#define HAVE_LONGLONG |
||||
|
||||
/* Define to 1 if you have the malloc.h header file. */ |
||||
#define HAVE_MALLOC_H |
||||
|
||||
/* Define to 1 if you have the memory.h header file. */ |
||||
#define HAVE_MEMORY_H |
||||
|
||||
/* Define to 1 if you have the MSG_NOSIGNAL flag. */ |
||||
#define HAVE_MSG_NOSIGNAL |
||||
|
||||
/* Define to 1 if you have the <netdb.h> header file. */ |
||||
#define HAVE_NETDB_H |
||||
|
||||
/* Define to 1 if you have the <netinet/in.h> header file. */ |
||||
#define HAVE_NETINET_IN_H |
||||
|
||||
/* Define to 1 if you have the <netinet/tcp.h> header file. */ |
||||
#define HAVE_NETINET_TCP_H |
||||
|
||||
/* Define to 1 if you have the <net/if.h> header file. */ |
||||
#define HAVE_NET_IF_H |
||||
|
||||
/* Define to 1 if you have PF_INET6. */ |
||||
#define HAVE_PF_INET6 |
||||
|
||||
/* Define to 1 if you have the recv function. */ |
||||
#define HAVE_RECV |
||||
|
||||
/* Define to 1 if you have the recvfrom function. */ |
||||
#define HAVE_RECVFROM |
||||
|
||||
/* Define to 1 if you have the send function. */ |
||||
#define HAVE_SEND |
||||
|
||||
/* Define to 1 if you have the setsockopt function. */ |
||||
#define HAVE_SETSOCKOPT |
||||
|
||||
/* Define to 1 if you have a working setsockopt SO_NONBLOCK function. */ |
||||
/* #undef HAVE_SETSOCKOPT_SO_NONBLOCK */ |
||||
|
||||
/* Define to 1 if you have the <signal.h> header file. */ |
||||
#define HAVE_SIGNAL_H |
||||
|
||||
/* Define to 1 if sig_atomic_t is an available typedef. */ |
||||
#define HAVE_SIG_ATOMIC_T |
||||
|
||||
/* Define to 1 if sig_atomic_t is already defined as volatile. */ |
||||
/* #undef HAVE_SIG_ATOMIC_T_VOLATILE */ |
||||
|
||||
/* Define to 1 if your struct sockaddr_in6 has sin6_scope_id. */ |
||||
#define HAVE_SOCKADDR_IN6_SIN6_SCOPE_ID |
||||
|
||||
/* Define to 1 if you have the socket function. */ |
||||
#define HAVE_SOCKET |
||||
|
||||
/* Define to 1 if you have the <socket.h> header file. */ |
||||
/* #undef HAVE_SOCKET_H */ |
||||
|
||||
/* Define to 1 if you have the <stdbool.h> header file. */ |
||||
#define HAVE_STDBOOL_H |
||||
|
||||
/* Define to 1 if you have the <stdint.h> header file. */ |
||||
#define HAVE_STDINT_H |
||||
|
||||
/* Define to 1 if you have the <stdlib.h> header file. */ |
||||
#define HAVE_STDLIB_H |
||||
|
||||
/* Define to 1 if you have the strcasecmp function. */ |
||||
#define HAVE_STRCASECMP |
||||
|
||||
/* Define to 1 if you have the strcmpi function. */ |
||||
/* #undef HAVE_STRCMPI */ |
||||
|
||||
/* Define to 1 if you have the strdup function. */ |
||||
#define HAVE_STRDUP |
||||
|
||||
/* Define to 1 if you have the stricmp function. */ |
||||
/* #undef HAVE_STRICMP */ |
||||
|
||||
/* Define to 1 if you have the <strings.h> header file. */ |
||||
#define HAVE_STRINGS_H |
||||
|
||||
/* Define to 1 if you have the <string.h> header file. */ |
||||
#define HAVE_STRING_H |
||||
|
||||
/* Define to 1 if you have the strncasecmp function. */ |
||||
#define HAVE_STRNCASECMP |
||||
|
||||
/* Define to 1 if you have the strncmpi function. */ |
||||
/* #undef HAVE_STRNCMPI */ |
||||
|
||||
/* Define to 1 if you have the strnicmp function. */ |
||||
/* #undef HAVE_STRNICMP */ |
||||
|
||||
/* Define to 1 if you have the <stropts.h> header file. */ |
||||
#define HAVE_STROPTS_H |
||||
|
||||
/* Define to 1 if you have struct addrinfo. */ |
||||
#define HAVE_STRUCT_ADDRINFO |
||||
|
||||
/* Define to 1 if you have struct in6_addr. */ |
||||
#define HAVE_STRUCT_IN6_ADDR |
||||
|
||||
/* Define to 1 if you have struct sockaddr_in6. */ |
||||
#define HAVE_STRUCT_SOCKADDR_IN6 |
||||
|
||||
/* if struct sockaddr_storage is defined */ |
||||
#define HAVE_STRUCT_SOCKADDR_STORAGE |
||||
|
||||
/* Define to 1 if you have the timeval struct. */ |
||||
#define HAVE_STRUCT_TIMEVAL |
||||
|
||||
/* Define to 1 if you have the <sys/ioctl.h> header file. */ |
||||
#define HAVE_SYS_IOCTL_H |
||||
|
||||
/* Define to 1 if you have the <sys/param.h> header file. */ |
||||
#define HAVE_SYS_PARAM_H |
||||
|
||||
/* Define to 1 if you have the <sys/select.h> header file. */ |
||||
#define HAVE_SYS_SELECT_H |
||||
|
||||
/* Define to 1 if you have the <sys/socket.h> header file. */ |
||||
#define HAVE_SYS_SOCKET_H |
||||
|
||||
/* Define to 1 if you have the <sys/stat.h> header file. */ |
||||
#define HAVE_SYS_STAT_H |
||||
|
||||
/* Define to 1 if you have the <sys/time.h> header file. */ |
||||
#define HAVE_SYS_TIME_H |
||||
|
||||
/* Define to 1 if you have the <sys/types.h> header file. */ |
||||
#define HAVE_SYS_TYPES_H |
||||
|
||||
/* Define to 1 if you have the <sys/uio.h> header file. */ |
||||
#define HAVE_SYS_UIO_H |
||||
|
||||
/* Define to 1 if you have the <time.h> header file. */ |
||||
#define HAVE_TIME_H |
||||
|
||||
/* Define to 1 if you have the <unistd.h> header file. */ |
||||
#define HAVE_UNISTD_H |
||||
|
||||
/* Define to 1 if you have the windows.h header file. */ |
||||
/* #undef HAVE_WINDOWS_H */ |
||||
|
||||
/* Define to 1 if you have the winsock2.h header file. */ |
||||
/* #undef HAVE_WINSOCK2_H */ |
||||
|
||||
/* Define to 1 if you have the winsock.h header file. */ |
||||
/* #undef HAVE_WINSOCK_H */ |
||||
|
||||
/* Define to 1 if you have the writev function. */ |
||||
#define HAVE_WRITEV |
||||
|
||||
/* Define to 1 if you have the ws2tcpip.h header file. */ |
||||
/* #undef HAVE_WS2TCPIP_H */ |
||||
|
||||
/* Define to 1 if you need the malloc.h header file even with stdlib.h */ |
||||
/* #undef NEED_MALLOC_H */ |
||||
|
||||
/* Define to 1 if you need the memory.h header file even with stdlib.h */ |
||||
/* #undef NEED_MEMORY_H */ |
||||
|
||||
/* a suitable file/device to read random data from */ |
||||
/* #undef RANDOM_FILE */ |
||||
|
||||
/* Define to the type qualifier pointed by arg 5 for recvfrom. */ |
||||
#define RECVFROM_QUAL_ARG5 |
||||
|
||||
/* Define to the type of arg 1 for recvfrom. */ |
||||
#define RECVFROM_TYPE_ARG1 int |
||||
|
||||
/* Define to the type pointed by arg 2 for recvfrom. */ |
||||
#define RECVFROM_TYPE_ARG2 void * |
||||
|
||||
/* Define to 1 if the type pointed by arg 2 for recvfrom is void. */ |
||||
#define RECVFROM_TYPE_ARG2_IS_VOID 0 |
||||
|
||||
/* Define to the type of arg 3 for recvfrom. */ |
||||
#define RECVFROM_TYPE_ARG3 size_t |
||||
|
||||
/* Define to the type of arg 4 for recvfrom. */ |
||||
#define RECVFROM_TYPE_ARG4 int |
||||
|
||||
/* Define to the type pointed by arg 5 for recvfrom. */ |
||||
#define RECVFROM_TYPE_ARG5 struct sockaddr * |
||||
|
||||
/* Define to 1 if the type pointed by arg 5 for recvfrom is void. */ |
||||
#define RECVFROM_TYPE_ARG5_IS_VOID 0 |
||||
|
||||
/* Define to the type pointed by arg 6 for recvfrom. */ |
||||
#define RECVFROM_TYPE_ARG6 socklen_t * |
||||
|
||||
/* Define to 1 if the type pointed by arg 6 for recvfrom is void. */ |
||||
#define RECVFROM_TYPE_ARG6_IS_VOID 0 |
||||
|
||||
/* Define to the function return type for recvfrom. */ |
||||
#define RECVFROM_TYPE_RETV ssize_t |
||||
|
||||
/* Define to the type of arg 1 for recv. */ |
||||
#define RECV_TYPE_ARG1 int |
||||
|
||||
/* Define to the type of arg 2 for recv. */ |
||||
#define RECV_TYPE_ARG2 void * |
||||
|
||||
/* Define to the type of arg 3 for recv. */ |
||||
#define RECV_TYPE_ARG3 size_t |
||||
|
||||
/* Define to the type of arg 4 for recv. */ |
||||
#define RECV_TYPE_ARG4 int |
||||
|
||||
/* Define to the function return type for recv. */ |
||||
#define RECV_TYPE_RETV ssize_t |
||||
|
||||
/* Define as the return type of signal handlers (`int' or `void'). */ |
||||
#define RETSIGTYPE |
||||
|
||||
/* Define to the type qualifier of arg 2 for send. */ |
||||
#define SEND_QUAL_ARG2 |
||||
|
||||
/* Define to the type of arg 1 for send. */ |
||||
#define SEND_TYPE_ARG1 int |
||||
|
||||
/* Define to the type of arg 2 for send. */ |
||||
#define SEND_TYPE_ARG2 void * |
||||
|
||||
/* Define to the type of arg 3 for send. */ |
||||
#define SEND_TYPE_ARG3 size_t |
||||
|
||||
/* Define to the type of arg 4 for send. */ |
||||
#define SEND_TYPE_ARG4 int |
||||
|
||||
/* Define to the function return type for send. */ |
||||
#define SEND_TYPE_RETV ssize_t |
||||
|
||||
/* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */ |
||||
#define TIME_WITH_SYS_TIME |
||||
|
||||
/* Define to disable non-blocking sockets. */ |
||||
#undef USE_BLOCKING_SOCKETS |
||||
|
||||
/* Define to avoid automatic inclusion of winsock.h */ |
||||
#undef WIN32_LEAN_AND_MEAN |
||||
|
||||
/* Type to use in place of in_addr_t when system does not provide it. */ |
||||
#undef in_addr_t |
||||
|
||||
#ifdef GPR_BACKWARDS_COMPATIBILITY_MODE |
||||
/* IMPORTANT: gRPC MANUAL EDIT HERE!
|
||||
* Redefine the fd_set macros for GLIBC < 2.15 support. |
||||
* This is a backwards compatibility hack. At version 2.15, GLIBC introduces |
||||
* the __fdelt_chk function, and starts using it within its fd_set macros |
||||
* (which c-ares uses). For compatibility with GLIBC < 2.15, we need to redefine |
||||
* the fd_set macros to not use __fdelt_chk. */ |
||||
#include <sys/select.h> |
||||
#undef FD_SET |
||||
#undef FD_CLR |
||||
#undef FD_ISSET |
||||
/* 'FD_ZERO' doesn't use __fdelt_chk, no need to redefine. */ |
||||
|
||||
#ifdef __FDS_BITS |
||||
#define GRPC_CARES_FDS_BITS(set) __FDS_BITS(set) |
||||
#else |
||||
#define GRPC_CARES_FDS_BITS(set) ((set)->fds_bits) |
||||
#endif |
||||
|
||||
#define GRPC_CARES_FD_MASK(d) ((long int)(1UL << (d) % NFDBITS)) |
||||
|
||||
#define FD_SET(d, set) \ |
||||
((void) (GRPC_CARES_FDS_BITS (set)[ (d) / NFDBITS ] |= GRPC_CARES_FD_MASK(d))) |
||||
#define FD_CLR(d, set) \ |
||||
((void) (GRPC_CARES_FDS_BITS (set)[ (d) / NFDBITS ] &= ~GRPC_CARES_FD_MASK(d))) |
||||
#define FD_ISSET(d, set) \ |
||||
((GRPC_CARES_FDS_BITS (set)[ (d) / NFDBITS ] & GRPC_CARES_FD_MASK(d)) != 0) |
||||
#endif /* GPR_BACKWARDS_COMPATIBILITY_MODE */ |
@ -0,0 +1,20 @@ |
||||
#!/bin/bash |
||||
echo "Testing ${docker_image:=grpc_interop_csharp:a95229ca-d387-4127-ad48-69a7464e23b8}" |
||||
docker run -i --rm=true -w /var/local/git/grpc/src/csharp/Grpc.IntegrationTesting.Client/bin/Debug/net45 --net=host $docker_image bash -c "mono Grpc.IntegrationTesting.Client.exe --server_host=216.239.32.254 --server_host_override=grpc-test.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=large_unary" |
||||
docker run -i --rm=true -w /var/local/git/grpc/src/csharp/Grpc.IntegrationTesting.Client/bin/Debug/net45 --net=host $docker_image bash -c "mono Grpc.IntegrationTesting.Client.exe --server_host=216.239.32.254 --server_host_override=grpc-test.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=empty_unary" |
||||
docker run -i --rm=true -w /var/local/git/grpc/src/csharp/Grpc.IntegrationTesting.Client/bin/Debug/net45 --net=host $docker_image bash -c "mono Grpc.IntegrationTesting.Client.exe --server_host=216.239.32.254 --server_host_override=grpc-test.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=ping_pong" |
||||
docker run -i --rm=true -w /var/local/git/grpc/src/csharp/Grpc.IntegrationTesting.Client/bin/Debug/net45 --net=host $docker_image bash -c "mono Grpc.IntegrationTesting.Client.exe --server_host=216.239.32.254 --server_host_override=grpc-test.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=empty_stream" |
||||
docker run -i --rm=true -w /var/local/git/grpc/src/csharp/Grpc.IntegrationTesting.Client/bin/Debug/net45 --net=host $docker_image bash -c "mono Grpc.IntegrationTesting.Client.exe --server_host=216.239.32.254 --server_host_override=grpc-test.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=client_streaming" |
||||
docker run -i --rm=true -w /var/local/git/grpc/src/csharp/Grpc.IntegrationTesting.Client/bin/Debug/net45 --net=host $docker_image bash -c "mono Grpc.IntegrationTesting.Client.exe --server_host=216.239.32.254 --server_host_override=grpc-test.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=server_streaming" |
||||
docker run -i --rm=true -w /var/local/git/grpc/src/csharp/Grpc.IntegrationTesting.Client/bin/Debug/net45 --net=host $docker_image bash -c "mono Grpc.IntegrationTesting.Client.exe --server_host=216.239.32.254 --server_host_override=grpc-test.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=cancel_after_begin" |
||||
docker run -i --rm=true -w /var/local/git/grpc/src/csharp/Grpc.IntegrationTesting.Client/bin/Debug/net45 --net=host $docker_image bash -c "mono Grpc.IntegrationTesting.Client.exe --server_host=216.239.32.254 --server_host_override=grpc-test.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=cancel_after_first_response" |
||||
docker run -i --rm=true -w /var/local/git/grpc/src/csharp/Grpc.IntegrationTesting.Client/bin/Debug/net45 --net=host $docker_image bash -c "mono Grpc.IntegrationTesting.Client.exe --server_host=216.239.32.254 --server_host_override=grpc-test.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=timeout_on_sleeping_server" |
||||
docker run -i --rm=true -w /var/local/git/grpc/src/csharp/Grpc.IntegrationTesting.Client/bin/Debug/net45 --net=host $docker_image bash -c "mono Grpc.IntegrationTesting.Client.exe --server_host=216.239.32.254 --server_host_override=grpc-test4.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=large_unary" |
||||
docker run -i --rm=true -w /var/local/git/grpc/src/csharp/Grpc.IntegrationTesting.Client/bin/Debug/net45 --net=host $docker_image bash -c "mono Grpc.IntegrationTesting.Client.exe --server_host=216.239.32.254 --server_host_override=grpc-test4.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=empty_unary" |
||||
docker run -i --rm=true -w /var/local/git/grpc/src/csharp/Grpc.IntegrationTesting.Client/bin/Debug/net45 --net=host $docker_image bash -c "mono Grpc.IntegrationTesting.Client.exe --server_host=216.239.32.254 --server_host_override=grpc-test4.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=ping_pong" |
||||
docker run -i --rm=true -w /var/local/git/grpc/src/csharp/Grpc.IntegrationTesting.Client/bin/Debug/net45 --net=host $docker_image bash -c "mono Grpc.IntegrationTesting.Client.exe --server_host=216.239.32.254 --server_host_override=grpc-test4.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=empty_stream" |
||||
docker run -i --rm=true -w /var/local/git/grpc/src/csharp/Grpc.IntegrationTesting.Client/bin/Debug/net45 --net=host $docker_image bash -c "mono Grpc.IntegrationTesting.Client.exe --server_host=216.239.32.254 --server_host_override=grpc-test4.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=client_streaming" |
||||
docker run -i --rm=true -w /var/local/git/grpc/src/csharp/Grpc.IntegrationTesting.Client/bin/Debug/net45 --net=host $docker_image bash -c "mono Grpc.IntegrationTesting.Client.exe --server_host=216.239.32.254 --server_host_override=grpc-test4.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=server_streaming" |
||||
docker run -i --rm=true -w /var/local/git/grpc/src/csharp/Grpc.IntegrationTesting.Client/bin/Debug/net45 --net=host $docker_image bash -c "mono Grpc.IntegrationTesting.Client.exe --server_host=216.239.32.254 --server_host_override=grpc-test4.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=cancel_after_begin" |
||||
docker run -i --rm=true -w /var/local/git/grpc/src/csharp/Grpc.IntegrationTesting.Client/bin/Debug/net45 --net=host $docker_image bash -c "mono Grpc.IntegrationTesting.Client.exe --server_host=216.239.32.254 --server_host_override=grpc-test4.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=cancel_after_first_response" |
||||
docker run -i --rm=true -w /var/local/git/grpc/src/csharp/Grpc.IntegrationTesting.Client/bin/Debug/net45 --net=host $docker_image bash -c "mono Grpc.IntegrationTesting.Client.exe --server_host=216.239.32.254 --server_host_override=grpc-test4.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=timeout_on_sleeping_server" |
@ -0,0 +1,20 @@ |
||||
#!/bin/bash |
||||
echo "Testing ${docker_image:=grpc_interop_csharpcoreclr:c7fbed09-e4c1-4aab-8dd9-1285b2c9598e}" |
||||
docker run -i --rm=true -w /var/local/git/grpc/src/csharp/Grpc.IntegrationTesting.Client/bin/Debug/netcoreapp1.0 --net=host $docker_image bash -c "dotnet exec Grpc.IntegrationTesting.Client.dll --server_host=216.239.32.254 --server_host_override=grpc-test.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=large_unary" |
||||
docker run -i --rm=true -w /var/local/git/grpc/src/csharp/Grpc.IntegrationTesting.Client/bin/Debug/netcoreapp1.0 --net=host $docker_image bash -c "dotnet exec Grpc.IntegrationTesting.Client.dll --server_host=216.239.32.254 --server_host_override=grpc-test.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=empty_unary" |
||||
docker run -i --rm=true -w /var/local/git/grpc/src/csharp/Grpc.IntegrationTesting.Client/bin/Debug/netcoreapp1.0 --net=host $docker_image bash -c "dotnet exec Grpc.IntegrationTesting.Client.dll --server_host=216.239.32.254 --server_host_override=grpc-test.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=ping_pong" |
||||
docker run -i --rm=true -w /var/local/git/grpc/src/csharp/Grpc.IntegrationTesting.Client/bin/Debug/netcoreapp1.0 --net=host $docker_image bash -c "dotnet exec Grpc.IntegrationTesting.Client.dll --server_host=216.239.32.254 --server_host_override=grpc-test.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=empty_stream" |
||||
docker run -i --rm=true -w /var/local/git/grpc/src/csharp/Grpc.IntegrationTesting.Client/bin/Debug/netcoreapp1.0 --net=host $docker_image bash -c "dotnet exec Grpc.IntegrationTesting.Client.dll --server_host=216.239.32.254 --server_host_override=grpc-test.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=client_streaming" |
||||
docker run -i --rm=true -w /var/local/git/grpc/src/csharp/Grpc.IntegrationTesting.Client/bin/Debug/netcoreapp1.0 --net=host $docker_image bash -c "dotnet exec Grpc.IntegrationTesting.Client.dll --server_host=216.239.32.254 --server_host_override=grpc-test.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=server_streaming" |
||||
docker run -i --rm=true -w /var/local/git/grpc/src/csharp/Grpc.IntegrationTesting.Client/bin/Debug/netcoreapp1.0 --net=host $docker_image bash -c "dotnet exec Grpc.IntegrationTesting.Client.dll --server_host=216.239.32.254 --server_host_override=grpc-test.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=cancel_after_begin" |
||||
docker run -i --rm=true -w /var/local/git/grpc/src/csharp/Grpc.IntegrationTesting.Client/bin/Debug/netcoreapp1.0 --net=host $docker_image bash -c "dotnet exec Grpc.IntegrationTesting.Client.dll --server_host=216.239.32.254 --server_host_override=grpc-test.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=cancel_after_first_response" |
||||
docker run -i --rm=true -w /var/local/git/grpc/src/csharp/Grpc.IntegrationTesting.Client/bin/Debug/netcoreapp1.0 --net=host $docker_image bash -c "dotnet exec Grpc.IntegrationTesting.Client.dll --server_host=216.239.32.254 --server_host_override=grpc-test.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=timeout_on_sleeping_server" |
||||
docker run -i --rm=true -w /var/local/git/grpc/src/csharp/Grpc.IntegrationTesting.Client/bin/Debug/netcoreapp1.0 --net=host $docker_image bash -c "dotnet exec Grpc.IntegrationTesting.Client.dll --server_host=216.239.32.254 --server_host_override=grpc-test4.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=large_unary" |
||||
docker run -i --rm=true -w /var/local/git/grpc/src/csharp/Grpc.IntegrationTesting.Client/bin/Debug/netcoreapp1.0 --net=host $docker_image bash -c "dotnet exec Grpc.IntegrationTesting.Client.dll --server_host=216.239.32.254 --server_host_override=grpc-test4.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=empty_unary" |
||||
docker run -i --rm=true -w /var/local/git/grpc/src/csharp/Grpc.IntegrationTesting.Client/bin/Debug/netcoreapp1.0 --net=host $docker_image bash -c "dotnet exec Grpc.IntegrationTesting.Client.dll --server_host=216.239.32.254 --server_host_override=grpc-test4.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=ping_pong" |
||||
docker run -i --rm=true -w /var/local/git/grpc/src/csharp/Grpc.IntegrationTesting.Client/bin/Debug/netcoreapp1.0 --net=host $docker_image bash -c "dotnet exec Grpc.IntegrationTesting.Client.dll --server_host=216.239.32.254 --server_host_override=grpc-test4.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=empty_stream" |
||||
docker run -i --rm=true -w /var/local/git/grpc/src/csharp/Grpc.IntegrationTesting.Client/bin/Debug/netcoreapp1.0 --net=host $docker_image bash -c "dotnet exec Grpc.IntegrationTesting.Client.dll --server_host=216.239.32.254 --server_host_override=grpc-test4.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=client_streaming" |
||||
docker run -i --rm=true -w /var/local/git/grpc/src/csharp/Grpc.IntegrationTesting.Client/bin/Debug/netcoreapp1.0 --net=host $docker_image bash -c "dotnet exec Grpc.IntegrationTesting.Client.dll --server_host=216.239.32.254 --server_host_override=grpc-test4.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=server_streaming" |
||||
docker run -i --rm=true -w /var/local/git/grpc/src/csharp/Grpc.IntegrationTesting.Client/bin/Debug/netcoreapp1.0 --net=host $docker_image bash -c "dotnet exec Grpc.IntegrationTesting.Client.dll --server_host=216.239.32.254 --server_host_override=grpc-test4.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=cancel_after_begin" |
||||
docker run -i --rm=true -w /var/local/git/grpc/src/csharp/Grpc.IntegrationTesting.Client/bin/Debug/netcoreapp1.0 --net=host $docker_image bash -c "dotnet exec Grpc.IntegrationTesting.Client.dll --server_host=216.239.32.254 --server_host_override=grpc-test4.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=cancel_after_first_response" |
||||
docker run -i --rm=true -w /var/local/git/grpc/src/csharp/Grpc.IntegrationTesting.Client/bin/Debug/netcoreapp1.0 --net=host $docker_image bash -c "dotnet exec Grpc.IntegrationTesting.Client.dll --server_host=216.239.32.254 --server_host_override=grpc-test4.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=timeout_on_sleeping_server" |
@ -0,0 +1,20 @@ |
||||
#!/bin/bash |
||||
echo "Testing ${docker_image:=grpc_interop_node:1415ecbf-5d0f-423e-8c2c-e0cb6d154e73}" |
||||
docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "tools/run_tests/interop/with_nvm.sh node src/node/interop/interop_client.js --server_host=216.239.32.254 --server_host_override=grpc-test.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=large_unary" |
||||
docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "tools/run_tests/interop/with_nvm.sh node src/node/interop/interop_client.js --server_host=216.239.32.254 --server_host_override=grpc-test.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=empty_unary" |
||||
docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "tools/run_tests/interop/with_nvm.sh node src/node/interop/interop_client.js --server_host=216.239.32.254 --server_host_override=grpc-test.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=ping_pong" |
||||
docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "tools/run_tests/interop/with_nvm.sh node src/node/interop/interop_client.js --server_host=216.239.32.254 --server_host_override=grpc-test.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=empty_stream" |
||||
docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "tools/run_tests/interop/with_nvm.sh node src/node/interop/interop_client.js --server_host=216.239.32.254 --server_host_override=grpc-test.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=client_streaming" |
||||
docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "tools/run_tests/interop/with_nvm.sh node src/node/interop/interop_client.js --server_host=216.239.32.254 --server_host_override=grpc-test.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=server_streaming" |
||||
docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "tools/run_tests/interop/with_nvm.sh node src/node/interop/interop_client.js --server_host=216.239.32.254 --server_host_override=grpc-test.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=cancel_after_begin" |
||||
docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "tools/run_tests/interop/with_nvm.sh node src/node/interop/interop_client.js --server_host=216.239.32.254 --server_host_override=grpc-test.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=cancel_after_first_response" |
||||
docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "tools/run_tests/interop/with_nvm.sh node src/node/interop/interop_client.js --server_host=216.239.32.254 --server_host_override=grpc-test.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=timeout_on_sleeping_server" |
||||
docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "tools/run_tests/interop/with_nvm.sh node src/node/interop/interop_client.js --server_host=216.239.32.254 --server_host_override=grpc-test4.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=large_unary" |
||||
docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "tools/run_tests/interop/with_nvm.sh node src/node/interop/interop_client.js --server_host=216.239.32.254 --server_host_override=grpc-test4.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=empty_unary" |
||||
docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "tools/run_tests/interop/with_nvm.sh node src/node/interop/interop_client.js --server_host=216.239.32.254 --server_host_override=grpc-test4.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=ping_pong" |
||||
docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "tools/run_tests/interop/with_nvm.sh node src/node/interop/interop_client.js --server_host=216.239.32.254 --server_host_override=grpc-test4.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=empty_stream" |
||||
docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "tools/run_tests/interop/with_nvm.sh node src/node/interop/interop_client.js --server_host=216.239.32.254 --server_host_override=grpc-test4.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=client_streaming" |
||||
docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "tools/run_tests/interop/with_nvm.sh node src/node/interop/interop_client.js --server_host=216.239.32.254 --server_host_override=grpc-test4.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=server_streaming" |
||||
docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "tools/run_tests/interop/with_nvm.sh node src/node/interop/interop_client.js --server_host=216.239.32.254 --server_host_override=grpc-test4.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=cancel_after_begin" |
||||
docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "tools/run_tests/interop/with_nvm.sh node src/node/interop/interop_client.js --server_host=216.239.32.254 --server_host_override=grpc-test4.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=cancel_after_first_response" |
||||
docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "tools/run_tests/interop/with_nvm.sh node src/node/interop/interop_client.js --server_host=216.239.32.254 --server_host_override=grpc-test4.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=timeout_on_sleeping_server" |
@ -0,0 +1,21 @@ |
||||
#!/bin/bash |
||||
echo "Testing ${docker_image:=grpc_interop_node:a53aa5e3-b548-4566-b5a8-6d15c1315b32}" |
||||
docker run -i --rm=true -w /var/local/git/grpc --net=host --name interop_client_node_00c688f2-57da-4023-89f3-46b1f7b5869f $docker_image bash -l -c "node src/node/interop/interop_client.js --server_host=grpc-test.sandbox.googleapis.com --server_host_override=grpc-test.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=large_unary" |
||||
docker run -i --rm=true -w /var/local/git/grpc --net=host --name interop_client_node_d86705d8-14ea-4024-90b6-de74d6e8d19c $docker_image bash -l -c "node src/node/interop/interop_client.js --server_host=grpc-test.sandbox.googleapis.com --server_host_override=grpc-test.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=empty_unary" |
||||
docker run -i --rm=true -w /var/local/git/grpc --net=host --name interop_client_node_ebaafacd-1d82-4a75-bea1-a5c64e01fcaf $docker_image bash -l -c "node src/node/interop/interop_client.js --server_host=grpc-test.sandbox.googleapis.com --server_host_override=grpc-test.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=ping_pong" |
||||
docker run -i --rm=true -w /var/local/git/grpc --net=host --name interop_client_node_5125241a-fbf6-4c1c-895b-026a5a41f02f $docker_image bash -l -c "node src/node/interop/interop_client.js --server_host=grpc-test.sandbox.googleapis.com --server_host_override=grpc-test.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=empty_stream" |
||||
docker run -i --rm=true -w /var/local/git/grpc --net=host --name interop_client_node_3d5e5b82-7205-4eba-b775-8122f05a4760 $docker_image bash -l -c "node src/node/interop/interop_client.js --server_host=grpc-test.sandbox.googleapis.com --server_host_override=grpc-test.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=client_streaming" |
||||
docker run -i --rm=true -w /var/local/git/grpc --net=host --name interop_client_node_16fa0b49-2083-4932-8f26-79cfdffec940 $docker_image bash -l -c "node src/node/interop/interop_client.js --server_host=grpc-test.sandbox.googleapis.com --server_host_override=grpc-test.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=server_streaming" |
||||
docker run -i --rm=true -w /var/local/git/grpc --net=host --name interop_client_node_23cee670-2d8d-4f5c-8893-c3c43da8b03a $docker_image bash -l -c "node src/node/interop/interop_client.js --server_host=grpc-test.sandbox.googleapis.com --server_host_override=grpc-test.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=cancel_after_begin" |
||||
docker run -i --rm=true -w /var/local/git/grpc --net=host --name interop_client_node_7b6a9454-e3b6-4993-b542-468e268930aa $docker_image bash -l -c "node src/node/interop/interop_client.js --server_host=grpc-test.sandbox.googleapis.com --server_host_override=grpc-test.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=cancel_after_first_response" |
||||
docker run -i --rm=true -w /var/local/git/grpc --net=host --name interop_client_node_5a7109ed-c065-4b62-98f4-b3ed8f385762 $docker_image bash -l -c "node src/node/interop/interop_client.js --server_host=grpc-test.sandbox.googleapis.com --server_host_override=grpc-test.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=timeout_on_sleeping_server" |
||||
docker run -i --rm=true -w /var/local/git/grpc --net=host --name interop_client_node_1e0ba8dd-4dc1-431b-b202-529e7ace5d1d $docker_image bash -l -c "node src/node/interop/interop_client.js --server_host=grpc-test4.sandbox.googleapis.com --server_host_override=grpc-test4.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=large_unary" |
||||
docker run -i --rm=true -w /var/local/git/grpc --net=host --name interop_client_node_649de56a-e722-4a59-b265-e9c0e871f068 $docker_image bash -l -c "node src/node/interop/interop_client.js --server_host=grpc-test4.sandbox.googleapis.com --server_host_override=grpc-test4.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=empty_unary" |
||||
docker run -i --rm=true -w /var/local/git/grpc --net=host --name interop_client_node_8be512a2-5e1c-4858-8cfc-82f99b678b76 $docker_image bash -l -c "node src/node/interop/interop_client.js --server_host=grpc-test4.sandbox.googleapis.com --server_host_override=grpc-test4.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=ping_pong" |
||||
docker run -i --rm=true -w /var/local/git/grpc --net=host --name interop_client_node_d19b6333-e528-48b5-8421-2ae3f7ce9dab $docker_image bash -l -c "node src/node/interop/interop_client.js --server_host=grpc-test4.sandbox.googleapis.com --server_host_override=grpc-test4.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=empty_stream" |
||||
docker run -i --rm=true -w /var/local/git/grpc --net=host --name interop_client_node_4749c80a-21c5-4d81-9df5-3c46ba6480cd $docker_image bash -l -c "node src/node/interop/interop_client.js --server_host=grpc-test4.sandbox.googleapis.com --server_host_override=grpc-test4.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=client_streaming" |
||||
docker run -i --rm=true -w /var/local/git/grpc --net=host --name interop_client_node_b7bee545-4857-4269-a1f2-9553dfc7e4b8 $docker_image bash -l -c "node src/node/interop/interop_client.js --server_host=grpc-test4.sandbox.googleapis.com --server_host_override=grpc-test4.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=server_streaming" |
||||
docker run -i --rm=true -w /var/local/git/grpc --net=host --name interop_client_node_4e96db87-6f48-426d-a7f0-97f3a5b6b3f4 $docker_image bash -l -c "node src/node/interop/interop_client.js --server_host=grpc-test4.sandbox.googleapis.com --server_host_override=grpc-test4.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=cancel_after_begin" |
||||
docker run -i --rm=true -w /var/local/git/grpc --net=host --name interop_client_node_31a1d58c-f8bf-460a-af60-28969ecaaf80 $docker_image bash -l -c "node src/node/interop/interop_client.js --server_host=grpc-test4.sandbox.googleapis.com --server_host_override=grpc-test4.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=cancel_after_first_response" |
||||
docker run -i --rm=true -w /var/local/git/grpc --net=host --name interop_client_node_ce64b147-bcfa-44b2-a2f7-4a485380ce30 $docker_image bash -l -c "node src/node/interop/interop_client.js --server_host=grpc-test4.sandbox.googleapis.com --server_host_override=grpc-test4.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=timeout_on_sleeping_server" |
||||
|
@ -0,0 +1,20 @@ |
||||
#!/bin/bash |
||||
echo "Testing ${docker_image:=grpc_interop_php:b290f404-9940-4968-8fc2-19f5291c8eb7}" |
||||
docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "src/php/bin/interop_client.sh --server_host=216.239.32.254 --server_host_override=grpc-test.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=large_unary" |
||||
docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "src/php/bin/interop_client.sh --server_host=216.239.32.254 --server_host_override=grpc-test.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=empty_unary" |
||||
docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "src/php/bin/interop_client.sh --server_host=216.239.32.254 --server_host_override=grpc-test.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=ping_pong" |
||||
docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "src/php/bin/interop_client.sh --server_host=216.239.32.254 --server_host_override=grpc-test.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=empty_stream" |
||||
docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "src/php/bin/interop_client.sh --server_host=216.239.32.254 --server_host_override=grpc-test.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=client_streaming" |
||||
docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "src/php/bin/interop_client.sh --server_host=216.239.32.254 --server_host_override=grpc-test.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=server_streaming" |
||||
docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "src/php/bin/interop_client.sh --server_host=216.239.32.254 --server_host_override=grpc-test.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=cancel_after_begin" |
||||
docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "src/php/bin/interop_client.sh --server_host=216.239.32.254 --server_host_override=grpc-test.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=cancel_after_first_response" |
||||
docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "src/php/bin/interop_client.sh --server_host=216.239.32.254 --server_host_override=grpc-test.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=timeout_on_sleeping_server" |
||||
docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "src/php/bin/interop_client.sh --server_host=216.239.32.254 --server_host_override=grpc-test4.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=large_unary" |
||||
docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "src/php/bin/interop_client.sh --server_host=216.239.32.254 --server_host_override=grpc-test4.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=empty_unary" |
||||
docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "src/php/bin/interop_client.sh --server_host=216.239.32.254 --server_host_override=grpc-test4.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=ping_pong" |
||||
docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "src/php/bin/interop_client.sh --server_host=216.239.32.254 --server_host_override=grpc-test4.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=empty_stream" |
||||
docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "src/php/bin/interop_client.sh --server_host=216.239.32.254 --server_host_override=grpc-test4.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=client_streaming" |
||||
docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "src/php/bin/interop_client.sh --server_host=216.239.32.254 --server_host_override=grpc-test4.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=server_streaming" |
||||
docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "src/php/bin/interop_client.sh --server_host=216.239.32.254 --server_host_override=grpc-test4.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=cancel_after_begin" |
||||
docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "src/php/bin/interop_client.sh --server_host=216.239.32.254 --server_host_override=grpc-test4.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=cancel_after_first_response" |
||||
docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "src/php/bin/interop_client.sh --server_host=216.239.32.254 --server_host_override=grpc-test4.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=timeout_on_sleeping_server" |
@ -0,0 +1,20 @@ |
||||
#!/bin/bash |
||||
echo "Testing ${docker_image:=grpc_interop_ruby:6bd1f0eb-51a4-4ad8-861c-1cbd7a929f33}" |
||||
docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "tools/run_tests/interop/with_rvm.sh ruby src/ruby/pb/test/client.rb --server_host=216.239.32.254 --server_host_override=grpc-test.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=large_unary" |
||||
docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "tools/run_tests/interop/with_rvm.sh ruby src/ruby/pb/test/client.rb --server_host=216.239.32.254 --server_host_override=grpc-test.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=empty_unary" |
||||
docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "tools/run_tests/interop/with_rvm.sh ruby src/ruby/pb/test/client.rb --server_host=216.239.32.254 --server_host_override=grpc-test.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=ping_pong" |
||||
docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "tools/run_tests/interop/with_rvm.sh ruby src/ruby/pb/test/client.rb --server_host=216.239.32.254 --server_host_override=grpc-test.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=empty_stream" |
||||
docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "tools/run_tests/interop/with_rvm.sh ruby src/ruby/pb/test/client.rb --server_host=216.239.32.254 --server_host_override=grpc-test.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=client_streaming" |
||||
docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "tools/run_tests/interop/with_rvm.sh ruby src/ruby/pb/test/client.rb --server_host=216.239.32.254 --server_host_override=grpc-test.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=server_streaming" |
||||
docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "tools/run_tests/interop/with_rvm.sh ruby src/ruby/pb/test/client.rb --server_host=216.239.32.254 --server_host_override=grpc-test.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=cancel_after_begin" |
||||
docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "tools/run_tests/interop/with_rvm.sh ruby src/ruby/pb/test/client.rb --server_host=216.239.32.254 --server_host_override=grpc-test.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=cancel_after_first_response" |
||||
docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "tools/run_tests/interop/with_rvm.sh ruby src/ruby/pb/test/client.rb --server_host=216.239.32.254 --server_host_override=grpc-test.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=timeout_on_sleeping_server" |
||||
docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "tools/run_tests/interop/with_rvm.sh ruby src/ruby/pb/test/client.rb --server_host=216.239.32.254 --server_host_override=grpc-test4.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=large_unary" |
||||
docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "tools/run_tests/interop/with_rvm.sh ruby src/ruby/pb/test/client.rb --server_host=216.239.32.254 --server_host_override=grpc-test4.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=empty_unary" |
||||
docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "tools/run_tests/interop/with_rvm.sh ruby src/ruby/pb/test/client.rb --server_host=216.239.32.254 --server_host_override=grpc-test4.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=ping_pong" |
||||
docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "tools/run_tests/interop/with_rvm.sh ruby src/ruby/pb/test/client.rb --server_host=216.239.32.254 --server_host_override=grpc-test4.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=empty_stream" |
||||
docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "tools/run_tests/interop/with_rvm.sh ruby src/ruby/pb/test/client.rb --server_host=216.239.32.254 --server_host_override=grpc-test4.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=client_streaming" |
||||
docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "tools/run_tests/interop/with_rvm.sh ruby src/ruby/pb/test/client.rb --server_host=216.239.32.254 --server_host_override=grpc-test4.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=server_streaming" |
||||
docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "tools/run_tests/interop/with_rvm.sh ruby src/ruby/pb/test/client.rb --server_host=216.239.32.254 --server_host_override=grpc-test4.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=cancel_after_begin" |
||||
docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "tools/run_tests/interop/with_rvm.sh ruby src/ruby/pb/test/client.rb --server_host=216.239.32.254 --server_host_override=grpc-test4.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=cancel_after_first_response" |
||||
docker run -i --rm=true -w /var/local/git/grpc --net=host $docker_image bash -c "tools/run_tests/interop/with_rvm.sh ruby src/ruby/pb/test/client.rb --server_host=216.239.32.254 --server_host_override=grpc-test4.sandbox.googleapis.com --server_port=443 --use_tls=true --test_case=timeout_on_sleeping_server" |
Loading…
Reference in new issue