Skip to content
Snippets Groups Projects
Commit 453a926d authored by Qi Zhao's avatar Qi Zhao
Browse files

Merge pull request #568 from donnadionne/docker

Adding new tests into docker runs
parents 3c665f56 caa51e40
Branches
Tags
No related merge requests found
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
main() { main() {
source grpc_docker.sh source grpc_docker.sh
test_cases=(large_unary empty_unary ping_pong client_streaming server_streaming) test_cases=(large_unary empty_unary ping_pong client_streaming server_streaming service_account_creds compute_engine_creds)
clients=(cxx java go ruby node) clients=(cxx java go ruby node)
for test_case in "${test_cases[@]}" for test_case in "${test_cases[@]}"
do do
......
...@@ -321,7 +321,7 @@ grpc_interop_test_flags() { ...@@ -321,7 +321,7 @@ grpc_interop_test_flags() {
echo "$FUNCNAME: missing arg: test_case" 1>&2 echo "$FUNCNAME: missing arg: test_case" 1>&2
return 1 return 1
} }
echo "--server_host_override=foo.test.google.fr --server_host=$server_ip --server_port=$port --test_case=$test_case" echo "--server_host=$server_ip --server_port=$port --test_case=$test_case"
} }
# checks the positional args and assigns them to variables visible in the caller # checks the positional args and assigns them to variables visible in the caller
...@@ -945,7 +945,7 @@ grpc_cloud_prod_auth_compute_engine_creds_gen_ruby_cmd() { ...@@ -945,7 +945,7 @@ grpc_cloud_prod_auth_compute_engine_creds_gen_ruby_cmd() {
# cmd=$($grpc_gen_test_cmd $flags) # cmd=$($grpc_gen_test_cmd $flags)
grpc_interop_gen_go_cmd() { grpc_interop_gen_go_cmd() {
local cmd_prefix="sudo docker run grpc/go /bin/bash -c" local cmd_prefix="sudo docker run grpc/go /bin/bash -c"
local test_script="cd /go/src/github.com/google/grpc-go/rpc/interop/client" local test_script="cd src/google.golang.org/grpc/interop/client"
local test_script+=" && go run client.go --use_tls=true" local test_script+=" && go run client.go --use_tls=true"
local the_cmd="$cmd_prefix '$test_script $@'" local the_cmd="$cmd_prefix '$test_script $@'"
echo $the_cmd echo $the_cmd
...@@ -958,7 +958,7 @@ grpc_interop_gen_go_cmd() { ...@@ -958,7 +958,7 @@ grpc_interop_gen_go_cmd() {
# cmd=$($grpc_gen_test_cmd $flags) # cmd=$($grpc_gen_test_cmd $flags)
grpc_cloud_prod_gen_go_cmd() { grpc_cloud_prod_gen_go_cmd() {
local cmd_prefix="sudo docker run grpc/go /bin/bash -c" local cmd_prefix="sudo docker run grpc/go /bin/bash -c"
local test_script="cd /go/src/github.com/google/grpc-go/rpc/interop/client" local test_script="cd src/google.golang.org/grpc/interop/client"
local test_script+=" && go run client.go --use_tls=true" local test_script+=" && go run client.go --use_tls=true"
local gfe_flags=" --tls_ca_file=\"\" --tls_server_name=\"\" --server_port=443 --server_host=grpc-test.sandbox.google.com" local gfe_flags=" --tls_ca_file=\"\" --tls_server_name=\"\" --server_port=443 --server_host=grpc-test.sandbox.google.com"
local the_cmd="$cmd_prefix '$test_script $gfe_flags $@'" local the_cmd="$cmd_prefix '$test_script $gfe_flags $@'"
......
...@@ -6,7 +6,7 @@ echo $result_file_name ...@@ -6,7 +6,7 @@ echo $result_file_name
main() { main() {
source grpc_docker.sh source grpc_docker.sh
test_cases=(large_unary empty_unary ping_pong client_streaming server_streaming) test_cases=(large_unary empty_unary ping_pong client_streaming server_streaming cancel_after_being cancel_after_first_response)
clients=(cxx java go ruby node) clients=(cxx java go ruby node)
servers=(cxx java go ruby node python) servers=(cxx java go ruby node python)
for test_case in "${test_cases[@]}" for test_case in "${test_cases[@]}"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment