Skip to content

Commit 15ed783

Browse files
committed
add back storage unified creds integration tests
1 parent 1345e57 commit 15ed783

4 files changed

Lines changed: 557 additions & 2 deletions

File tree

google/cloud/storage/ci/run_integration_tests_emulator_bazel.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ readonly PRODUCTION_ONLY_BASE=(
5959
"//google/cloud/storage/tests:alternative_endpoint_integration_test"
6060
"//google/cloud/storage/tests:key_file_integration_test"
6161
"//google/cloud/storage/tests:signed_url_integration_test"
62+
"//google/cloud/storage/tests:unified_credentials_integration_test"
6263
)
6364
for base in "${PRODUCTION_ONLY_BASE[@]}"; do
6465
production_only_targets+=(

google/cloud/storage/tests/CMakeLists.txt

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,11 @@ set(storage_client_integration_tests
7272
tracing_integration_test.cc)
7373
set(storage_client_integration_tests_production
7474
# cmake-format: sort
75-
alternative_endpoint_integration_test.cc key_file_integration_test.cc
76-
mtls_object_basic_crud_integration_test.cc signed_url_integration_test.cc)
75+
alternative_endpoint_integration_test.cc
76+
key_file_integration_test.cc
77+
mtls_object_basic_crud_integration_test.cc
78+
signed_url_integration_test.cc
79+
unified_credentials_integration_test.cc)
7780
list(APPEND storage_client_integration_tests
7881
${storage_client_integration_tests_production})
7982
list(SORT storage_client_integration_tests)

google/cloud/storage/tests/storage_client_integration_tests.bzl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,11 +75,13 @@ storage_client_integration_tests = [
7575
"storage_include_test.cc",
7676
"thread_integration_test.cc",
7777
"tracing_integration_test.cc",
78+
"unified_credentials_integration_test.cc",
7879
]
7980

8081
storage_client_integration_tests_production = [
8182
"alternative_endpoint_integration_test.cc",
8283
"key_file_integration_test.cc",
8384
"mtls_object_basic_crud_integration_test.cc",
8485
"signed_url_integration_test.cc",
86+
"unified_credentials_integration_test.cc",
8587
]

0 commit comments

Comments
 (0)