mongo 2.15.0 → 2.18.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data/README.md +22 -38
- data/lib/mongo/auth/aws/request.rb +0 -1
- data/lib/mongo/auth/base.rb +8 -1
- data/lib/mongo/auth.rb +12 -1
- data/lib/mongo/bulk_write/result.rb +10 -1
- data/lib/mongo/bulk_write/result_combiner.rb +2 -4
- data/lib/mongo/bulk_write.rb +115 -29
- data/lib/mongo/client.rb +182 -22
- data/lib/mongo/client_encryption.rb +113 -10
- data/lib/mongo/cluster/periodic_executor.rb +4 -3
- data/lib/mongo/cluster/reapers/cursor_reaper.rb +98 -43
- data/lib/mongo/cluster/sdam_flow.rb +9 -3
- data/lib/mongo/cluster/topology/base.rb +13 -9
- data/lib/mongo/cluster/topology/load_balanced.rb +102 -0
- data/lib/mongo/cluster/topology.rb +28 -8
- data/lib/mongo/cluster.rb +162 -79
- data/lib/mongo/collection/helpers.rb +43 -0
- data/lib/mongo/collection/queryable_encryption.rb +122 -0
- data/lib/mongo/collection/view/aggregation.rb +68 -22
- data/lib/mongo/collection/view/builder/aggregation.rb +16 -17
- data/lib/mongo/collection/view/builder/map_reduce.rb +15 -49
- data/lib/mongo/collection/view/builder.rb +0 -4
- data/lib/mongo/collection/view/change_stream.rb +66 -20
- data/lib/mongo/collection/view/explainable.rb +1 -1
- data/lib/mongo/collection/view/iterable.rb +64 -30
- data/lib/mongo/collection/view/map_reduce.rb +72 -24
- data/lib/mongo/collection/view/readable.rb +106 -70
- data/lib/mongo/collection/view/writable.rb +296 -177
- data/lib/mongo/collection/view.rb +15 -21
- data/lib/mongo/collection.rb +141 -53
- data/lib/mongo/config/options.rb +62 -0
- data/lib/mongo/config/validators/option.rb +26 -0
- data/lib/mongo/config.rb +42 -0
- data/lib/mongo/crypt/auto_encrypter.rb +136 -14
- data/lib/mongo/crypt/binding.rb +513 -144
- data/lib/mongo/crypt/context.rb +5 -2
- data/lib/mongo/crypt/data_key_context.rb +12 -104
- data/lib/mongo/crypt/encryption_io.rb +94 -60
- data/lib/mongo/crypt/explicit_encrypter.rb +143 -26
- data/lib/mongo/crypt/explicit_encryption_context.rb +25 -2
- data/lib/mongo/crypt/handle.rb +160 -86
- data/lib/mongo/crypt/hooks.rb +25 -2
- data/lib/mongo/crypt/kms/aws.rb +136 -0
- data/lib/mongo/crypt/kms/azure.rb +144 -0
- data/lib/mongo/crypt/kms/credentials.rb +81 -0
- data/lib/mongo/crypt/kms/gcp.rb +189 -0
- data/lib/mongo/crypt/kms/kmip.rb +116 -0
- data/lib/mongo/crypt/kms/local.rb +82 -0
- data/lib/mongo/crypt/kms/master_key_document.rb +65 -0
- data/lib/mongo/crypt/kms.rb +117 -0
- data/lib/mongo/crypt/rewrap_many_data_key_context.rb +46 -0
- data/lib/mongo/crypt/rewrap_many_data_key_result.rb +37 -0
- data/lib/mongo/crypt/status.rb +8 -2
- data/lib/mongo/crypt.rb +3 -0
- data/lib/mongo/cursor/kill_spec.rb +76 -0
- data/lib/mongo/cursor.rb +92 -36
- data/lib/mongo/database/view.rb +11 -6
- data/lib/mongo/database.rb +63 -19
- data/lib/mongo/dbref.rb +1 -105
- data/lib/mongo/error/bad_load_balancer_target.rb +26 -0
- data/lib/mongo/error/bulk_write_error.rb +31 -4
- data/lib/mongo/error/invalid_config_option.rb +20 -0
- data/lib/mongo/error/invalid_replacement_document.rb +27 -9
- data/lib/mongo/error/invalid_update_document.rb +27 -7
- data/lib/mongo/error/labelable.rb +72 -0
- data/lib/mongo/error/missing_connection.rb +25 -0
- data/lib/mongo/error/missing_file_chunk.rb +8 -2
- data/lib/mongo/error/missing_service_id.rb +26 -0
- data/lib/mongo/error/no_service_connection_available.rb +49 -0
- data/lib/mongo/error/notable.rb +14 -0
- data/lib/mongo/error/operation_failure.rb +34 -86
- data/lib/mongo/error/read_write_retryable.rb +108 -0
- data/lib/mongo/error/session_not_materialized.rb +29 -0
- data/lib/mongo/error/snapshot_session_invalid_server_version.rb +31 -0
- data/lib/mongo/error/snapshot_session_transaction_prohibited.rb +30 -0
- data/lib/mongo/error.rb +10 -37
- data/lib/mongo/grid/fs_bucket.rb +21 -2
- data/lib/mongo/grid/stream/read.rb +6 -0
- data/lib/mongo/id.rb +7 -5
- data/lib/mongo/index/view.rb +45 -48
- data/lib/mongo/monitoring/event/cmap/pool_cleared.rb +7 -4
- data/lib/mongo/monitoring/event/command_failed.rb +9 -3
- data/lib/mongo/monitoring/event/command_started.rb +3 -1
- data/lib/mongo/monitoring/event/command_succeeded.rb +9 -2
- data/lib/mongo/monitoring/publishable.rb +11 -7
- data/lib/mongo/operation/aggregate/command.rb +8 -0
- data/lib/mongo/operation/collections_info/result.rb +5 -2
- data/lib/mongo/operation/command/op_msg.rb +6 -0
- data/lib/mongo/operation/context.rb +37 -1
- data/lib/mongo/operation/count/command.rb +6 -0
- data/lib/mongo/operation/count/op_msg.rb +9 -0
- data/lib/mongo/operation/create/command.rb +7 -1
- data/lib/mongo/operation/create/op_msg.rb +10 -0
- data/lib/mongo/operation/create_index/command.rb +17 -1
- data/lib/mongo/operation/create_index/op_msg.rb +18 -4
- data/lib/mongo/operation/delete/command.rb +6 -3
- data/lib/mongo/operation/delete/op_msg.rb +10 -1
- data/lib/mongo/operation/delete.rb +0 -1
- data/lib/mongo/operation/distinct/command.rb +6 -0
- data/lib/mongo/operation/distinct/op_msg.rb +10 -0
- data/lib/mongo/operation/drop_index/op_msg.rb +5 -1
- data/lib/mongo/operation/explain/command.rb +13 -1
- data/lib/mongo/operation/explain/legacy.rb +12 -5
- data/lib/mongo/operation/explain/op_msg.rb +9 -1
- data/lib/mongo/operation/find/builder/command.rb +111 -0
- data/lib/mongo/{collection/view → operation/find}/builder/flags.rb +10 -14
- data/lib/mongo/operation/find/builder/legacy.rb +123 -0
- data/lib/mongo/{collection/view → operation/find}/builder/modifiers.rb +31 -25
- data/lib/mongo/{cursor → operation/find}/builder.rb +4 -4
- data/lib/mongo/operation/find/command.rb +9 -0
- data/lib/mongo/operation/find/legacy.rb +10 -1
- data/lib/mongo/operation/find/op_msg.rb +12 -0
- data/lib/mongo/operation/find.rb +1 -0
- data/lib/mongo/operation/get_more/command.rb +1 -0
- data/lib/mongo/operation/get_more/command_builder.rb +42 -0
- data/lib/mongo/operation/get_more/op_msg.rb +1 -0
- data/lib/mongo/operation/get_more.rb +1 -0
- data/lib/mongo/operation/insert/bulk_result.rb +5 -1
- data/lib/mongo/operation/insert/command.rb +0 -4
- data/lib/mongo/operation/insert/op_msg.rb +6 -3
- data/lib/mongo/operation/insert/result.rb +6 -3
- data/lib/mongo/operation/insert.rb +0 -1
- data/lib/mongo/operation/kill_cursors/command.rb +8 -0
- data/lib/mongo/operation/kill_cursors/{legacy.rb → command_builder.rb} +6 -11
- data/lib/mongo/operation/kill_cursors/op_msg.rb +10 -0
- data/lib/mongo/operation/kill_cursors.rb +1 -1
- data/lib/mongo/operation/list_collections/op_msg.rb +4 -1
- data/lib/mongo/operation/map_reduce/command.rb +8 -0
- data/lib/mongo/operation/map_reduce/op_msg.rb +1 -1
- data/lib/mongo/operation/map_reduce/result.rb +16 -0
- data/lib/mongo/operation/result.rb +27 -5
- data/lib/mongo/operation/shared/executable.rb +36 -3
- data/lib/mongo/operation/shared/polymorphic_operation.rb +15 -3
- data/lib/mongo/operation/shared/read_preference_supported.rb +3 -1
- data/lib/mongo/operation/shared/response_handling.rb +7 -5
- data/lib/mongo/operation/shared/sessions_supported.rb +35 -15
- data/lib/mongo/operation/shared/specifiable.rb +11 -29
- data/lib/mongo/operation/shared/validatable.rb +87 -0
- data/lib/mongo/operation/shared/write.rb +18 -12
- data/lib/mongo/operation/update/command.rb +6 -3
- data/lib/mongo/operation/update/op_msg.rb +9 -4
- data/lib/mongo/operation/update.rb +0 -1
- data/lib/mongo/operation/{delete/legacy.rb → write_command/command.rb} +17 -23
- data/lib/mongo/operation/write_command/op_msg.rb +43 -0
- data/lib/mongo/operation/write_command.rb +32 -0
- data/lib/mongo/operation.rb +10 -0
- data/lib/mongo/protocol/caching_hash.rb +69 -0
- data/lib/mongo/protocol/msg.rb +21 -1
- data/lib/mongo/protocol/query.rb +35 -18
- data/lib/mongo/protocol.rb +1 -0
- data/lib/mongo/query_cache.rb +27 -2
- data/lib/mongo/retryable.rb +78 -30
- data/lib/mongo/server/connection.rb +58 -3
- data/lib/mongo/server/connection_base.rb +14 -1
- data/lib/mongo/server/connection_common.rb +41 -1
- data/lib/mongo/server/connection_pool/generation_manager.rb +71 -0
- data/lib/mongo/server/connection_pool.rb +144 -43
- data/lib/mongo/server/description/features.rb +22 -17
- data/lib/mongo/server/description/load_balancer.rb +33 -0
- data/lib/mongo/server/description.rb +90 -6
- data/lib/mongo/server/monitor/connection.rb +16 -10
- data/lib/mongo/server/monitor.rb +27 -14
- data/lib/mongo/server/pending_connection.rb +47 -31
- data/lib/mongo/server/push_monitor.rb +21 -2
- data/lib/mongo/server.rb +78 -27
- data/lib/mongo/server_selector/base.rb +31 -5
- data/lib/mongo/session/session_pool.rb +19 -0
- data/lib/mongo/session.rb +142 -27
- data/lib/mongo/socket/ocsp_cache.rb +2 -3
- data/lib/mongo/socket/ocsp_verifier.rb +7 -39
- data/lib/mongo/socket/tcp.rb +3 -0
- data/lib/mongo/socket.rb +1 -5
- data/lib/mongo/srv/resolver.rb +24 -3
- data/lib/mongo/uri/options_mapper.rb +3 -0
- data/lib/mongo/uri/srv_protocol.rb +7 -9
- data/lib/mongo/uri.rb +38 -0
- data/lib/mongo/utils.rb +0 -13
- data/lib/mongo/version.rb +1 -1
- data/lib/mongo.rb +22 -0
- data/mongo.gemspec +11 -5
- data/spec/README.md +23 -5
- data/spec/integration/auth_spec.rb +31 -1
- data/spec/integration/awaited_ismaster_spec.rb +1 -1
- data/spec/integration/aws_lambda_examples_spec.rb +68 -0
- data/spec/integration/bulk_write_error_message_spec.rb +32 -0
- data/spec/integration/bulk_write_spec.rb +17 -1
- data/spec/integration/change_stream_spec.rb +9 -8
- data/spec/integration/client_construction_spec.rb +128 -8
- data/spec/integration/client_side_encryption/auto_encryption_bulk_writes_spec.rb +10 -10
- data/spec/integration/client_side_encryption/auto_encryption_command_monitoring_spec.rb +169 -169
- data/spec/integration/client_side_encryption/auto_encryption_mongocryptd_spawn_spec.rb +0 -1
- data/spec/integration/client_side_encryption/auto_encryption_reconnect_spec.rb +31 -0
- data/spec/integration/client_side_encryption/auto_encryption_spec.rb +108 -1
- data/spec/integration/client_side_encryption/bson_size_limit_spec.rb +3 -3
- data/spec/integration/client_side_encryption/bypass_mongocryptd_spawn_spec.rb +2 -2
- data/spec/integration/client_side_encryption/client_close_spec.rb +1 -1
- data/spec/integration/client_side_encryption/corpus_spec.rb +64 -35
- data/spec/integration/client_side_encryption/custom_endpoint_spec.rb +39 -42
- data/spec/integration/client_side_encryption/data_key_spec.rb +98 -8
- data/spec/integration/client_side_encryption/decryption_events_prose_spec.rb +158 -0
- data/spec/integration/client_side_encryption/explicit_encryption_spec.rb +59 -0
- data/spec/integration/client_side_encryption/explicit_queryable_encryption_spec.rb +147 -0
- data/spec/integration/client_side_encryption/external_key_vault_spec.rb +6 -6
- data/spec/integration/client_side_encryption/kms_tls_options_spec.rb +436 -0
- data/spec/integration/client_side_encryption/kms_tls_spec.rb +92 -0
- data/spec/integration/client_side_encryption/queryable_encryption_examples_spec.rb +111 -0
- data/spec/integration/client_side_encryption/unique_index_on_key_alt_names_prose_spec.rb +85 -0
- data/spec/integration/client_side_encryption/views_spec.rb +1 -1
- data/spec/integration/client_spec.rb +2 -0
- data/spec/integration/client_update_spec.rb +2 -2
- data/spec/integration/command_monitoring_spec.rb +1 -1
- data/spec/integration/command_spec.rb +1 -1
- data/spec/integration/connection_spec.rb +52 -35
- data/spec/integration/crud_spec.rb +186 -1
- data/spec/integration/cursor_pinning_spec.rb +121 -0
- data/spec/integration/cursor_reaping_spec.rb +8 -4
- data/spec/integration/fork_reconnect_spec.rb +16 -13
- data/spec/integration/get_more_spec.rb +1 -1
- data/spec/integration/grid_fs_bucket_spec.rb +3 -3
- data/spec/integration/heartbeat_events_spec.rb +1 -1
- data/spec/integration/map_reduce_spec.rb +77 -0
- data/spec/integration/ocsp_verifier_spec.rb +3 -0
- data/spec/integration/query_cache_spec.rb +240 -32
- data/spec/integration/query_cache_transactions_spec.rb +1 -1
- data/spec/integration/read_concern_spec.rb +1 -1
- data/spec/integration/read_preference_spec.rb +17 -13
- data/spec/integration/reconnect_spec.rb +32 -12
- data/spec/integration/retryable_errors_spec.rb +1 -1
- data/spec/integration/retryable_writes/retryable_writes_36_and_older_spec.rb +2 -2
- data/spec/integration/retryable_writes/retryable_writes_40_and_newer_spec.rb +1 -1
- data/spec/integration/sdam_error_handling_spec.rb +5 -3
- data/spec/integration/sdam_events_spec.rb +75 -19
- data/spec/integration/sdam_prose_spec.rb +1 -1
- data/spec/integration/server_monitor_spec.rb +3 -1
- data/spec/integration/server_selector_spec.rb +22 -5
- data/spec/integration/server_spec.rb +2 -0
- data/spec/integration/size_limit_spec.rb +4 -1
- data/spec/integration/snapshot_query_examples_spec.rb +127 -0
- data/spec/integration/srv_monitoring_spec.rb +39 -1
- data/spec/integration/srv_spec.rb +1 -0
- data/spec/integration/step_down_spec.rb +21 -5
- data/spec/integration/transaction_pinning_spec.rb +120 -0
- data/spec/integration/versioned_api_examples_spec.rb +52 -1
- data/spec/integration/x509_auth_spec.rb +1 -1
- data/spec/lite_spec_helper.rb +27 -11
- data/spec/mongo/address/ipv6_spec.rb +7 -0
- data/spec/mongo/address/unix_spec.rb +1 -0
- data/spec/mongo/address_spec.rb +7 -0
- data/spec/mongo/auth/cr_spec.rb +2 -3
- data/spec/mongo/auth/ldap_spec.rb +2 -3
- data/spec/mongo/auth/scram/conversation_spec.rb +23 -23
- data/spec/mongo/auth/scram256/conversation_spec.rb +20 -20
- data/spec/mongo/auth/scram_negotiation_spec.rb +1 -0
- data/spec/mongo/auth/scram_spec.rb +2 -3
- data/spec/mongo/auth/user/view_spec.rb +1 -1
- data/spec/mongo/auth/x509_spec.rb +2 -3
- data/spec/mongo/bulk_write/result_spec.rb +15 -1
- data/spec/mongo/bulk_write_spec.rb +144 -23
- data/spec/mongo/client_construction_spec.rb +443 -35
- data/spec/mongo/client_encryption_spec.rb +10 -22
- data/spec/mongo/client_spec.rb +303 -5
- data/spec/mongo/cluster/cursor_reaper_spec.rb +63 -23
- data/spec/mongo/cluster/periodic_executor_spec.rb +3 -1
- data/spec/mongo/cluster_spec.rb +33 -36
- data/spec/mongo/collection/view/aggregation_spec.rb +178 -83
- data/spec/mongo/collection/view/builder/find_command_spec.rb +4 -0
- data/spec/mongo/collection/view/builder/op_query_spec.rb +4 -0
- data/spec/mongo/collection/view/change_stream_spec.rb +2 -2
- data/spec/mongo/collection/view/map_reduce_spec.rb +31 -2
- data/spec/mongo/collection/view/readable_spec.rb +661 -1
- data/spec/mongo/collection/view/writable_spec.rb +144 -32
- data/spec/mongo/collection_crud_spec.rb +70 -15
- data/spec/mongo/collection_ddl_spec.rb +1 -1
- data/spec/mongo/collection_spec.rb +33 -1
- data/spec/mongo/config/options_spec.rb +75 -0
- data/spec/mongo/config_spec.rb +73 -0
- data/spec/mongo/crypt/auto_decryption_context_spec.rb +17 -1
- data/spec/mongo/crypt/auto_encrypter_spec.rb +256 -5
- data/spec/mongo/crypt/auto_encryption_context_spec.rb +17 -1
- data/spec/mongo/crypt/binding/context_spec.rb +67 -17
- data/spec/mongo/crypt/binding/mongocrypt_spec.rb +17 -46
- data/spec/mongo/crypt/binding/version_spec.rb +33 -0
- data/spec/mongo/crypt/binding_unloaded_spec.rb +14 -0
- data/spec/mongo/crypt/data_key_context_spec.rb +42 -114
- data/spec/mongo/crypt/encryption_io_spec.rb +2 -0
- data/spec/mongo/crypt/explicit_decryption_context_spec.rb +32 -1
- data/spec/mongo/crypt/explicit_encryption_context_spec.rb +94 -1
- data/spec/mongo/crypt/handle_spec.rb +172 -156
- data/spec/mongo/crypt/hooks_spec.rb +30 -0
- data/spec/mongo/crypt/kms/credentials_spec.rb +357 -0
- data/spec/mongo/crypt/kms_spec.rb +59 -0
- data/spec/mongo/cursor/builder/get_more_command_spec.rb +4 -0
- data/spec/mongo/cursor/builder/op_get_more_spec.rb +4 -0
- data/spec/mongo/cursor_spec.rb +104 -7
- data/spec/mongo/database_spec.rb +81 -16
- data/spec/mongo/error/operation_failure_heavy_spec.rb +50 -1
- data/spec/mongo/grid/fs_bucket_spec.rb +18 -12
- data/spec/mongo/grid/stream/write_spec.rb +3 -9
- data/spec/mongo/grid/stream_spec.rb +1 -1
- data/spec/mongo/index/view_spec.rb +127 -2
- data/spec/mongo/operation/create/op_msg_spec.rb +244 -0
- data/spec/mongo/operation/delete/op_msg_spec.rb +14 -5
- data/spec/mongo/operation/delete_spec.rb +0 -30
- data/spec/mongo/{collection/view → operation/find}/builder/flags_spec.rb +2 -2
- data/spec/mongo/{collection/view → operation/find}/builder/modifiers_spec.rb +2 -2
- data/spec/mongo/operation/find/legacy_spec.rb +1 -0
- data/spec/mongo/operation/insert/bulk_spec.rb +1 -1
- data/spec/mongo/operation/insert/op_msg_spec.rb +19 -11
- data/spec/mongo/operation/insert_spec.rb +0 -32
- data/spec/mongo/operation/read_preference_legacy_spec.rb +4 -0
- data/spec/mongo/operation/read_preference_op_msg_spec.rb +26 -1
- data/spec/mongo/operation/result_spec.rb +20 -0
- data/spec/mongo/operation/update/bulk_spec.rb +1 -1
- data/spec/mongo/operation/update/op_msg_spec.rb +14 -5
- data/spec/mongo/operation/update_spec.rb +0 -29
- data/spec/mongo/protocol/caching_hash_spec.rb +82 -0
- data/spec/mongo/protocol/msg_spec.rb +41 -0
- data/spec/mongo/query_cache_spec.rb +172 -2
- data/spec/mongo/retryable_spec.rb +32 -3
- data/spec/mongo/server/connection_auth_spec.rb +3 -1
- data/spec/mongo/server/connection_common_spec.rb +76 -13
- data/spec/mongo/server/connection_pool_spec.rb +178 -45
- data/spec/mongo/server/connection_spec.rb +186 -200
- data/spec/mongo/server/description/features_spec.rb +24 -0
- data/spec/mongo/server/description_spec.rb +1 -1
- data/spec/mongo/server/monitor/connection_spec.rb +22 -0
- data/spec/mongo/server/monitor_spec.rb +4 -3
- data/spec/mongo/server/push_monitor_spec.rb +95 -0
- data/spec/mongo/server_selector_spec.rb +136 -15
- data/spec/mongo/session/session_pool_spec.rb +42 -10
- data/spec/mongo/session_spec.rb +26 -6
- data/spec/mongo/session_transaction_spec.rb +15 -29
- data/spec/mongo/socket/ssl_spec.rb +42 -63
- data/spec/mongo/socket/unix_spec.rb +1 -0
- data/spec/mongo/uri/srv_protocol_spec.rb +101 -2
- data/spec/mongo/uri_option_parsing_spec.rb +38 -5
- data/spec/mongo/uri_spec.rb +25 -0
- data/spec/mongo/utils_spec.rb +0 -14
- data/spec/runners/auth.rb +1 -1
- data/spec/runners/change_streams/spec.rb +1 -1
- data/spec/runners/change_streams/test.rb +1 -1
- data/spec/runners/cmap.rb +2 -2
- data/spec/runners/command_monitoring.rb +1 -1
- data/spec/runners/connection_string.rb +16 -4
- data/spec/runners/crud/operation.rb +17 -6
- data/spec/runners/crud/requirement.rb +10 -4
- data/spec/runners/crud/spec.rb +6 -3
- data/spec/runners/crud/test.rb +1 -1
- data/spec/runners/crud/verifier.rb +7 -2
- data/spec/runners/crud.rb +1 -1
- data/spec/runners/gridfs.rb +1 -1
- data/spec/runners/read_write_concern_document.rb +1 -1
- data/spec/runners/sdam.rb +3 -2
- data/spec/runners/server_selection.rb +1 -1
- data/spec/runners/server_selection_rtt.rb +1 -1
- data/spec/runners/transactions/spec.rb +2 -2
- data/spec/runners/transactions/test.rb +21 -18
- data/spec/runners/transactions.rb +11 -8
- data/spec/runners/unified/assertions.rb +95 -15
- data/spec/runners/unified/change_stream_operations.rb +12 -0
- data/spec/runners/unified/client_side_encryption_operations.rb +83 -0
- data/spec/runners/unified/crud_operations.rb +143 -26
- data/spec/runners/unified/ddl_operations.rb +74 -1
- data/spec/runners/unified/entity_map.rb +3 -3
- data/spec/runners/unified/error.rb +2 -1
- data/spec/runners/unified/event_subscriber.rb +2 -2
- data/spec/runners/unified/grid_fs_operations.rb +21 -0
- data/spec/runners/unified/support_operations.rb +21 -5
- data/spec/runners/unified/test.rb +96 -8
- data/spec/runners/unified/test_group.rb +1 -1
- data/spec/runners/unified.rb +10 -3
- data/spec/shared/lib/mrss/cluster_config.rb +6 -1
- data/spec/shared/lib/mrss/constraints.rb +21 -22
- data/spec/shared/lib/mrss/docker_runner.rb +23 -3
- data/spec/shared/lib/mrss/eg_config_utils.rb +51 -0
- data/spec/shared/lib/mrss/event_subscriber.rb +210 -0
- data/spec/shared/lib/mrss/lite_constraints.rb +40 -1
- data/spec/shared/lib/mrss/server_version_registry.rb +17 -12
- data/spec/shared/lib/mrss/session_registry.rb +69 -0
- data/spec/shared/lib/mrss/session_registry_legacy.rb +60 -0
- data/spec/shared/share/Dockerfile.erb +61 -58
- data/spec/shared/shlib/config.sh +27 -0
- data/spec/shared/shlib/distro.sh +2 -1
- data/spec/shared/shlib/server.sh +114 -39
- data/spec/shared/shlib/set_env.sh +43 -5
- data/spec/solo/clean_exit_spec.rb +5 -0
- data/spec/spec_helper.rb +0 -1
- data/spec/spec_tests/client_side_encryption_spec.rb +1 -1
- data/spec/spec_tests/client_side_encryption_unified_spec.rb +16 -0
- data/spec/spec_tests/cmap_spec.rb +4 -1
- data/spec/spec_tests/crud_spec.rb +0 -10
- data/spec/spec_tests/data/change_streams_unified/change-streams-errors.yml +124 -0
- data/spec/spec_tests/data/change_streams_unified/change-streams-pre_and_post_images.yml +351 -0
- data/spec/spec_tests/data/change_streams_unified/change-streams-resume-allowlist.yml +1171 -0
- data/spec/spec_tests/data/change_streams_unified/change-streams-resume-errorLabels.yml +1071 -0
- data/spec/spec_tests/data/change_streams_unified/change-streams-showExpandedEvents.yml +298 -0
- data/spec/spec_tests/data/change_streams_unified/change-streams.yml +859 -4
- data/spec/spec_tests/data/client_side_encryption/aggregate.yml +3 -17
- data/spec/spec_tests/data/client_side_encryption/azureKMS.yml +46 -0
- data/spec/spec_tests/data/client_side_encryption/badQueries.yml +12 -2
- data/spec/spec_tests/data/client_side_encryption/basic.yml +3 -17
- data/spec/spec_tests/data/client_side_encryption/bulk.yml +1 -8
- data/spec/spec_tests/data/client_side_encryption/bypassAutoEncryption.yml +2 -2
- data/spec/spec_tests/data/client_side_encryption/count.yml +1 -8
- data/spec/spec_tests/data/client_side_encryption/countDocuments.yml +1 -8
- data/spec/spec_tests/data/client_side_encryption/create-and-createIndexes.yml +58 -0
- data/spec/spec_tests/data/client_side_encryption/delete.yml +2 -16
- data/spec/spec_tests/data/client_side_encryption/distinct.yml +1 -8
- data/spec/spec_tests/data/client_side_encryption/explain.yml +1 -8
- data/spec/spec_tests/data/client_side_encryption/find.yml +2 -16
- data/spec/spec_tests/data/client_side_encryption/findOneAndDelete.yml +1 -8
- data/spec/spec_tests/data/client_side_encryption/findOneAndReplace.yml +1 -8
- data/spec/spec_tests/data/client_side_encryption/findOneAndUpdate.yml +1 -8
- data/spec/spec_tests/data/client_side_encryption/fle2-BypassQueryAnalysis.yml +101 -0
- data/spec/spec_tests/data/client_side_encryption/fle2-Compact.yml +80 -0
- data/spec/spec_tests/data/client_side_encryption/fle2-CreateCollection.yml +1263 -0
- data/spec/spec_tests/data/client_side_encryption/fle2-DecryptExistingData.yml +64 -0
- data/spec/spec_tests/data/client_side_encryption/fle2-Delete.yml +107 -0
- data/spec/spec_tests/data/client_side_encryption/fle2-EncryptedFields-vs-EncryptedFieldsMap.yml +80 -0
- data/spec/spec_tests/data/client_side_encryption/fle2-EncryptedFields-vs-jsonSchema.yml +90 -0
- data/spec/spec_tests/data/client_side_encryption/fle2-EncryptedFieldsMap-defaults.yml +57 -0
- data/spec/spec_tests/data/client_side_encryption/fle2-FindOneAndUpdate.yml +213 -0
- data/spec/spec_tests/data/client_side_encryption/fle2-InsertFind-Indexed.yml +86 -0
- data/spec/spec_tests/data/client_side_encryption/fle2-InsertFind-Unindexed.yml +83 -0
- data/spec/spec_tests/data/client_side_encryption/fle2-MissingKey.yml +41 -0
- data/spec/spec_tests/data/client_side_encryption/fle2-NoEncryption.yml +42 -0
- data/spec/spec_tests/data/client_side_encryption/fle2-Update.yml +221 -0
- data/spec/spec_tests/data/client_side_encryption/fle2-validatorAndPartialFieldExpression.yml +168 -0
- data/spec/spec_tests/data/client_side_encryption/gcpKMS.yml +46 -0
- data/spec/spec_tests/data/client_side_encryption/getMore.yml +1 -8
- data/spec/spec_tests/data/client_side_encryption/insert.yml +2 -16
- data/spec/spec_tests/data/client_side_encryption/keyAltName.yml +1 -8
- data/spec/spec_tests/data/client_side_encryption/localKMS.yml +1 -8
- data/spec/spec_tests/data/client_side_encryption/localSchema.yml +1 -8
- data/spec/spec_tests/data/client_side_encryption/maxWireVersion.yml +2 -0
- data/spec/spec_tests/data/client_side_encryption/missingKey.yml +2 -9
- data/spec/spec_tests/data/client_side_encryption/noSchema.yml +39 -0
- data/spec/spec_tests/data/client_side_encryption/replaceOne.yml +1 -8
- data/spec/spec_tests/data/client_side_encryption/types.yml +44 -70
- data/spec/spec_tests/data/client_side_encryption/unified/addKeyAltName.yml +194 -0
- data/spec/spec_tests/data/client_side_encryption/unified/createDataKey-kms_providers-invalid.yml +67 -0
- data/spec/spec_tests/data/client_side_encryption/unified/createDataKey.yml +309 -0
- data/spec/spec_tests/data/client_side_encryption/unified/deleteKey.yml +159 -0
- data/spec/spec_tests/data/client_side_encryption/unified/getKey.yml +105 -0
- data/spec/spec_tests/data/client_side_encryption/unified/getKeyByAltName.yml +104 -0
- data/spec/spec_tests/data/client_side_encryption/unified/getKeys.yml +122 -0
- data/spec/spec_tests/data/client_side_encryption/unified/removeKeyAltName.yml +157 -0
- data/spec/spec_tests/data/client_side_encryption/unified/rewrapManyDataKey-decrypt_failure.yml +69 -0
- data/spec/spec_tests/data/client_side_encryption/unified/rewrapManyDataKey-encrypt_failure.yml +122 -0
- data/spec/spec_tests/data/client_side_encryption/unified/rewrapManyDataKey.yml +432 -0
- data/spec/spec_tests/data/client_side_encryption/updateMany.yml +1 -8
- data/spec/spec_tests/data/client_side_encryption/updateOne.yml +1 -8
- data/spec/spec_tests/data/client_side_encryption/validatorAndPartialFieldExpression.yml +166 -0
- data/spec/spec_tests/data/collection_management/clustered-indexes.yml +135 -0
- data/spec/spec_tests/data/collection_management/createCollection-pre_and_post_images.yml +50 -0
- data/spec/spec_tests/data/collection_management/modifyCollection-pre_and_post_images.yml +58 -0
- data/spec/spec_tests/data/command_monitoring_unified/bulkWrite.yml +68 -0
- data/spec/spec_tests/data/command_monitoring_unified/command.yml +50 -0
- data/spec/spec_tests/data/command_monitoring_unified/deleteMany.yml +79 -0
- data/spec/spec_tests/data/command_monitoring_unified/deleteOne.yml +79 -0
- data/spec/spec_tests/data/command_monitoring_unified/find.yml +254 -0
- data/spec/spec_tests/data/command_monitoring_unified/insertMany.yml +79 -0
- data/spec/spec_tests/data/command_monitoring_unified/insertOne.yml +77 -0
- data/spec/spec_tests/data/command_monitoring_unified/pre-42-server-connection-id.yml +56 -0
- data/spec/spec_tests/data/command_monitoring_unified/server-connection-id.yml +56 -0
- data/spec/spec_tests/data/command_monitoring_unified/unacknowledgedBulkWrite.yml +55 -0
- data/spec/spec_tests/data/command_monitoring_unified/updateMany.yml +87 -0
- data/spec/spec_tests/data/command_monitoring_unified/updateOne.yml +118 -0
- data/spec/spec_tests/data/crud/read/aggregate-collation.yml +2 -1
- data/spec/spec_tests/data/crud/read/aggregate-out.yml +1 -0
- data/spec/spec_tests/data/crud/read/count-collation.yml +2 -1
- data/spec/spec_tests/data/crud/read/distinct-collation.yml +2 -1
- data/spec/spec_tests/data/crud/read/find-collation.yml +2 -1
- data/spec/spec_tests/data/crud/write/bulkWrite-collation.yml +2 -1
- data/spec/spec_tests/data/crud/write/deleteMany-collation.yml +2 -1
- data/spec/spec_tests/data/crud/write/deleteOne-collation.yml +2 -1
- data/spec/spec_tests/data/crud/write/findOneAndDelete-collation.yml +3 -2
- data/spec/spec_tests/data/crud/write/findOneAndReplace-collation.yml +2 -1
- data/spec/spec_tests/data/crud/write/findOneAndUpdate-collation.yml +3 -2
- data/spec/spec_tests/data/crud/write/replaceOne-collation.yml +3 -2
- data/spec/spec_tests/data/crud/write/updateMany-collation.yml +2 -1
- data/spec/spec_tests/data/crud/write/updateOne-collation.yml +2 -1
- data/spec/spec_tests/data/crud_unified/aggregate-allowdiskuse.yml +75 -0
- data/spec/spec_tests/data/crud_unified/aggregate-let.yml +138 -0
- data/spec/spec_tests/data/crud_unified/aggregate-merge.yml +185 -0
- data/spec/spec_tests/data/crud_unified/aggregate-out-readConcern.yml +171 -0
- data/spec/spec_tests/data/crud_unified/aggregate-write-readPreference.yml +155 -0
- data/spec/spec_tests/data/crud_unified/aggregate.yml +215 -0
- data/spec/spec_tests/data/crud_unified/bulkWrite-arrayFilters-clientError.yml +98 -0
- data/spec/spec_tests/data/crud_unified/bulkWrite-arrayFilters.yml +174 -0
- data/spec/spec_tests/data/crud_unified/bulkWrite-comment.yml +189 -0
- data/spec/spec_tests/data/crud_unified/bulkWrite-delete-hint-clientError.yml +113 -0
- data/spec/spec_tests/data/crud_unified/bulkWrite-delete-hint-serverError.yml +142 -0
- data/spec/spec_tests/data/crud_unified/bulkWrite-delete-hint.yml +154 -0
- data/spec/spec_tests/data/crud_unified/bulkWrite-deleteMany-hint-unacknowledged.yml +98 -0
- data/spec/spec_tests/data/crud_unified/bulkWrite-deleteMany-let.yml +86 -0
- data/spec/spec_tests/data/crud_unified/bulkWrite-deleteOne-hint-unacknowledged.yml +97 -0
- data/spec/spec_tests/data/crud_unified/bulkWrite-deleteOne-let.yml +86 -0
- data/spec/spec_tests/data/crud_unified/bulkWrite-insertOne-dots_and_dollars.yml +138 -0
- data/spec/spec_tests/data/crud_unified/bulkWrite-replaceOne-dots_and_dollars.yml +165 -0
- data/spec/spec_tests/data/crud_unified/bulkWrite-replaceOne-hint-unacknowledged.yml +103 -0
- data/spec/spec_tests/data/crud_unified/bulkWrite-replaceOne-let.yml +93 -0
- data/spec/spec_tests/data/crud_unified/bulkWrite-update-hint-clientError.yml +148 -0
- data/spec/spec_tests/data/crud_unified/bulkWrite-update-hint-serverError.yml +239 -0
- data/spec/spec_tests/data/crud_unified/bulkWrite-update-hint.yml +256 -0
- data/spec/spec_tests/data/crud_unified/bulkWrite-update-validation.yml +73 -0
- data/spec/spec_tests/data/crud_unified/bulkWrite-updateMany-dots_and_dollars.yml +150 -0
- data/spec/spec_tests/data/crud_unified/bulkWrite-updateMany-hint-unacknowledged.yml +104 -0
- data/spec/spec_tests/data/crud_unified/bulkWrite-updateMany-let.yml +96 -0
- data/spec/spec_tests/data/crud_unified/bulkWrite-updateOne-dots_and_dollars.yml +150 -0
- data/spec/spec_tests/data/crud_unified/bulkWrite-updateOne-hint-unacknowledged.yml +103 -0
- data/spec/spec_tests/data/crud_unified/bulkWrite-updateOne-let.yml +95 -0
- data/spec/spec_tests/data/crud_unified/countDocuments-comment.yml +92 -0
- data/spec/spec_tests/data/crud_unified/db-aggregate-write-readPreference.yml +151 -0
- data/spec/spec_tests/data/crud_unified/db-aggregate.yml +73 -0
- data/spec/spec_tests/data/crud_unified/deleteMany-comment.yml +97 -0
- data/spec/spec_tests/data/crud_unified/deleteMany-hint-clientError.yml +87 -0
- data/spec/spec_tests/data/crud_unified/deleteMany-hint-serverError.yml +107 -0
- data/spec/spec_tests/data/crud_unified/deleteMany-hint-unacknowledged.yml +90 -0
- data/spec/spec_tests/data/crud_unified/deleteMany-hint.yml +99 -0
- data/spec/spec_tests/data/crud_unified/deleteMany-let.yml +93 -0
- data/spec/spec_tests/data/crud_unified/deleteOne-comment.yml +98 -0
- data/spec/spec_tests/data/crud_unified/deleteOne-hint-clientError.yml +80 -0
- data/spec/spec_tests/data/crud_unified/deleteOne-hint-serverError.yml +100 -0
- data/spec/spec_tests/data/crud_unified/deleteOne-hint-unacknowledged.yml +89 -0
- data/spec/spec_tests/data/crud_unified/deleteOne-hint.yml +95 -0
- data/spec/spec_tests/data/crud_unified/deleteOne-let.yml +91 -0
- data/spec/spec_tests/data/crud_unified/distinct-comment.yml +98 -0
- data/spec/spec_tests/data/crud_unified/estimatedDocumentCount-comment.yml +95 -0
- data/spec/spec_tests/data/crud_unified/estimatedDocumentCount.yml +5 -135
- data/spec/spec_tests/data/crud_unified/find-allowdiskuse-clientError.yml +55 -0
- data/spec/spec_tests/data/crud_unified/find-allowdiskuse-serverError.yml +68 -0
- data/spec/spec_tests/data/crud_unified/find-allowdiskuse.yml +79 -0
- data/spec/spec_tests/data/crud_unified/find-comment.yml +166 -0
- data/spec/spec_tests/data/crud_unified/find-let.yml +71 -0
- data/spec/spec_tests/data/crud_unified/find.yml +68 -0
- data/spec/spec_tests/data/crud_unified/findOneAndDelete-comment.yml +96 -0
- data/spec/spec_tests/data/crud_unified/findOneAndDelete-hint-clientError.yml +91 -0
- data/spec/spec_tests/data/crud_unified/findOneAndDelete-hint-serverError.yml +107 -0
- data/spec/spec_tests/data/crud_unified/findOneAndDelete-hint-unacknowledged.yml +88 -0
- data/spec/spec_tests/data/crud_unified/findOneAndDelete-hint.yml +102 -0
- data/spec/spec_tests/data/crud_unified/findOneAndDelete-let.yml +86 -0
- data/spec/spec_tests/data/crud_unified/findOneAndReplace-comment.yml +101 -0
- data/spec/spec_tests/data/crud_unified/findOneAndReplace-dots_and_dollars.yml +140 -0
- data/spec/spec_tests/data/crud_unified/findOneAndReplace-hint-clientError.yml +83 -0
- data/spec/spec_tests/data/crud_unified/findOneAndReplace-hint-serverError.yml +99 -0
- data/spec/spec_tests/data/crud_unified/findOneAndReplace-hint-unacknowledged.yml +96 -0
- data/spec/spec_tests/data/crud_unified/findOneAndReplace-hint.yml +98 -0
- data/spec/spec_tests/data/crud_unified/findOneAndReplace-let.yml +94 -0
- data/spec/spec_tests/data/crud_unified/findOneAndUpdate-comment.yml +95 -0
- data/spec/spec_tests/data/crud_unified/findOneAndUpdate-dots_and_dollars.yml +127 -0
- data/spec/spec_tests/data/crud_unified/findOneAndUpdate-hint-clientError.yml +84 -0
- data/spec/spec_tests/data/crud_unified/findOneAndUpdate-hint-serverError.yml +100 -0
- data/spec/spec_tests/data/crud_unified/findOneAndUpdate-hint-unacknowledged.yml +92 -0
- data/spec/spec_tests/data/crud_unified/findOneAndUpdate-hint.yml +99 -0
- data/spec/spec_tests/data/crud_unified/findOneAndUpdate-let.yml +96 -0
- data/spec/spec_tests/data/crud_unified/insertMany-comment.yml +93 -0
- data/spec/spec_tests/data/crud_unified/insertMany-dots_and_dollars.yml +128 -0
- data/spec/spec_tests/data/crud_unified/insertOne-comment.yml +91 -0
- data/spec/spec_tests/data/crud_unified/insertOne-dots_and_dollars.yml +238 -0
- data/spec/spec_tests/data/crud_unified/replaceOne-comment.yml +105 -0
- data/spec/spec_tests/data/crud_unified/replaceOne-dots_and_dollars.yml +180 -0
- data/spec/spec_tests/data/crud_unified/replaceOne-hint-unacknowledged.yml +95 -0
- data/spec/spec_tests/data/crud_unified/replaceOne-hint.yml +108 -0
- data/spec/spec_tests/data/crud_unified/replaceOne-let.yml +98 -0
- data/spec/spec_tests/data/crud_unified/replaceOne-validation.yml +37 -0
- data/spec/spec_tests/data/crud_unified/updateMany-comment.yml +104 -0
- data/spec/spec_tests/data/crud_unified/updateMany-dots_and_dollars.yml +138 -0
- data/spec/spec_tests/data/crud_unified/updateMany-hint-clientError.yml +91 -0
- data/spec/spec_tests/data/crud_unified/updateMany-hint-serverError.yml +115 -0
- data/spec/spec_tests/data/crud_unified/updateMany-hint-unacknowledged.yml +96 -0
- data/spec/spec_tests/data/crud_unified/updateMany-hint.yml +115 -0
- data/spec/spec_tests/data/crud_unified/updateMany-let.yml +107 -0
- data/spec/spec_tests/data/crud_unified/updateMany-validation.yml +39 -0
- data/spec/spec_tests/data/crud_unified/updateOne-comment.yml +104 -0
- data/spec/spec_tests/data/crud_unified/updateOne-dots_and_dollars.yml +138 -0
- data/spec/spec_tests/data/crud_unified/updateOne-hint-clientError.yml +85 -0
- data/spec/spec_tests/data/crud_unified/updateOne-hint-serverError.yml +109 -0
- data/spec/spec_tests/data/crud_unified/updateOne-hint-unacknowledged.yml +95 -0
- data/spec/spec_tests/data/crud_unified/updateOne-hint.yml +109 -0
- data/spec/spec_tests/data/crud_unified/updateOne-let.yml +102 -0
- data/spec/spec_tests/data/crud_unified/updateOne-validation.yml +37 -0
- data/spec/spec_tests/data/crud_unified/updateWithPipelines.yml +8 -14
- data/spec/spec_tests/data/gridfs_unified/delete.yml +198 -0
- data/spec/spec_tests/data/gridfs_unified/download.yml +241 -0
- data/spec/spec_tests/data/gridfs_unified/downloadByName.yml +159 -0
- data/spec/spec_tests/data/gridfs_unified/upload-disableMD5.yml +92 -0
- data/spec/spec_tests/data/gridfs_unified/upload.yml +288 -0
- data/spec/spec_tests/data/load_balancers/event-monitoring.yml +99 -0
- data/spec/spec_tests/data/load_balancers/lb-connection-establishment.yml +36 -0
- data/spec/spec_tests/data/load_balancers/non-lb-connection-establishment.yml +56 -0
- data/spec/spec_tests/data/load_balancers/server-selection.yml +50 -0
- data/spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/DefaultNoMaxStaleness.yml +2 -2
- data/spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/LastUpdateTime.yml +3 -3
- data/spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/Nearest.yml +3 -3
- data/spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/Nearest2.yml +3 -3
- data/spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/PrimaryPreferred.yml +2 -2
- data/spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/PrimaryPreferred_tags.yml +2 -2
- data/spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/Secondary.yml +4 -4
- data/spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/SecondaryPreferred.yml +2 -2
- data/spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/SecondaryPreferred_tags.yml +4 -4
- data/spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/ZeroMaxStaleness.yml +2 -2
- data/spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/DefaultNoMaxStaleness.yml +2 -2
- data/spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/LastUpdateTime.yml +3 -3
- data/spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/LongHeartbeat.yml +2 -2
- data/spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/LongHeartbeat2.yml +2 -2
- data/spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/MaxStalenessTooSmall.yml +2 -2
- data/spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/MaxStalenessWithModePrimary.yml +2 -2
- data/spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/Nearest.yml +3 -3
- data/spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/Nearest2.yml +3 -3
- data/spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/Nearest_tags.yml +2 -2
- data/spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/PrimaryPreferred.yml +2 -2
- data/spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/SecondaryPreferred.yml +2 -2
- data/spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/SecondaryPreferred_tags.yml +5 -5
- data/spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/SecondaryPreferred_tags2.yml +3 -3
- data/spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/Secondary_tags.yml +5 -5
- data/spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/Secondary_tags2.yml +3 -3
- data/spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/ZeroMaxStaleness.yml +2 -2
- data/spec/spec_tests/data/max_staleness/Sharded/SmallMaxStaleness.yml +2 -2
- data/spec/spec_tests/data/max_staleness/Single/SmallMaxStaleness.yml +1 -1
- data/spec/spec_tests/data/max_staleness/Unknown/SmallMaxStaleness.yml +1 -1
- data/spec/spec_tests/data/retryable_reads/{changeStreams-client.watch-serverErrors.yml → legacy/changeStreams-client.watch-serverErrors.yml} +1 -1
- data/spec/spec_tests/data/retryable_reads/{changeStreams-client.watch.yml → legacy/changeStreams-client.watch.yml} +1 -1
- data/spec/spec_tests/data/retryable_reads/{changeStreams-db.coll.watch-serverErrors.yml → legacy/changeStreams-db.coll.watch-serverErrors.yml} +1 -1
- data/spec/spec_tests/data/retryable_reads/{changeStreams-db.coll.watch.yml → legacy/changeStreams-db.coll.watch.yml} +1 -1
- data/spec/spec_tests/data/retryable_reads/{changeStreams-db.watch-serverErrors.yml → legacy/changeStreams-db.watch-serverErrors.yml} +1 -1
- data/spec/spec_tests/data/retryable_reads/{changeStreams-db.watch.yml → legacy/changeStreams-db.watch.yml} +1 -1
- data/spec/spec_tests/data/retryable_reads/{estimatedDocumentCount-serverErrors-pre4.9.yml → legacy/estimatedDocumentCount-serverErrors.yml} +0 -2
- data/spec/spec_tests/data/retryable_reads/{estimatedDocumentCount-pre4.9.yml → legacy/estimatedDocumentCount.yml} +0 -2
- data/spec/spec_tests/data/retryable_reads/{mapReduce.yml → legacy/mapReduce.yml} +3 -1
- data/spec/spec_tests/data/retryable_reads/unified/handshakeError.yml +129 -0
- data/spec/spec_tests/data/retryable_writes/{bulkWrite-serverErrors.yml → legacy/bulkWrite-serverErrors.yml} +1 -1
- data/spec/spec_tests/data/retryable_writes/{deleteOne-serverErrors.yml → legacy/deleteOne-serverErrors.yml} +1 -1
- data/spec/spec_tests/data/retryable_writes/{findOneAndDelete-serverErrors.yml → legacy/findOneAndDelete-serverErrors.yml} +1 -1
- data/spec/spec_tests/data/retryable_writes/{findOneAndReplace-serverErrors.yml → legacy/findOneAndReplace-serverErrors.yml} +1 -1
- data/spec/spec_tests/data/retryable_writes/{findOneAndUpdate-serverErrors.yml → legacy/findOneAndUpdate-serverErrors.yml} +1 -1
- data/spec/spec_tests/data/retryable_writes/{insertMany-serverErrors.yml → legacy/insertMany-serverErrors.yml} +1 -1
- data/spec/spec_tests/data/retryable_writes/{insertOne-serverErrors.yml → legacy/insertOne-serverErrors.yml} +5 -5
- data/spec/spec_tests/data/retryable_writes/{replaceOne-serverErrors.yml → legacy/replaceOne-serverErrors.yml} +1 -1
- data/spec/spec_tests/data/retryable_writes/{updateOne-serverErrors.yml → legacy/updateOne-serverErrors.yml} +1 -1
- data/spec/spec_tests/data/retryable_writes/unified/bulkWrite-serverErrors.yml +96 -0
- data/spec/spec_tests/data/retryable_writes/unified/handshakeError.yml +137 -0
- data/spec/spec_tests/data/retryable_writes/unified/insertOne-serverErrors.yml +78 -0
- data/spec/spec_tests/data/sdam/errors/prefer-error-code.yml +2 -2
- data/spec/spec_tests/data/sdam/load-balanced/discover_load_balancer.yml +25 -0
- data/spec/spec_tests/data/sdam_integration/find-network-error.yml +2 -0
- data/spec/spec_tests/data/sdam_integration/find-shutdown-error.yml +2 -0
- data/spec/spec_tests/data/sdam_integration/hello-command-error.yml +9 -15
- data/spec/spec_tests/data/sdam_integration/hello-network-error.yml +7 -15
- data/spec/spec_tests/data/sdam_integration/hello-timeout.yml +10 -14
- data/spec/spec_tests/data/sdam_integration/insert-network-error.yml +2 -0
- data/spec/spec_tests/data/sdam_integration/insert-shutdown-error.yml +2 -0
- data/spec/spec_tests/data/sdam_monitoring/load_balancer.yml +65 -0
- data/spec/spec_tests/data/seed_list_discovery/load-balanced/loadBalanced-directConnection.yml +13 -0
- data/spec/spec_tests/data/seed_list_discovery/load-balanced/loadBalanced-no-results.yml +5 -0
- data/spec/spec_tests/data/seed_list_discovery/load-balanced/loadBalanced-replicaSet-errors.yml +6 -0
- data/spec/spec_tests/data/seed_list_discovery/load-balanced/loadBalanced-true-multiple-hosts.yml +5 -0
- data/spec/spec_tests/data/seed_list_discovery/load-balanced/loadBalanced-true-txt.yml +10 -0
- data/spec/spec_tests/data/seed_list_discovery/load-balanced/srvMaxHosts-conflicts_with_loadBalanced-true-txt.yml +5 -0
- data/spec/spec_tests/data/seed_list_discovery/load-balanced/srvMaxHosts-conflicts_with_loadBalanced-true.yml +5 -0
- data/spec/spec_tests/data/seed_list_discovery/load-balanced/srvMaxHosts-zero-txt.yml +10 -0
- data/spec/spec_tests/data/seed_list_discovery/load-balanced/srvMaxHosts-zero.yml +10 -0
- data/spec/spec_tests/data/seed_list_discovery/replica-set/encoded-userinfo-and-db.yml +15 -0
- data/spec/spec_tests/data/seed_list_discovery/replica-set/loadBalanced-false-txt.yml +10 -0
- data/spec/spec_tests/data/seed_list_discovery/replica-set/srv-service-name.yml +11 -0
- data/spec/spec_tests/data/seed_list_discovery/replica-set/srvMaxHosts-conflicts_with_replicaSet-txt.yml +5 -0
- data/spec/spec_tests/data/seed_list_discovery/replica-set/srvMaxHosts-conflicts_with_replicaSet.yml +5 -0
- data/spec/spec_tests/data/seed_list_discovery/replica-set/srvMaxHosts-equal_to_srv_records.yml +16 -0
- data/spec/spec_tests/data/seed_list_discovery/replica-set/srvMaxHosts-greater_than_srv_records.yml +15 -0
- data/spec/spec_tests/data/seed_list_discovery/replica-set/srvMaxHosts-less_than_srv_records.yml +15 -0
- data/spec/spec_tests/data/seed_list_discovery/replica-set/srvMaxHosts-zero-txt.yml +15 -0
- data/spec/spec_tests/data/seed_list_discovery/replica-set/srvMaxHosts-zero.yml +15 -0
- data/spec/spec_tests/data/seed_list_discovery/replica-set/uri-with-admin-database.yml +13 -0
- data/spec/spec_tests/data/seed_list_discovery/replica-set/uri-with-auth.yml +12 -0
- data/spec/spec_tests/data/seed_list_discovery/sharded/srvMaxHosts-equal_to_srv_records.yml +13 -0
- data/spec/spec_tests/data/seed_list_discovery/sharded/srvMaxHosts-greater_than_srv_records.yml +12 -0
- data/spec/spec_tests/data/seed_list_discovery/sharded/srvMaxHosts-less_than_srv_records.yml +10 -0
- data/spec/spec_tests/data/seed_list_discovery/sharded/srvMaxHosts-zero.yml +11 -0
- data/spec/spec_tests/data/server_selection/Unknown/read/ghost.yml +11 -0
- data/spec/spec_tests/data/server_selection/Unknown/write/ghost.yml +11 -0
- data/spec/spec_tests/data/sessions_unified/driver-sessions-server-support.yml +123 -0
- data/spec/spec_tests/data/sessions_unified/snapshot-sessions-not-supported-client-error.yml +75 -0
- data/spec/spec_tests/data/sessions_unified/snapshot-sessions-not-supported-server-error.yml +102 -0
- data/spec/spec_tests/data/sessions_unified/snapshot-sessions-unsupported-ops.yml +258 -0
- data/spec/spec_tests/data/sessions_unified/snapshot-sessions.yml +482 -0
- data/spec/spec_tests/data/transactions/error-labels.yml +1 -1
- data/spec/spec_tests/data/transactions/errors-client.yml +8 -9
- data/spec/spec_tests/data/transactions/mongos-recovery-token.yml +1 -1
- data/spec/spec_tests/data/transactions/retryable-abort.yml +7 -7
- data/spec/spec_tests/data/transactions/retryable-commit.yml +7 -7
- data/spec/spec_tests/data/transactions_unified/do-not-retry-read-in-transaction.yml +64 -0
- data/spec/spec_tests/data/transactions_unified/retryable-abort-handshake.yml +118 -0
- data/spec/spec_tests/data/transactions_unified/retryable-commit-handshake.yml +118 -0
- data/spec/spec_tests/data/unified/invalid/expectedEventsForClient-ignoreExtraEvents-type.yml +15 -0
- data/spec/spec_tests/data/unified/valid-fail/operation-unsupported.yml +13 -0
- data/spec/spec_tests/data/unified/valid-pass/expectedEventsForClient-ignoreExtraEvents.yml +78 -0
- data/spec/spec_tests/data/unified/valid-pass/poc-change-streams.yml +4 -1
- data/spec/spec_tests/data/unified/valid-pass/poc-command-monitoring.yml +3 -3
- data/spec/spec_tests/data/unified/valid-pass/poc-transactions.yml +3 -2
- data/spec/spec_tests/data/uri_options/connection-options.yml +60 -0
- data/spec/spec_tests/data/uri_options/srv-options.yml +96 -0
- data/spec/spec_tests/data/versioned_api/crud-api-version-1-strict.yml +6 -4
- data/spec/spec_tests/data/versioned_api/crud-api-version-1.yml +7 -5
- data/spec/spec_tests/gridfs_unified_spec.rb +13 -0
- data/spec/spec_tests/load_balancers_spec.rb +15 -0
- data/spec/spec_tests/retryable_reads_spec.rb +6 -3
- data/spec/spec_tests/retryable_reads_unified_spec.rb +22 -0
- data/spec/spec_tests/retryable_writes_spec.rb +5 -2
- data/spec/spec_tests/retryable_writes_unified_spec.rb +21 -0
- data/spec/spec_tests/sdam_integration_spec.rb +1 -1
- data/spec/spec_tests/sdam_monitoring_spec.rb +10 -5
- data/spec/spec_tests/sdam_spec.rb +1 -1
- data/spec/spec_tests/seed_list_discovery_spec.rb +127 -0
- data/spec/spec_tests/sessions_unified_spec.rb +13 -0
- data/spec/spec_tests/unified_spec.rb +6 -1
- data/spec/spec_tests/uri_options_spec.rb +4 -4
- data/spec/stress/connection_pool_timing_spec.rb +3 -2
- data/spec/stress/fork_reconnect_stress_spec.rb +4 -7
- data/spec/stress/push_monitor_close_spec.rb +44 -0
- data/spec/support/authorization.rb +1 -1
- data/spec/support/background_thread_registry.rb +3 -13
- data/spec/support/certificates/atlas-ocsp-ca.crt +81 -96
- data/spec/support/certificates/atlas-ocsp.crt +125 -125
- data/spec/support/certificates/retrieve-atlas-cert +38 -0
- data/spec/support/cluster_tools.rb +1 -1
- data/spec/support/common_shortcuts.rb +24 -3
- data/spec/support/crypt/corpus/corpus-encrypted.json +9515 -0
- data/spec/support/crypt/corpus/corpus-key-aws.json +32 -32
- data/spec/support/crypt/corpus/corpus-key-azure.json +33 -0
- data/spec/support/crypt/corpus/corpus-key-gcp.json +35 -0
- data/spec/support/crypt/corpus/corpus-key-kmip.json +32 -0
- data/spec/support/crypt/corpus/corpus-key-local.json +30 -30
- data/spec/support/crypt/corpus/corpus-schema.json +4399 -121
- data/spec/support/crypt/corpus/corpus.json +4999 -37
- data/spec/support/crypt/data_keys/key_document_azure.json +33 -0
- data/spec/support/crypt/data_keys/key_document_gcp.json +37 -0
- data/spec/support/crypt/data_keys/key_document_kmip.json +32 -0
- data/spec/support/crypt/encryptedFields.json +33 -0
- data/spec/support/crypt/keys/key1-document.json +30 -0
- data/spec/support/crypt/schema_maps/schema_map_azure.json +17 -0
- data/spec/support/crypt/schema_maps/schema_map_azure_key_alt_names.json +12 -0
- data/spec/support/crypt/schema_maps/schema_map_gcp.json +17 -0
- data/spec/support/crypt/schema_maps/schema_map_gcp_key_alt_names.json +12 -0
- data/spec/support/crypt/schema_maps/schema_map_kmip.json +17 -0
- data/spec/support/crypt/schema_maps/schema_map_kmip_key_alt_names.json +12 -0
- data/spec/support/crypt.rb +258 -13
- data/spec/support/macros.rb +28 -0
- data/spec/support/matchers.rb +13 -0
- data/spec/support/mongos_macros.rb +17 -0
- data/spec/support/shared/auth_context.rb +16 -0
- data/spec/support/shared/scram_conversation.rb +2 -1
- data/spec/support/shared/session.rb +15 -9
- data/spec/support/spec_config.rb +100 -12
- data/spec/support/using_hash.rb +31 -0
- data/spec/support/utils.rb +57 -5
- data.tar.gz.sig +0 -0
- metadata +778 -381
- metadata.gz.sig +0 -0
- data/lib/mongo/collection/view/builder/find_command.rb +0 -173
- data/lib/mongo/collection/view/builder/op_query.rb +0 -94
- data/lib/mongo/cursor/builder/get_more_command.rb +0 -80
- data/lib/mongo/cursor/builder/kill_cursors_command.rb +0 -111
- data/lib/mongo/cursor/builder/op_get_more.rb +0 -64
- data/lib/mongo/cursor/builder/op_kill_cursors.rb +0 -106
- data/lib/mongo/operation/insert/legacy.rb +0 -68
- data/lib/mongo/operation/update/legacy/result.rb +0 -112
- data/lib/mongo/operation/update/legacy.rb +0 -68
- data/lib/mongo/server/context.rb +0 -72
- data/spec/mongo/cursor/builder/op_kill_cursors_spec.rb +0 -66
- data/spec/mongo/dbref_spec.rb +0 -152
- data/spec/mongo/operation/kill_cursors_spec.rb +0 -44
- data/spec/runners/unified/using_hash.rb +0 -34
- data/spec/spec_tests/change_streams_spec.rb +0 -93
- data/spec/spec_tests/command_monitoring_spec.rb +0 -71
- data/spec/spec_tests/data/change_streams/change-streams-errors.yml +0 -101
- data/spec/spec_tests/data/change_streams/change-streams-resume-allowlist.yml +0 -1173
- data/spec/spec_tests/data/change_streams/change-streams-resume-errorLabels.yml +0 -1105
- data/spec/spec_tests/data/change_streams/change-streams.yml +0 -535
- data/spec/spec_tests/data/command_monitoring/bulkWrite.yml +0 -49
- data/spec/spec_tests/data/command_monitoring/command.yml +0 -61
- data/spec/spec_tests/data/command_monitoring/deleteMany.yml +0 -55
- data/spec/spec_tests/data/command_monitoring/deleteOne.yml +0 -55
- data/spec/spec_tests/data/command_monitoring/find.yml +0 -266
- data/spec/spec_tests/data/command_monitoring/insertMany.yml +0 -75
- data/spec/spec_tests/data/command_monitoring/insertOne.yml +0 -51
- data/spec/spec_tests/data/command_monitoring/unacknowledgedBulkWrite.yml +0 -34
- data/spec/spec_tests/data/command_monitoring/updateMany.yml +0 -65
- data/spec/spec_tests/data/command_monitoring/updateOne.yml +0 -90
- data/spec/spec_tests/data/crud_v2/aggregate-merge.yml +0 -103
- data/spec/spec_tests/data/crud_v2/aggregate-out-readConcern.yml +0 -111
- data/spec/spec_tests/data/crud_v2/bulkWrite-arrayFilters.yml +0 -103
- data/spec/spec_tests/data/crud_v2/bulkWrite-delete-hint-clientError.yml +0 -63
- data/spec/spec_tests/data/crud_v2/bulkWrite-delete-hint-serverError.yml +0 -92
- data/spec/spec_tests/data/crud_v2/bulkWrite-delete-hint.yml +0 -103
- data/spec/spec_tests/data/crud_v2/bulkWrite-update-hint-clientError.yml +0 -90
- data/spec/spec_tests/data/crud_v2/bulkWrite-update-hint-serverError.yml +0 -147
- data/spec/spec_tests/data/crud_v2/bulkWrite-update-hint.yml +0 -164
- data/spec/spec_tests/data/crud_v2/db-aggregate.yml +0 -39
- data/spec/spec_tests/data/crud_v2/deleteMany-hint-clientError.yml +0 -43
- data/spec/spec_tests/data/crud_v2/deleteMany-hint-serverError.yml +0 -62
- data/spec/spec_tests/data/crud_v2/deleteMany-hint.yml +0 -58
- data/spec/spec_tests/data/crud_v2/deleteOne-hint-clientError.yml +0 -41
- data/spec/spec_tests/data/crud_v2/deleteOne-hint-serverError.yml +0 -60
- data/spec/spec_tests/data/crud_v2/deleteOne-hint.yml +0 -57
- data/spec/spec_tests/data/crud_v2/find-allowdiskuse-clientError.yml +0 -28
- data/spec/spec_tests/data/crud_v2/find-allowdiskuse-serverError.yml +0 -44
- data/spec/spec_tests/data/crud_v2/find-allowdiskuse.yml +0 -50
- data/spec/spec_tests/data/crud_v2/findOneAndDelete-hint-clientError.yml +0 -45
- data/spec/spec_tests/data/crud_v2/findOneAndDelete-hint-serverError.yml +0 -60
- data/spec/spec_tests/data/crud_v2/findOneAndDelete-hint.yml +0 -56
- data/spec/spec_tests/data/crud_v2/findOneAndReplace-hint-clientError.yml +0 -40
- data/spec/spec_tests/data/crud_v2/findOneAndReplace-hint-serverError.yml +0 -59
- data/spec/spec_tests/data/crud_v2/findOneAndReplace-hint.yml +0 -55
- data/spec/spec_tests/data/crud_v2/findOneAndUpdate-hint-clientError.yml +0 -40
- data/spec/spec_tests/data/crud_v2/findOneAndUpdate-hint-serverError.yml +0 -58
- data/spec/spec_tests/data/crud_v2/findOneAndUpdate-hint.yml +0 -55
- data/spec/spec_tests/data/crud_v2/replaceOne-hint.yml +0 -61
- data/spec/spec_tests/data/crud_v2/unacknowledged-bulkWrite-delete-hint-clientError.yml +0 -60
- data/spec/spec_tests/data/crud_v2/unacknowledged-bulkWrite-update-hint-clientError.yml +0 -88
- data/spec/spec_tests/data/crud_v2/unacknowledged-deleteMany-hint-clientError.yml +0 -40
- data/spec/spec_tests/data/crud_v2/unacknowledged-deleteOne-hint-clientError.yml +0 -38
- data/spec/spec_tests/data/crud_v2/unacknowledged-findOneAndDelete-hint-clientError.yml +0 -42
- data/spec/spec_tests/data/crud_v2/unacknowledged-findOneAndReplace-hint-clientError.yml +0 -40
- data/spec/spec_tests/data/crud_v2/unacknowledged-findOneAndUpdate-hint-clientError.yml +0 -40
- data/spec/spec_tests/data/crud_v2/unacknowledged-replaceOne-hint-clientError.yml +0 -40
- data/spec/spec_tests/data/crud_v2/unacknowledged-updateMany-hint-clientError.yml +0 -43
- data/spec/spec_tests/data/crud_v2/unacknowledged-updateOne-hint-clientError.yml +0 -40
- data/spec/spec_tests/data/crud_v2/updateMany-hint-clientError.yml +0 -45
- data/spec/spec_tests/data/crud_v2/updateMany-hint-serverError.yml +0 -66
- data/spec/spec_tests/data/crud_v2/updateMany-hint.yml +0 -65
- data/spec/spec_tests/data/crud_v2/updateOne-hint-clientError.yml +0 -43
- data/spec/spec_tests/data/crud_v2/updateOne-hint-serverError.yml +0 -62
- data/spec/spec_tests/data/crud_v2/updateOne-hint.yml +0 -61
- data/spec/spec_tests/data/crud_v2/updateWithPipelines.yml +0 -157
- data/spec/spec_tests/data/retryable_reads/estimatedDocumentCount-4.9.yml +0 -60
- data/spec/spec_tests/data/retryable_reads/estimatedDocumentCount-serverErrors-4.9.yml +0 -146
- data/spec/spec_tests/dns_seedlist_discovery_spec.rb +0 -79
- data/spec/support/crypt/corpus/corpus_encrypted.json +0 -4152
- data/spec/support/event_subscriber.rb +0 -221
- data/spec/support/session_registry.rb +0 -55
- /data/spec/spec_tests/data/retryable_reads/{aggregate-merge.yml → legacy/aggregate-merge.yml} +0 -0
- /data/spec/spec_tests/data/retryable_reads/{aggregate-serverErrors.yml → legacy/aggregate-serverErrors.yml} +0 -0
- /data/spec/spec_tests/data/retryable_reads/{aggregate.yml → legacy/aggregate.yml} +0 -0
- /data/spec/spec_tests/data/retryable_reads/{count-serverErrors.yml → legacy/count-serverErrors.yml} +0 -0
- /data/spec/spec_tests/data/retryable_reads/{count.yml → legacy/count.yml} +0 -0
- /data/spec/spec_tests/data/retryable_reads/{countDocuments-serverErrors.yml → legacy/countDocuments-serverErrors.yml} +0 -0
- /data/spec/spec_tests/data/retryable_reads/{countDocuments.yml → legacy/countDocuments.yml} +0 -0
- /data/spec/spec_tests/data/retryable_reads/{distinct-serverErrors.yml → legacy/distinct-serverErrors.yml} +0 -0
- /data/spec/spec_tests/data/retryable_reads/{distinct.yml → legacy/distinct.yml} +0 -0
- /data/spec/spec_tests/data/retryable_reads/{find-serverErrors.yml → legacy/find-serverErrors.yml} +0 -0
- /data/spec/spec_tests/data/retryable_reads/{find.yml → legacy/find.yml} +0 -0
- /data/spec/spec_tests/data/retryable_reads/{findOne-serverErrors.yml → legacy/findOne-serverErrors.yml} +0 -0
- /data/spec/spec_tests/data/retryable_reads/{findOne.yml → legacy/findOne.yml} +0 -0
- /data/spec/spec_tests/data/retryable_reads/{gridfs-download-serverErrors.yml → legacy/gridfs-download-serverErrors.yml} +0 -0
- /data/spec/spec_tests/data/retryable_reads/{gridfs-download.yml → legacy/gridfs-download.yml} +0 -0
- /data/spec/spec_tests/data/retryable_reads/{gridfs-downloadByName-serverErrors.yml → legacy/gridfs-downloadByName-serverErrors.yml} +0 -0
- /data/spec/spec_tests/data/retryable_reads/{gridfs-downloadByName.yml → legacy/gridfs-downloadByName.yml} +0 -0
- /data/spec/spec_tests/data/retryable_reads/{listCollectionNames-serverErrors.yml → legacy/listCollectionNames-serverErrors.yml} +0 -0
- /data/spec/spec_tests/data/retryable_reads/{listCollectionNames.yml → legacy/listCollectionNames.yml} +0 -0
- /data/spec/spec_tests/data/retryable_reads/{listCollectionObjects-serverErrors.yml → legacy/listCollectionObjects-serverErrors.yml} +0 -0
- /data/spec/spec_tests/data/retryable_reads/{listCollectionObjects.yml → legacy/listCollectionObjects.yml} +0 -0
- /data/spec/spec_tests/data/retryable_reads/{listCollections-serverErrors.yml → legacy/listCollections-serverErrors.yml} +0 -0
- /data/spec/spec_tests/data/retryable_reads/{listCollections.yml → legacy/listCollections.yml} +0 -0
- /data/spec/spec_tests/data/retryable_reads/{listDatabaseNames-serverErrors.yml → legacy/listDatabaseNames-serverErrors.yml} +0 -0
- /data/spec/spec_tests/data/retryable_reads/{listDatabaseNames.yml → legacy/listDatabaseNames.yml} +0 -0
- /data/spec/spec_tests/data/retryable_reads/{listDatabaseObjects-serverErrors.yml → legacy/listDatabaseObjects-serverErrors.yml} +0 -0
- /data/spec/spec_tests/data/retryable_reads/{listDatabaseObjects.yml → legacy/listDatabaseObjects.yml} +0 -0
- /data/spec/spec_tests/data/retryable_reads/{listDatabases-serverErrors.yml → legacy/listDatabases-serverErrors.yml} +0 -0
- /data/spec/spec_tests/data/retryable_reads/{listDatabases.yml → legacy/listDatabases.yml} +0 -0
- /data/spec/spec_tests/data/retryable_reads/{listIndexNames-serverErrors.yml → legacy/listIndexNames-serverErrors.yml} +0 -0
- /data/spec/spec_tests/data/retryable_reads/{listIndexNames.yml → legacy/listIndexNames.yml} +0 -0
- /data/spec/spec_tests/data/retryable_reads/{listIndexes-serverErrors.yml → legacy/listIndexes-serverErrors.yml} +0 -0
- /data/spec/spec_tests/data/retryable_reads/{listIndexes.yml → legacy/listIndexes.yml} +0 -0
- /data/spec/spec_tests/data/retryable_writes/{bulkWrite-errorLabels.yml → legacy/bulkWrite-errorLabels.yml} +0 -0
- /data/spec/spec_tests/data/retryable_writes/{bulkWrite.yml → legacy/bulkWrite.yml} +0 -0
- /data/spec/spec_tests/data/retryable_writes/{deleteMany.yml → legacy/deleteMany.yml} +0 -0
- /data/spec/spec_tests/data/retryable_writes/{deleteOne-errorLabels.yml → legacy/deleteOne-errorLabels.yml} +0 -0
- /data/spec/spec_tests/data/retryable_writes/{deleteOne.yml → legacy/deleteOne.yml} +0 -0
- /data/spec/spec_tests/data/retryable_writes/{findOneAndDelete-errorLabels.yml → legacy/findOneAndDelete-errorLabels.yml} +0 -0
- /data/spec/spec_tests/data/retryable_writes/{findOneAndDelete.yml → legacy/findOneAndDelete.yml} +0 -0
- /data/spec/spec_tests/data/retryable_writes/{findOneAndReplace-errorLabels.yml → legacy/findOneAndReplace-errorLabels.yml} +0 -0
- /data/spec/spec_tests/data/retryable_writes/{findOneAndReplace.yml → legacy/findOneAndReplace.yml} +0 -0
- /data/spec/spec_tests/data/retryable_writes/{findOneAndUpdate-errorLabels.yml → legacy/findOneAndUpdate-errorLabels.yml} +0 -0
- /data/spec/spec_tests/data/retryable_writes/{findOneAndUpdate.yml → legacy/findOneAndUpdate.yml} +0 -0
- /data/spec/spec_tests/data/retryable_writes/{insertMany-errorLabels.yml → legacy/insertMany-errorLabels.yml} +0 -0
- /data/spec/spec_tests/data/retryable_writes/{insertMany.yml → legacy/insertMany.yml} +0 -0
- /data/spec/spec_tests/data/retryable_writes/{insertOne-errorLabels.yml → legacy/insertOne-errorLabels.yml} +0 -0
- /data/spec/spec_tests/data/retryable_writes/{insertOne.yml → legacy/insertOne.yml} +0 -0
- /data/spec/spec_tests/data/retryable_writes/{replaceOne-errorLabels.yml → legacy/replaceOne-errorLabels.yml} +0 -0
- /data/spec/spec_tests/data/retryable_writes/{replaceOne.yml → legacy/replaceOne.yml} +0 -0
- /data/spec/spec_tests/data/retryable_writes/{updateMany.yml → legacy/updateMany.yml} +0 -0
- /data/spec/spec_tests/data/retryable_writes/{updateOne-errorLabels.yml → legacy/updateOne-errorLabels.yml} +0 -0
- /data/spec/spec_tests/data/retryable_writes/{updateOne.yml → legacy/updateOne.yml} +0 -0
- /data/spec/spec_tests/data/{dns_seedlist_discovery → seed_list_discovery/replica-set}/direct-connection-false.yml +0 -0
- /data/spec/spec_tests/data/{dns_seedlist_discovery → seed_list_discovery/replica-set}/direct-connection-true.yml +0 -0
- /data/spec/spec_tests/data/{dns_seedlist_discovery → seed_list_discovery/replica-set}/longer-parent-in-return.yml +0 -0
- /data/spec/spec_tests/data/{dns_seedlist_discovery → seed_list_discovery/replica-set}/misformatted-option.yml +0 -0
- /data/spec/spec_tests/data/{dns_seedlist_discovery → seed_list_discovery/replica-set}/no-results.yml +0 -0
- /data/spec/spec_tests/data/{dns_seedlist_discovery → seed_list_discovery/replica-set}/not-enough-parts.yml +0 -0
- /data/spec/spec_tests/data/{dns_seedlist_discovery → seed_list_discovery/replica-set}/one-result-default-port.yml +0 -0
- /data/spec/spec_tests/data/{dns_seedlist_discovery → seed_list_discovery/replica-set}/one-txt-record-multiple-strings.yml +0 -0
- /data/spec/spec_tests/data/{dns_seedlist_discovery → seed_list_discovery/replica-set}/one-txt-record.yml +0 -0
- /data/spec/spec_tests/data/{dns_seedlist_discovery → seed_list_discovery/replica-set}/parent-part-mismatch1.yml +0 -0
- /data/spec/spec_tests/data/{dns_seedlist_discovery → seed_list_discovery/replica-set}/parent-part-mismatch2.yml +0 -0
- /data/spec/spec_tests/data/{dns_seedlist_discovery → seed_list_discovery/replica-set}/parent-part-mismatch3.yml +0 -0
- /data/spec/spec_tests/data/{dns_seedlist_discovery → seed_list_discovery/replica-set}/parent-part-mismatch4.yml +0 -0
- /data/spec/spec_tests/data/{dns_seedlist_discovery → seed_list_discovery/replica-set}/parent-part-mismatch5.yml +0 -0
- /data/spec/spec_tests/data/{dns_seedlist_discovery → seed_list_discovery/replica-set}/returned-parent-too-short.yml +0 -0
- /data/spec/spec_tests/data/{dns_seedlist_discovery → seed_list_discovery/replica-set}/returned-parent-wrong.yml +0 -0
- /data/spec/spec_tests/data/{dns_seedlist_discovery → seed_list_discovery/replica-set}/two-results-default-port.yml +0 -0
- /data/spec/spec_tests/data/{dns_seedlist_discovery → seed_list_discovery/replica-set}/two-results-nonstandard-port.yml +0 -0
- /data/spec/spec_tests/data/{dns_seedlist_discovery → seed_list_discovery/replica-set}/two-txt-records.yml +0 -0
- /data/spec/spec_tests/data/{dns_seedlist_discovery → seed_list_discovery/replica-set}/txt-record-not-allowed-option.yml +0 -0
- /data/spec/spec_tests/data/{dns_seedlist_discovery → seed_list_discovery/replica-set}/txt-record-with-overridden-ssl-option.yml +0 -0
- /data/spec/spec_tests/data/{dns_seedlist_discovery → seed_list_discovery/replica-set}/txt-record-with-overridden-uri-option.yml +0 -0
- /data/spec/spec_tests/data/{dns_seedlist_discovery → seed_list_discovery/replica-set}/txt-record-with-unallowed-option.yml +0 -0
- /data/spec/spec_tests/data/{dns_seedlist_discovery → seed_list_discovery/replica-set}/uri-with-port.yml +0 -0
- /data/spec/spec_tests/data/{dns_seedlist_discovery → seed_list_discovery/replica-set}/uri-with-two-hosts.yml +0 -0
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mongo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.18.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tyler Brock
|
@@ -12,26 +12,27 @@ bindir: bin
|
|
12
12
|
cert_chain:
|
13
13
|
- |
|
14
14
|
-----BEGIN CERTIFICATE-----
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
15
|
+
MIIDfDCCAmSgAwIBAgIBATANBgkqhkiG9w0BAQUFADBCMRQwEgYDVQQDDAtkcml2
|
16
|
+
ZXItcnVieTEVMBMGCgmSJomT8ixkARkWBTEwZ2VuMRMwEQYKCZImiZPyLGQBGRYD
|
17
|
+
Y29tMB4XDTIyMDMzMDE5MTcwMloXDTIzMDMzMDE5MTcwMlowQjEUMBIGA1UEAwwL
|
18
|
+
ZHJpdmVyLXJ1YnkxFTATBgoJkiaJk/IsZAEZFgUxMGdlbjETMBEGCgmSJomT8ixk
|
19
|
+
ARkWA2NvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANFdSAa8fRm1
|
20
|
+
bAM9za6Z0fAH4g02bqM1NGnw8zJQrE/PFrFfY6IFCT2AsLfOwr1maVm7iU1+kdVI
|
21
|
+
IQ+iI/9+E+ArJ+rbGV3dDPQ+SLl3mLT+vXjfjcxMqI2IW6UuVtt2U3Rxd4QU0kdT
|
22
|
+
JxmcPYs5fDN6BgYc6XXgUjy3m+Kwha2pGctdciUOwEfOZ4RmNRlEZKCMLRHdFP8j
|
23
|
+
4WTnJSGfXDiuoXICJb5yOPOZPuaapPSNXp93QkUdsqdKC32I+KMpKKYGBQ6yisfA
|
24
|
+
5MyVPPCzLR1lP5qXVGJPnOqUAkvEUfCahg7EP9tI20qxiXrR6TSEraYhIFXL0EGY
|
25
|
+
u8KAcPHm5KkCAwEAAaN9MHswCQYDVR0TBAIwADALBgNVHQ8EBAMCBLAwHQYDVR0O
|
26
|
+
BBYEFFt3WbF+9JpUjAoj62cQBgNb8HzXMCAGA1UdEQQZMBeBFWRyaXZlci1ydWJ5
|
27
|
+
QDEwZ2VuLmNvbTAgBgNVHRIEGTAXgRVkcml2ZXItcnVieUAxMGdlbi5jb20wDQYJ
|
28
|
+
KoZIhvcNAQEFBQADggEBAM0s7jz2IGD8Ms035b1tMnbNP2CBPq3pen3KQj7IkGF7
|
29
|
+
x8LPDdOqUj4pUMLeefntX/PkSvwROo677TnWK6+GLayGm5xLHrZH3svybC6QtqTR
|
30
|
+
mVOLUoZ4TgUmtnMUa/ZvgrIsOeiCysjSf4WECuw7g+LE6jcpLepgYTLk2u1+5SgH
|
31
|
+
JVENj0BMkdeZIKkc2G97DSx3Zrmz7QWAaH+99XlajJbfcgvhDso+ffQkTBlOgLBg
|
32
|
+
+WyKQ+QTIdtDiyf2LQmxWnxt/W1CmScjdLS7/yXGkkB/D9Uy+sJD747O/B9P238Q
|
33
|
+
XnerrtyOu04RsWDvaZkCwSDVzoqfICh4CP1mlde73Ts=
|
33
34
|
-----END CERTIFICATE-----
|
34
|
-
date:
|
35
|
+
date: 2022-08-02 00:00:00.000000000 Z
|
35
36
|
dependencies:
|
36
37
|
- !ruby/object:Gem::Dependency
|
37
38
|
name: bson
|
@@ -39,7 +40,7 @@ dependencies:
|
|
39
40
|
requirements:
|
40
41
|
- - ">="
|
41
42
|
- !ruby/object:Gem::Version
|
42
|
-
version: 4.
|
43
|
+
version: 4.14.1
|
43
44
|
- - "<"
|
44
45
|
- !ruby/object:Gem::Version
|
45
46
|
version: 5.0.0
|
@@ -49,7 +50,7 @@ dependencies:
|
|
49
50
|
requirements:
|
50
51
|
- - ">="
|
51
52
|
- !ruby/object:Gem::Version
|
52
|
-
version: 4.
|
53
|
+
version: 4.14.1
|
53
54
|
- - "<"
|
54
55
|
- !ruby/object:Gem::Version
|
55
56
|
version: 5.0.0
|
@@ -122,6 +123,7 @@ files:
|
|
122
123
|
- lib/mongo/cluster/sdam_flow.rb
|
123
124
|
- lib/mongo/cluster/topology.rb
|
124
125
|
- lib/mongo/cluster/topology/base.rb
|
126
|
+
- lib/mongo/cluster/topology/load_balanced.rb
|
125
127
|
- lib/mongo/cluster/topology/no_replica_set_options.rb
|
126
128
|
- lib/mongo/cluster/topology/replica_set_no_primary.rb
|
127
129
|
- lib/mongo/cluster/topology/replica_set_with_primary.rb
|
@@ -130,15 +132,13 @@ files:
|
|
130
132
|
- lib/mongo/cluster/topology/unknown.rb
|
131
133
|
- lib/mongo/cluster_time.rb
|
132
134
|
- lib/mongo/collection.rb
|
135
|
+
- lib/mongo/collection/helpers.rb
|
136
|
+
- lib/mongo/collection/queryable_encryption.rb
|
133
137
|
- lib/mongo/collection/view.rb
|
134
138
|
- lib/mongo/collection/view/aggregation.rb
|
135
139
|
- lib/mongo/collection/view/builder.rb
|
136
140
|
- lib/mongo/collection/view/builder/aggregation.rb
|
137
|
-
- lib/mongo/collection/view/builder/find_command.rb
|
138
|
-
- lib/mongo/collection/view/builder/flags.rb
|
139
141
|
- lib/mongo/collection/view/builder/map_reduce.rb
|
140
|
-
- lib/mongo/collection/view/builder/modifiers.rb
|
141
|
-
- lib/mongo/collection/view/builder/op_query.rb
|
142
142
|
- lib/mongo/collection/view/change_stream.rb
|
143
143
|
- lib/mongo/collection/view/change_stream/retryable.rb
|
144
144
|
- lib/mongo/collection/view/explainable.rb
|
@@ -147,6 +147,9 @@ files:
|
|
147
147
|
- lib/mongo/collection/view/map_reduce.rb
|
148
148
|
- lib/mongo/collection/view/readable.rb
|
149
149
|
- lib/mongo/collection/view/writable.rb
|
150
|
+
- lib/mongo/config.rb
|
151
|
+
- lib/mongo/config/options.rb
|
152
|
+
- lib/mongo/config/validators/option.rb
|
150
153
|
- lib/mongo/crypt.rb
|
151
154
|
- lib/mongo/crypt/auto_decryption_context.rb
|
152
155
|
- lib/mongo/crypt/auto_encrypter.rb
|
@@ -161,20 +164,27 @@ files:
|
|
161
164
|
- lib/mongo/crypt/explicit_encryption_context.rb
|
162
165
|
- lib/mongo/crypt/handle.rb
|
163
166
|
- lib/mongo/crypt/hooks.rb
|
167
|
+
- lib/mongo/crypt/kms.rb
|
168
|
+
- lib/mongo/crypt/kms/aws.rb
|
169
|
+
- lib/mongo/crypt/kms/azure.rb
|
170
|
+
- lib/mongo/crypt/kms/credentials.rb
|
171
|
+
- lib/mongo/crypt/kms/gcp.rb
|
172
|
+
- lib/mongo/crypt/kms/kmip.rb
|
173
|
+
- lib/mongo/crypt/kms/local.rb
|
174
|
+
- lib/mongo/crypt/kms/master_key_document.rb
|
164
175
|
- lib/mongo/crypt/kms_context.rb
|
176
|
+
- lib/mongo/crypt/rewrap_many_data_key_context.rb
|
177
|
+
- lib/mongo/crypt/rewrap_many_data_key_result.rb
|
165
178
|
- lib/mongo/crypt/status.rb
|
166
179
|
- lib/mongo/cursor.rb
|
167
|
-
- lib/mongo/cursor/
|
168
|
-
- lib/mongo/cursor/builder/get_more_command.rb
|
169
|
-
- lib/mongo/cursor/builder/kill_cursors_command.rb
|
170
|
-
- lib/mongo/cursor/builder/op_get_more.rb
|
171
|
-
- lib/mongo/cursor/builder/op_kill_cursors.rb
|
180
|
+
- lib/mongo/cursor/kill_spec.rb
|
172
181
|
- lib/mongo/database.rb
|
173
182
|
- lib/mongo/database/view.rb
|
174
183
|
- lib/mongo/dbref.rb
|
175
184
|
- lib/mongo/distinguishing_semaphore.rb
|
176
185
|
- lib/mongo/error.rb
|
177
186
|
- lib/mongo/error/auth_error.rb
|
187
|
+
- lib/mongo/error/bad_load_balancer_target.rb
|
178
188
|
- lib/mongo/error/bulk_write_error.rb
|
179
189
|
- lib/mongo/error/change_stream_resumable.rb
|
180
190
|
- lib/mongo/error/closed_stream.rb
|
@@ -193,6 +203,7 @@ files:
|
|
193
203
|
- lib/mongo/error/invalid_bulk_operation.rb
|
194
204
|
- lib/mongo/error/invalid_bulk_operation_type.rb
|
195
205
|
- lib/mongo/error/invalid_collection_name.rb
|
206
|
+
- lib/mongo/error/invalid_config_option.rb
|
196
207
|
- lib/mongo/error/invalid_cursor_operation.rb
|
197
208
|
- lib/mongo/error/invalid_database_name.rb
|
198
209
|
- lib/mongo/error/invalid_document.rb
|
@@ -214,30 +225,38 @@ files:
|
|
214
225
|
- lib/mongo/error/invalid_uri.rb
|
215
226
|
- lib/mongo/error/invalid_write_concern.rb
|
216
227
|
- lib/mongo/error/kms_error.rb
|
228
|
+
- lib/mongo/error/labelable.rb
|
217
229
|
- lib/mongo/error/lint_error.rb
|
218
230
|
- lib/mongo/error/max_bson_size.rb
|
219
231
|
- lib/mongo/error/max_message_size.rb
|
220
232
|
- lib/mongo/error/mismatched_domain.rb
|
233
|
+
- lib/mongo/error/missing_connection.rb
|
221
234
|
- lib/mongo/error/missing_file_chunk.rb
|
222
235
|
- lib/mongo/error/missing_password.rb
|
223
236
|
- lib/mongo/error/missing_resume_token.rb
|
224
237
|
- lib/mongo/error/missing_scram_server_signature.rb
|
238
|
+
- lib/mongo/error/missing_service_id.rb
|
225
239
|
- lib/mongo/error/mongocryptd_spawn_error.rb
|
226
240
|
- lib/mongo/error/multi_index_drop.rb
|
227
241
|
- lib/mongo/error/need_primary_server.rb
|
228
242
|
- lib/mongo/error/no_server_available.rb
|
243
|
+
- lib/mongo/error/no_service_connection_available.rb
|
229
244
|
- lib/mongo/error/no_srv_records.rb
|
230
245
|
- lib/mongo/error/notable.rb
|
231
246
|
- lib/mongo/error/operation_failure.rb
|
232
247
|
- lib/mongo/error/parser.rb
|
233
248
|
- lib/mongo/error/pool_closed_error.rb
|
234
249
|
- lib/mongo/error/raise_original_error.rb
|
250
|
+
- lib/mongo/error/read_write_retryable.rb
|
235
251
|
- lib/mongo/error/sdam_error_detection.rb
|
236
252
|
- lib/mongo/error/server_api_conflict.rb
|
237
253
|
- lib/mongo/error/server_api_not_supported.rb
|
238
254
|
- lib/mongo/error/server_certificate_revoked.rb
|
239
255
|
- lib/mongo/error/session_ended.rb
|
256
|
+
- lib/mongo/error/session_not_materialized.rb
|
240
257
|
- lib/mongo/error/sessions_not_supported.rb
|
258
|
+
- lib/mongo/error/snapshot_session_invalid_server_version.rb
|
259
|
+
- lib/mongo/error/snapshot_session_transaction_prohibited.rb
|
241
260
|
- lib/mongo/error/socket_error.rb
|
242
261
|
- lib/mongo/error/socket_timeout_error.rb
|
243
262
|
- lib/mongo/error/unchangeable_collection_option.rb
|
@@ -335,7 +354,6 @@ files:
|
|
335
354
|
- lib/mongo/operation/delete.rb
|
336
355
|
- lib/mongo/operation/delete/bulk_result.rb
|
337
356
|
- lib/mongo/operation/delete/command.rb
|
338
|
-
- lib/mongo/operation/delete/legacy.rb
|
339
357
|
- lib/mongo/operation/delete/op_msg.rb
|
340
358
|
- lib/mongo/operation/delete/result.rb
|
341
359
|
- lib/mongo/operation/distinct.rb
|
@@ -356,6 +374,11 @@ files:
|
|
356
374
|
- lib/mongo/operation/explain/op_msg.rb
|
357
375
|
- lib/mongo/operation/explain/result.rb
|
358
376
|
- lib/mongo/operation/find.rb
|
377
|
+
- lib/mongo/operation/find/builder.rb
|
378
|
+
- lib/mongo/operation/find/builder/command.rb
|
379
|
+
- lib/mongo/operation/find/builder/flags.rb
|
380
|
+
- lib/mongo/operation/find/builder/legacy.rb
|
381
|
+
- lib/mongo/operation/find/builder/modifiers.rb
|
359
382
|
- lib/mongo/operation/find/command.rb
|
360
383
|
- lib/mongo/operation/find/legacy.rb
|
361
384
|
- lib/mongo/operation/find/legacy/result.rb
|
@@ -363,6 +386,7 @@ files:
|
|
363
386
|
- lib/mongo/operation/find/result.rb
|
364
387
|
- lib/mongo/operation/get_more.rb
|
365
388
|
- lib/mongo/operation/get_more/command.rb
|
389
|
+
- lib/mongo/operation/get_more/command_builder.rb
|
366
390
|
- lib/mongo/operation/get_more/legacy.rb
|
367
391
|
- lib/mongo/operation/get_more/op_msg.rb
|
368
392
|
- lib/mongo/operation/get_more/result.rb
|
@@ -374,12 +398,11 @@ files:
|
|
374
398
|
- lib/mongo/operation/insert.rb
|
375
399
|
- lib/mongo/operation/insert/bulk_result.rb
|
376
400
|
- lib/mongo/operation/insert/command.rb
|
377
|
-
- lib/mongo/operation/insert/legacy.rb
|
378
401
|
- lib/mongo/operation/insert/op_msg.rb
|
379
402
|
- lib/mongo/operation/insert/result.rb
|
380
403
|
- lib/mongo/operation/kill_cursors.rb
|
381
404
|
- lib/mongo/operation/kill_cursors/command.rb
|
382
|
-
- lib/mongo/operation/kill_cursors/
|
405
|
+
- lib/mongo/operation/kill_cursors/command_builder.rb
|
383
406
|
- lib/mongo/operation/kill_cursors/op_msg.rb
|
384
407
|
- lib/mongo/operation/list_collections.rb
|
385
408
|
- lib/mongo/operation/list_collections/command.rb
|
@@ -417,13 +440,12 @@ files:
|
|
417
440
|
- lib/mongo/operation/shared/result/use_legacy_error_parser.rb
|
418
441
|
- lib/mongo/operation/shared/sessions_supported.rb
|
419
442
|
- lib/mongo/operation/shared/specifiable.rb
|
443
|
+
- lib/mongo/operation/shared/validatable.rb
|
420
444
|
- lib/mongo/operation/shared/write.rb
|
421
445
|
- lib/mongo/operation/shared/write_concern_supported.rb
|
422
446
|
- lib/mongo/operation/update.rb
|
423
447
|
- lib/mongo/operation/update/bulk_result.rb
|
424
448
|
- lib/mongo/operation/update/command.rb
|
425
|
-
- lib/mongo/operation/update/legacy.rb
|
426
|
-
- lib/mongo/operation/update/legacy/result.rb
|
427
449
|
- lib/mongo/operation/update/op_msg.rb
|
428
450
|
- lib/mongo/operation/update/result.rb
|
429
451
|
- lib/mongo/operation/update_user.rb
|
@@ -433,11 +455,15 @@ files:
|
|
433
455
|
- lib/mongo/operation/users_info/command.rb
|
434
456
|
- lib/mongo/operation/users_info/op_msg.rb
|
435
457
|
- lib/mongo/operation/users_info/result.rb
|
458
|
+
- lib/mongo/operation/write_command.rb
|
459
|
+
- lib/mongo/operation/write_command/command.rb
|
460
|
+
- lib/mongo/operation/write_command/op_msg.rb
|
436
461
|
- lib/mongo/options.rb
|
437
462
|
- lib/mongo/options/mapper.rb
|
438
463
|
- lib/mongo/options/redacted.rb
|
439
464
|
- lib/mongo/protocol.rb
|
440
465
|
- lib/mongo/protocol/bit_vector.rb
|
466
|
+
- lib/mongo/protocol/caching_hash.rb
|
441
467
|
- lib/mongo/protocol/compressed.rb
|
442
468
|
- lib/mongo/protocol/delete.rb
|
443
469
|
- lib/mongo/protocol/get_more.rb
|
@@ -459,10 +485,11 @@ files:
|
|
459
485
|
- lib/mongo/server/connection_base.rb
|
460
486
|
- lib/mongo/server/connection_common.rb
|
461
487
|
- lib/mongo/server/connection_pool.rb
|
488
|
+
- lib/mongo/server/connection_pool/generation_manager.rb
|
462
489
|
- lib/mongo/server/connection_pool/populator.rb
|
463
|
-
- lib/mongo/server/context.rb
|
464
490
|
- lib/mongo/server/description.rb
|
465
491
|
- lib/mongo/server/description/features.rb
|
492
|
+
- lib/mongo/server/description/load_balancer.rb
|
466
493
|
- lib/mongo/server/monitor.rb
|
467
494
|
- lib/mongo/server/monitor/app_metadata.rb
|
468
495
|
- lib/mongo/server/monitor/connection.rb
|
@@ -512,6 +539,7 @@ files:
|
|
512
539
|
- spec/integration/awaited_ismaster_spec.rb
|
513
540
|
- spec/integration/aws_auth_request_spec.rb
|
514
541
|
- spec/integration/aws_credentials_retriever_spec.rb
|
542
|
+
- spec/integration/aws_lambda_examples_spec.rb
|
515
543
|
- spec/integration/bson_symbol_spec.rb
|
516
544
|
- spec/integration/bulk_insert_spec.rb
|
517
545
|
- spec/integration/bulk_write_error_message_spec.rb
|
@@ -535,8 +563,14 @@ files:
|
|
535
563
|
- spec/integration/client_side_encryption/corpus_spec.rb
|
536
564
|
- spec/integration/client_side_encryption/custom_endpoint_spec.rb
|
537
565
|
- spec/integration/client_side_encryption/data_key_spec.rb
|
566
|
+
- spec/integration/client_side_encryption/decryption_events_prose_spec.rb
|
538
567
|
- spec/integration/client_side_encryption/explicit_encryption_spec.rb
|
568
|
+
- spec/integration/client_side_encryption/explicit_queryable_encryption_spec.rb
|
539
569
|
- spec/integration/client_side_encryption/external_key_vault_spec.rb
|
570
|
+
- spec/integration/client_side_encryption/kms_tls_options_spec.rb
|
571
|
+
- spec/integration/client_side_encryption/kms_tls_spec.rb
|
572
|
+
- spec/integration/client_side_encryption/queryable_encryption_examples_spec.rb
|
573
|
+
- spec/integration/client_side_encryption/unique_index_on_key_alt_names_prose_spec.rb
|
540
574
|
- spec/integration/client_side_encryption/views_spec.rb
|
541
575
|
- spec/integration/client_spec.rb
|
542
576
|
- spec/integration/client_update_spec.rb
|
@@ -547,6 +581,7 @@ files:
|
|
547
581
|
- spec/integration/connection_pool_populator_spec.rb
|
548
582
|
- spec/integration/connection_spec.rb
|
549
583
|
- spec/integration/crud_spec.rb
|
584
|
+
- spec/integration/cursor_pinning_spec.rb
|
550
585
|
- spec/integration/cursor_reaping_spec.rb
|
551
586
|
- spec/integration/docs_examples_spec.rb
|
552
587
|
- spec/integration/error_detection_spec.rb
|
@@ -554,6 +589,7 @@ files:
|
|
554
589
|
- spec/integration/get_more_spec.rb
|
555
590
|
- spec/integration/grid_fs_bucket_spec.rb
|
556
591
|
- spec/integration/heartbeat_events_spec.rb
|
592
|
+
- spec/integration/map_reduce_spec.rb
|
557
593
|
- spec/integration/mmapv1_spec.rb
|
558
594
|
- spec/integration/mongos_pinning_spec.rb
|
559
595
|
- spec/integration/ocsp_connectivity_spec.rb
|
@@ -591,11 +627,13 @@ files:
|
|
591
627
|
- spec/integration/shell_examples_spec.rb
|
592
628
|
- spec/integration/size_limit_spec.rb
|
593
629
|
- spec/integration/snappy_compression_spec.rb
|
630
|
+
- spec/integration/snapshot_query_examples_spec.rb
|
594
631
|
- spec/integration/srv_monitoring_spec.rb
|
595
632
|
- spec/integration/srv_spec.rb
|
596
633
|
- spec/integration/ssl_uri_options_spec.rb
|
597
634
|
- spec/integration/step_down_spec.rb
|
598
635
|
- spec/integration/time_zone_querying_spec.rb
|
636
|
+
- spec/integration/transaction_pinning_spec.rb
|
599
637
|
- spec/integration/transactions_api_examples_spec.rb
|
600
638
|
- spec/integration/transactions_examples_spec.rb
|
601
639
|
- spec/integration/truncated_utf8_spec.rb
|
@@ -649,8 +687,6 @@ files:
|
|
649
687
|
- spec/mongo/cluster_time_spec.rb
|
650
688
|
- spec/mongo/collection/view/aggregation_spec.rb
|
651
689
|
- spec/mongo/collection/view/builder/find_command_spec.rb
|
652
|
-
- spec/mongo/collection/view/builder/flags_spec.rb
|
653
|
-
- spec/mongo/collection/view/builder/modifiers_spec.rb
|
654
690
|
- spec/mongo/collection/view/builder/op_query_spec.rb
|
655
691
|
- spec/mongo/collection/view/change_stream_resume_spec.rb
|
656
692
|
- spec/mongo/collection/view/change_stream_spec.rb
|
@@ -664,6 +700,8 @@ files:
|
|
664
700
|
- spec/mongo/collection_crud_spec.rb
|
665
701
|
- spec/mongo/collection_ddl_spec.rb
|
666
702
|
- spec/mongo/collection_spec.rb
|
703
|
+
- spec/mongo/config/options_spec.rb
|
704
|
+
- spec/mongo/config_spec.rb
|
667
705
|
- spec/mongo/crypt/auto_decryption_context_spec.rb
|
668
706
|
- spec/mongo/crypt/auto_encrypter_spec.rb
|
669
707
|
- spec/mongo/crypt/auto_encryption_context_spec.rb
|
@@ -681,13 +719,14 @@ files:
|
|
681
719
|
- spec/mongo/crypt/explicit_encryption_context_spec.rb
|
682
720
|
- spec/mongo/crypt/handle_spec.rb
|
683
721
|
- spec/mongo/crypt/helpers/mongo_crypt_spec_helper.rb
|
722
|
+
- spec/mongo/crypt/hooks_spec.rb
|
723
|
+
- spec/mongo/crypt/kms/credentials_spec.rb
|
724
|
+
- spec/mongo/crypt/kms_spec.rb
|
684
725
|
- spec/mongo/crypt/status_spec.rb
|
685
726
|
- spec/mongo/cursor/builder/get_more_command_spec.rb
|
686
727
|
- spec/mongo/cursor/builder/op_get_more_spec.rb
|
687
|
-
- spec/mongo/cursor/builder/op_kill_cursors_spec.rb
|
688
728
|
- spec/mongo/cursor_spec.rb
|
689
729
|
- spec/mongo/database_spec.rb
|
690
|
-
- spec/mongo/dbref_spec.rb
|
691
730
|
- spec/mongo/distinguishing_semaphore_spec.rb
|
692
731
|
- spec/mongo/error/bulk_write_error_spec.rb
|
693
732
|
- spec/mongo/error/crypt_error_spec.rb
|
@@ -740,6 +779,7 @@ files:
|
|
740
779
|
- spec/mongo/operation/aggregate_spec.rb
|
741
780
|
- spec/mongo/operation/collections_info_spec.rb
|
742
781
|
- spec/mongo/operation/command_spec.rb
|
782
|
+
- spec/mongo/operation/create/op_msg_spec.rb
|
743
783
|
- spec/mongo/operation/create_index_spec.rb
|
744
784
|
- spec/mongo/operation/create_user_spec.rb
|
745
785
|
- spec/mongo/operation/delete/bulk_spec.rb
|
@@ -747,6 +787,8 @@ files:
|
|
747
787
|
- spec/mongo/operation/delete/op_msg_spec.rb
|
748
788
|
- spec/mongo/operation/delete_spec.rb
|
749
789
|
- spec/mongo/operation/drop_index_spec.rb
|
790
|
+
- spec/mongo/operation/find/builder/flags_spec.rb
|
791
|
+
- spec/mongo/operation/find/builder/modifiers_spec.rb
|
750
792
|
- spec/mongo/operation/find/legacy_spec.rb
|
751
793
|
- spec/mongo/operation/get_more_spec.rb
|
752
794
|
- spec/mongo/operation/indexes_spec.rb
|
@@ -754,7 +796,6 @@ files:
|
|
754
796
|
- spec/mongo/operation/insert/command_spec.rb
|
755
797
|
- spec/mongo/operation/insert/op_msg_spec.rb
|
756
798
|
- spec/mongo/operation/insert_spec.rb
|
757
|
-
- spec/mongo/operation/kill_cursors_spec.rb
|
758
799
|
- spec/mongo/operation/limited_spec.rb
|
759
800
|
- spec/mongo/operation/map_reduce_spec.rb
|
760
801
|
- spec/mongo/operation/read_preference_legacy_spec.rb
|
@@ -768,6 +809,7 @@ files:
|
|
768
809
|
- spec/mongo/operation/update_spec.rb
|
769
810
|
- spec/mongo/operation/update_user_spec.rb
|
770
811
|
- spec/mongo/options/redacted_spec.rb
|
812
|
+
- spec/mongo/protocol/caching_hash_spec.rb
|
771
813
|
- spec/mongo/protocol/compressed_spec.rb
|
772
814
|
- spec/mongo/protocol/delete_spec.rb
|
773
815
|
- spec/mongo/protocol/get_more_spec.rb
|
@@ -794,6 +836,7 @@ files:
|
|
794
836
|
- spec/mongo/server/monitor/app_metadata_spec.rb
|
795
837
|
- spec/mongo/server/monitor/connection_spec.rb
|
796
838
|
- spec/mongo/server/monitor_spec.rb
|
839
|
+
- spec/mongo/server/push_monitor_spec.rb
|
797
840
|
- spec/mongo/server/round_trip_time_averager_spec.rb
|
798
841
|
- spec/mongo/server_selector/nearest_spec.rb
|
799
842
|
- spec/mongo/server_selector/primary_preferred_spec.rb
|
@@ -851,6 +894,7 @@ files:
|
|
851
894
|
- spec/runners/unified.rb
|
852
895
|
- spec/runners/unified/assertions.rb
|
853
896
|
- spec/runners/unified/change_stream_operations.rb
|
897
|
+
- spec/runners/unified/client_side_encryption_operations.rb
|
854
898
|
- spec/runners/unified/crud_operations.rb
|
855
899
|
- spec/runners/unified/ddl_operations.rb
|
856
900
|
- spec/runners/unified/entity_map.rb
|
@@ -861,7 +905,6 @@ files:
|
|
861
905
|
- spec/runners/unified/support_operations.rb
|
862
906
|
- spec/runners/unified/test.rb
|
863
907
|
- spec/runners/unified/test_group.rb
|
864
|
-
- spec/runners/unified/using_hash.rb
|
865
908
|
- spec/shared/LICENSE
|
866
909
|
- spec/shared/bin/get-mongodb-download-url
|
867
910
|
- spec/shared/bin/s3-copy
|
@@ -870,36 +913,42 @@ files:
|
|
870
913
|
- spec/shared/lib/mrss/cluster_config.rb
|
871
914
|
- spec/shared/lib/mrss/constraints.rb
|
872
915
|
- spec/shared/lib/mrss/docker_runner.rb
|
916
|
+
- spec/shared/lib/mrss/eg_config_utils.rb
|
917
|
+
- spec/shared/lib/mrss/event_subscriber.rb
|
873
918
|
- spec/shared/lib/mrss/lite_constraints.rb
|
874
919
|
- spec/shared/lib/mrss/server_version_registry.rb
|
920
|
+
- spec/shared/lib/mrss/session_registry.rb
|
921
|
+
- spec/shared/lib/mrss/session_registry_legacy.rb
|
875
922
|
- spec/shared/lib/mrss/spec_organizer.rb
|
876
923
|
- spec/shared/lib/mrss/utils.rb
|
877
924
|
- spec/shared/share/Dockerfile.erb
|
878
925
|
- spec/shared/share/haproxy-1.conf
|
879
926
|
- spec/shared/share/haproxy-2.conf
|
927
|
+
- spec/shared/shlib/config.sh
|
880
928
|
- spec/shared/shlib/distro.sh
|
881
929
|
- spec/shared/shlib/server.sh
|
882
930
|
- spec/shared/shlib/set_env.sh
|
883
931
|
- spec/solo/clean_exit_spec.rb
|
884
932
|
- spec/spec_helper.rb
|
885
933
|
- spec/spec_tests/auth_spec.rb
|
886
|
-
- spec/spec_tests/change_streams_spec.rb
|
887
934
|
- spec/spec_tests/change_streams_unified_spec.rb
|
888
935
|
- spec/spec_tests/client_side_encryption_spec.rb
|
936
|
+
- spec/spec_tests/client_side_encryption_unified_spec.rb
|
889
937
|
- spec/spec_tests/cmap_spec.rb
|
890
938
|
- spec/spec_tests/collection_management_spec.rb
|
891
|
-
- spec/spec_tests/command_monitoring_spec.rb
|
892
939
|
- spec/spec_tests/command_monitoring_unified_spec.rb
|
893
940
|
- spec/spec_tests/connection_string_spec.rb
|
894
941
|
- spec/spec_tests/crud_spec.rb
|
895
942
|
- spec/spec_tests/crud_unified_spec.rb
|
896
943
|
- spec/spec_tests/data/auth/connection-string.yml
|
897
|
-
- spec/spec_tests/data/
|
898
|
-
- spec/spec_tests/data/
|
899
|
-
- spec/spec_tests/data/
|
900
|
-
- spec/spec_tests/data/
|
944
|
+
- spec/spec_tests/data/change_streams_unified/change-streams-errors.yml
|
945
|
+
- spec/spec_tests/data/change_streams_unified/change-streams-pre_and_post_images.yml
|
946
|
+
- spec/spec_tests/data/change_streams_unified/change-streams-resume-allowlist.yml
|
947
|
+
- spec/spec_tests/data/change_streams_unified/change-streams-resume-errorLabels.yml
|
948
|
+
- spec/spec_tests/data/change_streams_unified/change-streams-showExpandedEvents.yml
|
901
949
|
- spec/spec_tests/data/change_streams_unified/change-streams.yml
|
902
950
|
- spec/spec_tests/data/client_side_encryption/aggregate.yml
|
951
|
+
- spec/spec_tests/data/client_side_encryption/azureKMS.yml
|
903
952
|
- spec/spec_tests/data/client_side_encryption/badQueries.yml
|
904
953
|
- spec/spec_tests/data/client_side_encryption/badSchema.yml
|
905
954
|
- spec/spec_tests/data/client_side_encryption/basic.yml
|
@@ -908,6 +957,7 @@ files:
|
|
908
957
|
- spec/spec_tests/data/client_side_encryption/bypassedCommand.yml
|
909
958
|
- spec/spec_tests/data/client_side_encryption/count.yml
|
910
959
|
- spec/spec_tests/data/client_side_encryption/countDocuments.yml
|
960
|
+
- spec/spec_tests/data/client_side_encryption/create-and-createIndexes.yml
|
911
961
|
- spec/spec_tests/data/client_side_encryption/delete.yml
|
912
962
|
- spec/spec_tests/data/client_side_encryption/distinct.yml
|
913
963
|
- spec/spec_tests/data/client_side_encryption/explain.yml
|
@@ -915,6 +965,22 @@ files:
|
|
915
965
|
- spec/spec_tests/data/client_side_encryption/findOneAndDelete.yml
|
916
966
|
- spec/spec_tests/data/client_side_encryption/findOneAndReplace.yml
|
917
967
|
- spec/spec_tests/data/client_side_encryption/findOneAndUpdate.yml
|
968
|
+
- spec/spec_tests/data/client_side_encryption/fle2-BypassQueryAnalysis.yml
|
969
|
+
- spec/spec_tests/data/client_side_encryption/fle2-Compact.yml
|
970
|
+
- spec/spec_tests/data/client_side_encryption/fle2-CreateCollection.yml
|
971
|
+
- spec/spec_tests/data/client_side_encryption/fle2-DecryptExistingData.yml
|
972
|
+
- spec/spec_tests/data/client_side_encryption/fle2-Delete.yml
|
973
|
+
- spec/spec_tests/data/client_side_encryption/fle2-EncryptedFields-vs-EncryptedFieldsMap.yml
|
974
|
+
- spec/spec_tests/data/client_side_encryption/fle2-EncryptedFields-vs-jsonSchema.yml
|
975
|
+
- spec/spec_tests/data/client_side_encryption/fle2-EncryptedFieldsMap-defaults.yml
|
976
|
+
- spec/spec_tests/data/client_side_encryption/fle2-FindOneAndUpdate.yml
|
977
|
+
- spec/spec_tests/data/client_side_encryption/fle2-InsertFind-Indexed.yml
|
978
|
+
- spec/spec_tests/data/client_side_encryption/fle2-InsertFind-Unindexed.yml
|
979
|
+
- spec/spec_tests/data/client_side_encryption/fle2-MissingKey.yml
|
980
|
+
- spec/spec_tests/data/client_side_encryption/fle2-NoEncryption.yml
|
981
|
+
- spec/spec_tests/data/client_side_encryption/fle2-Update.yml
|
982
|
+
- spec/spec_tests/data/client_side_encryption/fle2-validatorAndPartialFieldExpression.yml
|
983
|
+
- spec/spec_tests/data/client_side_encryption/gcpKMS.yml
|
918
984
|
- spec/spec_tests/data/client_side_encryption/getMore.yml
|
919
985
|
- spec/spec_tests/data/client_side_encryption/insert.yml
|
920
986
|
- spec/spec_tests/data/client_side_encryption/keyAltName.yml
|
@@ -923,11 +989,24 @@ files:
|
|
923
989
|
- spec/spec_tests/data/client_side_encryption/malformedCiphertext.yml
|
924
990
|
- spec/spec_tests/data/client_side_encryption/maxWireVersion.yml
|
925
991
|
- spec/spec_tests/data/client_side_encryption/missingKey.yml
|
992
|
+
- spec/spec_tests/data/client_side_encryption/noSchema.yml
|
926
993
|
- spec/spec_tests/data/client_side_encryption/replaceOne.yml
|
927
994
|
- spec/spec_tests/data/client_side_encryption/types.yml
|
995
|
+
- spec/spec_tests/data/client_side_encryption/unified/addKeyAltName.yml
|
996
|
+
- spec/spec_tests/data/client_side_encryption/unified/createDataKey-kms_providers-invalid.yml
|
997
|
+
- spec/spec_tests/data/client_side_encryption/unified/createDataKey.yml
|
998
|
+
- spec/spec_tests/data/client_side_encryption/unified/deleteKey.yml
|
999
|
+
- spec/spec_tests/data/client_side_encryption/unified/getKey.yml
|
1000
|
+
- spec/spec_tests/data/client_side_encryption/unified/getKeyByAltName.yml
|
1001
|
+
- spec/spec_tests/data/client_side_encryption/unified/getKeys.yml
|
1002
|
+
- spec/spec_tests/data/client_side_encryption/unified/removeKeyAltName.yml
|
1003
|
+
- spec/spec_tests/data/client_side_encryption/unified/rewrapManyDataKey-decrypt_failure.yml
|
1004
|
+
- spec/spec_tests/data/client_side_encryption/unified/rewrapManyDataKey-encrypt_failure.yml
|
1005
|
+
- spec/spec_tests/data/client_side_encryption/unified/rewrapManyDataKey.yml
|
928
1006
|
- spec/spec_tests/data/client_side_encryption/unsupportedCommand.yml
|
929
1007
|
- spec/spec_tests/data/client_side_encryption/updateMany.yml
|
930
1008
|
- spec/spec_tests/data/client_side_encryption/updateOne.yml
|
1009
|
+
- spec/spec_tests/data/client_side_encryption/validatorAndPartialFieldExpression.yml
|
931
1010
|
- spec/spec_tests/data/cmap/connection-must-have-id.yml
|
932
1011
|
- spec/spec_tests/data/cmap/connection-must-order-ids.yml
|
933
1012
|
- spec/spec_tests/data/cmap/pool-checkin-destroy-closed.yml
|
@@ -947,18 +1026,23 @@ files:
|
|
947
1026
|
- spec/spec_tests/data/cmap/pool-create.yml
|
948
1027
|
- spec/spec_tests/data/cmap/wait-queue-fairness.yml
|
949
1028
|
- spec/spec_tests/data/cmap/wait-queue-timeout.yml
|
1029
|
+
- spec/spec_tests/data/collection_management/clustered-indexes.yml
|
1030
|
+
- spec/spec_tests/data/collection_management/createCollection-pre_and_post_images.yml
|
1031
|
+
- spec/spec_tests/data/collection_management/modifyCollection-pre_and_post_images.yml
|
950
1032
|
- spec/spec_tests/data/collection_management/timeseries-collection.yml
|
951
|
-
- spec/spec_tests/data/
|
952
|
-
- spec/spec_tests/data/
|
953
|
-
- spec/spec_tests/data/
|
954
|
-
- spec/spec_tests/data/
|
955
|
-
- spec/spec_tests/data/
|
956
|
-
- spec/spec_tests/data/
|
957
|
-
- spec/spec_tests/data/
|
958
|
-
- spec/spec_tests/data/
|
959
|
-
- spec/spec_tests/data/command_monitoring/updateMany.yml
|
960
|
-
- spec/spec_tests/data/command_monitoring/updateOne.yml
|
1033
|
+
- spec/spec_tests/data/command_monitoring_unified/bulkWrite.yml
|
1034
|
+
- spec/spec_tests/data/command_monitoring_unified/command.yml
|
1035
|
+
- spec/spec_tests/data/command_monitoring_unified/deleteMany.yml
|
1036
|
+
- spec/spec_tests/data/command_monitoring_unified/deleteOne.yml
|
1037
|
+
- spec/spec_tests/data/command_monitoring_unified/find.yml
|
1038
|
+
- spec/spec_tests/data/command_monitoring_unified/insertMany.yml
|
1039
|
+
- spec/spec_tests/data/command_monitoring_unified/insertOne.yml
|
1040
|
+
- spec/spec_tests/data/command_monitoring_unified/pre-42-server-connection-id.yml
|
961
1041
|
- spec/spec_tests/data/command_monitoring_unified/redacted-commands.yml
|
1042
|
+
- spec/spec_tests/data/command_monitoring_unified/server-connection-id.yml
|
1043
|
+
- spec/spec_tests/data/command_monitoring_unified/unacknowledgedBulkWrite.yml
|
1044
|
+
- spec/spec_tests/data/command_monitoring_unified/updateMany.yml
|
1045
|
+
- spec/spec_tests/data/command_monitoring_unified/updateOne.yml
|
962
1046
|
- spec/spec_tests/data/connection_string/invalid-uris.yml
|
963
1047
|
- spec/spec_tests/data/connection_string/valid-auth.yml
|
964
1048
|
- spec/spec_tests/data/connection_string/valid-db-with-dotted-name.yml
|
@@ -1007,83 +1091,120 @@ files:
|
|
1007
1091
|
- spec/spec_tests/data/crud/write/updateOne-collation.yml
|
1008
1092
|
- spec/spec_tests/data/crud/write/updateOne-pre_2.6.yml
|
1009
1093
|
- spec/spec_tests/data/crud/write/updateOne.yml
|
1094
|
+
- spec/spec_tests/data/crud_unified/aggregate-allowdiskuse.yml
|
1095
|
+
- spec/spec_tests/data/crud_unified/aggregate-let.yml
|
1096
|
+
- spec/spec_tests/data/crud_unified/aggregate-merge.yml
|
1097
|
+
- spec/spec_tests/data/crud_unified/aggregate-out-readConcern.yml
|
1098
|
+
- spec/spec_tests/data/crud_unified/aggregate-write-readPreference.yml
|
1099
|
+
- spec/spec_tests/data/crud_unified/aggregate.yml
|
1100
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-arrayFilters-clientError.yml
|
1101
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-arrayFilters.yml
|
1102
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-comment.yml
|
1103
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-delete-hint-clientError.yml
|
1104
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-delete-hint-serverError.yml
|
1105
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-delete-hint.yml
|
1106
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-deleteMany-hint-unacknowledged.yml
|
1107
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-deleteMany-let.yml
|
1108
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-deleteOne-hint-unacknowledged.yml
|
1109
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-deleteOne-let.yml
|
1110
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-insertOne-dots_and_dollars.yml
|
1111
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-replaceOne-dots_and_dollars.yml
|
1112
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-replaceOne-hint-unacknowledged.yml
|
1113
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-replaceOne-let.yml
|
1114
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-update-hint-clientError.yml
|
1115
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-update-hint-serverError.yml
|
1116
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-update-hint.yml
|
1117
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-update-validation.yml
|
1118
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-updateMany-dots_and_dollars.yml
|
1119
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-updateMany-hint-unacknowledged.yml
|
1120
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-updateMany-let.yml
|
1121
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-updateOne-dots_and_dollars.yml
|
1122
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-updateOne-hint-unacknowledged.yml
|
1123
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-updateOne-let.yml
|
1124
|
+
- spec/spec_tests/data/crud_unified/countDocuments-comment.yml
|
1125
|
+
- spec/spec_tests/data/crud_unified/db-aggregate-write-readPreference.yml
|
1126
|
+
- spec/spec_tests/data/crud_unified/db-aggregate.yml
|
1127
|
+
- spec/spec_tests/data/crud_unified/deleteMany-comment.yml
|
1128
|
+
- spec/spec_tests/data/crud_unified/deleteMany-hint-clientError.yml
|
1129
|
+
- spec/spec_tests/data/crud_unified/deleteMany-hint-serverError.yml
|
1130
|
+
- spec/spec_tests/data/crud_unified/deleteMany-hint-unacknowledged.yml
|
1131
|
+
- spec/spec_tests/data/crud_unified/deleteMany-hint.yml
|
1132
|
+
- spec/spec_tests/data/crud_unified/deleteMany-let.yml
|
1133
|
+
- spec/spec_tests/data/crud_unified/deleteOne-comment.yml
|
1134
|
+
- spec/spec_tests/data/crud_unified/deleteOne-hint-clientError.yml
|
1135
|
+
- spec/spec_tests/data/crud_unified/deleteOne-hint-serverError.yml
|
1136
|
+
- spec/spec_tests/data/crud_unified/deleteOne-hint-unacknowledged.yml
|
1137
|
+
- spec/spec_tests/data/crud_unified/deleteOne-hint.yml
|
1138
|
+
- spec/spec_tests/data/crud_unified/deleteOne-let.yml
|
1139
|
+
- spec/spec_tests/data/crud_unified/distinct-comment.yml
|
1140
|
+
- spec/spec_tests/data/crud_unified/estimatedDocumentCount-comment.yml
|
1010
1141
|
- spec/spec_tests/data/crud_unified/estimatedDocumentCount.yml
|
1142
|
+
- spec/spec_tests/data/crud_unified/find-allowdiskuse-clientError.yml
|
1143
|
+
- spec/spec_tests/data/crud_unified/find-allowdiskuse-serverError.yml
|
1144
|
+
- spec/spec_tests/data/crud_unified/find-allowdiskuse.yml
|
1145
|
+
- spec/spec_tests/data/crud_unified/find-comment.yml
|
1146
|
+
- spec/spec_tests/data/crud_unified/find-let.yml
|
1147
|
+
- spec/spec_tests/data/crud_unified/find.yml
|
1148
|
+
- spec/spec_tests/data/crud_unified/findOneAndDelete-comment.yml
|
1149
|
+
- spec/spec_tests/data/crud_unified/findOneAndDelete-hint-clientError.yml
|
1150
|
+
- spec/spec_tests/data/crud_unified/findOneAndDelete-hint-serverError.yml
|
1151
|
+
- spec/spec_tests/data/crud_unified/findOneAndDelete-hint-unacknowledged.yml
|
1152
|
+
- spec/spec_tests/data/crud_unified/findOneAndDelete-hint.yml
|
1153
|
+
- spec/spec_tests/data/crud_unified/findOneAndDelete-let.yml
|
1154
|
+
- spec/spec_tests/data/crud_unified/findOneAndReplace-comment.yml
|
1155
|
+
- spec/spec_tests/data/crud_unified/findOneAndReplace-dots_and_dollars.yml
|
1156
|
+
- spec/spec_tests/data/crud_unified/findOneAndReplace-hint-clientError.yml
|
1157
|
+
- spec/spec_tests/data/crud_unified/findOneAndReplace-hint-serverError.yml
|
1158
|
+
- spec/spec_tests/data/crud_unified/findOneAndReplace-hint-unacknowledged.yml
|
1159
|
+
- spec/spec_tests/data/crud_unified/findOneAndReplace-hint.yml
|
1160
|
+
- spec/spec_tests/data/crud_unified/findOneAndReplace-let.yml
|
1161
|
+
- spec/spec_tests/data/crud_unified/findOneAndUpdate-comment.yml
|
1162
|
+
- spec/spec_tests/data/crud_unified/findOneAndUpdate-dots_and_dollars.yml
|
1163
|
+
- spec/spec_tests/data/crud_unified/findOneAndUpdate-hint-clientError.yml
|
1164
|
+
- spec/spec_tests/data/crud_unified/findOneAndUpdate-hint-serverError.yml
|
1165
|
+
- spec/spec_tests/data/crud_unified/findOneAndUpdate-hint-unacknowledged.yml
|
1166
|
+
- spec/spec_tests/data/crud_unified/findOneAndUpdate-hint.yml
|
1167
|
+
- spec/spec_tests/data/crud_unified/findOneAndUpdate-let.yml
|
1168
|
+
- spec/spec_tests/data/crud_unified/insertMany-comment.yml
|
1169
|
+
- spec/spec_tests/data/crud_unified/insertMany-dots_and_dollars.yml
|
1170
|
+
- spec/spec_tests/data/crud_unified/insertOne-comment.yml
|
1171
|
+
- spec/spec_tests/data/crud_unified/insertOne-dots_and_dollars.yml
|
1172
|
+
- spec/spec_tests/data/crud_unified/replaceOne-comment.yml
|
1173
|
+
- spec/spec_tests/data/crud_unified/replaceOne-dots_and_dollars.yml
|
1174
|
+
- spec/spec_tests/data/crud_unified/replaceOne-hint-unacknowledged.yml
|
1175
|
+
- spec/spec_tests/data/crud_unified/replaceOne-hint.yml
|
1176
|
+
- spec/spec_tests/data/crud_unified/replaceOne-let.yml
|
1177
|
+
- spec/spec_tests/data/crud_unified/replaceOne-validation.yml
|
1178
|
+
- spec/spec_tests/data/crud_unified/updateMany-comment.yml
|
1179
|
+
- spec/spec_tests/data/crud_unified/updateMany-dots_and_dollars.yml
|
1180
|
+
- spec/spec_tests/data/crud_unified/updateMany-hint-clientError.yml
|
1181
|
+
- spec/spec_tests/data/crud_unified/updateMany-hint-serverError.yml
|
1182
|
+
- spec/spec_tests/data/crud_unified/updateMany-hint-unacknowledged.yml
|
1183
|
+
- spec/spec_tests/data/crud_unified/updateMany-hint.yml
|
1184
|
+
- spec/spec_tests/data/crud_unified/updateMany-let.yml
|
1185
|
+
- spec/spec_tests/data/crud_unified/updateMany-validation.yml
|
1186
|
+
- spec/spec_tests/data/crud_unified/updateOne-comment.yml
|
1187
|
+
- spec/spec_tests/data/crud_unified/updateOne-dots_and_dollars.yml
|
1188
|
+
- spec/spec_tests/data/crud_unified/updateOne-hint-clientError.yml
|
1189
|
+
- spec/spec_tests/data/crud_unified/updateOne-hint-serverError.yml
|
1190
|
+
- spec/spec_tests/data/crud_unified/updateOne-hint-unacknowledged.yml
|
1191
|
+
- spec/spec_tests/data/crud_unified/updateOne-hint.yml
|
1192
|
+
- spec/spec_tests/data/crud_unified/updateOne-let.yml
|
1193
|
+
- spec/spec_tests/data/crud_unified/updateOne-validation.yml
|
1011
1194
|
- spec/spec_tests/data/crud_unified/updateWithPipelines.yml
|
1012
|
-
- spec/spec_tests/data/crud_v2/aggregate-merge.yml
|
1013
|
-
- spec/spec_tests/data/crud_v2/aggregate-out-readConcern.yml
|
1014
|
-
- spec/spec_tests/data/crud_v2/bulkWrite-arrayFilters.yml
|
1015
|
-
- spec/spec_tests/data/crud_v2/bulkWrite-delete-hint-clientError.yml
|
1016
|
-
- spec/spec_tests/data/crud_v2/bulkWrite-delete-hint-serverError.yml
|
1017
|
-
- spec/spec_tests/data/crud_v2/bulkWrite-delete-hint.yml
|
1018
|
-
- spec/spec_tests/data/crud_v2/bulkWrite-update-hint-clientError.yml
|
1019
|
-
- spec/spec_tests/data/crud_v2/bulkWrite-update-hint-serverError.yml
|
1020
|
-
- spec/spec_tests/data/crud_v2/bulkWrite-update-hint.yml
|
1021
|
-
- spec/spec_tests/data/crud_v2/db-aggregate.yml
|
1022
|
-
- spec/spec_tests/data/crud_v2/deleteMany-hint-clientError.yml
|
1023
|
-
- spec/spec_tests/data/crud_v2/deleteMany-hint-serverError.yml
|
1024
|
-
- spec/spec_tests/data/crud_v2/deleteMany-hint.yml
|
1025
|
-
- spec/spec_tests/data/crud_v2/deleteOne-hint-clientError.yml
|
1026
|
-
- spec/spec_tests/data/crud_v2/deleteOne-hint-serverError.yml
|
1027
|
-
- spec/spec_tests/data/crud_v2/deleteOne-hint.yml
|
1028
|
-
- spec/spec_tests/data/crud_v2/find-allowdiskuse-clientError.yml
|
1029
|
-
- spec/spec_tests/data/crud_v2/find-allowdiskuse-serverError.yml
|
1030
|
-
- spec/spec_tests/data/crud_v2/find-allowdiskuse.yml
|
1031
|
-
- spec/spec_tests/data/crud_v2/findOneAndDelete-hint-clientError.yml
|
1032
|
-
- spec/spec_tests/data/crud_v2/findOneAndDelete-hint-serverError.yml
|
1033
|
-
- spec/spec_tests/data/crud_v2/findOneAndDelete-hint.yml
|
1034
|
-
- spec/spec_tests/data/crud_v2/findOneAndReplace-hint-clientError.yml
|
1035
|
-
- spec/spec_tests/data/crud_v2/findOneAndReplace-hint-serverError.yml
|
1036
|
-
- spec/spec_tests/data/crud_v2/findOneAndReplace-hint.yml
|
1037
|
-
- spec/spec_tests/data/crud_v2/findOneAndUpdate-hint-clientError.yml
|
1038
|
-
- spec/spec_tests/data/crud_v2/findOneAndUpdate-hint-serverError.yml
|
1039
|
-
- spec/spec_tests/data/crud_v2/findOneAndUpdate-hint.yml
|
1040
|
-
- spec/spec_tests/data/crud_v2/replaceOne-hint.yml
|
1041
|
-
- spec/spec_tests/data/crud_v2/unacknowledged-bulkWrite-delete-hint-clientError.yml
|
1042
|
-
- spec/spec_tests/data/crud_v2/unacknowledged-bulkWrite-update-hint-clientError.yml
|
1043
|
-
- spec/spec_tests/data/crud_v2/unacknowledged-deleteMany-hint-clientError.yml
|
1044
|
-
- spec/spec_tests/data/crud_v2/unacknowledged-deleteOne-hint-clientError.yml
|
1045
|
-
- spec/spec_tests/data/crud_v2/unacknowledged-findOneAndDelete-hint-clientError.yml
|
1046
|
-
- spec/spec_tests/data/crud_v2/unacknowledged-findOneAndReplace-hint-clientError.yml
|
1047
|
-
- spec/spec_tests/data/crud_v2/unacknowledged-findOneAndUpdate-hint-clientError.yml
|
1048
|
-
- spec/spec_tests/data/crud_v2/unacknowledged-replaceOne-hint-clientError.yml
|
1049
|
-
- spec/spec_tests/data/crud_v2/unacknowledged-updateMany-hint-clientError.yml
|
1050
|
-
- spec/spec_tests/data/crud_v2/unacknowledged-updateOne-hint-clientError.yml
|
1051
|
-
- spec/spec_tests/data/crud_v2/updateMany-hint-clientError.yml
|
1052
|
-
- spec/spec_tests/data/crud_v2/updateMany-hint-serverError.yml
|
1053
|
-
- spec/spec_tests/data/crud_v2/updateMany-hint.yml
|
1054
|
-
- spec/spec_tests/data/crud_v2/updateOne-hint-clientError.yml
|
1055
|
-
- spec/spec_tests/data/crud_v2/updateOne-hint-serverError.yml
|
1056
|
-
- spec/spec_tests/data/crud_v2/updateOne-hint.yml
|
1057
|
-
- spec/spec_tests/data/crud_v2/updateWithPipelines.yml
|
1058
|
-
- spec/spec_tests/data/dns_seedlist_discovery/direct-connection-false.yml
|
1059
|
-
- spec/spec_tests/data/dns_seedlist_discovery/direct-connection-true.yml
|
1060
|
-
- spec/spec_tests/data/dns_seedlist_discovery/longer-parent-in-return.yml
|
1061
|
-
- spec/spec_tests/data/dns_seedlist_discovery/misformatted-option.yml
|
1062
|
-
- spec/spec_tests/data/dns_seedlist_discovery/no-results.yml
|
1063
|
-
- spec/spec_tests/data/dns_seedlist_discovery/not-enough-parts.yml
|
1064
|
-
- spec/spec_tests/data/dns_seedlist_discovery/one-result-default-port.yml
|
1065
|
-
- spec/spec_tests/data/dns_seedlist_discovery/one-txt-record-multiple-strings.yml
|
1066
|
-
- spec/spec_tests/data/dns_seedlist_discovery/one-txt-record.yml
|
1067
|
-
- spec/spec_tests/data/dns_seedlist_discovery/parent-part-mismatch1.yml
|
1068
|
-
- spec/spec_tests/data/dns_seedlist_discovery/parent-part-mismatch2.yml
|
1069
|
-
- spec/spec_tests/data/dns_seedlist_discovery/parent-part-mismatch3.yml
|
1070
|
-
- spec/spec_tests/data/dns_seedlist_discovery/parent-part-mismatch4.yml
|
1071
|
-
- spec/spec_tests/data/dns_seedlist_discovery/parent-part-mismatch5.yml
|
1072
|
-
- spec/spec_tests/data/dns_seedlist_discovery/returned-parent-too-short.yml
|
1073
|
-
- spec/spec_tests/data/dns_seedlist_discovery/returned-parent-wrong.yml
|
1074
|
-
- spec/spec_tests/data/dns_seedlist_discovery/two-results-default-port.yml
|
1075
|
-
- spec/spec_tests/data/dns_seedlist_discovery/two-results-nonstandard-port.yml
|
1076
|
-
- spec/spec_tests/data/dns_seedlist_discovery/two-txt-records.yml
|
1077
|
-
- spec/spec_tests/data/dns_seedlist_discovery/txt-record-not-allowed-option.yml
|
1078
|
-
- spec/spec_tests/data/dns_seedlist_discovery/txt-record-with-overridden-ssl-option.yml
|
1079
|
-
- spec/spec_tests/data/dns_seedlist_discovery/txt-record-with-overridden-uri-option.yml
|
1080
|
-
- spec/spec_tests/data/dns_seedlist_discovery/txt-record-with-unallowed-option.yml
|
1081
|
-
- spec/spec_tests/data/dns_seedlist_discovery/uri-with-port.yml
|
1082
|
-
- spec/spec_tests/data/dns_seedlist_discovery/uri-with-two-hosts.yml
|
1083
1195
|
- spec/spec_tests/data/gridfs/delete.yml
|
1084
1196
|
- spec/spec_tests/data/gridfs/download.yml
|
1085
1197
|
- spec/spec_tests/data/gridfs/download_by_name.yml
|
1086
1198
|
- spec/spec_tests/data/gridfs/upload.yml
|
1199
|
+
- spec/spec_tests/data/gridfs_unified/delete.yml
|
1200
|
+
- spec/spec_tests/data/gridfs_unified/download.yml
|
1201
|
+
- spec/spec_tests/data/gridfs_unified/downloadByName.yml
|
1202
|
+
- spec/spec_tests/data/gridfs_unified/upload-disableMD5.yml
|
1203
|
+
- spec/spec_tests/data/gridfs_unified/upload.yml
|
1204
|
+
- spec/spec_tests/data/load_balancers/event-monitoring.yml
|
1205
|
+
- spec/spec_tests/data/load_balancers/lb-connection-establishment.yml
|
1206
|
+
- spec/spec_tests/data/load_balancers/non-lb-connection-establishment.yml
|
1207
|
+
- spec/spec_tests/data/load_balancers/server-selection.yml
|
1087
1208
|
- spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/DefaultNoMaxStaleness.yml
|
1088
1209
|
- spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/Incompatible.yml
|
1089
1210
|
- spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/LastUpdateTime.yml
|
@@ -1128,79 +1249,81 @@ files:
|
|
1128
1249
|
- spec/spec_tests/data/read_write_concern/operation/default-write-concern-3.2.yml
|
1129
1250
|
- spec/spec_tests/data/read_write_concern/operation/default-write-concern-3.4.yml
|
1130
1251
|
- spec/spec_tests/data/read_write_concern/operation/default-write-concern-4.2.yml
|
1131
|
-
- spec/spec_tests/data/retryable_reads/aggregate-merge.yml
|
1132
|
-
- spec/spec_tests/data/retryable_reads/aggregate-serverErrors.yml
|
1133
|
-
- spec/spec_tests/data/retryable_reads/aggregate.yml
|
1134
|
-
- spec/spec_tests/data/retryable_reads/changeStreams-client.watch-serverErrors.yml
|
1135
|
-
- spec/spec_tests/data/retryable_reads/changeStreams-client.watch.yml
|
1136
|
-
- spec/spec_tests/data/retryable_reads/changeStreams-db.coll.watch-serverErrors.yml
|
1137
|
-
- spec/spec_tests/data/retryable_reads/changeStreams-db.coll.watch.yml
|
1138
|
-
- spec/spec_tests/data/retryable_reads/changeStreams-db.watch-serverErrors.yml
|
1139
|
-
- spec/spec_tests/data/retryable_reads/changeStreams-db.watch.yml
|
1140
|
-
- spec/spec_tests/data/retryable_reads/count-serverErrors.yml
|
1141
|
-
- spec/spec_tests/data/retryable_reads/count.yml
|
1142
|
-
- spec/spec_tests/data/retryable_reads/countDocuments-serverErrors.yml
|
1143
|
-
- spec/spec_tests/data/retryable_reads/countDocuments.yml
|
1144
|
-
- spec/spec_tests/data/retryable_reads/distinct-serverErrors.yml
|
1145
|
-
- spec/spec_tests/data/retryable_reads/distinct.yml
|
1146
|
-
- spec/spec_tests/data/retryable_reads/estimatedDocumentCount-
|
1147
|
-
- spec/spec_tests/data/retryable_reads/estimatedDocumentCount
|
1148
|
-
- spec/spec_tests/data/retryable_reads/
|
1149
|
-
- spec/spec_tests/data/retryable_reads/
|
1150
|
-
- spec/spec_tests/data/retryable_reads/
|
1151
|
-
- spec/spec_tests/data/retryable_reads/
|
1152
|
-
- spec/spec_tests/data/retryable_reads/
|
1153
|
-
- spec/spec_tests/data/retryable_reads/
|
1154
|
-
- spec/spec_tests/data/retryable_reads/gridfs-
|
1155
|
-
- spec/spec_tests/data/retryable_reads/gridfs-
|
1156
|
-
- spec/spec_tests/data/retryable_reads/
|
1157
|
-
- spec/spec_tests/data/retryable_reads/
|
1158
|
-
- spec/spec_tests/data/retryable_reads/
|
1159
|
-
- spec/spec_tests/data/retryable_reads/
|
1160
|
-
- spec/spec_tests/data/retryable_reads/
|
1161
|
-
- spec/spec_tests/data/retryable_reads/
|
1162
|
-
- spec/spec_tests/data/retryable_reads/
|
1163
|
-
- spec/spec_tests/data/retryable_reads/
|
1164
|
-
- spec/spec_tests/data/retryable_reads/
|
1165
|
-
- spec/spec_tests/data/retryable_reads/
|
1166
|
-
- spec/spec_tests/data/retryable_reads/
|
1167
|
-
- spec/spec_tests/data/retryable_reads/
|
1168
|
-
- spec/spec_tests/data/retryable_reads/
|
1169
|
-
- spec/spec_tests/data/retryable_reads/
|
1170
|
-
- spec/spec_tests/data/retryable_reads/
|
1171
|
-
- spec/spec_tests/data/retryable_reads/
|
1172
|
-
- spec/spec_tests/data/retryable_reads/
|
1173
|
-
- spec/spec_tests/data/retryable_reads/
|
1174
|
-
- spec/spec_tests/data/
|
1175
|
-
- spec/spec_tests/data/retryable_writes/bulkWrite-
|
1176
|
-
- spec/spec_tests/data/retryable_writes/bulkWrite
|
1177
|
-
- spec/spec_tests/data/retryable_writes/
|
1178
|
-
- spec/spec_tests/data/retryable_writes/
|
1179
|
-
- spec/spec_tests/data/retryable_writes/deleteOne-
|
1180
|
-
- spec/spec_tests/data/retryable_writes/deleteOne
|
1181
|
-
- spec/spec_tests/data/retryable_writes/
|
1182
|
-
- spec/spec_tests/data/retryable_writes/findOneAndDelete-
|
1183
|
-
- spec/spec_tests/data/retryable_writes/findOneAndDelete
|
1184
|
-
- spec/spec_tests/data/retryable_writes/
|
1185
|
-
- spec/spec_tests/data/retryable_writes/findOneAndReplace-
|
1186
|
-
- spec/spec_tests/data/retryable_writes/findOneAndReplace
|
1187
|
-
- spec/spec_tests/data/retryable_writes/
|
1188
|
-
- spec/spec_tests/data/retryable_writes/findOneAndUpdate-
|
1189
|
-
- spec/spec_tests/data/retryable_writes/findOneAndUpdate
|
1190
|
-
- spec/spec_tests/data/retryable_writes/
|
1191
|
-
- spec/spec_tests/data/retryable_writes/insertMany-
|
1192
|
-
- spec/spec_tests/data/retryable_writes/insertMany
|
1193
|
-
- spec/spec_tests/data/retryable_writes/
|
1194
|
-
- spec/spec_tests/data/retryable_writes/insertOne-
|
1195
|
-
- spec/spec_tests/data/retryable_writes/insertOne
|
1196
|
-
- spec/spec_tests/data/retryable_writes/
|
1197
|
-
- spec/spec_tests/data/retryable_writes/replaceOne-
|
1198
|
-
- spec/spec_tests/data/retryable_writes/replaceOne
|
1199
|
-
- spec/spec_tests/data/retryable_writes/
|
1200
|
-
- spec/spec_tests/data/retryable_writes/
|
1201
|
-
- spec/spec_tests/data/retryable_writes/updateOne-
|
1202
|
-
- spec/spec_tests/data/retryable_writes/updateOne
|
1203
|
-
- spec/spec_tests/data/retryable_writes/
|
1252
|
+
- spec/spec_tests/data/retryable_reads/legacy/aggregate-merge.yml
|
1253
|
+
- spec/spec_tests/data/retryable_reads/legacy/aggregate-serverErrors.yml
|
1254
|
+
- spec/spec_tests/data/retryable_reads/legacy/aggregate.yml
|
1255
|
+
- spec/spec_tests/data/retryable_reads/legacy/changeStreams-client.watch-serverErrors.yml
|
1256
|
+
- spec/spec_tests/data/retryable_reads/legacy/changeStreams-client.watch.yml
|
1257
|
+
- spec/spec_tests/data/retryable_reads/legacy/changeStreams-db.coll.watch-serverErrors.yml
|
1258
|
+
- spec/spec_tests/data/retryable_reads/legacy/changeStreams-db.coll.watch.yml
|
1259
|
+
- spec/spec_tests/data/retryable_reads/legacy/changeStreams-db.watch-serverErrors.yml
|
1260
|
+
- spec/spec_tests/data/retryable_reads/legacy/changeStreams-db.watch.yml
|
1261
|
+
- spec/spec_tests/data/retryable_reads/legacy/count-serverErrors.yml
|
1262
|
+
- spec/spec_tests/data/retryable_reads/legacy/count.yml
|
1263
|
+
- spec/spec_tests/data/retryable_reads/legacy/countDocuments-serverErrors.yml
|
1264
|
+
- spec/spec_tests/data/retryable_reads/legacy/countDocuments.yml
|
1265
|
+
- spec/spec_tests/data/retryable_reads/legacy/distinct-serverErrors.yml
|
1266
|
+
- spec/spec_tests/data/retryable_reads/legacy/distinct.yml
|
1267
|
+
- spec/spec_tests/data/retryable_reads/legacy/estimatedDocumentCount-serverErrors.yml
|
1268
|
+
- spec/spec_tests/data/retryable_reads/legacy/estimatedDocumentCount.yml
|
1269
|
+
- spec/spec_tests/data/retryable_reads/legacy/find-serverErrors.yml
|
1270
|
+
- spec/spec_tests/data/retryable_reads/legacy/find.yml
|
1271
|
+
- spec/spec_tests/data/retryable_reads/legacy/findOne-serverErrors.yml
|
1272
|
+
- spec/spec_tests/data/retryable_reads/legacy/findOne.yml
|
1273
|
+
- spec/spec_tests/data/retryable_reads/legacy/gridfs-download-serverErrors.yml
|
1274
|
+
- spec/spec_tests/data/retryable_reads/legacy/gridfs-download.yml
|
1275
|
+
- spec/spec_tests/data/retryable_reads/legacy/gridfs-downloadByName-serverErrors.yml
|
1276
|
+
- spec/spec_tests/data/retryable_reads/legacy/gridfs-downloadByName.yml
|
1277
|
+
- spec/spec_tests/data/retryable_reads/legacy/listCollectionNames-serverErrors.yml
|
1278
|
+
- spec/spec_tests/data/retryable_reads/legacy/listCollectionNames.yml
|
1279
|
+
- spec/spec_tests/data/retryable_reads/legacy/listCollectionObjects-serverErrors.yml
|
1280
|
+
- spec/spec_tests/data/retryable_reads/legacy/listCollectionObjects.yml
|
1281
|
+
- spec/spec_tests/data/retryable_reads/legacy/listCollections-serverErrors.yml
|
1282
|
+
- spec/spec_tests/data/retryable_reads/legacy/listCollections.yml
|
1283
|
+
- spec/spec_tests/data/retryable_reads/legacy/listDatabaseNames-serverErrors.yml
|
1284
|
+
- spec/spec_tests/data/retryable_reads/legacy/listDatabaseNames.yml
|
1285
|
+
- spec/spec_tests/data/retryable_reads/legacy/listDatabaseObjects-serverErrors.yml
|
1286
|
+
- spec/spec_tests/data/retryable_reads/legacy/listDatabaseObjects.yml
|
1287
|
+
- spec/spec_tests/data/retryable_reads/legacy/listDatabases-serverErrors.yml
|
1288
|
+
- spec/spec_tests/data/retryable_reads/legacy/listDatabases.yml
|
1289
|
+
- spec/spec_tests/data/retryable_reads/legacy/listIndexNames-serverErrors.yml
|
1290
|
+
- spec/spec_tests/data/retryable_reads/legacy/listIndexNames.yml
|
1291
|
+
- spec/spec_tests/data/retryable_reads/legacy/listIndexes-serverErrors.yml
|
1292
|
+
- spec/spec_tests/data/retryable_reads/legacy/listIndexes.yml
|
1293
|
+
- spec/spec_tests/data/retryable_reads/legacy/mapReduce.yml
|
1294
|
+
- spec/spec_tests/data/retryable_reads/unified/handshakeError.yml
|
1295
|
+
- spec/spec_tests/data/retryable_writes/legacy/bulkWrite-errorLabels.yml
|
1296
|
+
- spec/spec_tests/data/retryable_writes/legacy/bulkWrite-serverErrors.yml
|
1297
|
+
- spec/spec_tests/data/retryable_writes/legacy/bulkWrite.yml
|
1298
|
+
- spec/spec_tests/data/retryable_writes/legacy/deleteMany.yml
|
1299
|
+
- spec/spec_tests/data/retryable_writes/legacy/deleteOne-errorLabels.yml
|
1300
|
+
- spec/spec_tests/data/retryable_writes/legacy/deleteOne-serverErrors.yml
|
1301
|
+
- spec/spec_tests/data/retryable_writes/legacy/deleteOne.yml
|
1302
|
+
- spec/spec_tests/data/retryable_writes/legacy/findOneAndDelete-errorLabels.yml
|
1303
|
+
- spec/spec_tests/data/retryable_writes/legacy/findOneAndDelete-serverErrors.yml
|
1304
|
+
- spec/spec_tests/data/retryable_writes/legacy/findOneAndDelete.yml
|
1305
|
+
- spec/spec_tests/data/retryable_writes/legacy/findOneAndReplace-errorLabels.yml
|
1306
|
+
- spec/spec_tests/data/retryable_writes/legacy/findOneAndReplace-serverErrors.yml
|
1307
|
+
- spec/spec_tests/data/retryable_writes/legacy/findOneAndReplace.yml
|
1308
|
+
- spec/spec_tests/data/retryable_writes/legacy/findOneAndUpdate-errorLabels.yml
|
1309
|
+
- spec/spec_tests/data/retryable_writes/legacy/findOneAndUpdate-serverErrors.yml
|
1310
|
+
- spec/spec_tests/data/retryable_writes/legacy/findOneAndUpdate.yml
|
1311
|
+
- spec/spec_tests/data/retryable_writes/legacy/insertMany-errorLabels.yml
|
1312
|
+
- spec/spec_tests/data/retryable_writes/legacy/insertMany-serverErrors.yml
|
1313
|
+
- spec/spec_tests/data/retryable_writes/legacy/insertMany.yml
|
1314
|
+
- spec/spec_tests/data/retryable_writes/legacy/insertOne-errorLabels.yml
|
1315
|
+
- spec/spec_tests/data/retryable_writes/legacy/insertOne-serverErrors.yml
|
1316
|
+
- spec/spec_tests/data/retryable_writes/legacy/insertOne.yml
|
1317
|
+
- spec/spec_tests/data/retryable_writes/legacy/replaceOne-errorLabels.yml
|
1318
|
+
- spec/spec_tests/data/retryable_writes/legacy/replaceOne-serverErrors.yml
|
1319
|
+
- spec/spec_tests/data/retryable_writes/legacy/replaceOne.yml
|
1320
|
+
- spec/spec_tests/data/retryable_writes/legacy/updateMany.yml
|
1321
|
+
- spec/spec_tests/data/retryable_writes/legacy/updateOne-errorLabels.yml
|
1322
|
+
- spec/spec_tests/data/retryable_writes/legacy/updateOne-serverErrors.yml
|
1323
|
+
- spec/spec_tests/data/retryable_writes/legacy/updateOne.yml
|
1324
|
+
- spec/spec_tests/data/retryable_writes/unified/bulkWrite-serverErrors.yml
|
1325
|
+
- spec/spec_tests/data/retryable_writes/unified/handshakeError.yml
|
1326
|
+
- spec/spec_tests/data/retryable_writes/unified/insertOne-serverErrors.yml
|
1204
1327
|
- spec/spec_tests/data/sdam/errors/error_handling_handshake.yml
|
1205
1328
|
- spec/spec_tests/data/sdam/errors/non-stale-network-error.yml
|
1206
1329
|
- spec/spec_tests/data/sdam/errors/non-stale-network-timeout-error.yml
|
@@ -1281,6 +1404,7 @@ files:
|
|
1281
1404
|
- spec/spec_tests/data/sdam/errors/stale-topologyVersion-PrimarySteppedDown.yml
|
1282
1405
|
- spec/spec_tests/data/sdam/errors/stale-topologyVersion-ShutdownInProgress.yml
|
1283
1406
|
- spec/spec_tests/data/sdam/errors/write_errors_ignored.yml
|
1407
|
+
- spec/spec_tests/data/sdam/load-balanced/discover_load_balancer.yml
|
1284
1408
|
- spec/spec_tests/data/sdam/rs/compatible.yml
|
1285
1409
|
- spec/spec_tests/data/sdam/rs/compatible_unknown.yml
|
1286
1410
|
- spec/spec_tests/data/sdam/rs/discover_arbiters.yml
|
@@ -1390,6 +1514,7 @@ files:
|
|
1390
1514
|
- spec/spec_tests/data/sdam_integration/insert-shutdown-error.yml
|
1391
1515
|
- spec/spec_tests/data/sdam_integration/rediscover-quickly-after-step-down.yml
|
1392
1516
|
- spec/spec_tests/data/sdam_monitoring/discovered_standalone.yml
|
1517
|
+
- spec/spec_tests/data/sdam_monitoring/load_balancer.yml
|
1393
1518
|
- spec/spec_tests/data/sdam_monitoring/replica_set_other_chain.yml
|
1394
1519
|
- spec/spec_tests/data/sdam_monitoring/replica_set_other_change.yml
|
1395
1520
|
- spec/spec_tests/data/sdam_monitoring/replica_set_primary_address_change.yml
|
@@ -1405,6 +1530,56 @@ files:
|
|
1405
1530
|
- spec/spec_tests/data/sdam_monitoring/standalone_repeated.yml
|
1406
1531
|
- spec/spec_tests/data/sdam_monitoring/standalone_suppress_equal_description_changes.yml
|
1407
1532
|
- spec/spec_tests/data/sdam_monitoring/standalone_to_rs_with_me_mismatch.yml
|
1533
|
+
- spec/spec_tests/data/seed_list_discovery/load-balanced/loadBalanced-directConnection.yml
|
1534
|
+
- spec/spec_tests/data/seed_list_discovery/load-balanced/loadBalanced-no-results.yml
|
1535
|
+
- spec/spec_tests/data/seed_list_discovery/load-balanced/loadBalanced-replicaSet-errors.yml
|
1536
|
+
- spec/spec_tests/data/seed_list_discovery/load-balanced/loadBalanced-true-multiple-hosts.yml
|
1537
|
+
- spec/spec_tests/data/seed_list_discovery/load-balanced/loadBalanced-true-txt.yml
|
1538
|
+
- spec/spec_tests/data/seed_list_discovery/load-balanced/srvMaxHosts-conflicts_with_loadBalanced-true-txt.yml
|
1539
|
+
- spec/spec_tests/data/seed_list_discovery/load-balanced/srvMaxHosts-conflicts_with_loadBalanced-true.yml
|
1540
|
+
- spec/spec_tests/data/seed_list_discovery/load-balanced/srvMaxHosts-zero-txt.yml
|
1541
|
+
- spec/spec_tests/data/seed_list_discovery/load-balanced/srvMaxHosts-zero.yml
|
1542
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/direct-connection-false.yml
|
1543
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/direct-connection-true.yml
|
1544
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/encoded-userinfo-and-db.yml
|
1545
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/loadBalanced-false-txt.yml
|
1546
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/longer-parent-in-return.yml
|
1547
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/misformatted-option.yml
|
1548
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/no-results.yml
|
1549
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/not-enough-parts.yml
|
1550
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/one-result-default-port.yml
|
1551
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/one-txt-record-multiple-strings.yml
|
1552
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/one-txt-record.yml
|
1553
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/parent-part-mismatch1.yml
|
1554
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/parent-part-mismatch2.yml
|
1555
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/parent-part-mismatch3.yml
|
1556
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/parent-part-mismatch4.yml
|
1557
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/parent-part-mismatch5.yml
|
1558
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/returned-parent-too-short.yml
|
1559
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/returned-parent-wrong.yml
|
1560
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/srv-service-name.yml
|
1561
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/srvMaxHosts-conflicts_with_replicaSet-txt.yml
|
1562
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/srvMaxHosts-conflicts_with_replicaSet.yml
|
1563
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/srvMaxHosts-equal_to_srv_records.yml
|
1564
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/srvMaxHosts-greater_than_srv_records.yml
|
1565
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/srvMaxHosts-less_than_srv_records.yml
|
1566
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/srvMaxHosts-zero-txt.yml
|
1567
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/srvMaxHosts-zero.yml
|
1568
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/two-results-default-port.yml
|
1569
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/two-results-nonstandard-port.yml
|
1570
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/two-txt-records.yml
|
1571
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/txt-record-not-allowed-option.yml
|
1572
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/txt-record-with-overridden-ssl-option.yml
|
1573
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/txt-record-with-overridden-uri-option.yml
|
1574
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/txt-record-with-unallowed-option.yml
|
1575
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/uri-with-admin-database.yml
|
1576
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/uri-with-auth.yml
|
1577
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/uri-with-port.yml
|
1578
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/uri-with-two-hosts.yml
|
1579
|
+
- spec/spec_tests/data/seed_list_discovery/sharded/srvMaxHosts-equal_to_srv_records.yml
|
1580
|
+
- spec/spec_tests/data/seed_list_discovery/sharded/srvMaxHosts-greater_than_srv_records.yml
|
1581
|
+
- spec/spec_tests/data/seed_list_discovery/sharded/srvMaxHosts-less_than_srv_records.yml
|
1582
|
+
- spec/spec_tests/data/seed_list_discovery/sharded/srvMaxHosts-zero.yml
|
1408
1583
|
- spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/Nearest.yml
|
1409
1584
|
- spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/Nearest_multiple.yml
|
1410
1585
|
- spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/Nearest_non_matching.yml
|
@@ -1437,6 +1612,8 @@ files:
|
|
1437
1612
|
- spec/spec_tests/data/server_selection/Sharded/read/SecondaryPreferred.yml
|
1438
1613
|
- spec/spec_tests/data/server_selection/Single/read/SecondaryPreferred.yml
|
1439
1614
|
- spec/spec_tests/data/server_selection/Unknown/read/SecondaryPreferred.yml
|
1615
|
+
- spec/spec_tests/data/server_selection/Unknown/read/ghost.yml
|
1616
|
+
- spec/spec_tests/data/server_selection/Unknown/write/ghost.yml
|
1440
1617
|
- spec/spec_tests/data/server_selection_rtt/first_value.yml
|
1441
1618
|
- spec/spec_tests/data/server_selection_rtt/first_value_zero.yml
|
1442
1619
|
- spec/spec_tests/data/server_selection_rtt/value_test_1.yml
|
@@ -1444,6 +1621,11 @@ files:
|
|
1444
1621
|
- spec/spec_tests/data/server_selection_rtt/value_test_3.yml
|
1445
1622
|
- spec/spec_tests/data/server_selection_rtt/value_test_4.yml
|
1446
1623
|
- spec/spec_tests/data/server_selection_rtt/value_test_5.yml
|
1624
|
+
- spec/spec_tests/data/sessions_unified/driver-sessions-server-support.yml
|
1625
|
+
- spec/spec_tests/data/sessions_unified/snapshot-sessions-not-supported-client-error.yml
|
1626
|
+
- spec/spec_tests/data/sessions_unified/snapshot-sessions-not-supported-server-error.yml
|
1627
|
+
- spec/spec_tests/data/sessions_unified/snapshot-sessions-unsupported-ops.yml
|
1628
|
+
- spec/spec_tests/data/sessions_unified/snapshot-sessions.yml
|
1447
1629
|
- spec/spec_tests/data/transactions/abort.yml
|
1448
1630
|
- spec/spec_tests/data/transactions/bulk.yml
|
1449
1631
|
- spec/spec_tests/data/transactions/causal-consistency.yml
|
@@ -1485,8 +1667,14 @@ files:
|
|
1485
1667
|
- spec/spec_tests/data/transactions_api/commit-writeconcernerror.yml
|
1486
1668
|
- spec/spec_tests/data/transactions_api/commit.yml
|
1487
1669
|
- spec/spec_tests/data/transactions_api/transaction-options.yml
|
1670
|
+
- spec/spec_tests/data/transactions_unified/do-not-retry-read-in-transaction.yml
|
1488
1671
|
- spec/spec_tests/data/transactions_unified/mongos-unpin.yml
|
1672
|
+
- spec/spec_tests/data/transactions_unified/retryable-abort-handshake.yml
|
1673
|
+
- spec/spec_tests/data/transactions_unified/retryable-commit-handshake.yml
|
1674
|
+
- spec/spec_tests/data/unified/invalid/expectedEventsForClient-ignoreExtraEvents-type.yml
|
1489
1675
|
- spec/spec_tests/data/unified/valid-fail/operation-failure.yml
|
1676
|
+
- spec/spec_tests/data/unified/valid-fail/operation-unsupported.yml
|
1677
|
+
- spec/spec_tests/data/unified/valid-pass/expectedEventsForClient-ignoreExtraEvents.yml
|
1490
1678
|
- spec/spec_tests/data/unified/valid-pass/poc-change-streams.yml
|
1491
1679
|
- spec/spec_tests/data/unified/valid-pass/poc-command-monitoring.yml
|
1492
1680
|
- spec/spec_tests/data/unified/valid-pass/poc-crud.yml
|
@@ -1505,6 +1693,7 @@ files:
|
|
1505
1693
|
- spec/spec_tests/data/uri_options/read-preference-options.yml
|
1506
1694
|
- spec/spec_tests/data/uri_options/ruby-auth-options.yml
|
1507
1695
|
- spec/spec_tests/data/uri_options/ruby-connection-options.yml
|
1696
|
+
- spec/spec_tests/data/uri_options/srv-options.yml
|
1508
1697
|
- spec/spec_tests/data/uri_options/tls-options.yml
|
1509
1698
|
- spec/spec_tests/data/versioned_api/crud-api-version-1-strict.yml
|
1510
1699
|
- spec/spec_tests/data/versioned_api/crud-api-version-1.yml
|
@@ -1512,19 +1701,24 @@ files:
|
|
1512
1701
|
- spec/spec_tests/data/versioned_api/test-commands-deprecation-errors.yml
|
1513
1702
|
- spec/spec_tests/data/versioned_api/test-commands-strict-mode.yml
|
1514
1703
|
- spec/spec_tests/data/versioned_api/transaction-handling.yml
|
1515
|
-
- spec/spec_tests/dns_seedlist_discovery_spec.rb
|
1516
1704
|
- spec/spec_tests/gridfs_spec.rb
|
1705
|
+
- spec/spec_tests/gridfs_unified_spec.rb
|
1706
|
+
- spec/spec_tests/load_balancers_spec.rb
|
1517
1707
|
- spec/spec_tests/max_staleness_spec.rb
|
1518
1708
|
- spec/spec_tests/read_write_concern_connection_string_spec.rb
|
1519
1709
|
- spec/spec_tests/read_write_concern_document_spec.rb
|
1520
1710
|
- spec/spec_tests/read_write_concern_operaton_spec.rb
|
1521
1711
|
- spec/spec_tests/retryable_reads_spec.rb
|
1712
|
+
- spec/spec_tests/retryable_reads_unified_spec.rb
|
1522
1713
|
- spec/spec_tests/retryable_writes_spec.rb
|
1714
|
+
- spec/spec_tests/retryable_writes_unified_spec.rb
|
1523
1715
|
- spec/spec_tests/sdam_integration_spec.rb
|
1524
1716
|
- spec/spec_tests/sdam_monitoring_spec.rb
|
1525
1717
|
- spec/spec_tests/sdam_spec.rb
|
1718
|
+
- spec/spec_tests/seed_list_discovery_spec.rb
|
1526
1719
|
- spec/spec_tests/server_selection_rtt_spec.rb
|
1527
1720
|
- spec/spec_tests/server_selection_spec.rb
|
1721
|
+
- spec/spec_tests/sessions_unified_spec.rb
|
1528
1722
|
- spec/spec_tests/transactions_api_spec.rb
|
1529
1723
|
- spec/spec_tests/transactions_spec.rb
|
1530
1724
|
- spec/spec_tests/transactions_unified_spec.rb
|
@@ -1535,6 +1729,7 @@ files:
|
|
1535
1729
|
- spec/stress/connection_pool_stress_spec.rb
|
1536
1730
|
- spec/stress/connection_pool_timing_spec.rb
|
1537
1731
|
- spec/stress/fork_reconnect_stress_spec.rb
|
1732
|
+
- spec/stress/push_monitor_close_spec.rb
|
1538
1733
|
- spec/support/authorization.rb
|
1539
1734
|
- spec/support/aws_utils.rb
|
1540
1735
|
- spec/support/aws_utils/base.rb
|
@@ -1562,6 +1757,7 @@ files:
|
|
1562
1757
|
- spec/support/certificates/crl_client_revoked.pem
|
1563
1758
|
- spec/support/certificates/multi-ca.crt
|
1564
1759
|
- spec/support/certificates/python-ca.crt
|
1760
|
+
- spec/support/certificates/retrieve-atlas-cert
|
1565
1761
|
- spec/support/certificates/server-int.crt
|
1566
1762
|
- spec/support/certificates/server-second-level-bundle.pem
|
1567
1763
|
- spec/support/certificates/server-second-level.crt
|
@@ -1574,49 +1770,65 @@ files:
|
|
1574
1770
|
- spec/support/common_shortcuts.rb
|
1575
1771
|
- spec/support/constraints.rb
|
1576
1772
|
- spec/support/crypt.rb
|
1773
|
+
- spec/support/crypt/corpus/corpus-encrypted.json
|
1577
1774
|
- spec/support/crypt/corpus/corpus-key-aws.json
|
1775
|
+
- spec/support/crypt/corpus/corpus-key-azure.json
|
1776
|
+
- spec/support/crypt/corpus/corpus-key-gcp.json
|
1777
|
+
- spec/support/crypt/corpus/corpus-key-kmip.json
|
1578
1778
|
- spec/support/crypt/corpus/corpus-key-local.json
|
1579
1779
|
- spec/support/crypt/corpus/corpus-schema.json
|
1580
1780
|
- spec/support/crypt/corpus/corpus.json
|
1581
|
-
- spec/support/crypt/corpus/corpus_encrypted.json
|
1582
1781
|
- spec/support/crypt/data_keys/key_document_aws.json
|
1782
|
+
- spec/support/crypt/data_keys/key_document_azure.json
|
1783
|
+
- spec/support/crypt/data_keys/key_document_gcp.json
|
1784
|
+
- spec/support/crypt/data_keys/key_document_kmip.json
|
1583
1785
|
- spec/support/crypt/data_keys/key_document_local.json
|
1786
|
+
- spec/support/crypt/encryptedFields.json
|
1584
1787
|
- spec/support/crypt/external/external-key.json
|
1585
1788
|
- spec/support/crypt/external/external-schema.json
|
1789
|
+
- spec/support/crypt/keys/key1-document.json
|
1586
1790
|
- spec/support/crypt/limits/limits-doc.json
|
1587
1791
|
- spec/support/crypt/limits/limits-key.json
|
1588
1792
|
- spec/support/crypt/limits/limits-schema.json
|
1589
1793
|
- spec/support/crypt/schema_maps/schema_map_aws.json
|
1590
1794
|
- spec/support/crypt/schema_maps/schema_map_aws_key_alt_names.json
|
1795
|
+
- spec/support/crypt/schema_maps/schema_map_azure.json
|
1796
|
+
- spec/support/crypt/schema_maps/schema_map_azure_key_alt_names.json
|
1797
|
+
- spec/support/crypt/schema_maps/schema_map_gcp.json
|
1798
|
+
- spec/support/crypt/schema_maps/schema_map_gcp_key_alt_names.json
|
1799
|
+
- spec/support/crypt/schema_maps/schema_map_kmip.json
|
1800
|
+
- spec/support/crypt/schema_maps/schema_map_kmip_key_alt_names.json
|
1591
1801
|
- spec/support/crypt/schema_maps/schema_map_local.json
|
1592
1802
|
- spec/support/crypt/schema_maps/schema_map_local_key_alt_names.json
|
1593
1803
|
- spec/support/dns.rb
|
1594
|
-
- spec/support/event_subscriber.rb
|
1595
1804
|
- spec/support/json_ext_formatter.rb
|
1596
1805
|
- spec/support/keyword_struct.rb
|
1597
1806
|
- spec/support/local_resource_registry.rb
|
1807
|
+
- spec/support/macros.rb
|
1598
1808
|
- spec/support/matchers.rb
|
1809
|
+
- spec/support/mongos_macros.rb
|
1599
1810
|
- spec/support/monitoring_ext.rb
|
1600
1811
|
- spec/support/ocsp
|
1601
1812
|
- spec/support/primary_socket.rb
|
1602
1813
|
- spec/support/sdam_formatter_integration.rb
|
1603
|
-
- spec/support/session_registry.rb
|
1604
1814
|
- spec/support/shared/app_metadata.rb
|
1815
|
+
- spec/support/shared/auth_context.rb
|
1605
1816
|
- spec/support/shared/protocol.rb
|
1606
1817
|
- spec/support/shared/scram_conversation.rb
|
1607
1818
|
- spec/support/shared/server_selector.rb
|
1608
1819
|
- spec/support/shared/session.rb
|
1609
1820
|
- spec/support/spec_config.rb
|
1610
1821
|
- spec/support/spec_setup.rb
|
1822
|
+
- spec/support/using_hash.rb
|
1611
1823
|
- spec/support/utils.rb
|
1612
|
-
homepage: https://
|
1824
|
+
homepage: https://mongodb.com/docs/ruby-driver/
|
1613
1825
|
licenses:
|
1614
1826
|
- Apache-2.0
|
1615
1827
|
metadata:
|
1616
1828
|
bug_tracker_uri: https://jira.mongodb.org/projects/RUBY
|
1617
1829
|
changelog_uri: https://github.com/mongodb/mongo-ruby-driver/releases
|
1618
|
-
documentation_uri: https://
|
1619
|
-
homepage_uri: https://
|
1830
|
+
documentation_uri: https://mongodb.com/docs/ruby-driver/
|
1831
|
+
homepage_uri: https://mongodb.com/docs/ruby-driver/
|
1620
1832
|
source_code_uri: https://github.com/mongodb/mongo-ruby-driver
|
1621
1833
|
post_install_message:
|
1622
1834
|
rdoc_options: []
|
@@ -1626,7 +1838,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
1626
1838
|
requirements:
|
1627
1839
|
- - ">="
|
1628
1840
|
- !ruby/object:Gem::Version
|
1629
|
-
version: '2.
|
1841
|
+
version: '2.5'
|
1630
1842
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
1631
1843
|
requirements:
|
1632
1844
|
- - ">="
|
@@ -1646,7 +1858,6 @@ test_files:
|
|
1646
1858
|
- spec/mongo/retryable_spec.rb
|
1647
1859
|
- spec/mongo/server_spec.rb
|
1648
1860
|
- spec/mongo/bson_spec.rb
|
1649
|
-
- spec/mongo/dbref_spec.rb
|
1650
1861
|
- spec/mongo/lint_spec.rb
|
1651
1862
|
- spec/mongo/socket/ssl_spec.rb
|
1652
1863
|
- spec/mongo/socket/unix_spec.rb
|
@@ -1655,7 +1866,6 @@ test_files:
|
|
1655
1866
|
- spec/mongo/uri/srv_protocol_spec.rb
|
1656
1867
|
- spec/mongo/cursor/builder/get_more_command_spec.rb
|
1657
1868
|
- spec/mongo/cursor/builder/op_get_more_spec.rb
|
1658
|
-
- spec/mongo/cursor/builder/op_kill_cursors_spec.rb
|
1659
1869
|
- spec/mongo/server_selector_spec.rb
|
1660
1870
|
- spec/mongo/protocol/reply_spec.rb
|
1661
1871
|
- spec/mongo/protocol/update_spec.rb
|
@@ -1665,6 +1875,7 @@ test_files:
|
|
1665
1875
|
- spec/mongo/protocol/delete_spec.rb
|
1666
1876
|
- spec/mongo/protocol/kill_cursors_spec.rb
|
1667
1877
|
- spec/mongo/protocol/msg_spec.rb
|
1878
|
+
- spec/mongo/protocol/caching_hash_spec.rb
|
1668
1879
|
- spec/mongo/protocol/get_more_spec.rb
|
1669
1880
|
- spec/mongo/protocol/registry_spec.rb
|
1670
1881
|
- spec/mongo/client_encryption_spec.rb
|
@@ -1676,9 +1887,11 @@ test_files:
|
|
1676
1887
|
- spec/mongo/crypt/binding/binary_spec.rb
|
1677
1888
|
- spec/mongo/crypt/auto_decryption_context_spec.rb
|
1678
1889
|
- spec/mongo/crypt/handle_spec.rb
|
1890
|
+
- spec/mongo/crypt/hooks_spec.rb
|
1679
1891
|
- spec/mongo/crypt/explicit_encryption_context_spec.rb
|
1680
1892
|
- spec/mongo/crypt/explicit_decryption_context_spec.rb
|
1681
1893
|
- spec/mongo/crypt/binding_unloaded_spec.rb
|
1894
|
+
- spec/mongo/crypt/kms_spec.rb
|
1682
1895
|
- spec/mongo/crypt/auto_encrypter_spec.rb
|
1683
1896
|
- spec/mongo/crypt/status_spec.rb
|
1684
1897
|
- spec/mongo/crypt/encryption_io_spec.rb
|
@@ -1686,6 +1899,7 @@ test_files:
|
|
1686
1899
|
- spec/mongo/crypt/helpers/mongo_crypt_spec_helper.rb
|
1687
1900
|
- spec/mongo/crypt/binary_spec.rb
|
1688
1901
|
- spec/mongo/crypt/data_key_context_spec.rb
|
1902
|
+
- spec/mongo/crypt/kms/credentials_spec.rb
|
1689
1903
|
- spec/mongo/session/session_pool_spec.rb
|
1690
1904
|
- spec/mongo/session/server_session_spec.rb
|
1691
1905
|
- spec/mongo/tls_context_hooks_spec.rb
|
@@ -1731,6 +1945,7 @@ test_files:
|
|
1731
1945
|
- spec/mongo/cluster_time_spec.rb
|
1732
1946
|
- spec/mongo/distinguishing_semaphore_spec.rb
|
1733
1947
|
- spec/mongo/uri_spec.rb
|
1948
|
+
- spec/mongo/config_spec.rb
|
1734
1949
|
- spec/mongo/operation/aggregate/result_spec.rb
|
1735
1950
|
- spec/mongo/operation/read_preference_legacy_spec.rb
|
1736
1951
|
- spec/mongo/operation/delete/op_msg_spec.rb
|
@@ -1742,6 +1957,8 @@ test_files:
|
|
1742
1957
|
- spec/mongo/operation/update_spec.rb
|
1743
1958
|
- spec/mongo/operation/map_reduce_spec.rb
|
1744
1959
|
- spec/mongo/operation/find/legacy_spec.rb
|
1960
|
+
- spec/mongo/operation/find/builder/flags_spec.rb
|
1961
|
+
- spec/mongo/operation/find/builder/modifiers_spec.rb
|
1745
1962
|
- spec/mongo/operation/create_user_spec.rb
|
1746
1963
|
- spec/mongo/operation/create_index_spec.rb
|
1747
1964
|
- spec/mongo/operation/update/op_msg_spec.rb
|
@@ -1751,7 +1968,6 @@ test_files:
|
|
1751
1968
|
- spec/mongo/operation/insert_spec.rb
|
1752
1969
|
- spec/mongo/operation/remove_user_spec.rb
|
1753
1970
|
- spec/mongo/operation/delete_spec.rb
|
1754
|
-
- spec/mongo/operation/kill_cursors_spec.rb
|
1755
1971
|
- spec/mongo/operation/collections_info_spec.rb
|
1756
1972
|
- spec/mongo/operation/get_more_spec.rb
|
1757
1973
|
- spec/mongo/operation/insert/op_msg_spec.rb
|
@@ -1761,6 +1977,7 @@ test_files:
|
|
1761
1977
|
- spec/mongo/operation/command_spec.rb
|
1762
1978
|
- spec/mongo/operation/specifiable_spec.rb
|
1763
1979
|
- spec/mongo/operation/read_preference_op_msg_spec.rb
|
1980
|
+
- spec/mongo/operation/create/op_msg_spec.rb
|
1764
1981
|
- spec/mongo/operation/result_spec.rb
|
1765
1982
|
- spec/mongo/index/view_spec.rb
|
1766
1983
|
- spec/mongo/id_spec.rb
|
@@ -1769,8 +1986,6 @@ test_files:
|
|
1769
1986
|
- spec/mongo/collection/view/map_reduce_spec.rb
|
1770
1987
|
- spec/mongo/collection/view/builder/find_command_spec.rb
|
1771
1988
|
- spec/mongo/collection/view/builder/op_query_spec.rb
|
1772
|
-
- spec/mongo/collection/view/builder/flags_spec.rb
|
1773
|
-
- spec/mongo/collection/view/builder/modifiers_spec.rb
|
1774
1989
|
- spec/mongo/collection/view/explainable_spec.rb
|
1775
1990
|
- spec/mongo/collection/view/writable_spec.rb
|
1776
1991
|
- spec/mongo/collection/view/change_stream_spec.rb
|
@@ -1804,6 +2019,7 @@ test_files:
|
|
1804
2019
|
- spec/mongo/grid/fs_bucket_spec.rb
|
1805
2020
|
- spec/mongo/grid/stream/write_spec.rb
|
1806
2021
|
- spec/mongo/grid/stream/read_spec.rb
|
2022
|
+
- spec/mongo/config/options_spec.rb
|
1807
2023
|
- spec/mongo/collection_spec.rb
|
1808
2024
|
- spec/mongo/logger_spec.rb
|
1809
2025
|
- spec/mongo/auth_spec.rb
|
@@ -1819,6 +2035,7 @@ test_files:
|
|
1819
2035
|
- spec/mongo/server/monitor/connection_spec.rb
|
1820
2036
|
- spec/mongo/server/monitor/app_metadata_spec.rb
|
1821
2037
|
- spec/mongo/server/round_trip_time_averager_spec.rb
|
2038
|
+
- spec/mongo/server/push_monitor_spec.rb
|
1822
2039
|
- spec/mongo/server/monitor_spec.rb
|
1823
2040
|
- spec/mongo/server/connection_spec.rb
|
1824
2041
|
- spec/mongo/server/app_metadata_spec.rb
|
@@ -1884,9 +2101,9 @@ test_files:
|
|
1884
2101
|
- spec/runners/unified/error.rb
|
1885
2102
|
- spec/runners/unified/event_subscriber.rb
|
1886
2103
|
- spec/runners/unified/ddl_operations.rb
|
2104
|
+
- spec/runners/unified/client_side_encryption_operations.rb
|
1887
2105
|
- spec/runners/unified/grid_fs_operations.rb
|
1888
2106
|
- spec/runners/unified/test.rb
|
1889
|
-
- spec/runners/unified/using_hash.rb
|
1890
2107
|
- spec/runners/unified/entity_map.rb
|
1891
2108
|
- spec/runners/unified/crud_operations.rb
|
1892
2109
|
- spec/runners/unified/change_stream_operations.rb
|
@@ -1904,8 +2121,10 @@ test_files:
|
|
1904
2121
|
- spec/stress/connection_pool_timing_spec.rb
|
1905
2122
|
- spec/stress/fork_reconnect_stress_spec.rb
|
1906
2123
|
- spec/stress/connection_pool_stress_spec.rb
|
2124
|
+
- spec/stress/push_monitor_close_spec.rb
|
1907
2125
|
- spec/USERS.md
|
1908
2126
|
- spec/README.aws-auth.md
|
2127
|
+
- spec/spec_tests/client_side_encryption_unified_spec.rb
|
1909
2128
|
- spec/spec_tests/max_staleness_spec.rb
|
1910
2129
|
- spec/spec_tests/gridfs_spec.rb
|
1911
2130
|
- spec/spec_tests/retryable_writes_spec.rb
|
@@ -1956,8 +2175,107 @@ test_files:
|
|
1956
2175
|
- spec/spec_tests/data/sdam_integration/cancel-server-check.yml
|
1957
2176
|
- spec/spec_tests/data/sdam_integration/find-shutdown-error.yml
|
1958
2177
|
- spec/spec_tests/data/sdam_integration/connectTimeoutMS.yml
|
2178
|
+
- spec/spec_tests/data/crud_unified/findOneAndUpdate-hint-serverError.yml
|
2179
|
+
- spec/spec_tests/data/crud_unified/findOneAndUpdate-dots_and_dollars.yml
|
2180
|
+
- spec/spec_tests/data/crud_unified/findOneAndUpdate-hint-unacknowledged.yml
|
2181
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-updateOne-let.yml
|
2182
|
+
- spec/spec_tests/data/crud_unified/find-allowdiskuse-serverError.yml
|
2183
|
+
- spec/spec_tests/data/crud_unified/updateMany-hint-serverError.yml
|
2184
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-deleteMany-let.yml
|
2185
|
+
- spec/spec_tests/data/crud_unified/replaceOne-comment.yml
|
2186
|
+
- spec/spec_tests/data/crud_unified/updateOne-hint-clientError.yml
|
2187
|
+
- spec/spec_tests/data/crud_unified/updateOne-hint.yml
|
2188
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-update-hint-serverError.yml
|
2189
|
+
- spec/spec_tests/data/crud_unified/findOneAndDelete-hint-unacknowledged.yml
|
2190
|
+
- spec/spec_tests/data/crud_unified/updateOne-validation.yml
|
2191
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-deleteOne-let.yml
|
2192
|
+
- spec/spec_tests/data/crud_unified/deleteMany-hint-clientError.yml
|
2193
|
+
- spec/spec_tests/data/crud_unified/findOneAndReplace-let.yml
|
2194
|
+
- spec/spec_tests/data/crud_unified/updateOne-comment.yml
|
2195
|
+
- spec/spec_tests/data/crud_unified/insertMany-dots_and_dollars.yml
|
2196
|
+
- spec/spec_tests/data/crud_unified/replaceOne-hint.yml
|
2197
|
+
- spec/spec_tests/data/crud_unified/findOneAndReplace-hint.yml
|
2198
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-delete-hint-serverError.yml
|
2199
|
+
- spec/spec_tests/data/crud_unified/updateMany-dots_and_dollars.yml
|
1959
2200
|
- spec/spec_tests/data/crud_unified/updateWithPipelines.yml
|
2201
|
+
- spec/spec_tests/data/crud_unified/insertOne-comment.yml
|
2202
|
+
- spec/spec_tests/data/crud_unified/aggregate-write-readPreference.yml
|
2203
|
+
- spec/spec_tests/data/crud_unified/db-aggregate-write-readPreference.yml
|
2204
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-updateOne-hint-unacknowledged.yml
|
2205
|
+
- spec/spec_tests/data/crud_unified/insertOne-dots_and_dollars.yml
|
2206
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-deleteOne-hint-unacknowledged.yml
|
2207
|
+
- spec/spec_tests/data/crud_unified/db-aggregate.yml
|
2208
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-updateMany-dots_and_dollars.yml
|
2209
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-replaceOne-hint-unacknowledged.yml
|
2210
|
+
- spec/spec_tests/data/crud_unified/deleteOne-comment.yml
|
2211
|
+
- spec/spec_tests/data/crud_unified/updateMany-hint-unacknowledged.yml
|
2212
|
+
- spec/spec_tests/data/crud_unified/updateMany-comment.yml
|
2213
|
+
- spec/spec_tests/data/crud_unified/aggregate-let.yml
|
2214
|
+
- spec/spec_tests/data/crud_unified/findOneAndReplace-dots_and_dollars.yml
|
2215
|
+
- spec/spec_tests/data/crud_unified/updateOne-hint-unacknowledged.yml
|
2216
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-insertOne-dots_and_dollars.yml
|
2217
|
+
- spec/spec_tests/data/crud_unified/findOneAndReplace-comment.yml
|
2218
|
+
- spec/spec_tests/data/crud_unified/deleteMany-hint-unacknowledged.yml
|
2219
|
+
- spec/spec_tests/data/crud_unified/deleteMany-let.yml
|
2220
|
+
- spec/spec_tests/data/crud_unified/updateMany-validation.yml
|
2221
|
+
- spec/spec_tests/data/crud_unified/replaceOne-hint-unacknowledged.yml
|
2222
|
+
- spec/spec_tests/data/crud_unified/find-comment.yml
|
2223
|
+
- spec/spec_tests/data/crud_unified/updateMany-hint.yml
|
2224
|
+
- spec/spec_tests/data/crud_unified/find-allowdiskuse.yml
|
2225
|
+
- spec/spec_tests/data/crud_unified/aggregate-allowdiskuse.yml
|
2226
|
+
- spec/spec_tests/data/crud_unified/aggregate-out-readConcern.yml
|
2227
|
+
- spec/spec_tests/data/crud_unified/deleteMany-hint.yml
|
2228
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-comment.yml
|
2229
|
+
- spec/spec_tests/data/crud_unified/deleteOne-hint-clientError.yml
|
2230
|
+
- spec/spec_tests/data/crud_unified/insertMany-comment.yml
|
2231
|
+
- spec/spec_tests/data/crud_unified/updateMany-hint-clientError.yml
|
2232
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-update-hint-clientError.yml
|
2233
|
+
- spec/spec_tests/data/crud_unified/replaceOne-dots_and_dollars.yml
|
2234
|
+
- spec/spec_tests/data/crud_unified/findOneAndDelete-let.yml
|
2235
|
+
- spec/spec_tests/data/crud_unified/findOneAndUpdate-comment.yml
|
2236
|
+
- spec/spec_tests/data/crud_unified/findOneAndReplace-hint-unacknowledged.yml
|
2237
|
+
- spec/spec_tests/data/crud_unified/deleteMany-comment.yml
|
2238
|
+
- spec/spec_tests/data/crud_unified/deleteOne-hint-serverError.yml
|
2239
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-updateMany-let.yml
|
2240
|
+
- spec/spec_tests/data/crud_unified/findOneAndUpdate-hint-clientError.yml
|
2241
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-replaceOne-let.yml
|
1960
2242
|
- spec/spec_tests/data/crud_unified/estimatedDocumentCount.yml
|
2243
|
+
- spec/spec_tests/data/crud_unified/findOneAndUpdate-let.yml
|
2244
|
+
- spec/spec_tests/data/crud_unified/find.yml
|
2245
|
+
- spec/spec_tests/data/crud_unified/distinct-comment.yml
|
2246
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-deleteMany-hint-unacknowledged.yml
|
2247
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-arrayFilters.yml
|
2248
|
+
- spec/spec_tests/data/crud_unified/aggregate.yml
|
2249
|
+
- spec/spec_tests/data/crud_unified/findOneAndDelete-hint.yml
|
2250
|
+
- spec/spec_tests/data/crud_unified/deleteOne-hint-unacknowledged.yml
|
2251
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-replaceOne-dots_and_dollars.yml
|
2252
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-update-hint.yml
|
2253
|
+
- spec/spec_tests/data/crud_unified/findOneAndDelete-hint-clientError.yml
|
2254
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-arrayFilters-clientError.yml
|
2255
|
+
- spec/spec_tests/data/crud_unified/estimatedDocumentCount-comment.yml
|
2256
|
+
- spec/spec_tests/data/crud_unified/findOneAndReplace-hint-serverError.yml
|
2257
|
+
- spec/spec_tests/data/crud_unified/aggregate-merge.yml
|
2258
|
+
- spec/spec_tests/data/crud_unified/find-allowdiskuse-clientError.yml
|
2259
|
+
- spec/spec_tests/data/crud_unified/deleteOne-hint.yml
|
2260
|
+
- spec/spec_tests/data/crud_unified/replaceOne-validation.yml
|
2261
|
+
- spec/spec_tests/data/crud_unified/find-let.yml
|
2262
|
+
- spec/spec_tests/data/crud_unified/countDocuments-comment.yml
|
2263
|
+
- spec/spec_tests/data/crud_unified/replaceOne-let.yml
|
2264
|
+
- spec/spec_tests/data/crud_unified/updateOne-hint-serverError.yml
|
2265
|
+
- spec/spec_tests/data/crud_unified/deleteOne-let.yml
|
2266
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-update-validation.yml
|
2267
|
+
- spec/spec_tests/data/crud_unified/deleteMany-hint-serverError.yml
|
2268
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-updateOne-dots_and_dollars.yml
|
2269
|
+
- spec/spec_tests/data/crud_unified/findOneAndUpdate-hint.yml
|
2270
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-delete-hint.yml
|
2271
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-updateMany-hint-unacknowledged.yml
|
2272
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-delete-hint-clientError.yml
|
2273
|
+
- spec/spec_tests/data/crud_unified/findOneAndReplace-hint-clientError.yml
|
2274
|
+
- spec/spec_tests/data/crud_unified/findOneAndDelete-hint-serverError.yml
|
2275
|
+
- spec/spec_tests/data/crud_unified/updateOne-dots_and_dollars.yml
|
2276
|
+
- spec/spec_tests/data/crud_unified/updateMany-let.yml
|
2277
|
+
- spec/spec_tests/data/crud_unified/findOneAndDelete-comment.yml
|
2278
|
+
- spec/spec_tests/data/crud_unified/updateOne-let.yml
|
1961
2279
|
- spec/spec_tests/data/server_selection_rtt/first_value_zero.yml
|
1962
2280
|
- spec/spec_tests/data/server_selection_rtt/value_test_5.yml
|
1963
2281
|
- spec/spec_tests/data/server_selection_rtt/value_test_1.yml
|
@@ -1973,16 +2291,11 @@ test_files:
|
|
1973
2291
|
- spec/spec_tests/data/connection_string/valid-unix_socket-relative.yml
|
1974
2292
|
- spec/spec_tests/data/connection_string/valid-options.yml
|
1975
2293
|
- spec/spec_tests/data/connection_string/valid-unix_socket-absolute.yml
|
1976
|
-
- spec/spec_tests/data/
|
1977
|
-
- spec/spec_tests/data/
|
1978
|
-
- spec/spec_tests/data/
|
1979
|
-
- spec/spec_tests/data/
|
1980
|
-
- spec/spec_tests/data/
|
1981
|
-
- spec/spec_tests/data/command_monitoring/updateMany.yml
|
1982
|
-
- spec/spec_tests/data/command_monitoring/updateOne.yml
|
1983
|
-
- spec/spec_tests/data/command_monitoring/bulkWrite.yml
|
1984
|
-
- spec/spec_tests/data/command_monitoring/unacknowledgedBulkWrite.yml
|
1985
|
-
- spec/spec_tests/data/command_monitoring/insertMany.yml
|
2294
|
+
- spec/spec_tests/data/gridfs_unified/downloadByName.yml
|
2295
|
+
- spec/spec_tests/data/gridfs_unified/delete.yml
|
2296
|
+
- spec/spec_tests/data/gridfs_unified/download.yml
|
2297
|
+
- spec/spec_tests/data/gridfs_unified/upload.yml
|
2298
|
+
- spec/spec_tests/data/gridfs_unified/upload-disableMD5.yml
|
1986
2299
|
- spec/spec_tests/data/crud/read/distinct-collation.yml
|
1987
2300
|
- spec/spec_tests/data/crud/read/count-empty.yml
|
1988
2301
|
- spec/spec_tests/data/crud/read/find-collation.yml
|
@@ -2072,116 +2385,162 @@ test_files:
|
|
2072
2385
|
- spec/spec_tests/data/sdam_monitoring/replica_set_with_primary.yml
|
2073
2386
|
- spec/spec_tests/data/sdam_monitoring/replica_set_with_me_mismatch.yml
|
2074
2387
|
- spec/spec_tests/data/sdam_monitoring/replica_set_other_change.yml
|
2388
|
+
- spec/spec_tests/data/sdam_monitoring/load_balancer.yml
|
2075
2389
|
- spec/spec_tests/data/sdam_monitoring/replica_set_with_removal.yml
|
2076
2390
|
- spec/spec_tests/data/sdam_monitoring/standalone_repeated.yml
|
2077
2391
|
- spec/spec_tests/data/sdam_monitoring/replica_set_with_primary_removal.yml
|
2078
|
-
- spec/spec_tests/data/retryable_reads/find-serverErrors.yml
|
2079
|
-
- spec/spec_tests/data/retryable_reads/changeStreams-db.watch-serverErrors.yml
|
2080
|
-
- spec/spec_tests/data/retryable_reads/
|
2081
|
-
- spec/spec_tests/data/retryable_reads/
|
2082
|
-
- spec/spec_tests/data/retryable_reads/
|
2083
|
-
- spec/spec_tests/data/retryable_reads/
|
2084
|
-
- spec/spec_tests/data/retryable_reads/
|
2085
|
-
- spec/spec_tests/data/retryable_reads/
|
2086
|
-
- spec/spec_tests/data/retryable_reads/
|
2087
|
-
- spec/spec_tests/data/retryable_reads/
|
2088
|
-
- spec/spec_tests/data/retryable_reads/
|
2089
|
-
- spec/spec_tests/data/retryable_reads/
|
2090
|
-
- spec/spec_tests/data/retryable_reads/
|
2091
|
-
- spec/spec_tests/data/retryable_reads/listIndexNames
|
2092
|
-
- spec/spec_tests/data/retryable_reads/
|
2093
|
-
- spec/spec_tests/data/retryable_reads/
|
2094
|
-
- spec/spec_tests/data/retryable_reads/
|
2095
|
-
- spec/spec_tests/data/retryable_reads/
|
2096
|
-
- spec/spec_tests/data/retryable_reads/
|
2097
|
-
- spec/spec_tests/data/retryable_reads/
|
2098
|
-
- spec/spec_tests/data/retryable_reads/
|
2099
|
-
- spec/spec_tests/data/retryable_reads/estimatedDocumentCount
|
2100
|
-
- spec/spec_tests/data/retryable_reads/
|
2101
|
-
- spec/spec_tests/data/retryable_reads/
|
2102
|
-
- spec/spec_tests/data/retryable_reads/
|
2103
|
-
- spec/spec_tests/data/retryable_reads/
|
2104
|
-
- spec/spec_tests/data/retryable_reads/
|
2105
|
-
- spec/spec_tests/data/retryable_reads/
|
2106
|
-
- spec/spec_tests/data/retryable_reads/changeStreams-
|
2107
|
-
- spec/spec_tests/data/retryable_reads/
|
2108
|
-
- spec/spec_tests/data/retryable_reads/aggregate-
|
2109
|
-
- spec/spec_tests/data/retryable_reads/
|
2110
|
-
- spec/spec_tests/data/retryable_reads/
|
2111
|
-
- spec/spec_tests/data/retryable_reads/
|
2112
|
-
- spec/spec_tests/data/retryable_reads/
|
2113
|
-
- spec/spec_tests/data/retryable_reads/
|
2114
|
-
- spec/spec_tests/data/retryable_reads/distinct.yml
|
2115
|
-
- spec/spec_tests/data/retryable_reads/
|
2116
|
-
- spec/spec_tests/data/retryable_reads/
|
2117
|
-
- spec/spec_tests/data/retryable_reads/
|
2118
|
-
- spec/spec_tests/data/retryable_reads/
|
2119
|
-
- spec/spec_tests/data/retryable_reads/
|
2120
|
-
- spec/spec_tests/data/retryable_reads/
|
2121
|
-
- spec/spec_tests/data/retryable_reads/listCollections.yml
|
2392
|
+
- spec/spec_tests/data/retryable_reads/legacy/find-serverErrors.yml
|
2393
|
+
- spec/spec_tests/data/retryable_reads/legacy/changeStreams-db.watch-serverErrors.yml
|
2394
|
+
- spec/spec_tests/data/retryable_reads/legacy/estimatedDocumentCount-serverErrors.yml
|
2395
|
+
- spec/spec_tests/data/retryable_reads/legacy/listCollections-serverErrors.yml
|
2396
|
+
- spec/spec_tests/data/retryable_reads/legacy/findOne.yml
|
2397
|
+
- spec/spec_tests/data/retryable_reads/legacy/gridfs-download-serverErrors.yml
|
2398
|
+
- spec/spec_tests/data/retryable_reads/legacy/changeStreams-db.coll.watch.yml
|
2399
|
+
- spec/spec_tests/data/retryable_reads/legacy/listIndexes.yml
|
2400
|
+
- spec/spec_tests/data/retryable_reads/legacy/gridfs-downloadByName-serverErrors.yml
|
2401
|
+
- spec/spec_tests/data/retryable_reads/legacy/listDatabaseObjects-serverErrors.yml
|
2402
|
+
- spec/spec_tests/data/retryable_reads/legacy/listIndexes-serverErrors.yml
|
2403
|
+
- spec/spec_tests/data/retryable_reads/legacy/listCollectionObjects-serverErrors.yml
|
2404
|
+
- spec/spec_tests/data/retryable_reads/legacy/listIndexNames-serverErrors.yml
|
2405
|
+
- spec/spec_tests/data/retryable_reads/legacy/listIndexNames.yml
|
2406
|
+
- spec/spec_tests/data/retryable_reads/legacy/listDatabaseNames.yml
|
2407
|
+
- spec/spec_tests/data/retryable_reads/legacy/countDocuments.yml
|
2408
|
+
- spec/spec_tests/data/retryable_reads/legacy/findOne-serverErrors.yml
|
2409
|
+
- spec/spec_tests/data/retryable_reads/legacy/count.yml
|
2410
|
+
- spec/spec_tests/data/retryable_reads/legacy/listDatabases.yml
|
2411
|
+
- spec/spec_tests/data/retryable_reads/legacy/mapReduce.yml
|
2412
|
+
- spec/spec_tests/data/retryable_reads/legacy/gridfs-download.yml
|
2413
|
+
- spec/spec_tests/data/retryable_reads/legacy/estimatedDocumentCount.yml
|
2414
|
+
- spec/spec_tests/data/retryable_reads/legacy/listDatabaseObjects.yml
|
2415
|
+
- spec/spec_tests/data/retryable_reads/legacy/find.yml
|
2416
|
+
- spec/spec_tests/data/retryable_reads/legacy/changeStreams-client.watch-serverErrors.yml
|
2417
|
+
- spec/spec_tests/data/retryable_reads/legacy/aggregate.yml
|
2418
|
+
- spec/spec_tests/data/retryable_reads/legacy/listDatabases-serverErrors.yml
|
2419
|
+
- spec/spec_tests/data/retryable_reads/legacy/changeStreams-db.watch.yml
|
2420
|
+
- spec/spec_tests/data/retryable_reads/legacy/changeStreams-client.watch.yml
|
2421
|
+
- spec/spec_tests/data/retryable_reads/legacy/aggregate-merge.yml
|
2422
|
+
- spec/spec_tests/data/retryable_reads/legacy/aggregate-serverErrors.yml
|
2423
|
+
- spec/spec_tests/data/retryable_reads/legacy/countDocuments-serverErrors.yml
|
2424
|
+
- spec/spec_tests/data/retryable_reads/legacy/listDatabaseNames-serverErrors.yml
|
2425
|
+
- spec/spec_tests/data/retryable_reads/legacy/changeStreams-db.coll.watch-serverErrors.yml
|
2426
|
+
- spec/spec_tests/data/retryable_reads/legacy/distinct.yml
|
2427
|
+
- spec/spec_tests/data/retryable_reads/legacy/listCollectionNames.yml
|
2428
|
+
- spec/spec_tests/data/retryable_reads/legacy/distinct-serverErrors.yml
|
2429
|
+
- spec/spec_tests/data/retryable_reads/legacy/listCollectionObjects.yml
|
2430
|
+
- spec/spec_tests/data/retryable_reads/legacy/gridfs-downloadByName.yml
|
2431
|
+
- spec/spec_tests/data/retryable_reads/legacy/count-serverErrors.yml
|
2432
|
+
- spec/spec_tests/data/retryable_reads/legacy/listCollectionNames-serverErrors.yml
|
2433
|
+
- spec/spec_tests/data/retryable_reads/legacy/listCollections.yml
|
2434
|
+
- spec/spec_tests/data/retryable_reads/unified/handshakeError.yml
|
2122
2435
|
- spec/spec_tests/data/gridfs/delete.yml
|
2123
2436
|
- spec/spec_tests/data/gridfs/download.yml
|
2124
2437
|
- spec/spec_tests/data/gridfs/upload.yml
|
2125
2438
|
- spec/spec_tests/data/gridfs/download_by_name.yml
|
2126
2439
|
- spec/spec_tests/data/client_side_encryption/keyAltName.yml
|
2440
|
+
- spec/spec_tests/data/client_side_encryption/fle2-NoEncryption.yml
|
2441
|
+
- spec/spec_tests/data/client_side_encryption/azureKMS.yml
|
2127
2442
|
- spec/spec_tests/data/client_side_encryption/localKMS.yml
|
2128
2443
|
- spec/spec_tests/data/client_side_encryption/malformedCiphertext.yml
|
2129
2444
|
- spec/spec_tests/data/client_side_encryption/badQueries.yml
|
2130
2445
|
- spec/spec_tests/data/client_side_encryption/bypassedCommand.yml
|
2131
2446
|
- spec/spec_tests/data/client_side_encryption/explain.yml
|
2132
2447
|
- spec/spec_tests/data/client_side_encryption/bulk.yml
|
2448
|
+
- spec/spec_tests/data/client_side_encryption/create-and-createIndexes.yml
|
2449
|
+
- spec/spec_tests/data/client_side_encryption/fle2-EncryptedFields-vs-jsonSchema.yml
|
2450
|
+
- spec/spec_tests/data/client_side_encryption/fle2-EncryptedFields-vs-EncryptedFieldsMap.yml
|
2133
2451
|
- spec/spec_tests/data/client_side_encryption/localSchema.yml
|
2452
|
+
- spec/spec_tests/data/client_side_encryption/fle2-Compact.yml
|
2453
|
+
- spec/spec_tests/data/client_side_encryption/fle2-Delete.yml
|
2134
2454
|
- spec/spec_tests/data/client_side_encryption/findOneAndUpdate.yml
|
2455
|
+
- spec/spec_tests/data/client_side_encryption/fle2-MissingKey.yml
|
2135
2456
|
- spec/spec_tests/data/client_side_encryption/types.yml
|
2136
2457
|
- spec/spec_tests/data/client_side_encryption/maxWireVersion.yml
|
2137
2458
|
- spec/spec_tests/data/client_side_encryption/delete.yml
|
2138
2459
|
- spec/spec_tests/data/client_side_encryption/countDocuments.yml
|
2139
2460
|
- spec/spec_tests/data/client_side_encryption/unsupportedCommand.yml
|
2140
2461
|
- spec/spec_tests/data/client_side_encryption/bypassAutoEncryption.yml
|
2462
|
+
- spec/spec_tests/data/client_side_encryption/fle2-CreateCollection.yml
|
2141
2463
|
- spec/spec_tests/data/client_side_encryption/count.yml
|
2142
2464
|
- spec/spec_tests/data/client_side_encryption/findOneAndDelete.yml
|
2143
2465
|
- spec/spec_tests/data/client_side_encryption/missingKey.yml
|
2144
2466
|
- spec/spec_tests/data/client_side_encryption/replaceOne.yml
|
2467
|
+
- spec/spec_tests/data/client_side_encryption/fle2-FindOneAndUpdate.yml
|
2145
2468
|
- spec/spec_tests/data/client_side_encryption/insert.yml
|
2146
2469
|
- spec/spec_tests/data/client_side_encryption/badSchema.yml
|
2470
|
+
- spec/spec_tests/data/client_side_encryption/gcpKMS.yml
|
2147
2471
|
- spec/spec_tests/data/client_side_encryption/findOneAndReplace.yml
|
2472
|
+
- spec/spec_tests/data/client_side_encryption/fle2-BypassQueryAnalysis.yml
|
2473
|
+
- spec/spec_tests/data/client_side_encryption/noSchema.yml
|
2148
2474
|
- spec/spec_tests/data/client_side_encryption/find.yml
|
2149
2475
|
- spec/spec_tests/data/client_side_encryption/updateMany.yml
|
2150
2476
|
- spec/spec_tests/data/client_side_encryption/aggregate.yml
|
2477
|
+
- spec/spec_tests/data/client_side_encryption/fle2-validatorAndPartialFieldExpression.yml
|
2478
|
+
- spec/spec_tests/data/client_side_encryption/fle2-DecryptExistingData.yml
|
2479
|
+
- spec/spec_tests/data/client_side_encryption/fle2-Update.yml
|
2151
2480
|
- spec/spec_tests/data/client_side_encryption/getMore.yml
|
2152
2481
|
- spec/spec_tests/data/client_side_encryption/updateOne.yml
|
2482
|
+
- spec/spec_tests/data/client_side_encryption/fle2-InsertFind-Indexed.yml
|
2483
|
+
- spec/spec_tests/data/client_side_encryption/unified/createDataKey-kms_providers-invalid.yml
|
2484
|
+
- spec/spec_tests/data/client_side_encryption/unified/rewrapManyDataKey-decrypt_failure.yml
|
2485
|
+
- spec/spec_tests/data/client_side_encryption/unified/getKey.yml
|
2486
|
+
- spec/spec_tests/data/client_side_encryption/unified/removeKeyAltName.yml
|
2487
|
+
- spec/spec_tests/data/client_side_encryption/unified/addKeyAltName.yml
|
2488
|
+
- spec/spec_tests/data/client_side_encryption/unified/getKeys.yml
|
2489
|
+
- spec/spec_tests/data/client_side_encryption/unified/deleteKey.yml
|
2490
|
+
- spec/spec_tests/data/client_side_encryption/unified/rewrapManyDataKey-encrypt_failure.yml
|
2491
|
+
- spec/spec_tests/data/client_side_encryption/unified/createDataKey.yml
|
2492
|
+
- spec/spec_tests/data/client_side_encryption/unified/getKeyByAltName.yml
|
2493
|
+
- spec/spec_tests/data/client_side_encryption/unified/rewrapManyDataKey.yml
|
2153
2494
|
- spec/spec_tests/data/client_side_encryption/distinct.yml
|
2495
|
+
- spec/spec_tests/data/client_side_encryption/fle2-EncryptedFieldsMap-defaults.yml
|
2154
2496
|
- spec/spec_tests/data/client_side_encryption/basic.yml
|
2155
|
-
- spec/spec_tests/data/
|
2156
|
-
- spec/spec_tests/data/
|
2157
|
-
- spec/spec_tests/data/retryable_writes/findOneAndReplace-
|
2158
|
-
- spec/spec_tests/data/retryable_writes/
|
2159
|
-
- spec/spec_tests/data/retryable_writes/
|
2160
|
-
- spec/spec_tests/data/retryable_writes/
|
2161
|
-
- spec/spec_tests/data/retryable_writes/
|
2162
|
-
- spec/spec_tests/data/retryable_writes/
|
2163
|
-
- spec/spec_tests/data/retryable_writes/
|
2164
|
-
- spec/spec_tests/data/retryable_writes/
|
2165
|
-
- spec/spec_tests/data/retryable_writes/
|
2166
|
-
- spec/spec_tests/data/retryable_writes/
|
2167
|
-
- spec/spec_tests/data/retryable_writes/
|
2168
|
-
- spec/spec_tests/data/retryable_writes/
|
2169
|
-
- spec/spec_tests/data/retryable_writes/
|
2170
|
-
- spec/spec_tests/data/retryable_writes/
|
2171
|
-
- spec/spec_tests/data/retryable_writes/
|
2172
|
-
- spec/spec_tests/data/retryable_writes/
|
2173
|
-
- spec/spec_tests/data/retryable_writes/
|
2174
|
-
- spec/spec_tests/data/retryable_writes/
|
2175
|
-
- spec/spec_tests/data/retryable_writes/
|
2176
|
-
- spec/spec_tests/data/retryable_writes/
|
2177
|
-
- spec/spec_tests/data/retryable_writes/updateOne.yml
|
2178
|
-
- spec/spec_tests/data/retryable_writes/
|
2179
|
-
- spec/spec_tests/data/retryable_writes/
|
2180
|
-
- spec/spec_tests/data/retryable_writes/
|
2181
|
-
- spec/spec_tests/data/retryable_writes/
|
2182
|
-
- spec/spec_tests/data/retryable_writes/
|
2183
|
-
- spec/spec_tests/data/retryable_writes/
|
2497
|
+
- spec/spec_tests/data/client_side_encryption/validatorAndPartialFieldExpression.yml
|
2498
|
+
- spec/spec_tests/data/client_side_encryption/fle2-InsertFind-Unindexed.yml
|
2499
|
+
- spec/spec_tests/data/retryable_writes/legacy/findOneAndReplace-errorLabels.yml
|
2500
|
+
- spec/spec_tests/data/retryable_writes/legacy/insertOne.yml
|
2501
|
+
- spec/spec_tests/data/retryable_writes/legacy/findOneAndReplace-serverErrors.yml
|
2502
|
+
- spec/spec_tests/data/retryable_writes/legacy/deleteOne.yml
|
2503
|
+
- spec/spec_tests/data/retryable_writes/legacy/findOneAndUpdate.yml
|
2504
|
+
- spec/spec_tests/data/retryable_writes/legacy/replaceOne-serverErrors.yml
|
2505
|
+
- spec/spec_tests/data/retryable_writes/legacy/deleteMany.yml
|
2506
|
+
- spec/spec_tests/data/retryable_writes/legacy/insertOne-serverErrors.yml
|
2507
|
+
- spec/spec_tests/data/retryable_writes/legacy/findOneAndDelete-errorLabels.yml
|
2508
|
+
- spec/spec_tests/data/retryable_writes/legacy/insertMany-serverErrors.yml
|
2509
|
+
- spec/spec_tests/data/retryable_writes/legacy/findOneAndUpdate-serverErrors.yml
|
2510
|
+
- spec/spec_tests/data/retryable_writes/legacy/insertOne-errorLabels.yml
|
2511
|
+
- spec/spec_tests/data/retryable_writes/legacy/findOneAndDelete.yml
|
2512
|
+
- spec/spec_tests/data/retryable_writes/legacy/deleteOne-serverErrors.yml
|
2513
|
+
- spec/spec_tests/data/retryable_writes/legacy/replaceOne.yml
|
2514
|
+
- spec/spec_tests/data/retryable_writes/legacy/findOneAndReplace.yml
|
2515
|
+
- spec/spec_tests/data/retryable_writes/legacy/findOneAndDelete-serverErrors.yml
|
2516
|
+
- spec/spec_tests/data/retryable_writes/legacy/findOneAndUpdate-errorLabels.yml
|
2517
|
+
- spec/spec_tests/data/retryable_writes/legacy/updateMany.yml
|
2518
|
+
- spec/spec_tests/data/retryable_writes/legacy/bulkWrite-errorLabels.yml
|
2519
|
+
- spec/spec_tests/data/retryable_writes/legacy/updateOne-serverErrors.yml
|
2520
|
+
- spec/spec_tests/data/retryable_writes/legacy/insertMany-errorLabels.yml
|
2521
|
+
- spec/spec_tests/data/retryable_writes/legacy/updateOne.yml
|
2522
|
+
- spec/spec_tests/data/retryable_writes/legacy/deleteOne-errorLabels.yml
|
2523
|
+
- spec/spec_tests/data/retryable_writes/legacy/bulkWrite.yml
|
2524
|
+
- spec/spec_tests/data/retryable_writes/legacy/replaceOne-errorLabels.yml
|
2525
|
+
- spec/spec_tests/data/retryable_writes/legacy/insertMany.yml
|
2526
|
+
- spec/spec_tests/data/retryable_writes/legacy/bulkWrite-serverErrors.yml
|
2527
|
+
- spec/spec_tests/data/retryable_writes/legacy/updateOne-errorLabels.yml
|
2528
|
+
- spec/spec_tests/data/retryable_writes/unified/handshakeError.yml
|
2529
|
+
- spec/spec_tests/data/retryable_writes/unified/insertOne-serverErrors.yml
|
2530
|
+
- spec/spec_tests/data/retryable_writes/unified/bulkWrite-serverErrors.yml
|
2531
|
+
- spec/spec_tests/data/command_monitoring_unified/insertOne.yml
|
2532
|
+
- spec/spec_tests/data/command_monitoring_unified/deleteOne.yml
|
2533
|
+
- spec/spec_tests/data/command_monitoring_unified/deleteMany.yml
|
2184
2534
|
- spec/spec_tests/data/command_monitoring_unified/redacted-commands.yml
|
2535
|
+
- spec/spec_tests/data/command_monitoring_unified/pre-42-server-connection-id.yml
|
2536
|
+
- spec/spec_tests/data/command_monitoring_unified/command.yml
|
2537
|
+
- spec/spec_tests/data/command_monitoring_unified/server-connection-id.yml
|
2538
|
+
- spec/spec_tests/data/command_monitoring_unified/find.yml
|
2539
|
+
- spec/spec_tests/data/command_monitoring_unified/updateMany.yml
|
2540
|
+
- spec/spec_tests/data/command_monitoring_unified/updateOne.yml
|
2541
|
+
- spec/spec_tests/data/command_monitoring_unified/bulkWrite.yml
|
2542
|
+
- spec/spec_tests/data/command_monitoring_unified/unacknowledgedBulkWrite.yml
|
2543
|
+
- spec/spec_tests/data/command_monitoring_unified/insertMany.yml
|
2185
2544
|
- spec/spec_tests/data/sdam/single/direct_connection_standalone.yml
|
2186
2545
|
- spec/spec_tests/data/sdam/single/discover_unavailable_seed.yml
|
2187
2546
|
- spec/spec_tests/data/sdam/single/direct_connection_wrong_set_name.yml
|
@@ -2280,6 +2639,7 @@ test_files:
|
|
2280
2639
|
- spec/spec_tests/data/sdam/rs/equal_electionids.yml
|
2281
2640
|
- spec/spec_tests/data/sdam/rs/stepdown_change_set_name.yml
|
2282
2641
|
- spec/spec_tests/data/sdam/rs/new_primary_new_setversion.yml
|
2642
|
+
- spec/spec_tests/data/sdam/load-balanced/discover_load_balancer.yml
|
2283
2643
|
- spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-NotPrimaryNoSecondaryOk.yml
|
2284
2644
|
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-LegacyNotPrimary.yml
|
2285
2645
|
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-ShutdownInProgress.yml
|
@@ -2360,64 +2720,26 @@ test_files:
|
|
2360
2720
|
- spec/spec_tests/data/sdam/errors/stale-topologyVersion-PrimarySteppedDown.yml
|
2361
2721
|
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-InterruptedAtShutdown.yml
|
2362
2722
|
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-NotWritablePrimary.yml
|
2723
|
+
- spec/spec_tests/data/change_streams_unified/change-streams-resume-errorLabels.yml
|
2724
|
+
- spec/spec_tests/data/change_streams_unified/change-streams-errors.yml
|
2725
|
+
- spec/spec_tests/data/change_streams_unified/change-streams-pre_and_post_images.yml
|
2726
|
+
- spec/spec_tests/data/change_streams_unified/change-streams-showExpandedEvents.yml
|
2363
2727
|
- spec/spec_tests/data/change_streams_unified/change-streams.yml
|
2728
|
+
- spec/spec_tests/data/change_streams_unified/change-streams-resume-allowlist.yml
|
2364
2729
|
- spec/spec_tests/data/uri_options/ruby-connection-options.yml
|
2365
2730
|
- spec/spec_tests/data/uri_options/ruby-auth-options.yml
|
2366
2731
|
- spec/spec_tests/data/uri_options/connection-pool-options.yml
|
2367
2732
|
- spec/spec_tests/data/uri_options/compression-options.yml
|
2368
2733
|
- spec/spec_tests/data/uri_options/read-preference-options.yml
|
2369
2734
|
- spec/spec_tests/data/uri_options/connection-options.yml
|
2735
|
+
- spec/spec_tests/data/uri_options/srv-options.yml
|
2370
2736
|
- spec/spec_tests/data/uri_options/tls-options.yml
|
2371
2737
|
- spec/spec_tests/data/uri_options/auth-options.yml
|
2372
2738
|
- spec/spec_tests/data/uri_options/concern-options.yml
|
2373
|
-
- spec/spec_tests/data/crud_v2/findOneAndUpdate-hint-serverError.yml
|
2374
|
-
- spec/spec_tests/data/crud_v2/find-allowdiskuse-serverError.yml
|
2375
|
-
- spec/spec_tests/data/crud_v2/updateMany-hint-serverError.yml
|
2376
|
-
- spec/spec_tests/data/crud_v2/updateOne-hint-clientError.yml
|
2377
|
-
- spec/spec_tests/data/crud_v2/updateOne-hint.yml
|
2378
|
-
- spec/spec_tests/data/crud_v2/bulkWrite-update-hint-serverError.yml
|
2379
|
-
- spec/spec_tests/data/crud_v2/deleteMany-hint-clientError.yml
|
2380
|
-
- spec/spec_tests/data/crud_v2/replaceOne-hint.yml
|
2381
|
-
- spec/spec_tests/data/crud_v2/findOneAndReplace-hint.yml
|
2382
|
-
- spec/spec_tests/data/crud_v2/bulkWrite-delete-hint-serverError.yml
|
2383
|
-
- spec/spec_tests/data/crud_v2/updateWithPipelines.yml
|
2384
|
-
- spec/spec_tests/data/crud_v2/unacknowledged-replaceOne-hint-clientError.yml
|
2385
|
-
- spec/spec_tests/data/crud_v2/db-aggregate.yml
|
2386
|
-
- spec/spec_tests/data/crud_v2/updateMany-hint.yml
|
2387
|
-
- spec/spec_tests/data/crud_v2/find-allowdiskuse.yml
|
2388
|
-
- spec/spec_tests/data/crud_v2/unacknowledged-deleteOne-hint-clientError.yml
|
2389
|
-
- spec/spec_tests/data/crud_v2/unacknowledged-bulkWrite-delete-hint-clientError.yml
|
2390
|
-
- spec/spec_tests/data/crud_v2/aggregate-out-readConcern.yml
|
2391
|
-
- spec/spec_tests/data/crud_v2/deleteMany-hint.yml
|
2392
|
-
- spec/spec_tests/data/crud_v2/deleteOne-hint-clientError.yml
|
2393
|
-
- spec/spec_tests/data/crud_v2/updateMany-hint-clientError.yml
|
2394
|
-
- spec/spec_tests/data/crud_v2/bulkWrite-update-hint-clientError.yml
|
2395
|
-
- spec/spec_tests/data/crud_v2/deleteOne-hint-serverError.yml
|
2396
|
-
- spec/spec_tests/data/crud_v2/findOneAndUpdate-hint-clientError.yml
|
2397
|
-
- spec/spec_tests/data/crud_v2/unacknowledged-updateMany-hint-clientError.yml
|
2398
|
-
- spec/spec_tests/data/crud_v2/bulkWrite-arrayFilters.yml
|
2399
|
-
- spec/spec_tests/data/crud_v2/findOneAndDelete-hint.yml
|
2400
|
-
- spec/spec_tests/data/crud_v2/unacknowledged-bulkWrite-update-hint-clientError.yml
|
2401
|
-
- spec/spec_tests/data/crud_v2/bulkWrite-update-hint.yml
|
2402
|
-
- spec/spec_tests/data/crud_v2/findOneAndDelete-hint-clientError.yml
|
2403
|
-
- spec/spec_tests/data/crud_v2/unacknowledged-findOneAndReplace-hint-clientError.yml
|
2404
|
-
- spec/spec_tests/data/crud_v2/findOneAndReplace-hint-serverError.yml
|
2405
|
-
- spec/spec_tests/data/crud_v2/aggregate-merge.yml
|
2406
|
-
- spec/spec_tests/data/crud_v2/find-allowdiskuse-clientError.yml
|
2407
|
-
- spec/spec_tests/data/crud_v2/deleteOne-hint.yml
|
2408
|
-
- spec/spec_tests/data/crud_v2/updateOne-hint-serverError.yml
|
2409
|
-
- spec/spec_tests/data/crud_v2/deleteMany-hint-serverError.yml
|
2410
|
-
- spec/spec_tests/data/crud_v2/findOneAndUpdate-hint.yml
|
2411
|
-
- spec/spec_tests/data/crud_v2/bulkWrite-delete-hint.yml
|
2412
|
-
- spec/spec_tests/data/crud_v2/unacknowledged-findOneAndUpdate-hint-clientError.yml
|
2413
|
-
- spec/spec_tests/data/crud_v2/bulkWrite-delete-hint-clientError.yml
|
2414
|
-
- spec/spec_tests/data/crud_v2/unacknowledged-deleteMany-hint-clientError.yml
|
2415
|
-
- spec/spec_tests/data/crud_v2/unacknowledged-updateOne-hint-clientError.yml
|
2416
|
-
- spec/spec_tests/data/crud_v2/unacknowledged-findOneAndDelete-hint-clientError.yml
|
2417
|
-
- spec/spec_tests/data/crud_v2/findOneAndReplace-hint-clientError.yml
|
2418
|
-
- spec/spec_tests/data/crud_v2/findOneAndDelete-hint-serverError.yml
|
2419
2739
|
- spec/spec_tests/data/server_selection/Single/read/SecondaryPreferred.yml
|
2420
2740
|
- spec/spec_tests/data/server_selection/Unknown/read/SecondaryPreferred.yml
|
2741
|
+
- spec/spec_tests/data/server_selection/Unknown/read/ghost.yml
|
2742
|
+
- spec/spec_tests/data/server_selection/Unknown/write/ghost.yml
|
2421
2743
|
- spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/PrimaryPreferred.yml
|
2422
2744
|
- spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/Secondary_multi_tags2.yml
|
2423
2745
|
- spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/Nearest_multiple.yml
|
@@ -2448,10 +2770,10 @@ test_files:
|
|
2448
2770
|
- spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/SecondaryPreferred_non_matching.yml
|
2449
2771
|
- spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/Nearest_non_matching.yml
|
2450
2772
|
- spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/Secondary_non_matching.yml
|
2451
|
-
- spec/spec_tests/data/
|
2452
|
-
- spec/spec_tests/data/
|
2453
|
-
- spec/spec_tests/data/
|
2454
|
-
- spec/spec_tests/data/
|
2773
|
+
- spec/spec_tests/data/load_balancers/lb-connection-establishment.yml
|
2774
|
+
- spec/spec_tests/data/load_balancers/non-lb-connection-establishment.yml
|
2775
|
+
- spec/spec_tests/data/load_balancers/server-selection.yml
|
2776
|
+
- spec/spec_tests/data/load_balancers/event-monitoring.yml
|
2455
2777
|
- spec/spec_tests/data/transactions/retryable-commit-errorLabels.yml
|
2456
2778
|
- spec/spec_tests/data/transactions/causal-consistency.yml
|
2457
2779
|
- spec/spec_tests/data/transactions/write-concern.yml
|
@@ -2485,6 +2807,7 @@ test_files:
|
|
2485
2807
|
- spec/spec_tests/data/transactions/errors.yml
|
2486
2808
|
- spec/spec_tests/data/transactions/retryable-writes.yml
|
2487
2809
|
- spec/spec_tests/data/unified/valid-pass/poc-retryable-reads.yml
|
2810
|
+
- spec/spec_tests/data/unified/valid-pass/expectedEventsForClient-ignoreExtraEvents.yml
|
2488
2811
|
- spec/spec_tests/data/unified/valid-pass/poc-gridfs.yml
|
2489
2812
|
- spec/spec_tests/data/unified/valid-pass/poc-sessions.yml
|
2490
2813
|
- spec/spec_tests/data/unified/valid-pass/poc-retryable-writes.yml
|
@@ -2494,34 +2817,72 @@ test_files:
|
|
2494
2817
|
- spec/spec_tests/data/unified/valid-pass/poc-transactions.yml
|
2495
2818
|
- spec/spec_tests/data/unified/valid-pass/poc-change-streams.yml
|
2496
2819
|
- spec/spec_tests/data/unified/valid-pass/poc-transactions-mongos-pin-auto.yml
|
2820
|
+
- spec/spec_tests/data/unified/valid-fail/operation-unsupported.yml
|
2497
2821
|
- spec/spec_tests/data/unified/valid-fail/operation-failure.yml
|
2822
|
+
- spec/spec_tests/data/unified/invalid/expectedEventsForClient-ignoreExtraEvents-type.yml
|
2823
|
+
- spec/spec_tests/data/transactions_unified/retryable-commit-handshake.yml
|
2824
|
+
- spec/spec_tests/data/transactions_unified/retryable-abort-handshake.yml
|
2825
|
+
- spec/spec_tests/data/transactions_unified/do-not-retry-read-in-transaction.yml
|
2498
2826
|
- spec/spec_tests/data/transactions_unified/mongos-unpin.yml
|
2827
|
+
- spec/spec_tests/data/collection_management/createCollection-pre_and_post_images.yml
|
2828
|
+
- spec/spec_tests/data/collection_management/clustered-indexes.yml
|
2829
|
+
- spec/spec_tests/data/collection_management/modifyCollection-pre_and_post_images.yml
|
2499
2830
|
- spec/spec_tests/data/collection_management/timeseries-collection.yml
|
2500
|
-
- spec/spec_tests/data/
|
2501
|
-
- spec/spec_tests/data/
|
2502
|
-
- spec/spec_tests/data/
|
2503
|
-
- spec/spec_tests/data/
|
2504
|
-
- spec/spec_tests/data/
|
2505
|
-
- spec/spec_tests/data/
|
2506
|
-
- spec/spec_tests/data/
|
2507
|
-
- spec/spec_tests/data/
|
2508
|
-
- spec/spec_tests/data/
|
2509
|
-
- spec/spec_tests/data/
|
2510
|
-
- spec/spec_tests/data/
|
2511
|
-
- spec/spec_tests/data/
|
2512
|
-
- spec/spec_tests/data/
|
2513
|
-
- spec/spec_tests/data/
|
2514
|
-
- spec/spec_tests/data/
|
2515
|
-
- spec/spec_tests/data/
|
2516
|
-
- spec/spec_tests/data/
|
2517
|
-
- spec/spec_tests/data/
|
2518
|
-
- spec/spec_tests/data/
|
2519
|
-
- spec/spec_tests/data/
|
2520
|
-
- spec/spec_tests/data/
|
2521
|
-
- spec/spec_tests/data/
|
2522
|
-
- spec/spec_tests/data/
|
2523
|
-
- spec/spec_tests/data/
|
2524
|
-
- spec/spec_tests/data/
|
2831
|
+
- spec/spec_tests/data/sessions_unified/snapshot-sessions-unsupported-ops.yml
|
2832
|
+
- spec/spec_tests/data/sessions_unified/driver-sessions-server-support.yml
|
2833
|
+
- spec/spec_tests/data/sessions_unified/snapshot-sessions-not-supported-client-error.yml
|
2834
|
+
- spec/spec_tests/data/sessions_unified/snapshot-sessions-not-supported-server-error.yml
|
2835
|
+
- spec/spec_tests/data/sessions_unified/snapshot-sessions.yml
|
2836
|
+
- spec/spec_tests/data/seed_list_discovery/sharded/srvMaxHosts-greater_than_srv_records.yml
|
2837
|
+
- spec/spec_tests/data/seed_list_discovery/sharded/srvMaxHosts-less_than_srv_records.yml
|
2838
|
+
- spec/spec_tests/data/seed_list_discovery/sharded/srvMaxHosts-equal_to_srv_records.yml
|
2839
|
+
- spec/spec_tests/data/seed_list_discovery/sharded/srvMaxHosts-zero.yml
|
2840
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/srvMaxHosts-greater_than_srv_records.yml
|
2841
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/longer-parent-in-return.yml
|
2842
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/srvMaxHosts-less_than_srv_records.yml
|
2843
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/uri-with-auth.yml
|
2844
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/not-enough-parts.yml
|
2845
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/srv-service-name.yml
|
2846
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/returned-parent-wrong.yml
|
2847
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/txt-record-with-overridden-ssl-option.yml
|
2848
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/no-results.yml
|
2849
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/parent-part-mismatch5.yml
|
2850
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/srvMaxHosts-conflicts_with_replicaSet.yml
|
2851
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/one-result-default-port.yml
|
2852
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/srvMaxHosts-equal_to_srv_records.yml
|
2853
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/parent-part-mismatch3.yml
|
2854
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/srvMaxHosts-zero.yml
|
2855
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/one-txt-record-multiple-strings.yml
|
2856
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/parent-part-mismatch2.yml
|
2857
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/uri-with-two-hosts.yml
|
2858
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/one-txt-record.yml
|
2859
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/srvMaxHosts-conflicts_with_replicaSet-txt.yml
|
2860
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/encoded-userinfo-and-db.yml
|
2861
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/direct-connection-false.yml
|
2862
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/parent-part-mismatch4.yml
|
2863
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/two-txt-records.yml
|
2864
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/uri-with-port.yml
|
2865
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/txt-record-not-allowed-option.yml
|
2866
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/parent-part-mismatch1.yml
|
2867
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/txt-record-with-unallowed-option.yml
|
2868
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/uri-with-admin-database.yml
|
2869
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/returned-parent-too-short.yml
|
2870
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/direct-connection-true.yml
|
2871
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/txt-record-with-overridden-uri-option.yml
|
2872
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/misformatted-option.yml
|
2873
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/loadBalanced-false-txt.yml
|
2874
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/two-results-nonstandard-port.yml
|
2875
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/two-results-default-port.yml
|
2876
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/srvMaxHosts-zero-txt.yml
|
2877
|
+
- spec/spec_tests/data/seed_list_discovery/load-balanced/loadBalanced-replicaSet-errors.yml
|
2878
|
+
- spec/spec_tests/data/seed_list_discovery/load-balanced/srvMaxHosts-conflicts_with_loadBalanced-true-txt.yml
|
2879
|
+
- spec/spec_tests/data/seed_list_discovery/load-balanced/loadBalanced-true-multiple-hosts.yml
|
2880
|
+
- spec/spec_tests/data/seed_list_discovery/load-balanced/loadBalanced-no-results.yml
|
2881
|
+
- spec/spec_tests/data/seed_list_discovery/load-balanced/loadBalanced-directConnection.yml
|
2882
|
+
- spec/spec_tests/data/seed_list_discovery/load-balanced/srvMaxHosts-zero.yml
|
2883
|
+
- spec/spec_tests/data/seed_list_discovery/load-balanced/loadBalanced-true-txt.yml
|
2884
|
+
- spec/spec_tests/data/seed_list_discovery/load-balanced/srvMaxHosts-conflicts_with_loadBalanced-true.yml
|
2885
|
+
- spec/spec_tests/data/seed_list_discovery/load-balanced/srvMaxHosts-zero-txt.yml
|
2525
2886
|
- spec/spec_tests/data/auth/connection-string.yml
|
2526
2887
|
- spec/spec_tests/data/transactions_api/callback-aborts.yml
|
2527
2888
|
- spec/spec_tests/data/transactions_api/transaction-options.yml
|
@@ -2534,11 +2895,14 @@ test_files:
|
|
2534
2895
|
- spec/spec_tests/data/transactions_api/callback-retry.yml
|
2535
2896
|
- spec/spec_tests/command_monitoring_unified_spec.rb
|
2536
2897
|
- spec/spec_tests/client_side_encryption_spec.rb
|
2898
|
+
- spec/spec_tests/retryable_writes_unified_spec.rb
|
2537
2899
|
- spec/spec_tests/connection_string_spec.rb
|
2900
|
+
- spec/spec_tests/sessions_unified_spec.rb
|
2538
2901
|
- spec/spec_tests/versioned_api_spec.rb
|
2539
2902
|
- spec/spec_tests/crud_spec.rb
|
2540
2903
|
- spec/spec_tests/change_streams_unified_spec.rb
|
2541
2904
|
- spec/spec_tests/sdam_monitoring_spec.rb
|
2905
|
+
- spec/spec_tests/seed_list_discovery_spec.rb
|
2542
2906
|
- spec/spec_tests/unified_spec.rb
|
2543
2907
|
- spec/spec_tests/server_selection_spec.rb
|
2544
2908
|
- spec/spec_tests/crud_unified_spec.rb
|
@@ -2546,15 +2910,15 @@ test_files:
|
|
2546
2910
|
- spec/spec_tests/uri_options_spec.rb
|
2547
2911
|
- spec/spec_tests/cmap_spec.rb
|
2548
2912
|
- spec/spec_tests/sdam_spec.rb
|
2913
|
+
- spec/spec_tests/retryable_reads_unified_spec.rb
|
2549
2914
|
- spec/spec_tests/retryable_reads_spec.rb
|
2550
2915
|
- spec/spec_tests/sdam_integration_spec.rb
|
2551
|
-
- spec/spec_tests/command_monitoring_spec.rb
|
2552
|
-
- spec/spec_tests/change_streams_spec.rb
|
2553
2916
|
- spec/spec_tests/collection_management_spec.rb
|
2554
2917
|
- spec/spec_tests/auth_spec.rb
|
2918
|
+
- spec/spec_tests/load_balancers_spec.rb
|
2919
|
+
- spec/spec_tests/gridfs_unified_spec.rb
|
2555
2920
|
- spec/spec_tests/read_write_concern_connection_string_spec.rb
|
2556
2921
|
- spec/spec_tests/server_selection_rtt_spec.rb
|
2557
|
-
- spec/spec_tests/dns_seedlist_discovery_spec.rb
|
2558
2922
|
- spec/atlas/operations_spec.rb
|
2559
2923
|
- spec/atlas/atlas_connectivity_spec.rb
|
2560
2924
|
- spec/spec_helper.rb
|
@@ -2571,6 +2935,7 @@ test_files:
|
|
2571
2935
|
- spec/integration/sdam_events_spec.rb
|
2572
2936
|
- spec/integration/cursor_reaping_spec.rb
|
2573
2937
|
- spec/integration/ssl_uri_options_spec.rb
|
2938
|
+
- spec/integration/cursor_pinning_spec.rb
|
2574
2939
|
- spec/integration/server_selector_spec.rb
|
2575
2940
|
- spec/integration/query_cache_transactions_spec.rb
|
2576
2941
|
- spec/integration/mongos_pinning_spec.rb
|
@@ -2585,15 +2950,21 @@ test_files:
|
|
2585
2950
|
- spec/integration/sdam_error_handling_spec.rb
|
2586
2951
|
- spec/integration/versioned_api_examples_spec.rb
|
2587
2952
|
- spec/integration/client_construction_spec.rb
|
2953
|
+
- spec/integration/map_reduce_spec.rb
|
2588
2954
|
- spec/integration/crud_spec.rb
|
2589
2955
|
- spec/integration/truncated_utf8_spec.rb
|
2590
2956
|
- spec/integration/shell_examples_spec.rb
|
2591
2957
|
- spec/integration/query_cache_spec.rb
|
2592
2958
|
- spec/integration/collection_indexes_prose_spec.rb
|
2593
2959
|
- spec/integration/aws_credentials_retriever_spec.rb
|
2960
|
+
- spec/integration/client_side_encryption/queryable_encryption_examples_spec.rb
|
2961
|
+
- spec/integration/client_side_encryption/kms_tls_options_spec.rb
|
2594
2962
|
- spec/integration/client_side_encryption/bypass_mongocryptd_spawn_spec.rb
|
2595
2963
|
- spec/integration/client_side_encryption/auto_encryption_reconnect_spec.rb
|
2596
2964
|
- spec/integration/client_side_encryption/corpus_spec.rb
|
2965
|
+
- spec/integration/client_side_encryption/decryption_events_prose_spec.rb
|
2966
|
+
- spec/integration/client_side_encryption/explicit_queryable_encryption_spec.rb
|
2967
|
+
- spec/integration/client_side_encryption/unique_index_on_key_alt_names_prose_spec.rb
|
2597
2968
|
- spec/integration/client_side_encryption/auto_encryption_mongocryptd_spawn_spec.rb
|
2598
2969
|
- spec/integration/client_side_encryption/auto_encryption_bulk_writes_spec.rb
|
2599
2970
|
- spec/integration/client_side_encryption/auto_encryption_old_wire_version_spec.rb
|
@@ -2602,6 +2973,7 @@ test_files:
|
|
2602
2973
|
- spec/integration/client_side_encryption/auto_encryption_spec.rb
|
2603
2974
|
- spec/integration/client_side_encryption/views_spec.rb
|
2604
2975
|
- spec/integration/client_side_encryption/auto_encryption_command_monitoring_spec.rb
|
2976
|
+
- spec/integration/client_side_encryption/kms_tls_spec.rb
|
2605
2977
|
- spec/integration/client_side_encryption/custom_endpoint_spec.rb
|
2606
2978
|
- spec/integration/client_side_encryption/external_key_vault_spec.rb
|
2607
2979
|
- spec/integration/client_side_encryption/bson_size_limit_spec.rb
|
@@ -2620,7 +2992,10 @@ test_files:
|
|
2620
2992
|
- spec/integration/server_selection_spec.rb
|
2621
2993
|
- spec/integration/connection_pool_populator_spec.rb
|
2622
2994
|
- spec/integration/awaited_ismaster_spec.rb
|
2995
|
+
- spec/integration/snapshot_query_examples_spec.rb
|
2623
2996
|
- spec/integration/time_zone_querying_spec.rb
|
2997
|
+
- spec/integration/aws_lambda_examples_spec.rb
|
2998
|
+
- spec/integration/transaction_pinning_spec.rb
|
2624
2999
|
- spec/integration/change_stream_spec.rb
|
2625
3000
|
- spec/integration/docs_examples_spec.rb
|
2626
3001
|
- spec/integration/srv_monitoring_spec.rb
|
@@ -2657,7 +3032,6 @@ test_files:
|
|
2657
3032
|
- spec/support/constraints.rb
|
2658
3033
|
- spec/support/keyword_struct.rb
|
2659
3034
|
- spec/support/sdam_formatter_integration.rb
|
2660
|
-
- spec/support/event_subscriber.rb
|
2661
3035
|
- spec/support/local_resource_registry.rb
|
2662
3036
|
- spec/support/common_shortcuts.rb
|
2663
3037
|
- spec/support/crypt/limits/limits-doc.json
|
@@ -2666,21 +3040,37 @@ test_files:
|
|
2666
3040
|
- spec/support/crypt/external/external-key.json
|
2667
3041
|
- spec/support/crypt/external/external-schema.json
|
2668
3042
|
- spec/support/crypt/data_keys/key_document_local.json
|
3043
|
+
- spec/support/crypt/data_keys/key_document_kmip.json
|
2669
3044
|
- spec/support/crypt/data_keys/key_document_aws.json
|
3045
|
+
- spec/support/crypt/data_keys/key_document_gcp.json
|
3046
|
+
- spec/support/crypt/data_keys/key_document_azure.json
|
3047
|
+
- spec/support/crypt/encryptedFields.json
|
2670
3048
|
- spec/support/crypt/schema_maps/schema_map_local_key_alt_names.json
|
2671
3049
|
- spec/support/crypt/schema_maps/schema_map_aws_key_alt_names.json
|
3050
|
+
- spec/support/crypt/schema_maps/schema_map_kmip.json
|
3051
|
+
- spec/support/crypt/schema_maps/schema_map_azure.json
|
3052
|
+
- spec/support/crypt/schema_maps/schema_map_kmip_key_alt_names.json
|
2672
3053
|
- spec/support/crypt/schema_maps/schema_map_local.json
|
3054
|
+
- spec/support/crypt/schema_maps/schema_map_gcp_key_alt_names.json
|
2673
3055
|
- spec/support/crypt/schema_maps/schema_map_aws.json
|
3056
|
+
- spec/support/crypt/schema_maps/schema_map_gcp.json
|
3057
|
+
- spec/support/crypt/schema_maps/schema_map_azure_key_alt_names.json
|
3058
|
+
- spec/support/crypt/keys/key1-document.json
|
2674
3059
|
- spec/support/crypt/corpus/corpus.json
|
3060
|
+
- spec/support/crypt/corpus/corpus-encrypted.json
|
2675
3061
|
- spec/support/crypt/corpus/corpus-key-aws.json
|
3062
|
+
- spec/support/crypt/corpus/corpus-key-azure.json
|
3063
|
+
- spec/support/crypt/corpus/corpus-key-gcp.json
|
3064
|
+
- spec/support/crypt/corpus/corpus-key-kmip.json
|
2676
3065
|
- spec/support/crypt/corpus/corpus-schema.json
|
2677
|
-
- spec/support/crypt/corpus/corpus_encrypted.json
|
2678
3066
|
- spec/support/crypt/corpus/corpus-key-local.json
|
3067
|
+
- spec/support/mongos_macros.rb
|
2679
3068
|
- spec/support/primary_socket.rb
|
2680
3069
|
- spec/support/dns.rb
|
2681
3070
|
- spec/support/utils.rb
|
2682
3071
|
- spec/support/matchers.rb
|
2683
3072
|
- spec/support/ocsp
|
3073
|
+
- spec/support/macros.rb
|
2684
3074
|
- spec/support/spec_config.rb
|
2685
3075
|
- spec/support/spec_setup.rb
|
2686
3076
|
- spec/support/certificates/client-second-level.crt
|
@@ -2701,6 +3091,7 @@ test_files:
|
|
2701
3091
|
- spec/support/certificates/multi-ca.crt
|
2702
3092
|
- spec/support/certificates/crl.pem
|
2703
3093
|
- spec/support/certificates/client-encrypted.key
|
3094
|
+
- spec/support/certificates/retrieve-atlas-cert
|
2704
3095
|
- spec/support/certificates/client-int.crt
|
2705
3096
|
- spec/support/certificates/client-x509.pem
|
2706
3097
|
- spec/support/certificates/server-second-level-bundle.pem
|
@@ -2710,8 +3101,8 @@ test_files:
|
|
2710
3101
|
- spec/support/certificates/server-second-level.crt
|
2711
3102
|
- spec/support/certificates/client.pem
|
2712
3103
|
- spec/support/aws_utils.rb
|
2713
|
-
- spec/support/session_registry.rb
|
2714
3104
|
- spec/support/background_thread_registry.rb
|
3105
|
+
- spec/support/using_hash.rb
|
2715
3106
|
- spec/support/client_registry.rb
|
2716
3107
|
- spec/support/client_registry_macros.rb
|
2717
3108
|
- spec/support/json_ext_formatter.rb
|
@@ -2727,6 +3118,7 @@ test_files:
|
|
2727
3118
|
- spec/support/shared/scram_conversation.rb
|
2728
3119
|
- spec/support/shared/session.rb
|
2729
3120
|
- spec/support/shared/protocol.rb
|
3121
|
+
- spec/support/shared/auth_context.rb
|
2730
3122
|
- spec/support/crypt.rb
|
2731
3123
|
- spec/shared/share/Dockerfile.erb
|
2732
3124
|
- spec/shared/share/haproxy-2.conf
|
@@ -2736,13 +3128,18 @@ test_files:
|
|
2736
3128
|
- spec/shared/bin/s3-upload
|
2737
3129
|
- spec/shared/shlib/distro.sh
|
2738
3130
|
- spec/shared/shlib/set_env.sh
|
3131
|
+
- spec/shared/shlib/config.sh
|
2739
3132
|
- spec/shared/shlib/server.sh
|
2740
3133
|
- spec/shared/LICENSE
|
2741
3134
|
- spec/shared/lib/mrss/constraints.rb
|
2742
3135
|
- spec/shared/lib/mrss/cluster_config.rb
|
2743
3136
|
- spec/shared/lib/mrss/child_process_helper.rb
|
3137
|
+
- spec/shared/lib/mrss/eg_config_utils.rb
|
3138
|
+
- spec/shared/lib/mrss/event_subscriber.rb
|
2744
3139
|
- spec/shared/lib/mrss/utils.rb
|
2745
3140
|
- spec/shared/lib/mrss/server_version_registry.rb
|
3141
|
+
- spec/shared/lib/mrss/session_registry.rb
|
2746
3142
|
- spec/shared/lib/mrss/lite_constraints.rb
|
2747
3143
|
- spec/shared/lib/mrss/docker_runner.rb
|
2748
3144
|
- spec/shared/lib/mrss/spec_organizer.rb
|
3145
|
+
- spec/shared/lib/mrss/session_registry_legacy.rb
|