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 19 20mkdir -p /var/local/git 21git clone -b master --single-branch --depth=1 https://github.com/grpc/grpc.git /var/local/git/grpc 22cd /var/local/git/grpc 23 24python3 -m pip install virtualenv 25VIRTUAL_ENV=$(mktemp -d) 26python3 -m virtualenv "$VIRTUAL_ENV" -p python3 27PYTHON="$VIRTUAL_ENV"/bin/python 28"$PYTHON" -m pip install --upgrade pip==19.3.1 29# TODO(sergiitk): Unpin grpcio-tools when a version of xds-protos 30# compatible with protobuf 4.X is uploaded to PyPi. 31"$PYTHON" -m pip install --upgrade grpcio-tools==1.48.1 google-api-python-client google-auth-httplib2 oauth2client xds-protos 32 33# Prepare generated Python code. 34TOOLS_DIR=tools/run_tests 35PROTO_SOURCE_DIR=src/proto/grpc/testing 36PROTO_DEST_DIR="$TOOLS_DIR"/"$PROTO_SOURCE_DIR" 37mkdir -p "$PROTO_DEST_DIR" 38touch "$TOOLS_DIR"/src/__init__.py 39touch "$TOOLS_DIR"/src/proto/__init__.py 40touch "$TOOLS_DIR"/src/proto/grpc/__init__.py 41touch "$TOOLS_DIR"/src/proto/grpc/testing/__init__.py 42 43"$PYTHON" -m grpc_tools.protoc \ 44 --proto_path=. \ 45 --python_out="$TOOLS_DIR" \ 46 --grpc_python_out="$TOOLS_DIR" \ 47 "$PROTO_SOURCE_DIR"/test.proto \ 48 "$PROTO_SOURCE_DIR"/messages.proto \ 49 "$PROTO_SOURCE_DIR"/empty.proto 50 51HEALTH_PROTO_SOURCE_DIR=src/proto/grpc/health/v1 52HEALTH_PROTO_DEST_DIR=${TOOLS_DIR}/${HEALTH_PROTO_SOURCE_DIR} 53mkdir -p ${HEALTH_PROTO_DEST_DIR} 54touch "$TOOLS_DIR"/src/proto/grpc/health/__init__.py 55touch "$TOOLS_DIR"/src/proto/grpc/health/v1/__init__.py 56 57"$PYTHON" -m grpc_tools.protoc \ 58 --proto_path=. \ 59 --python_out=${TOOLS_DIR} \ 60 --grpc_python_out=${TOOLS_DIR} \ 61 ${HEALTH_PROTO_SOURCE_DIR}/health.proto 62 63cd /var/local/jenkins/grpc/ 64bazel build //src/python/grpcio_tests/tests_py3_only/interop:xds_interop_client 65 66# Test cases "path_matching" and "header_matching" are not included in "all", 67# because not all interop clients in all languages support these new tests. 68export PYTHONUNBUFFERED=true 69GRPC_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" \ 70 /var/local/git/grpc/tools/run_tests/run_xds_tests.py \ 71 --halt_after_fail \ 72 --test_case="ping_pong" \ 73 --project_id=grpc-testing \ 74 --project_num=830293263384 \ 75 --source_image=projects/grpc-testing/global/images/xds-test-server-5 \ 76 --path_to_server_binary=/java_server/grpc-java/interop-testing/build/install/grpc-interop-testing/bin/xds-test-server \ 77 --gcp_suffix=$(date '+%s') \ 78 --verbose \ 79 ${XDS_V3_OPT-} \ 80 --client_cmd='bazel run //src/python/grpcio_tests/tests_py3_only/interop:xds_interop_client -- --server=xds:///{server_uri} --stats_port={stats_port} --qps={qps} {rpcs_to_send} {metadata_to_send}' 81