Skip to content

Commit 8815c87

Browse files
authored
CXX-3322 remove atlas data lake testing (#1461)
1 parent b102d79 commit 8815c87

File tree

9 files changed

+1
-415
lines changed

9 files changed

+1
-415
lines changed

.evergreen/config_generator/components/mongohouse.py

Lines changed: 0 additions & 90 deletions
This file was deleted.

.evergreen/generated_configs/functions.yml

Lines changed: 0 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -200,28 +200,6 @@ functions:
200200
local_file: rpm.tar.gz
201201
permissions: public-read
202202
remote_file: mongo-cxx-driver/${branch_name}/${revision}/${version_id}/${build_id}/${execution}/rpm-packages.tar.gz
203-
build_mongohouse:
204-
- command: ec2.assume_role
205-
params:
206-
role_arn: ${aws_test_secrets_role}
207-
- command: subprocess.exec
208-
type: setup
209-
params:
210-
binary: bash
211-
include_expansions_in_env:
212-
- AWS_ACCESS_KEY_ID
213-
- AWS_SECRET_ACCESS_KEY
214-
- AWS_SESSION_TOKEN
215-
args:
216-
- -c
217-
- |
218-
if [ ! -d "drivers-evergreen-tools" ]; then
219-
git clone https://github.com/mongodb-labs/drivers-evergreen-tools.git
220-
fi
221-
cd drivers-evergreen-tools
222-
export DRIVERS_TOOLS=$(pwd)
223-
224-
.evergreen/atlas_data_lake/pull-mongohouse-image.sh
225203
check augmented sbom:
226204
- command: ec2.assume_role
227205
type: setup
@@ -482,18 +460,6 @@ functions:
482460
python -u kms_http_server.py --ca_file ../x509gen/ca.pem --cert_file ../x509gen/server.pem --port 9002 --require_client_cert &
483461
python -u kms_kmip_server.py &
484462
echo "Starting mock KMS servers... done."
485-
run_mongohouse:
486-
command: subprocess.exec
487-
type: setup
488-
params:
489-
binary: bash
490-
args:
491-
- -c
492-
- |
493-
cd drivers-evergreen-tools
494-
export DRIVERS_TOOLS=$(pwd)
495-
496-
.evergreen/atlas_data_lake/run-mongohouse-image.sh
497463
set-cache-dir:
498464
- command: subprocess.exec
499465
type: setup
@@ -619,17 +585,6 @@ functions:
619585
export LD_LIBRARY_PATH=$(pwd)/../mongoc/lib
620586
621587
./build/src/mongocxx/test/test_driver "atlas search indexes prose tests"
622-
test_mongohouse:
623-
command: subprocess.exec
624-
type: test
625-
params:
626-
binary: bash
627-
working_dir: mongo-cxx-driver
628-
include_expansions_in_env:
629-
- distro_id
630-
args:
631-
- -c
632-
- .evergreen/scripts/test-mongohouse.sh
633588
uninstall-check:
634589
command: subprocess.exec
635590
type: test

.evergreen/generated_configs/tasks.yml

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -13877,19 +13877,6 @@ tasks:
1387713877
BSONCXX_POLYFILL: impls
1387813878
CXX_STANDARD: 17
1387913879
- func: upload scan artifacts
13880-
- name: test_mongohouse
13881-
run_on: ubuntu2204-large
13882-
tags: [mongohouse, ubuntu2204]
13883-
commands:
13884-
- func: setup
13885-
- func: fetch_c_driver_source
13886-
- func: compile
13887-
vars:
13888-
ENABLE_TESTS: "ON"
13889-
build_type: Release
13890-
- func: build_mongohouse
13891-
- func: run_mongohouse
13892-
- func: test_mongohouse
1389313880
- name: uninstall-check-macos-14-arm64-clang-debug-shared
1389413881
run_on: macos-14-arm64
1389513882
tags: [uninstall-check, macos-14-arm64, clang, debug, shared]

.evergreen/generated_configs/variants.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,6 @@ buildvariants:
6868
display_name: macro-guards-matrix
6969
tasks:
7070
- name: .macro-guards
71-
- name: mongohouse
72-
display_name: Mongohouse
73-
tasks:
74-
- name: .mongohouse
7571
- name: packaging
7672
display_name: Linux Distro Packaging
7773
tasks:

.evergreen/scripts/test-mongohouse.sh

Lines changed: 0 additions & 45 deletions
This file was deleted.

src/mongocxx/test/CMakeLists.txt

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,6 @@ set(mongocxx_test_sources_extra
108108
spec/command_monitoring.cpp
109109
spec/crud.cpp
110110
spec/gridfs.cpp
111-
spec/mongohouse.cpp
112111
spec/read_write_concern.cpp
113112
spec/retryable-reads.cpp
114113
spec/transactions.cpp
@@ -164,9 +163,6 @@ target_link_libraries(test_retryable_reads_specs PRIVATE spec_test_common client
164163
add_executable(test_read_write_concern_specs spec/read_write_concern.cpp)
165164
target_link_libraries(test_read_write_concern_specs PRIVATE spec_test_common client_helpers)
166165

167-
add_executable(test_mongohouse_specs spec/mongohouse.cpp)
168-
target_link_libraries(test_mongohouse_specs PRIVATE spec_test_common client_helpers)
169-
170166
add_executable(test_unified_format_specs spec/unified_tests/operations.cpp spec/unified_tests/runner.cpp)
171167
target_link_libraries(test_unified_format_specs PRIVATE spec_test_common client_helpers)
172168

@@ -207,7 +203,6 @@ set_property(
207203
test_gridfs_specs
208204
test_instance
209205
test_logging
210-
test_mongohouse_specs
211206
test_read_write_concern_specs
212207
test_retryable_reads_specs
213208
test_transactions_specs
@@ -245,12 +240,6 @@ foreach(test_name
245240
add_test(NAME ${test_name} COMMAND test_${test_name} --reporter compact --allow-running-no-tests)
246241
endforeach()
247242

248-
# Adding this as a test will run it as part of the RUN_TESTS command in MSVC.
249-
# Do not add, since we only test mongohouse on Linux.
250-
if(0)
251-
add_test(NAME mongohouse_specs COMMAND test_mongohouse_specs ${test_args})
252-
endif()
253-
254243
set_property(TEST crud_specs APPEND PROPERTY ENVIRONMENT
255244
"CRUD_LEGACY_TESTS_PATH=${DATA_SOURCE_DIR}/crud/legacy"
256245
)

0 commit comments

Comments
 (0)