1#!/usr/bin/env bash 2# Copyright 2020 gRPC authors. 3# 4# Licensed under the Apache License, Version 2.0 (the "License"); 5# you may not use this file except in compliance with the License. 6# You may obtain a copy of the License at 7# 8# http://www.apache.org/licenses/LICENSE-2.0 9# 10# Unless required by applicable law or agreed to in writing, software 11# distributed under the License is distributed on an "AS IS" BASIS, 12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13# See the License for the specific language governing permissions and 14# limitations under the License. 15 16trap 'date' DEBUG 17set -ex -o igncr || set -ex 18 19mkdir -p /var/local/git 20git clone -b master --single-branch --depth=1 https://github.com/grpc/grpc.git /var/local/git/grpc 21cd /var/local/git/grpc 22 23python3 -m pip install virtualenv 24VIRTUAL_ENV=$(mktemp -d) 25python3 -m virtualenv "$VIRTUAL_ENV" -p python3 26PYTHON="$VIRTUAL_ENV"/bin/python 27"$PYTHON" -m pip install --upgrade pip==19.3.1 28# TODO(sergiitk): Unpin grpcio-tools when a version of xds-protos 29# compatible with protobuf 4.X is uploaded to PyPi. 30"$PYTHON" -m pip install --upgrade grpcio grpcio-tools==1.48.1 google-api-python-client google-auth-httplib2 oauth2client xds-protos 31 32# Prepare generated Python code. 33TOOLS_DIR=tools/run_tests 34PROTO_SOURCE_DIR=src/proto/grpc/testing 35PROTO_DEST_DIR="$TOOLS_DIR"/"$PROTO_SOURCE_DIR" 36mkdir -p "$PROTO_DEST_DIR" 37touch "$TOOLS_DIR"/src/__init__.py 38touch "$TOOLS_DIR"/src/proto/__init__.py 39touch "$TOOLS_DIR"/src/proto/grpc/__init__.py 40touch "$TOOLS_DIR"/src/proto/grpc/testing/__init__.py 41 42"$PYTHON" -m grpc_tools.protoc \ 43 --proto_path=. \ 44 --python_out="$TOOLS_DIR" \ 45 --grpc_python_out="$TOOLS_DIR" \ 46 "$PROTO_SOURCE_DIR"/test.proto \ 47 "$PROTO_SOURCE_DIR"/messages.proto \ 48 "$PROTO_SOURCE_DIR"/empty.proto 49 50HEALTH_PROTO_SOURCE_DIR=src/proto/grpc/health/v1 51HEALTH_PROTO_DEST_DIR=${TOOLS_DIR}/${HEALTH_PROTO_SOURCE_DIR} 52mkdir -p ${HEALTH_PROTO_DEST_DIR} 53touch "$TOOLS_DIR"/src/proto/grpc/health/__init__.py 54touch "$TOOLS_DIR"/src/proto/grpc/health/v1/__init__.py 55 56"$PYTHON" -m grpc_tools.protoc \ 57 --proto_path=. \ 58 --python_out=${TOOLS_DIR} \ 59 --grpc_python_out=${TOOLS_DIR} \ 60 ${HEALTH_PROTO_SOURCE_DIR}/health.proto 61 62cd /var/local/jenkins/grpc/ 63bazel build test/cpp/interop:xds_interop_client 64 65# Test cases "path_matching" and "header_matching" are not included in "all", 66# because not all interop clients in all languages support these new tests. 67# 68# TODO: remove "path_matching" and "header_matching" from --test_case after 69# they are added into "all". 70GRPC_VERBOSITY=debug GRPC_TRACE=xds_client,xds_resolver,xds_cluster_manager_lb,cds_lb,xds_cluster_resolver_lb,priority_lb,xds_cluster_impl_lb,weighted_target_lb "$PYTHON" \ 71 /var/local/git/grpc/tools/run_tests/run_xds_tests.py \ 72 --halt_after_fail \ 73 --test_case="ping_pong" \ 74 --project_id=grpc-testing \ 75 --project_num=830293263384 \ 76 --source_image=projects/grpc-testing/global/images/xds-test-server-5 \ 77 --path_to_server_binary=/java_server/grpc-java/interop-testing/build/install/grpc-interop-testing/bin/xds-test-server \ 78 --gcp_suffix=$(date '+%s') \ 79 --verbose \ 80 ${XDS_V3_OPT-} \ 81 --client_cmd='bazel-bin/test/cpp/interop/xds_interop_client --server=xds:///{server_uri} --stats_port={stats_port} --qps={qps} {fail_on_failed_rpc} \ 82 {rpcs_to_send} \ 83 {metadata_to_send}' 84