xref: /aosp_15_r20/external/tink/kokoro/macos_external/python/pip/run_tests.sh (revision e7b1675dde1b92d52ec075b0a92829627f2c52a5)
1#!/bin/bash
2# Copyright 2020 Google LLC
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################################################################################
16
17set -euo pipefail
18
19if [[ -n "${KOKORO_ARTIFACTS_DIR:-}" ]]; then
20  cd "$(echo "${KOKORO_ARTIFACTS_DIR}"/git*/tink)"
21fi
22
23./kokoro/testutils/copy_credentials.sh "python/testdata" "all"
24source ./kokoro/testutils/install_protoc.sh
25./kokoro/testutils/install_tink_via_pip.sh "${PWD}/python" "${PWD}"
26
27# Get root certificates for gRPC
28curl -OLsS https://raw.githubusercontent.com/grpc/grpc/master/etc/roots.pem
29export GRPC_DEFAULT_SSL_ROOTS_FILE_PATH="${PWD}/roots.pem"
30
31# Set path to the Tink Python folder
32export TINK_PYTHON_ROOT_PATH="${PWD}/python"
33
34# Run Python tests directly so the package is used.
35# We exclude tests in tink/cc/pybind: they are implementation details and may
36# depend on a testonly shared object.
37find python/tink/ -not -path "*cc/pybind*" -type f -name "*_test.py" -print0 \
38  | xargs -0 -n1 python3
39