forked from googleapis/google-cloud-cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathintegration.sh
More file actions
326 lines (286 loc) · 15.9 KB
/
integration.sh
File metadata and controls
326 lines (286 loc) · 15.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
#!/bin/bash
#
# Copyright 2021 Google LLC
#
# 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
#
# https://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.
# This file defines helper functions for running integration tests.
# Make our include guard clean against set -o nounset.
test -n "${CI_CLOUDBUILD_BUILDS_LIB_INTEGRATION_SH__:-}" || declare -i CI_CLOUDBUILD_BUILDS_LIB_INTEGRATION_SH__=0
if ((CI_CLOUDBUILD_BUILDS_LIB_INTEGRATION_SH__++ != 0)); then
return 0
fi # include guard
source module ci/etc/integration-tests-config.sh
source module ci/cloudbuild/builds/lib/ctest.sh
source module ci/cloudbuild/builds/lib/git.sh
source module ci/lib/io.sh
# To run the integration tests we need to install the dependencies for the storage emulator
export PATH="${HOME}/.local/bin:${PATH}"
python3 -m pip uninstall -y --quiet googleapis-storage-testbench
python3 -m pip install --upgrade --user --quiet --disable-pip-version-check \
"git+https://github.com/googleapis/storage-testbench@v0.59.0"
# Some of the tests will need a valid roots.pem file.
rm -f /dev/shm/roots.pem
ci/retry-command.sh 3 120 curl -fsSL -o /dev/shm/roots.pem https://pki.google.com/roots.pem
# Outputs a list of Bazel arguments that should be used when running
# integration tests. These do not include the common `bazel::common_args`.
#
# Example usage:
#
# mapfile -t args < <(bazel::common_args)
# mapfile -t integration_args < <(integration::bazel_args)
# integration::bazel_with_emulators test "${args[@]}" "${integration_args[@]}"
#
function integration::bazel_args() {
declare -a args
# Integration tests are inherently flaky. Make up to three attempts to get the
# test passing.
args+=(--flaky_test_attempts=3)
args+=(
# Common settings
"--test_env=GOOGLE_CLOUD_PROJECT=${GOOGLE_CLOUD_PROJECT}"
"--test_env=GOOGLE_CLOUD_CPP_TEST_REGION=${GOOGLE_CLOUD_CPP_TEST_REGION}"
"--test_env=GOOGLE_CLOUD_CPP_NON_US_TEST_REGION=${GOOGLE_CLOUD_CPP_NON_US_TEST_REGION}"
"--test_env=GOOGLE_CLOUD_CPP_US_EAST_TEST_REGION=${GOOGLE_CLOUD_CPP_US_EAST_TEST_REGION}"
"--test_env=GOOGLE_CLOUD_CPP_TEST_ZONE=${GOOGLE_CLOUD_CPP_TEST_ZONE}"
"--test_env=GOOGLE_CLOUD_CPP_TEST_ORGANIZATION=${GOOGLE_CLOUD_CPP_TEST_ORGANIZATION}"
"--test_env=GOOGLE_CLOUD_CPP_TEST_SERVICE_ACCOUNT_KEYFILE=${GOOGLE_CLOUD_CPP_TEST_SERVICE_ACCOUNT_KEYFILE}"
"--test_env=GOOGLE_CLOUD_CPP_AUTO_RUN_EXAMPLES=${GOOGLE_CLOUD_CPP_AUTO_RUN_EXAMPLES}"
"--test_env=GOOGLE_CLOUD_CPP_EXPERIMENTAL_LOG_CONFIG=${GOOGLE_CLOUD_CPP_EXPERIMENTAL_LOG_CONFIG}"
"--test_env=GOOGLE_CLOUD_CPP_ENABLE_TRACING=${GOOGLE_CLOUD_CPP_ENABLE_TRACING}"
"--test_env=GOOGLE_CLOUD_CPP_TRACING_OPTIONS=${GOOGLE_CLOUD_CPP_TRACING_OPTIONS}"
"--test_env=CLOUD_STORAGE_ENABLE_TRACING=${CLOUD_STORAGE_ENABLE_TRACING}"
"--test_env=HOME=${HOME}"
# IAM
"--test_env=GOOGLE_CLOUD_CPP_IAM_CREDENTIALS_TEST_SERVICE_ACCOUNT=${GOOGLE_CLOUD_CPP_IAM_CREDENTIALS_TEST_SERVICE_ACCOUNT}"
"--test_env=GOOGLE_CLOUD_CPP_IAM_TEST_SERVICE_ACCOUNT=${GOOGLE_CLOUD_CPP_IAM_TEST_SERVICE_ACCOUNT}"
"--test_env=GOOGLE_CLOUD_CPP_IAM_INVALID_TEST_SERVICE_ACCOUNT=${GOOGLE_CLOUD_CPP_IAM_INVALID_TEST_SERVICE_ACCOUNT}"
"--test_env=GOOGLE_CLOUD_CPP_IAM_QUOTA_LIMITED_INTEGRATION_TESTS=${GOOGLE_CLOUD_CPP_IAM_QUOTA_LIMITED_INTEGRATION_TESTS:-}"
"--test_env=GOOGLE_CLOUD_CPP_IAM_QUOTA_LIMITED_SAMPLES=${GOOGLE_CLOUD_CPP_IAM_QUOTA_LIMITED_SAMPLES:-}"
# Bigtable
"--test_env=GOOGLE_CLOUD_CPP_BIGTABLE_TEST_INSTANCE_ID=${GOOGLE_CLOUD_CPP_BIGTABLE_TEST_INSTANCE_ID}"
"--test_env=GOOGLE_CLOUD_CPP_BIGTABLE_TEST_CLUSTER_ID=${GOOGLE_CLOUD_CPP_BIGTABLE_TEST_CLUSTER_ID}"
"--test_env=GOOGLE_CLOUD_CPP_BIGTABLE_TEST_ZONE_A=${GOOGLE_CLOUD_CPP_BIGTABLE_TEST_ZONE_A}"
"--test_env=GOOGLE_CLOUD_CPP_BIGTABLE_TEST_ZONE_B=${GOOGLE_CLOUD_CPP_BIGTABLE_TEST_ZONE_B}"
"--test_env=GOOGLE_CLOUD_CPP_BIGTABLE_TEST_SERVICE_ACCOUNT=${GOOGLE_CLOUD_CPP_BIGTABLE_TEST_SERVICE_ACCOUNT}"
"--test_env=ENABLE_BIGTABLE_ADMIN_INTEGRATION_TESTS=${ENABLE_BIGTABLE_ADMIN_INTEGRATION_TESTS:-no}"
# Rest
"--test_env=GOOGLE_CLOUD_CPP_REST_TEST_SIGNING_SERVICE_ACCOUNT=${GOOGLE_CLOUD_CPP_REST_TEST_SIGNING_SERVICE_ACCOUNT}"
# Storage
"--test_env=GOOGLE_CLOUD_CPP_STORAGE_TEST_BUCKET_NAME=${GOOGLE_CLOUD_CPP_STORAGE_TEST_BUCKET_NAME}"
"--test_env=GOOGLE_CLOUD_CPP_STORAGE_TEST_FOLDER_BUCKET_NAME=${GOOGLE_CLOUD_CPP_STORAGE_TEST_FOLDER_BUCKET_NAME}"
"--test_env=GOOGLE_CLOUD_CPP_STORAGE_TEST_DESTINATION_BUCKET_NAME=${GOOGLE_CLOUD_CPP_STORAGE_TEST_DESTINATION_BUCKET_NAME}"
"--test_env=GOOGLE_CLOUD_CPP_STORAGE_TEST_REGION_ID=${GOOGLE_CLOUD_CPP_STORAGE_TEST_REGION_ID}"
"--test_env=GOOGLE_CLOUD_CPP_STORAGE_TEST_TOPIC_NAME=${GOOGLE_CLOUD_CPP_STORAGE_TEST_TOPIC_NAME}"
"--test_env=GOOGLE_CLOUD_CPP_STORAGE_TEST_SERVICE_ACCOUNT=${GOOGLE_CLOUD_CPP_STORAGE_TEST_SERVICE_ACCOUNT}"
"--test_env=GOOGLE_CLOUD_CPP_STORAGE_TEST_SIGNING_SERVICE_ACCOUNT=${GOOGLE_CLOUD_CPP_STORAGE_TEST_SIGNING_SERVICE_ACCOUNT}"
"--test_env=GOOGLE_CLOUD_CPP_STORAGE_TEST_HMAC_SERVICE_ACCOUNT=${GOOGLE_CLOUD_CPP_STORAGE_TEST_HMAC_SERVICE_ACCOUNT}"
"--test_env=GOOGLE_CLOUD_CPP_STORAGE_TEST_CMEK_KEY=${GOOGLE_CLOUD_CPP_STORAGE_TEST_CMEK_KEY}"
"--test_env=GOOGLE_CLOUD_CPP_STORAGE_TEST_SIGNING_CONFORMANCE_FILENAME=${GOOGLE_CLOUD_CPP_STORAGE_TEST_SIGNING_CONFORMANCE_FILENAME}"
"--test_env=GOOGLE_CLOUD_CPP_STORAGE_TEST_GZIP_FILENAME=${GOOGLE_CLOUD_CPP_STORAGE_TEST_GZIP_FILENAME}"
"--test_env=GOOGLE_CLOUD_CPP_STORAGE_TEST_ROOTS_PEM=/dev/shm/roots.pem"
# We only set these environment variables on GCB-based builds, as the
# corresponding endpoints (e.g., https://private.googleapis.com) are not
# always available in Kokoro.
"--test_env=GOOGLE_CLOUD_CPP_STORAGE_TEST_ALTERNATIVE_HOSTS=private.googleapis.com,restricted.googleapis.com"
# Spanner
"--test_env=GOOGLE_CLOUD_CPP_SPANNER_SLOW_INTEGRATION_TESTS=${GOOGLE_CLOUD_CPP_SPANNER_SLOW_INTEGRATION_TESTS:-}"
"--test_env=GOOGLE_CLOUD_CPP_SPANNER_TEST_INSTANCE_ID=${GOOGLE_CLOUD_CPP_SPANNER_TEST_INSTANCE_ID}"
"--test_env=GOOGLE_CLOUD_CPP_SPANNER_TEST_SERVICE_ACCOUNT=${GOOGLE_CLOUD_CPP_SPANNER_TEST_SERVICE_ACCOUNT}"
"--test_env=GOOGLE_CLOUD_CPP_SPANNER_DEFAULT_ENDPOINT=${GOOGLE_CLOUD_CPP_SPANNER_DEFAULT_ENDPOINT:-}"
"--test_env=GOOGLE_CLOUD_CPP_SPANNER_DEFAULT_AUTHORITY=${GOOGLE_CLOUD_CPP_SPANNER_DEFAULT_AUTHORITY:-}"
# Cloud Batch
"--test_env=GOOGLE_CLOUD_CPP_BATCH_TEST_TEMPLATE_NAME=${GOOGLE_CLOUD_CPP_BATCH_TEST_TEMPLATE_NAME:-}"
)
# Adds environment variables that need to reference a specific service
# account key file. The key files are copied from a GCS bucket and stored on
# the local machine. See the `rotate-keys.sh` script for details about how
# these keys are rotated.
key_base="key-$(date +"%Y-%m")"
readonly KEY_DIR="/dev/shm"
readonly SECRETS_BUCKET="gs://cloud-cpp-testing-resources-secrets"
gcloud storage cp --quiet "${SECRETS_BUCKET}/${key_base}.json" "${KEY_DIR}/${key_base}.json" >/dev/null 2>&1 || true
gcloud storage cp --quiet "${SECRETS_BUCKET}/${key_base}.p12" "${KEY_DIR}/${key_base}.p12" >/dev/null 2>&1 || true
if [[ -r "${KEY_DIR}/${key_base}.json" ]] && [[ -r "${KEY_DIR}/${key_base}.p12" ]]; then
args+=(
"--test_env=GOOGLE_CLOUD_CPP_REST_TEST_KEY_FILE_JSON=${KEY_DIR}/${key_base}.json"
"--test_env=GOOGLE_CLOUD_CPP_BIGTABLE_TEST_KEY_FILE_JSON=${KEY_DIR}/${key_base}.json"
"--test_env=GOOGLE_CLOUD_CPP_STORAGE_TEST_KEY_FILE_JSON=${KEY_DIR}/${key_base}.json"
"--test_env=GOOGLE_CLOUD_CPP_STORAGE_TEST_KEY_FILE_P12=${KEY_DIR}/${key_base}.p12"
)
fi
# Adds environment variables for SSL testing.
# Info on how to create/refresh these can be found at:
# https://cloud.google.com/certificate-authority-service/docs/create-certificate
gcloud storage cp --quiet "${SECRETS_BUCKET}/client.crt" "${KEY_DIR}/client.crt" >/dev/null 2>&1 || true
gcloud storage cp --quiet "${SECRETS_BUCKET}/client.chain.crt" "${KEY_DIR}/client.chain.crt" >/dev/null 2>&1 || true
gcloud storage cp --quiet "${SECRETS_BUCKET}/client.private.pem" "${KEY_DIR}/client.private.pem" >/dev/null 2>&1 || true
if [[ -r "${KEY_DIR}/client.crt" ]] && [[ -r "${KEY_DIR}/client.chain.crt" ]] && [[ -r "${KEY_DIR}/client.private.pem" ]]; then
args+=(
"--test_env=GOOGLE_CLOUD_CPP_CLIENT_SSL_CERT_FILE=${KEY_DIR}/client.crt"
"--test_env=GOOGLE_CLOUD_CPP_CLIENT_SSL_CERT_CHAIN_FILE=${KEY_DIR}/client.chain.crt"
"--test_env=GOOGLE_CLOUD_CPP_CLIENT_SSL_KEY_FILE=${KEY_DIR}/client.private.pem"
)
fi
printf "%s\n" "${args[@]}"
}
# Runs integration tests with bazel using emulators when possible. This
# function requires a first argument that is the bazel verb to do, valid verbs
# are "test" and "coverage". Additional arguments are assumed to be bazel args.
# Almost certainly the caller should pass the arguments returned from the
# `integration::bazel_args` function defined above.
#
# Example usage:
#
# mapfile -t args < <(bazel::common_args)
# mapfile -t integration_args < <(integration::bazel_args)
# integration::bazel_with_emulators test "${args[@]}" "${integration_args[@]}"
#
function integration::bazel_with_emulators() {
readonly EMULATOR_SCRIPT="run_integration_tests_emulator_bazel.sh"
if [[ $# == 0 ]]; then
io::log_red "error: bazel verb required"
return 1
fi
local verb="$1"
local args=("${@:2}")
production_integration_tests=(
# gRPC Utils integration tests
"google/cloud:internal_grpc_impersonate_service_account_integration_test"
# Generator integration tests
"generator/..."
# BigQuery integration tests
"google/cloud/bigquery/..."
# Compute integration tests
"google/cloud/compute/..."
# IAM and IAM Credentials integration tests
"google/cloud/iam/..."
# Logging integration tests
"google/cloud/logging/..."
# Pub/Sub Lite integration tests
"google/cloud/pubsublite/..."
# Cloud Sql Admin integration tests
"google/cloud/sql/integration_tests/..."
# Unified Rest Credentials test
"google/cloud:internal_unified_rest_credentials_integration_test"
)
production_tests_tag_filters="integration-test,-ud-only"
if echo "${args[@]}" | grep -w -q -- "--config=msan"; then
production_tests_tag_filters="integration-test,-no-msan,-ud-only"
fi
io::log_h2 "Running Pub/Sub integration tests (with emulator)"
"google/cloud/pubsub/ci/${EMULATOR_SCRIPT}" \
bazel "${verb}" "${args[@]}" --test_tag_filters="integration-test,-ud-only"
io::log_h2 "Running Storage integration tests (with emulator)"
"google/cloud/storage/ci/${EMULATOR_SCRIPT}" \
bazel "${verb}" "${args[@]}" --test_tag_filters="integration-test,-ud-only"
io::log_h2 "Running Spanner integration tests (with emulator)"
"google/cloud/spanner/ci/${EMULATOR_SCRIPT}" \
bazel "${verb}" "${args[@]}" --test_tag_filters="integration-test,-ud-only"
io::log_h2 "Running Bigtable integration tests (with emulator)"
"google/cloud/bigtable/ci/${EMULATOR_SCRIPT}" \
bazel "${verb}" "${args[@]}" --test_tag_filters="integration-test,-ud-only"
io::log_h2 "Running REST integration tests (with emulator)"
"google/cloud/internal/ci/${EMULATOR_SCRIPT}" \
bazel "${verb}" "${args[@]}" --test_tag_filters="integration-test,-ud-only"
if [[ "${BAZEL_TARGETS[*]}" != "..." ]]; then
io::log_h2 "Skipping some integration tests because BAZEL_TARGETS is not the default"
return 0
fi
io::log_h2 "Running integration tests that require production access"
bazel "${verb}" "${args[@]}" \
--test_tag_filters="${production_tests_tag_filters}" \
"${production_integration_tests[@]}"
# This test is run separately because the access token changes every time and
# that would mess up bazel's test cache for all the other tests.
io::log_h2 "Running Bigtable gRPC credential examples"
access_token="$(gcloud auth print-access-token)"
bazel "${verb}" "${args[@]}" \
"--test_env=GOOGLE_CLOUD_CPP_BIGTABLE_TEST_ACCESS_TOKEN=${access_token}" \
//google/cloud/bigtable/examples:bigtable_grpc_credentials
# This test is run separately because the URL may change and that would mess
# up Bazel's test cache for all the other tests.
io::log_h2 "Running combined examples using multiple services"
hello_world_http="$(gcloud run services describe \
hello-world-http \
--project="${GOOGLE_CLOUD_PROJECT}" \
--region="us-central1" --platform="managed" \
--format='value(status.url)')"
hello_world_grpc="$(gcloud run services describe \
hello-world-grpc \
--project="${GOOGLE_CLOUD_PROJECT}" \
--region="us-central1" --platform="managed" \
--format='value(status.url)')"
bazel "${verb}" "${args[@]}" \
"--test_env=GOOGLE_CLOUD_CPP_TEST_HELLO_WORLD_HTTP_URL=${hello_world_http}" \
"--test_env=GOOGLE_CLOUD_CPP_TEST_HELLO_WORLD_GRPC_URL=${hello_world_grpc}" \
"--test_env=GOOGLE_CLOUD_CPP_TEST_HELLO_WORLD_SERVICE_ACCOUNT=${GOOGLE_CLOUD_CPP_TEST_HELLO_WORLD_SERVICE_ACCOUNT}" \
//examples/...
local bazel_output_base
if echo "${args[@]}" | grep -w -q -- "--config=msan"; then
io::log_h2 "Skipping generator integration test"
else
io::log_h2 "Running generator integration test"
bazel_output_base="$(bazel info output_base)"
bazel run --action_env=GOOGLE_CLOUD_CPP_ENABLE_CLOG=yes \
//generator:google-cloud-cpp-codegen -- \
--protobuf_proto_path="${bazel_output_base}/external/protobuf~/src" \
--googleapis_proto_path="${bazel_output_base}/external/googleapis~" \
--golden_proto_path="${PWD}" \
--output_path="${PWD}" \
--update_ci=false \
--config_file="${PWD}/generator/integration_tests/golden_config.textproto"
git diff --exit-code \
generator/integration_tests/golden/ \
':(exclude)generator/integration_tests/golden/tests/' \
':(exclude)generator/integration_tests/golden/.clang-format' \
':(exclude)generator/integration_tests/golden/BUILD.bazel' \
':(exclude)generator/integration_tests/golden/CMakeLists.txt' \
':(exclude)generator/integration_tests/golden/*.bzl' \
':(exclude)generator/integration_tests/golden/*_stub.h' \
':(exclude)generator/integration_tests/golden/streaming.cc'
fi
}
# Runs integration tests with CTest using emulators. This function requires a
# first argument that is the "cmake-out" directory where the tests live.
#
# Example usage:
#
# integration::ctest_with_emulators "cmake-out"
#
function integration::ctest_with_emulators() {
readonly EMULATOR_SCRIPT="run_integration_tests_emulator_cmake.sh"
if [[ $# == 0 ]]; then
io::log_red "error: build output directory required"
return 1
fi
local cmake_out="$1"
mapfile -t ctest_args < <(ctest::common_args)
# Integration tests are inherently flaky. Make up to three attempts to get the
# test passing.
ctest_args+=(--repeat until-pass:3)
io::log_h2 "Running Pub/Sub integration tests (with emulator)"
"google/cloud/pubsub/ci/${EMULATOR_SCRIPT}" \
"${cmake_out}" "${ctest_args[@]}" -L integration-test-emulator
io::log_h2 "Running Storage integration tests (with emulator)"
"${PROJECT_ROOT}/google/cloud/storage/ci/${EMULATOR_SCRIPT}" \
"${cmake_out}" "${ctest_args[@]}" -L integration-test-emulator
io::log_h2 "Running Spanner integration tests (with emulator)"
"${PROJECT_ROOT}/google/cloud/spanner/ci/${EMULATOR_SCRIPT}" \
"${cmake_out}" "${ctest_args[@]}" -L integration-test-emulator
io::log_h2 "Running Bigtable integration tests (with emulator)"
"google/cloud/bigtable/ci/${EMULATOR_SCRIPT}" \
"${cmake_out}" "${ctest_args[@]}" -L integration-test-emulator
io::log_h2 "Running REST integration tests (with emulator)"
"google/cloud/internal/ci/${EMULATOR_SCRIPT}" \
"${cmake_out}" "${ctest_args[@]}" -L integration-test-emulator
}