mongo 2.6.2 → 2.16.0
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/CONTRIBUTING.md +12 -54
- data/LICENSE +1 -1
- data/README.md +70 -43
- data/Rakefile +107 -22
- data/lib/mongo/active_support.rb +20 -0
- data/lib/mongo/address/ipv4.rb +39 -6
- data/lib/mongo/address/ipv6.rb +39 -8
- data/lib/mongo/address/unix.rb +10 -4
- data/lib/mongo/address/validator.rb +102 -0
- data/lib/mongo/address.rb +153 -73
- data/lib/mongo/auth/aws/conversation.rb +128 -0
- data/lib/mongo/auth/aws/credentials_retriever.rb +222 -0
- data/lib/mongo/auth/aws/request.rb +286 -0
- data/lib/mongo/auth/aws.rb +40 -0
- data/lib/mongo/auth/base.rb +138 -0
- data/lib/mongo/auth/conversation_base.rb +87 -0
- data/lib/mongo/auth/cr/conversation.rb +26 -89
- data/lib/mongo/auth/cr.rb +14 -37
- data/lib/mongo/auth/credential_cache.rb +54 -0
- data/lib/mongo/auth/gssapi/conversation.rb +100 -0
- data/lib/mongo/auth/gssapi.rb +41 -0
- data/lib/mongo/auth/ldap/conversation.rb +14 -63
- data/lib/mongo/auth/ldap.rb +14 -35
- data/lib/mongo/auth/roles.rb +4 -1
- data/lib/mongo/auth/sasl_conversation_base.rb +102 -0
- data/lib/mongo/auth/scram/conversation.rb +18 -487
- data/lib/mongo/auth/scram.rb +44 -56
- data/lib/mongo/auth/scram256/conversation.rb +66 -0
- data/lib/mongo/auth/scram256.rb +34 -0
- data/lib/mongo/auth/scram_conversation_base.rb +378 -0
- data/lib/mongo/auth/stringprep/profiles/sasl.rb +5 -1
- data/lib/mongo/auth/stringprep/tables.rb +5 -1
- data/lib/mongo/auth/stringprep/unicode_normalize/normalize.rb +3 -2
- data/lib/mongo/auth/stringprep/unicode_normalize/tables.rb +2 -1
- data/lib/mongo/auth/stringprep.rb +9 -5
- data/lib/mongo/auth/user/view.rb +31 -15
- data/lib/mongo/auth/user.rb +69 -19
- data/lib/mongo/auth/x509/conversation.rb +28 -62
- data/lib/mongo/auth/x509.rb +29 -33
- data/lib/mongo/auth.rb +96 -24
- data/lib/mongo/background_thread.rb +173 -0
- data/lib/mongo/bson.rb +4 -1
- data/lib/mongo/bulk_write/combineable.rb +24 -9
- data/lib/mongo/bulk_write/ordered_combiner.rb +4 -1
- data/lib/mongo/bulk_write/result.rb +5 -2
- data/lib/mongo/bulk_write/result_combiner.rb +18 -5
- data/lib/mongo/bulk_write/transformable.rb +21 -11
- data/lib/mongo/bulk_write/unordered_combiner.rb +4 -1
- data/lib/mongo/bulk_write/validatable.rb +9 -2
- data/lib/mongo/bulk_write.rb +99 -34
- data/lib/mongo/caching_cursor.rb +77 -0
- data/lib/mongo/client.rb +958 -122
- data/lib/mongo/client_encryption.rb +106 -0
- data/lib/mongo/cluster/periodic_executor.rb +39 -40
- data/lib/mongo/cluster/reapers/cursor_reaper.rb +96 -46
- data/lib/mongo/cluster/reapers/socket_reaper.rb +16 -10
- data/lib/mongo/cluster/sdam_flow.rb +626 -0
- data/lib/mongo/cluster/topology/base.rb +225 -0
- data/lib/mongo/cluster/topology/load_balanced.rb +102 -0
- data/lib/mongo/cluster/topology/no_replica_set_options.rb +37 -0
- data/lib/mongo/cluster/topology/replica_set_no_primary.rb +172 -0
- data/lib/mongo/cluster/topology/replica_set_with_primary.rb +30 -0
- data/lib/mongo/cluster/topology/sharded.rb +16 -116
- data/lib/mongo/cluster/topology/single.rb +22 -113
- data/lib/mongo/cluster/topology/unknown.rb +14 -152
- data/lib/mongo/cluster/topology.rb +78 -17
- data/lib/mongo/cluster.rb +833 -317
- data/lib/mongo/cluster_time.rb +142 -0
- data/lib/mongo/collection/view/aggregation.rb +39 -12
- data/lib/mongo/collection/view/builder/aggregation.rb +40 -11
- data/lib/mongo/collection/view/builder/map_reduce.rb +21 -52
- data/lib/mongo/collection/view/builder.rb +4 -5
- data/lib/mongo/collection/view/change_stream/retryable.rb +4 -1
- data/lib/mongo/collection/view/change_stream.rb +102 -79
- data/lib/mongo/collection/view/explainable.rb +32 -10
- data/lib/mongo/collection/view/immutable.rb +5 -2
- data/lib/mongo/collection/view/iterable.rb +144 -25
- data/lib/mongo/collection/view/map_reduce.rb +65 -30
- data/lib/mongo/collection/view/readable.rb +186 -91
- data/lib/mongo/collection/view/writable.rb +271 -123
- data/lib/mongo/collection/view.rb +54 -45
- data/lib/mongo/collection.rb +217 -70
- data/lib/mongo/crypt/auto_decryption_context.rb +43 -0
- data/lib/mongo/crypt/auto_encrypter.rb +182 -0
- data/lib/mongo/crypt/auto_encryption_context.rb +47 -0
- data/lib/mongo/crypt/binary.rb +158 -0
- data/lib/mongo/crypt/binding.rb +1232 -0
- data/lib/mongo/crypt/context.rb +138 -0
- data/lib/mongo/crypt/data_key_context.rb +165 -0
- data/lib/mongo/crypt/encryption_io.rb +309 -0
- data/lib/mongo/crypt/explicit_decryption_context.rb +43 -0
- data/lib/mongo/crypt/explicit_encrypter.rb +120 -0
- data/lib/mongo/crypt/explicit_encryption_context.rb +92 -0
- data/lib/mongo/crypt/handle.rb +318 -0
- data/lib/mongo/crypt/hooks.rb +93 -0
- data/lib/mongo/crypt/kms_context.rb +70 -0
- data/lib/mongo/crypt/status.rb +134 -0
- data/lib/mongo/crypt.rb +36 -0
- data/lib/mongo/cursor/kill_spec.rb +38 -0
- data/lib/mongo/cursor.rb +245 -82
- data/lib/mongo/database/view.rb +97 -20
- data/lib/mongo/database.rb +177 -29
- data/lib/mongo/dbref.rb +13 -3
- data/lib/mongo/distinguishing_semaphore.rb +58 -0
- data/lib/mongo/error/auth_error.rb +32 -0
- data/lib/mongo/error/bad_load_balancer_target.rb +26 -0
- data/lib/mongo/error/bulk_write_error.rb +37 -2
- data/lib/mongo/error/change_stream_resumable.rb +4 -1
- data/lib/mongo/error/closed_stream.rb +4 -1
- data/lib/mongo/error/connection_check_out_timeout.rb +51 -0
- data/lib/mongo/error/connection_perished.rb +26 -0
- data/lib/mongo/error/credential_check_error.rb +29 -0
- data/lib/mongo/error/crypt_error.rb +34 -0
- data/lib/mongo/error/extra_file_chunk.rb +4 -1
- data/lib/mongo/error/failed_string_prep_validation.rb +41 -0
- data/lib/mongo/error/file_not_found.rb +4 -1
- data/lib/mongo/error/handshake_error.rb +27 -0
- data/lib/mongo/error/insufficient_iteration_count.rb +4 -1
- data/lib/mongo/error/internal_driver_error.rb +25 -0
- data/lib/mongo/error/invalid_address.rb +27 -0
- data/lib/mongo/error/invalid_application_name.rb +4 -1
- data/lib/mongo/error/invalid_bulk_operation.rb +4 -1
- data/lib/mongo/error/invalid_bulk_operation_type.rb +4 -1
- data/lib/mongo/error/invalid_collection_name.rb +4 -1
- data/lib/mongo/error/invalid_cursor_operation.rb +30 -0
- data/lib/mongo/error/invalid_database_name.rb +4 -1
- data/lib/mongo/error/invalid_document.rb +4 -1
- data/lib/mongo/error/invalid_file.rb +4 -1
- data/lib/mongo/error/invalid_file_revision.rb +4 -1
- data/lib/mongo/error/invalid_min_pool_size.rb +4 -1
- data/lib/mongo/error/invalid_nonce.rb +5 -2
- data/lib/mongo/error/invalid_read_concern.rb +31 -0
- data/lib/mongo/error/invalid_read_option.rb +4 -1
- data/lib/mongo/error/invalid_replacement_document.rb +4 -1
- data/lib/mongo/error/invalid_server_auth_host.rb +25 -0
- data/lib/mongo/error/invalid_server_auth_response.rb +26 -0
- data/lib/mongo/error/invalid_server_preference.rb +10 -1
- data/lib/mongo/error/invalid_session.rb +6 -2
- data/lib/mongo/error/invalid_signature.rb +4 -1
- data/lib/mongo/error/invalid_transaction_operation.rb +5 -2
- data/lib/mongo/error/invalid_txt_record.rb +4 -1
- data/lib/mongo/error/invalid_update_document.rb +4 -1
- data/lib/mongo/error/invalid_uri.rb +4 -1
- data/lib/mongo/error/invalid_write_concern.rb +6 -3
- data/lib/mongo/error/kms_error.rb +25 -0
- data/lib/mongo/error/lint_error.rb +4 -1
- data/lib/mongo/error/max_bson_size.rb +18 -4
- data/lib/mongo/error/max_message_size.rb +4 -1
- data/lib/mongo/error/mismatched_domain.rb +4 -1
- data/lib/mongo/error/missing_file_chunk.rb +4 -1
- data/lib/mongo/error/missing_password.rb +32 -0
- data/lib/mongo/error/missing_resume_token.rb +4 -1
- data/lib/mongo/error/missing_scram_server_signature.rb +30 -0
- data/lib/mongo/error/missing_service_id.rb +26 -0
- data/lib/mongo/error/mongocryptd_spawn_error.rb +25 -0
- data/lib/mongo/error/multi_index_drop.rb +4 -1
- data/lib/mongo/error/need_primary_server.rb +4 -1
- data/lib/mongo/error/no_server_available.rb +17 -5
- data/lib/mongo/error/no_service_connection_available.rb +49 -0
- data/lib/mongo/error/no_srv_records.rb +4 -1
- data/lib/mongo/error/notable.rb +90 -0
- data/lib/mongo/error/operation_failure.rb +168 -45
- data/lib/mongo/error/parser.rb +174 -19
- data/lib/mongo/error/pool_closed_error.rb +53 -0
- data/lib/mongo/error/raise_original_error.rb +32 -0
- data/lib/mongo/error/sdam_error_detection.rb +83 -0
- data/lib/mongo/error/server_api_conflict.rb +26 -0
- data/lib/mongo/error/server_api_not_supported.rb +27 -0
- data/lib/mongo/error/server_certificate_revoked.rb +25 -0
- data/lib/mongo/error/session_ended.rb +30 -0
- data/lib/mongo/error/sessions_not_supported.rb +38 -0
- data/lib/mongo/error/socket_error.rb +4 -1
- data/lib/mongo/error/socket_timeout_error.rb +4 -1
- data/lib/mongo/error/unchangeable_collection_option.rb +4 -1
- data/lib/mongo/error/unexpected_chunk_length.rb +4 -1
- data/lib/mongo/error/unexpected_response.rb +4 -1
- data/lib/mongo/error/unknown_payload_type.rb +4 -1
- data/lib/mongo/error/unmet_dependency.rb +24 -0
- data/lib/mongo/error/unsupported_array_filters.rb +10 -2
- data/lib/mongo/error/unsupported_collation.rb +10 -2
- data/lib/mongo/error/unsupported_features.rb +4 -1
- data/lib/mongo/error/unsupported_message_type.rb +4 -1
- data/lib/mongo/error/unsupported_option.rb +104 -0
- data/lib/mongo/error/write_retryable.rb +4 -1
- data/lib/mongo/error.rb +82 -7
- data/lib/mongo/event/base.rb +15 -3
- data/lib/mongo/event/listeners.rb +4 -1
- data/lib/mongo/event/publisher.rb +4 -1
- data/lib/mongo/event/subscriber.rb +4 -1
- data/lib/mongo/event.rb +8 -7
- data/lib/mongo/grid/file/chunk.rb +8 -5
- data/lib/mongo/grid/file/info.rb +14 -4
- data/lib/mongo/grid/file.rb +9 -1
- data/lib/mongo/grid/fs_bucket.rb +143 -62
- data/lib/mongo/grid/stream/read.rb +68 -31
- data/lib/mongo/grid/stream/write.rb +34 -9
- data/lib/mongo/grid/stream.rb +4 -1
- data/lib/mongo/grid.rb +4 -1
- data/lib/mongo/id.rb +69 -0
- data/lib/mongo/index/view.rb +94 -46
- data/lib/mongo/index.rb +5 -1
- data/lib/mongo/lint.rb +65 -5
- data/lib/mongo/loggable.rb +9 -2
- data/lib/mongo/logger.rb +7 -6
- data/lib/mongo/monitoring/cmap_log_subscriber.rb +56 -0
- data/lib/mongo/monitoring/command_log_subscriber.rb +24 -4
- data/lib/mongo/monitoring/event/cmap/base.rb +31 -0
- data/lib/mongo/monitoring/event/cmap/connection_check_out_failed.rb +88 -0
- data/lib/mongo/monitoring/event/cmap/connection_check_out_started.rb +59 -0
- data/lib/mongo/monitoring/event/cmap/connection_checked_in.rb +74 -0
- data/lib/mongo/monitoring/event/cmap/connection_checked_out.rb +75 -0
- data/lib/mongo/monitoring/event/cmap/connection_closed.rb +106 -0
- data/lib/mongo/monitoring/event/cmap/connection_created.rb +67 -0
- data/lib/mongo/monitoring/event/cmap/connection_ready.rb +67 -0
- data/lib/mongo/monitoring/event/cmap/pool_cleared.rb +63 -0
- data/lib/mongo/monitoring/event/cmap/pool_closed.rb +68 -0
- data/lib/mongo/monitoring/event/cmap/pool_created.rb +75 -0
- data/lib/mongo/monitoring/event/cmap.rb +28 -0
- data/lib/mongo/monitoring/event/command_failed.rb +44 -6
- data/lib/mongo/monitoring/event/command_started.rb +90 -5
- data/lib/mongo/monitoring/event/command_succeeded.rb +41 -4
- data/lib/mongo/monitoring/event/secure.rb +45 -5
- data/lib/mongo/monitoring/event/server_closed.rb +17 -1
- data/lib/mongo/monitoring/event/server_description_changed.rb +43 -2
- data/lib/mongo/monitoring/event/server_heartbeat_failed.rb +92 -0
- data/lib/mongo/monitoring/event/server_heartbeat_started.rb +65 -0
- data/lib/mongo/monitoring/event/server_heartbeat_succeeded.rb +84 -0
- data/lib/mongo/monitoring/event/server_opening.rb +11 -4
- data/lib/mongo/monitoring/event/topology_changed.rb +12 -6
- data/lib/mongo/monitoring/event/topology_closed.rb +17 -1
- data/lib/mongo/monitoring/event/topology_opening.rb +11 -4
- data/lib/mongo/monitoring/event.rb +8 -1
- data/lib/mongo/monitoring/publishable.rb +49 -49
- data/lib/mongo/monitoring/sdam_log_subscriber.rb +4 -1
- data/lib/mongo/monitoring/server_closed_log_subscriber.rb +4 -1
- data/lib/mongo/monitoring/server_description_changed_log_subscriber.rb +13 -2
- data/lib/mongo/monitoring/server_opening_log_subscriber.rb +4 -1
- data/lib/mongo/monitoring/topology_changed_log_subscriber.rb +8 -5
- data/lib/mongo/monitoring/topology_closed_log_subscriber.rb +33 -0
- data/lib/mongo/monitoring/topology_opening_log_subscriber.rb +5 -2
- data/lib/mongo/monitoring/unified_sdam_log_subscriber.rb +65 -0
- data/lib/mongo/monitoring.rb +116 -10
- data/lib/mongo/operation/aggregate/command.rb +17 -21
- data/lib/mongo/operation/aggregate/op_msg.rb +7 -30
- data/lib/mongo/operation/aggregate/result.rb +28 -11
- data/lib/mongo/operation/aggregate.rb +6 -20
- data/lib/mongo/operation/collections_info/command.rb +48 -0
- data/lib/mongo/operation/collections_info/result.rb +23 -3
- data/lib/mongo/operation/collections_info.rb +18 -29
- data/lib/mongo/operation/command/command.rb +6 -3
- data/lib/mongo/operation/command/op_msg.rb +5 -27
- data/lib/mongo/operation/command.rb +5 -19
- data/lib/mongo/operation/context.rb +120 -0
- data/lib/mongo/operation/count/command.rb +12 -3
- data/lib/mongo/operation/count/op_msg.rb +7 -7
- data/lib/mongo/operation/count.rb +5 -19
- data/lib/mongo/operation/create/command.rb +13 -4
- data/lib/mongo/operation/create/op_msg.rb +9 -16
- data/lib/mongo/operation/create.rb +5 -19
- data/lib/mongo/operation/create_index/command.rb +24 -5
- data/lib/mongo/operation/create_index/op_msg.rb +24 -20
- data/lib/mongo/operation/create_index.rb +5 -19
- data/lib/mongo/operation/create_user/command.rb +8 -4
- data/lib/mongo/operation/create_user/op_msg.rb +7 -19
- data/lib/mongo/operation/create_user.rb +5 -19
- data/lib/mongo/operation/delete/bulk_result.rb +7 -2
- data/lib/mongo/operation/delete/command.rb +15 -22
- data/lib/mongo/operation/delete/legacy.rb +15 -20
- data/lib/mongo/operation/delete/op_msg.rb +20 -28
- data/lib/mongo/operation/delete/result.rb +9 -3
- data/lib/mongo/operation/delete.rb +4 -1
- data/lib/mongo/operation/distinct/command.rb +12 -3
- data/lib/mongo/operation/distinct/op_msg.rb +9 -16
- data/lib/mongo/operation/distinct.rb +5 -19
- data/lib/mongo/operation/drop/command.rb +6 -3
- data/lib/mongo/operation/drop/op_msg.rb +6 -20
- data/lib/mongo/operation/drop.rb +5 -19
- data/lib/mongo/operation/drop_database/command.rb +6 -3
- data/lib/mongo/operation/drop_database/op_msg.rb +6 -20
- data/lib/mongo/operation/drop_database.rb +5 -19
- data/lib/mongo/operation/drop_index/command.rb +7 -4
- data/lib/mongo/operation/drop_index/op_msg.rb +7 -19
- data/lib/mongo/operation/drop_index.rb +5 -19
- data/lib/mongo/operation/explain/command.rb +23 -19
- data/lib/mongo/operation/explain/legacy.rb +18 -19
- data/lib/mongo/operation/explain/op_msg.rb +17 -26
- data/lib/mongo/operation/explain/result.rb +8 -2
- data/lib/mongo/operation/explain.rb +5 -21
- data/lib/mongo/operation/find/builder/command.rb +110 -0
- data/lib/mongo/operation/find/builder/flags.rb +61 -0
- data/lib/mongo/operation/find/builder/legacy.rb +123 -0
- data/lib/mongo/operation/find/builder/modifiers.rb +89 -0
- data/lib/mongo/operation/find/builder.rb +21 -0
- data/lib/mongo/operation/find/command.rb +16 -19
- data/lib/mongo/operation/find/legacy/result.rb +8 -2
- data/lib/mongo/operation/find/legacy.rb +16 -19
- data/lib/mongo/operation/find/op_msg.rb +17 -33
- data/lib/mongo/operation/find/result.rb +18 -2
- data/lib/mongo/operation/find.rb +6 -21
- data/lib/mongo/operation/get_more/command.rb +8 -19
- data/lib/mongo/operation/get_more/command_builder.rb +38 -0
- data/lib/mongo/operation/get_more/legacy.rb +5 -2
- data/lib/mongo/operation/get_more/op_msg.rb +10 -37
- data/lib/mongo/operation/get_more/result.rb +17 -2
- data/lib/mongo/operation/get_more.rb +6 -11
- data/lib/mongo/operation/indexes/command.rb +7 -19
- data/lib/mongo/operation/indexes/legacy.rb +11 -20
- data/lib/mongo/operation/indexes/op_msg.rb +7 -30
- data/lib/mongo/operation/indexes/result.rb +10 -2
- data/lib/mongo/operation/indexes.rb +15 -17
- data/lib/mongo/operation/insert/bulk_result.rb +15 -3
- data/lib/mongo/operation/insert/command.rb +14 -20
- data/lib/mongo/operation/insert/legacy.rb +15 -19
- data/lib/mongo/operation/insert/op_msg.rb +17 -27
- data/lib/mongo/operation/insert/result.rb +16 -5
- data/lib/mongo/operation/insert.rb +6 -2
- data/lib/mongo/operation/kill_cursors/command.rb +14 -3
- data/lib/mongo/operation/kill_cursors/command_builder.rb +35 -0
- data/lib/mongo/operation/kill_cursors/legacy.rb +7 -3
- data/lib/mongo/operation/kill_cursors/op_msg.rb +12 -16
- data/lib/mongo/operation/kill_cursors.rb +6 -21
- data/lib/mongo/operation/list_collections/command.rb +9 -23
- data/lib/mongo/operation/list_collections/op_msg.rb +9 -31
- data/lib/mongo/operation/list_collections/result.rb +20 -3
- data/lib/mongo/operation/list_collections.rb +5 -19
- data/lib/mongo/operation/map_reduce/command.rb +15 -19
- data/lib/mongo/operation/map_reduce/op_msg.rb +8 -31
- data/lib/mongo/operation/map_reduce/result.rb +15 -2
- data/lib/mongo/operation/map_reduce.rb +5 -19
- data/lib/mongo/operation/op_msg_base.rb +33 -0
- data/lib/mongo/operation/parallel_scan/command.rb +13 -23
- data/lib/mongo/operation/parallel_scan/op_msg.rb +12 -30
- data/lib/mongo/operation/parallel_scan/result.rb +9 -2
- data/lib/mongo/operation/parallel_scan.rb +5 -19
- data/lib/mongo/operation/remove_user/command.rb +8 -4
- data/lib/mongo/operation/remove_user/op_msg.rb +7 -19
- data/lib/mongo/operation/remove_user.rb +5 -19
- data/lib/mongo/operation/result.rb +157 -40
- data/lib/mongo/operation/shared/bypass_document_validation.rb +14 -4
- data/lib/mongo/operation/shared/causal_consistency_supported.rb +19 -7
- data/lib/mongo/operation/shared/executable.rb +97 -13
- data/lib/mongo/operation/shared/executable_no_validate.rb +32 -0
- data/lib/mongo/operation/shared/executable_transaction_label.rb +30 -0
- data/lib/mongo/operation/shared/idable.rb +6 -2
- data/lib/mongo/operation/shared/limited.rb +14 -2
- data/lib/mongo/operation/shared/object_id_generator.rb +5 -1
- data/lib/mongo/operation/shared/op_msg_or_command.rb +41 -0
- data/lib/mongo/operation/shared/op_msg_or_find_command.rb +44 -0
- data/lib/mongo/operation/shared/polymorphic_lookup.rb +36 -0
- data/lib/mongo/operation/shared/polymorphic_operation.rb +42 -0
- data/lib/mongo/operation/shared/polymorphic_result.rb +50 -0
- data/lib/mongo/operation/shared/read_preference_supported.rb +82 -23
- data/lib/mongo/operation/shared/response_handling.rb +173 -0
- data/lib/mongo/operation/shared/result/aggregatable.rb +8 -9
- data/lib/mongo/operation/shared/result/use_legacy_error_parser.rb +32 -0
- data/lib/mongo/operation/shared/sessions_supported.rb +152 -46
- data/lib/mongo/operation/shared/specifiable.rb +40 -56
- data/lib/mongo/operation/shared/validatable.rb +87 -0
- data/lib/mongo/operation/shared/write.rb +33 -24
- data/lib/mongo/operation/shared/write_concern_supported.rb +10 -6
- data/lib/mongo/operation/update/bulk_result.rb +5 -2
- data/lib/mongo/operation/update/command.rb +15 -22
- data/lib/mongo/operation/update/legacy/result.rb +13 -2
- data/lib/mongo/operation/update/legacy.rb +25 -29
- data/lib/mongo/operation/update/op_msg.rb +18 -30
- data/lib/mongo/operation/update/result.rb +14 -3
- data/lib/mongo/operation/update.rb +4 -1
- data/lib/mongo/operation/update_user/command.rb +8 -4
- data/lib/mongo/operation/update_user/op_msg.rb +7 -19
- data/lib/mongo/operation/update_user.rb +5 -19
- data/lib/mongo/operation/users_info/command.rb +8 -20
- data/lib/mongo/operation/users_info/op_msg.rb +8 -29
- data/lib/mongo/operation/users_info/result.rb +8 -2
- data/lib/mongo/operation/users_info.rb +5 -19
- data/lib/mongo/operation/write_command/command.rb +51 -0
- 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 +26 -1
- data/lib/mongo/options/mapper.rb +13 -3
- data/lib/mongo/options/redacted.rb +4 -1
- data/lib/mongo/options.rb +4 -1
- data/lib/mongo/protocol/bit_vector.rb +6 -2
- data/lib/mongo/protocol/compressed.rb +62 -14
- data/lib/mongo/protocol/delete.rb +4 -1
- data/lib/mongo/protocol/get_more.rb +6 -2
- data/lib/mongo/protocol/insert.rb +7 -2
- data/lib/mongo/protocol/kill_cursors.rb +10 -14
- data/lib/mongo/protocol/message.rb +161 -29
- data/lib/mongo/protocol/msg.rb +271 -41
- data/lib/mongo/protocol/query.rb +98 -43
- data/lib/mongo/protocol/registry.rb +4 -1
- data/lib/mongo/protocol/reply.rb +4 -1
- data/lib/mongo/protocol/serializers.rb +67 -20
- data/lib/mongo/protocol/update.rb +10 -3
- data/lib/mongo/protocol.rb +3 -0
- data/lib/mongo/query_cache.rb +275 -0
- data/lib/mongo/retryable.rb +391 -72
- data/lib/mongo/semaphore.rb +49 -0
- data/lib/mongo/server/app_metadata.rb +267 -0
- data/lib/mongo/server/connection.rb +197 -135
- data/lib/mongo/server/connection_base.rb +276 -0
- data/lib/mongo/server/connection_common.rb +205 -0
- data/lib/mongo/server/connection_pool/generation_manager.rb +71 -0
- data/lib/mongo/server/connection_pool/populator.rb +61 -0
- data/lib/mongo/server/connection_pool.rb +792 -58
- data/lib/mongo/server/description/features.rb +50 -17
- data/lib/mongo/server/description/load_balancer.rb +33 -0
- data/lib/mongo/server/description.rb +314 -75
- data/lib/mongo/server/monitor/app_metadata.rb +37 -0
- data/lib/mongo/server/monitor/connection.rb +178 -112
- data/lib/mongo/server/monitor.rb +246 -110
- data/lib/mongo/server/pending_connection.rb +288 -0
- data/lib/mongo/server/push_monitor/connection.rb +31 -0
- data/lib/mongo/server/push_monitor.rb +194 -0
- data/lib/mongo/server/round_trip_time_averager.rb +76 -0
- data/lib/mongo/server.rb +416 -73
- data/lib/mongo/server_selector/base.rb +629 -0
- data/lib/mongo/server_selector/nearest.rb +32 -25
- data/lib/mongo/server_selector/primary.rb +30 -32
- data/lib/mongo/server_selector/primary_preferred.rb +38 -29
- data/lib/mongo/server_selector/secondary.rb +32 -25
- data/lib/mongo/server_selector/secondary_preferred.rb +30 -38
- data/lib/mongo/server_selector.rb +15 -2
- data/lib/mongo/session/server_session.rb +21 -7
- data/lib/mongo/session/session_pool.rb +32 -9
- data/lib/mongo/session.rb +747 -375
- data/lib/mongo/socket/ocsp_cache.rb +100 -0
- data/lib/mongo/socket/ocsp_verifier.rb +345 -0
- data/lib/mongo/socket/ssl.rb +285 -69
- data/lib/mongo/socket/tcp.rb +49 -33
- data/lib/mongo/socket/unix.rb +24 -34
- data/lib/mongo/socket.rb +218 -48
- data/lib/mongo/srv/monitor.rb +113 -0
- data/lib/mongo/srv/resolver.rb +137 -0
- data/lib/mongo/srv/result.rb +128 -0
- data/lib/mongo/srv.rb +20 -0
- data/lib/mongo/timeout.rb +54 -0
- data/lib/mongo/topology_version.rb +92 -0
- data/lib/mongo/uri/options_mapper.rb +624 -0
- data/lib/mongo/uri/srv_protocol.rb +141 -60
- data/lib/mongo/uri.rb +194 -302
- data/lib/mongo/utils.rb +111 -0
- data/lib/mongo/version.rb +5 -2
- data/lib/mongo/write_concern/acknowledged.rb +17 -4
- data/lib/mongo/write_concern/base.rb +70 -0
- data/lib/mongo/write_concern/unacknowledged.rb +17 -4
- data/lib/mongo/write_concern.rb +19 -35
- data/lib/mongo.rb +65 -3
- data/mongo.gemspec +15 -9
- data/spec/NOTES.aws-auth.md +296 -0
- data/spec/README.aws-auth.md +318 -0
- data/spec/README.md +715 -0
- data/spec/USERS.md +72 -0
- data/spec/atlas/atlas_connectivity_spec.rb +10 -37
- data/spec/atlas/operations_spec.rb +28 -0
- data/spec/integration/auth_spec.rb +309 -0
- data/spec/integration/awaited_ismaster_spec.rb +31 -0
- data/spec/integration/aws_auth_request_spec.rb +77 -0
- data/spec/integration/aws_credentials_retriever_spec.rb +106 -0
- data/spec/integration/bson_symbol_spec.rb +39 -0
- data/spec/integration/bulk_insert_spec.rb +8 -3
- data/spec/integration/bulk_write_error_message_spec.rb +41 -0
- data/spec/integration/bulk_write_spec.rb +70 -0
- data/spec/integration/change_stream_examples_spec.rb +60 -42
- data/spec/integration/change_stream_spec.rb +499 -56
- data/spec/integration/check_clean_slate_spec.rb +19 -0
- data/spec/integration/client_authentication_options_spec.rb +514 -0
- data/spec/integration/client_connectivity_spec.rb +41 -0
- data/spec/integration/client_construction_aws_auth_spec.rb +194 -0
- data/spec/integration/client_construction_spec.rb +293 -0
- data/spec/integration/client_side_encryption/auto_encryption_bulk_writes_spec.rb +360 -0
- data/spec/integration/client_side_encryption/auto_encryption_command_monitoring_spec.rb +306 -0
- data/spec/integration/client_side_encryption/auto_encryption_mongocryptd_spawn_spec.rb +75 -0
- data/spec/integration/client_side_encryption/auto_encryption_old_wire_version_spec.rb +82 -0
- data/spec/integration/client_side_encryption/auto_encryption_reconnect_spec.rb +224 -0
- data/spec/integration/client_side_encryption/auto_encryption_spec.rb +604 -0
- data/spec/integration/client_side_encryption/bson_size_limit_spec.rb +190 -0
- data/spec/integration/client_side_encryption/bypass_mongocryptd_spawn_spec.rb +81 -0
- data/spec/integration/client_side_encryption/client_close_spec.rb +66 -0
- data/spec/integration/client_side_encryption/corpus_spec.rb +236 -0
- data/spec/integration/client_side_encryption/custom_endpoint_spec.rb +135 -0
- data/spec/integration/client_side_encryption/data_key_spec.rb +168 -0
- data/spec/integration/client_side_encryption/explicit_encryption_spec.rb +117 -0
- data/spec/integration/client_side_encryption/external_key_vault_spec.rb +144 -0
- data/spec/integration/client_side_encryption/views_spec.rb +47 -0
- data/spec/integration/client_spec.rb +49 -0
- data/spec/integration/client_update_spec.rb +157 -0
- data/spec/integration/collection_indexes_prose_spec.rb +58 -0
- data/spec/integration/command_monitoring_spec.rb +145 -53
- data/spec/integration/command_spec.rb +179 -0
- data/spec/integration/connect_single_rs_name_spec.rb +75 -0
- data/spec/integration/connection_pool_populator_spec.rb +305 -0
- data/spec/integration/connection_spec.rb +353 -0
- data/spec/integration/crud_spec.rb +366 -0
- data/spec/integration/cursor_pinning_spec.rb +121 -0
- data/spec/integration/cursor_reaping_spec.rb +143 -0
- data/spec/integration/docs_examples_spec.rb +18 -5
- data/spec/integration/error_detection_spec.rb +42 -0
- data/spec/integration/fork_reconnect_spec.rb +200 -0
- data/spec/integration/get_more_spec.rb +42 -0
- data/spec/integration/grid_fs_bucket_spec.rb +51 -0
- data/spec/integration/heartbeat_events_spec.rb +102 -0
- data/spec/integration/map_reduce_spec.rb +77 -0
- data/spec/integration/mmapv1_spec.rb +31 -0
- data/spec/integration/mongos_pinning_spec.rb +37 -0
- data/spec/integration/ocsp_connectivity_spec.rb +29 -0
- data/spec/integration/ocsp_verifier_cache_spec.rb +191 -0
- data/spec/integration/ocsp_verifier_spec.rb +355 -0
- data/spec/integration/operation_failure_code_spec.rb +29 -0
- data/spec/integration/operation_failure_message_spec.rb +90 -0
- data/spec/integration/query_cache_spec.rb +1093 -0
- data/spec/integration/query_cache_transactions_spec.rb +193 -0
- data/spec/integration/read_concern_spec.rb +92 -0
- data/spec/integration/read_preference_spec.rb +544 -0
- data/spec/integration/reconnect_spec.rb +176 -12
- data/spec/integration/retryable_errors_spec.rb +286 -0
- data/spec/integration/retryable_writes/retryable_writes_36_and_older_spec.rb +764 -0
- data/spec/integration/retryable_writes/retryable_writes_40_and_newer_spec.rb +405 -0
- data/spec/integration/retryable_writes/shared/adds_diagnostics.rb +18 -0
- data/spec/integration/retryable_writes/shared/does_not_support_retries.rb +27 -0
- data/spec/integration/retryable_writes/shared/only_supports_legacy_retries.rb +28 -0
- data/spec/integration/retryable_writes/shared/performs_legacy_retries.rb +220 -0
- data/spec/integration/retryable_writes/shared/performs_modern_retries.rb +235 -0
- data/spec/integration/retryable_writes/shared/performs_no_retries.rb +113 -0
- data/spec/integration/retryable_writes/shared/supports_legacy_retries.rb +22 -0
- data/spec/integration/retryable_writes/shared/supports_modern_retries.rb +28 -0
- data/spec/integration/retryable_writes/shared/supports_retries.rb +19 -0
- data/spec/integration/retryable_writes_errors_spec.rb +34 -0
- data/spec/integration/sdam_error_handling_spec.rb +426 -0
- data/spec/integration/sdam_events_spec.rb +138 -0
- data/spec/integration/sdam_prose_spec.rb +67 -0
- data/spec/integration/secondary_reads_spec.rb +102 -0
- data/spec/integration/server_description_spec.rb +48 -0
- data/spec/integration/server_monitor_spec.rb +56 -0
- data/spec/integration/server_selection_spec.rb +39 -0
- data/spec/integration/server_selector_spec.rb +105 -0
- data/spec/integration/server_spec.rb +69 -0
- data/spec/integration/shell_examples_spec.rb +3 -0
- data/spec/integration/size_limit_spec.rb +115 -0
- data/spec/integration/snappy_compression_spec.rb +28 -0
- data/spec/integration/srv_monitoring_spec.rb +406 -0
- data/spec/integration/srv_spec.rb +59 -0
- data/spec/integration/ssl_uri_options_spec.rb +28 -0
- data/spec/integration/step_down_spec.rb +207 -0
- data/spec/integration/time_zone_querying_spec.rb +55 -0
- data/spec/integration/transaction_pinning_spec.rb +120 -0
- data/spec/integration/transactions_api_examples_spec.rb +62 -0
- data/spec/integration/transactions_examples_spec.rb +42 -19
- data/spec/integration/truncated_utf8_spec.rb +26 -0
- data/spec/integration/versioned_api_examples_spec.rb +114 -0
- data/spec/integration/x509_auth_spec.rb +112 -0
- data/spec/integration/zlib_compression_spec.rb +28 -0
- data/spec/integration/zstd_compression_spec.rb +29 -0
- data/spec/kerberos/kerberos_spec.rb +94 -0
- data/spec/lite_spec_helper.rb +146 -47
- data/spec/mongo/address/ipv4_spec.rb +8 -1
- data/spec/mongo/address/ipv6_spec.rb +7 -0
- data/spec/mongo/address/unix_spec.rb +4 -0
- data/spec/mongo/address/validator_spec.rb +54 -0
- data/spec/mongo/address_spec.rb +52 -21
- data/spec/mongo/auth/aws/request_region_spec.rb +45 -0
- data/spec/mongo/auth/aws/request_spec.rb +79 -0
- data/spec/mongo/auth/cr_spec.rb +26 -38
- data/spec/mongo/auth/gssapi/conversation_spec.rb +124 -0
- data/spec/mongo/auth/invalid_mechanism_spec.rb +14 -0
- data/spec/mongo/auth/ldap/conversation_spec.rb +6 -3
- data/spec/mongo/auth/ldap_spec.rb +19 -34
- data/spec/mongo/auth/scram/conversation_spec.rb +124 -323
- data/spec/mongo/auth/scram256/conversation_spec.rb +174 -0
- data/spec/mongo/auth/scram_negotiation_spec.rb +531 -0
- data/spec/mongo/auth/scram_spec.rb +61 -108
- data/spec/mongo/auth/stringprep/profiles/sasl_spec.rb +3 -0
- data/spec/mongo/auth/stringprep_spec.rb +3 -0
- data/spec/mongo/auth/user/view_spec.rb +162 -19
- data/spec/mongo/auth/user_spec.rb +164 -11
- data/spec/mongo/auth/x509/conversation_spec.rb +8 -5
- data/spec/mongo/auth/x509_spec.rb +43 -32
- data/spec/mongo/auth_spec.rb +7 -4
- data/spec/mongo/bson_spec.rb +3 -0
- data/spec/mongo/bulk_write/ordered_combiner_spec.rb +9 -6
- data/spec/mongo/bulk_write/result_spec.rb +14 -7
- data/spec/mongo/bulk_write/unordered_combiner_spec.rb +7 -4
- data/spec/mongo/bulk_write_spec.rb +333 -129
- data/spec/mongo/caching_cursor_spec.rb +73 -0
- data/spec/mongo/client_construction_spec.rb +2620 -0
- data/spec/mongo/client_encryption_spec.rb +414 -0
- data/spec/mongo/client_spec.rb +259 -1034
- data/spec/mongo/cluster/cursor_reaper_spec.rb +53 -31
- data/spec/mongo/cluster/periodic_executor_spec.rb +21 -0
- data/spec/mongo/cluster/socket_reaper_spec.rb +18 -4
- data/spec/mongo/cluster/topology/replica_set_spec.rb +253 -267
- data/spec/mongo/cluster/topology/sharded_spec.rb +59 -55
- data/spec/mongo/cluster/topology/single_spec.rb +94 -31
- data/spec/mongo/cluster/topology/unknown_spec.rb +33 -115
- data/spec/mongo/cluster/topology_spec.rb +114 -13
- data/spec/mongo/cluster_spec.rb +400 -262
- data/spec/mongo/cluster_time_spec.rb +151 -0
- data/spec/mongo/collection/view/aggregation_spec.rb +65 -32
- data/spec/mongo/collection/view/builder/find_command_spec.rb +24 -6
- data/spec/mongo/collection/view/builder/op_query_spec.rb +7 -0
- data/spec/mongo/collection/view/change_stream_resume_spec.rb +397 -0
- data/spec/mongo/collection/view/change_stream_spec.rb +70 -282
- data/spec/mongo/collection/view/explainable_spec.rb +91 -5
- data/spec/mongo/collection/view/immutable_spec.rb +4 -1
- data/spec/mongo/collection/view/iterable_spec.rb +41 -0
- data/spec/mongo/collection/view/map_reduce_spec.rb +64 -27
- data/spec/mongo/collection/view/readable_spec.rb +133 -45
- data/spec/mongo/collection/view/writable_spec.rb +276 -34
- data/spec/mongo/collection/view_spec.rb +13 -9
- data/spec/mongo/collection_crud_spec.rb +4365 -0
- data/spec/mongo/collection_ddl_spec.rb +537 -0
- data/spec/mongo/collection_spec.rb +326 -4242
- data/spec/mongo/crypt/auto_decryption_context_spec.rb +93 -0
- data/spec/mongo/crypt/auto_encrypter_spec.rb +190 -0
- data/spec/mongo/crypt/auto_encryption_context_spec.rb +110 -0
- data/spec/mongo/crypt/binary_spec.rb +113 -0
- data/spec/mongo/crypt/binding/binary_spec.rb +54 -0
- data/spec/mongo/crypt/binding/context_spec.rb +255 -0
- data/spec/mongo/crypt/binding/helpers_spec.rb +44 -0
- data/spec/mongo/crypt/binding/mongocrypt_spec.rb +142 -0
- data/spec/mongo/crypt/binding/status_spec.rb +97 -0
- data/spec/mongo/crypt/binding/version_spec.rb +20 -0
- data/spec/mongo/crypt/binding_unloaded_spec.rb +23 -0
- data/spec/mongo/crypt/data_key_context_spec.rb +216 -0
- data/spec/mongo/crypt/encryption_io_spec.rb +139 -0
- data/spec/mongo/crypt/explicit_decryption_context_spec.rb +75 -0
- data/spec/mongo/crypt/explicit_encryption_context_spec.rb +173 -0
- data/spec/mongo/crypt/handle_spec.rb +235 -0
- data/spec/mongo/crypt/helpers/mongo_crypt_spec_helper.rb +111 -0
- data/spec/mongo/crypt/status_spec.rb +150 -0
- data/spec/mongo/cursor/builder/get_more_command_spec.rb +20 -4
- data/spec/mongo/cursor/builder/op_get_more_spec.rb +20 -4
- data/spec/mongo/cursor_spec.rb +315 -49
- data/spec/mongo/database_spec.rb +749 -73
- data/spec/mongo/dbref_spec.rb +3 -0
- data/spec/mongo/distinguishing_semaphore_spec.rb +66 -0
- data/spec/mongo/error/bulk_write_error_spec.rb +52 -0
- data/spec/mongo/error/crypt_error_spec.rb +29 -0
- data/spec/mongo/error/max_bson_size_spec.rb +38 -0
- data/spec/mongo/error/no_server_available_spec.rb +35 -0
- data/spec/mongo/error/notable_spec.rb +62 -0
- data/spec/mongo/error/operation_failure_heavy_spec.rb +61 -0
- data/spec/mongo/error/operation_failure_spec.rb +439 -38
- data/spec/mongo/error/parser_spec.rb +325 -31
- data/spec/mongo/error/unsupported_option_spec.rb +57 -0
- data/spec/mongo/event/publisher_spec.rb +3 -0
- data/spec/mongo/event/subscriber_spec.rb +3 -0
- data/spec/mongo/grid/file/chunk_spec.rb +7 -4
- data/spec/mongo/grid/file/info_spec.rb +6 -3
- data/spec/mongo/grid/file_spec.rb +4 -1
- data/spec/mongo/grid/fs_bucket_spec.rb +76 -70
- data/spec/mongo/grid/stream/read_spec.rb +44 -27
- data/spec/mongo/grid/stream/write_spec.rb +51 -33
- data/spec/mongo/grid/stream_spec.rb +4 -1
- data/spec/mongo/id_spec.rb +38 -0
- data/spec/mongo/index/view_spec.rb +374 -96
- data/spec/mongo/lint_spec.rb +79 -0
- data/spec/mongo/logger_spec.rb +16 -11
- data/spec/mongo/monitoring/command_log_subscriber_spec.rb +3 -0
- data/spec/mongo/monitoring/event/cmap/connection_check_out_failed_spec.rb +26 -0
- data/spec/mongo/monitoring/event/cmap/connection_check_out_started_spec.rb +22 -0
- data/spec/mongo/monitoring/event/cmap/connection_checked_in_spec.rb +33 -0
- data/spec/mongo/monitoring/event/cmap/connection_checked_out_spec.rb +33 -0
- data/spec/mongo/monitoring/event/cmap/connection_closed_spec.rb +30 -0
- data/spec/mongo/monitoring/event/cmap/connection_created_spec.rb +27 -0
- data/spec/mongo/monitoring/event/cmap/connection_ready_spec.rb +27 -0
- data/spec/mongo/monitoring/event/cmap/pool_cleared_spec.rb +22 -0
- data/spec/mongo/monitoring/event/cmap/pool_closed_spec.rb +29 -0
- data/spec/mongo/monitoring/event/cmap/pool_created_spec.rb +36 -0
- data/spec/mongo/monitoring/event/command_failed_spec.rb +60 -3
- data/spec/mongo/monitoring/event/command_started_spec.rb +4 -1
- data/spec/mongo/monitoring/event/command_succeeded_spec.rb +47 -7
- data/spec/mongo/monitoring/event/secure_spec.rb +29 -5
- data/spec/mongo/monitoring/event/server_closed_spec.rb +38 -0
- data/spec/mongo/monitoring/event/server_description_changed_spec.rb +38 -0
- data/spec/mongo/monitoring/event/server_heartbeat_failed_spec.rb +34 -0
- data/spec/mongo/monitoring/event/server_heartbeat_started_spec.rb +34 -0
- data/spec/mongo/monitoring/event/server_heartbeat_succeeded_spec.rb +34 -0
- data/spec/mongo/monitoring/event/server_opening_spec.rb +38 -0
- data/spec/mongo/monitoring/event/topology_changed_spec.rb +44 -0
- data/spec/mongo/monitoring/event/topology_closed_spec.rb +38 -0
- data/spec/mongo/monitoring/event/topology_opening_spec.rb +38 -0
- data/spec/mongo/monitoring_spec.rb +5 -2
- data/spec/mongo/operation/aggregate/result_spec.rb +11 -1
- data/spec/mongo/operation/aggregate_spec.rb +7 -3
- data/spec/mongo/operation/collections_info_spec.rb +9 -3
- data/spec/mongo/operation/command_spec.rb +12 -6
- data/spec/mongo/operation/create_index_spec.rb +17 -14
- data/spec/mongo/operation/create_user_spec.rb +15 -6
- data/spec/mongo/operation/delete/bulk_spec.rb +40 -18
- data/spec/mongo/operation/delete/command_spec.rb +6 -2
- data/spec/mongo/operation/delete/op_msg_spec.rb +69 -35
- data/spec/mongo/operation/delete_spec.rb +35 -17
- data/spec/mongo/operation/drop_index_spec.rb +14 -4
- data/spec/mongo/operation/find/builder/flags_spec.rb +109 -0
- data/spec/mongo/operation/find/builder/modifiers_spec.rb +213 -0
- data/spec/mongo/operation/find/legacy_spec.rb +37 -9
- data/spec/mongo/operation/get_more_spec.rb +13 -3
- data/spec/mongo/operation/indexes_spec.rb +10 -2
- data/spec/mongo/operation/insert/bulk_spec.rb +42 -11
- data/spec/mongo/operation/insert/command_spec.rb +10 -2
- data/spec/mongo/operation/insert/op_msg_spec.rb +100 -57
- data/spec/mongo/operation/insert_spec.rb +25 -18
- data/spec/mongo/operation/kill_cursors_spec.rb +8 -2
- data/spec/mongo/operation/limited_spec.rb +8 -3
- data/spec/mongo/operation/map_reduce_spec.rb +10 -4
- data/spec/mongo/operation/read_preference_legacy_spec.rb +360 -0
- data/spec/mongo/operation/read_preference_op_msg_spec.rb +309 -0
- data/spec/mongo/operation/remove_user_spec.rb +15 -5
- data/spec/mongo/operation/result_spec.rb +46 -6
- data/spec/mongo/operation/specifiable_spec.rb +3 -0
- data/spec/mongo/operation/update/bulk_spec.rb +28 -9
- data/spec/mongo/operation/update/command_spec.rb +15 -7
- data/spec/mongo/operation/update/op_msg_spec.rb +74 -40
- data/spec/mongo/operation/update_spec.rb +21 -13
- data/spec/mongo/operation/update_user_spec.rb +13 -7
- data/spec/mongo/options/redacted_spec.rb +3 -0
- data/spec/mongo/protocol/compressed_spec.rb +30 -13
- data/spec/mongo/protocol/delete_spec.rb +13 -9
- data/spec/mongo/protocol/get_more_spec.rb +13 -9
- data/spec/mongo/protocol/insert_spec.rb +13 -9
- data/spec/mongo/protocol/kill_cursors_spec.rb +10 -6
- data/spec/mongo/protocol/msg_spec.rb +90 -61
- data/spec/mongo/protocol/query_spec.rb +19 -16
- data/spec/mongo/protocol/registry_spec.rb +4 -1
- data/spec/mongo/protocol/reply_spec.rb +4 -1
- data/spec/mongo/protocol/update_spec.rb +14 -10
- data/spec/mongo/query_cache_middleware_spec.rb +55 -0
- data/spec/mongo/query_cache_spec.rb +287 -0
- data/spec/mongo/retryable_spec.rb +272 -127
- data/spec/mongo/semaphore_spec.rb +54 -0
- data/spec/mongo/server/app_metadata_spec.rb +170 -0
- data/spec/mongo/server/connection_auth_spec.rb +136 -0
- data/spec/mongo/server/connection_common_spec.rb +75 -0
- data/spec/mongo/server/connection_pool/populator_spec.rb +106 -0
- data/spec/mongo/server/connection_pool_spec.rb +862 -220
- data/spec/mongo/server/connection_spec.rb +830 -213
- data/spec/mongo/server/description/features_spec.rb +3 -0
- data/spec/mongo/server/description_query_methods_spec.rb +291 -0
- data/spec/mongo/server/description_spec.rb +619 -713
- data/spec/mongo/server/monitor/app_metadata_spec.rb +25 -0
- data/spec/mongo/server/monitor/connection_spec.rb +99 -40
- data/spec/mongo/server/monitor_spec.rb +180 -103
- data/spec/mongo/server/round_trip_time_averager_spec.rb +48 -0
- data/spec/mongo/server_selector/nearest_spec.rb +32 -25
- data/spec/mongo/server_selector/primary_preferred_spec.rb +35 -28
- data/spec/mongo/server_selector/primary_spec.rb +35 -11
- data/spec/mongo/server_selector/secondary_preferred_spec.rb +52 -29
- data/spec/mongo/server_selector/secondary_spec.rb +27 -20
- data/spec/mongo/server_selector_spec.rb +208 -5
- data/spec/mongo/server_spec.rb +238 -51
- data/spec/mongo/session/server_session_spec.rb +3 -0
- data/spec/mongo/session/session_pool_spec.rb +66 -18
- data/spec/mongo/session_spec.rb +104 -8
- data/spec/mongo/session_transaction_spec.rb +206 -0
- data/spec/mongo/socket/ssl_spec.rb +472 -173
- data/spec/mongo/socket/tcp_spec.rb +17 -0
- data/spec/mongo/socket/unix_spec.rb +13 -9
- data/spec/mongo/socket_spec.rb +87 -10
- data/spec/mongo/srv/monitor_spec.rb +233 -0
- data/spec/mongo/srv/result_spec.rb +57 -0
- data/spec/mongo/timeout_spec.rb +42 -0
- data/spec/mongo/tls_context_hooks_spec.rb +40 -0
- data/spec/mongo/uri/srv_protocol_spec.rb +264 -93
- data/spec/mongo/uri_option_parsing_spec.rb +625 -0
- data/spec/mongo/uri_spec.rb +373 -89
- data/spec/mongo/utils_spec.rb +56 -0
- data/spec/mongo/write_concern/acknowledged_spec.rb +3 -0
- data/spec/mongo/write_concern/unacknowledged_spec.rb +3 -0
- data/spec/mongo/write_concern_spec.rb +72 -4
- data/spec/runners/auth.rb +140 -0
- data/spec/runners/change_streams/outcome.rb +45 -0
- data/spec/runners/change_streams/spec.rb +60 -0
- data/spec/runners/change_streams/test.rb +232 -0
- data/spec/runners/cmap/verifier.rb +48 -0
- data/spec/runners/cmap.rb +373 -0
- data/spec/runners/command_monitoring.rb +346 -0
- data/spec/runners/connection_string.rb +385 -0
- data/spec/runners/crud/context.rb +30 -0
- data/spec/runners/crud/operation.rb +471 -0
- data/spec/runners/crud/outcome.rb +56 -0
- data/spec/runners/crud/requirement.rb +134 -0
- data/spec/runners/crud/spec.rb +73 -0
- data/spec/runners/crud/test.rb +123 -0
- data/spec/runners/crud/test_base.rb +53 -0
- data/spec/runners/crud/verifier.rb +217 -0
- data/spec/runners/crud.rb +257 -0
- data/spec/runners/gridfs.rb +641 -0
- data/spec/runners/read_write_concern_document.rb +70 -0
- data/spec/runners/sdam/verifier.rb +112 -0
- data/spec/runners/sdam.rb +279 -0
- data/spec/runners/server_selection.rb +365 -0
- data/spec/runners/server_selection_rtt.rb +41 -0
- data/spec/runners/transactions/operation.rb +328 -0
- data/spec/runners/transactions/spec.rb +29 -0
- data/spec/runners/transactions/test.rb +326 -0
- data/spec/runners/transactions.rb +104 -0
- data/spec/runners/unified/assertions.rb +281 -0
- data/spec/runners/unified/change_stream_operations.rb +29 -0
- data/spec/runners/unified/crud_operations.rb +206 -0
- data/spec/runners/unified/ddl_operations.rb +106 -0
- data/spec/runners/unified/entity_map.rb +42 -0
- data/spec/runners/unified/error.rb +28 -0
- data/spec/runners/unified/event_subscriber.rb +104 -0
- data/spec/runners/unified/exceptions.rb +24 -0
- data/spec/runners/unified/grid_fs_operations.rb +58 -0
- data/spec/runners/unified/support_operations.rb +261 -0
- data/spec/runners/unified/test.rb +426 -0
- data/spec/runners/unified/test_group.rb +31 -0
- data/spec/runners/unified.rb +99 -0
- data/spec/shared/LICENSE +20 -0
- data/spec/shared/bin/get-mongodb-download-url +17 -0
- data/spec/shared/bin/s3-copy +45 -0
- data/spec/shared/bin/s3-upload +69 -0
- data/spec/shared/lib/mrss/child_process_helper.rb +80 -0
- data/spec/shared/lib/mrss/cluster_config.rb +231 -0
- data/spec/shared/lib/mrss/constraints.rb +385 -0
- data/spec/shared/lib/mrss/docker_runner.rb +271 -0
- data/spec/shared/lib/mrss/event_subscriber.rb +200 -0
- data/spec/shared/lib/mrss/lite_constraints.rb +191 -0
- data/spec/shared/lib/mrss/server_version_registry.rb +120 -0
- data/spec/shared/lib/mrss/spec_organizer.rb +179 -0
- data/spec/shared/lib/mrss/utils.rb +15 -0
- data/spec/shared/share/Dockerfile.erb +323 -0
- data/spec/shared/share/haproxy-1.conf +16 -0
- data/spec/shared/share/haproxy-2.conf +17 -0
- data/spec/shared/shlib/distro.sh +73 -0
- data/spec/shared/shlib/server.sh +367 -0
- data/spec/shared/shlib/set_env.sh +131 -0
- data/spec/solo/clean_exit_spec.rb +24 -0
- data/spec/spec_helper.rb +15 -303
- data/spec/spec_tests/auth_spec.rb +58 -0
- data/spec/spec_tests/change_streams_spec.rb +60 -9
- data/spec/spec_tests/change_streams_unified_spec.rb +13 -0
- data/spec/spec_tests/client_side_encryption_spec.rb +14 -0
- data/spec/spec_tests/cmap_spec.rb +112 -0
- data/spec/spec_tests/collection_management_spec.rb +13 -0
- data/spec/spec_tests/command_monitoring_spec.rb +49 -42
- data/spec/spec_tests/command_monitoring_unified_spec.rb +13 -0
- data/spec/spec_tests/connection_string_spec.rb +6 -111
- data/spec/spec_tests/crud_spec.rb +14 -35
- data/spec/spec_tests/crud_unified_spec.rb +13 -0
- data/spec/spec_tests/data/auth/connection-string.yml +366 -0
- data/spec/spec_tests/data/change_streams/change-streams-errors.yml +101 -0
- data/spec/spec_tests/data/change_streams/change-streams-resume-allowlist.yml +1173 -0
- data/spec/spec_tests/data/change_streams/change-streams-resume-errorLabels.yml +1105 -0
- data/spec/spec_tests/data/change_streams/change-streams.yml +535 -0
- data/spec/spec_tests/data/change_streams_unified/change-streams.yml +72 -0
- data/spec/spec_tests/data/client_side_encryption/aggregate.yml +134 -0
- data/spec/spec_tests/data/client_side_encryption/badQueries.yml +526 -0
- data/spec/spec_tests/data/client_side_encryption/badSchema.yml +73 -0
- data/spec/spec_tests/data/client_side_encryption/basic.yml +116 -0
- data/spec/spec_tests/data/client_side_encryption/bulk.yml +88 -0
- data/spec/spec_tests/data/client_side_encryption/bypassAutoEncryption.yml +100 -0
- data/spec/spec_tests/data/client_side_encryption/bypassedCommand.yml +42 -0
- data/spec/spec_tests/data/client_side_encryption/count.yml +61 -0
- data/spec/spec_tests/data/client_side_encryption/countDocuments.yml +59 -0
- data/spec/spec_tests/data/client_side_encryption/delete.yml +105 -0
- data/spec/spec_tests/data/client_side_encryption/distinct.yml +73 -0
- data/spec/spec_tests/data/client_side_encryption/explain.yml +64 -0
- data/spec/spec_tests/data/client_side_encryption/find.yml +119 -0
- data/spec/spec_tests/data/client_side_encryption/findOneAndDelete.yml +57 -0
- data/spec/spec_tests/data/client_side_encryption/findOneAndReplace.yml +57 -0
- data/spec/spec_tests/data/client_side_encryption/findOneAndUpdate.yml +57 -0
- data/spec/spec_tests/data/client_side_encryption/getMore.yml +68 -0
- data/spec/spec_tests/data/client_side_encryption/insert.yml +102 -0
- data/spec/spec_tests/data/client_side_encryption/keyAltName.yml +71 -0
- data/spec/spec_tests/data/client_side_encryption/localKMS.yml +54 -0
- data/spec/spec_tests/data/client_side_encryption/localSchema.yml +72 -0
- data/spec/spec_tests/data/client_side_encryption/malformedCiphertext.yml +69 -0
- data/spec/spec_tests/data/client_side_encryption/maxWireVersion.yml +20 -0
- data/spec/spec_tests/data/client_side_encryption/missingKey.yml +49 -0
- data/spec/spec_tests/data/client_side_encryption/replaceOne.yml +64 -0
- data/spec/spec_tests/data/client_side_encryption/types.yml +527 -0
- data/spec/spec_tests/data/client_side_encryption/unsupportedCommand.yml +25 -0
- data/spec/spec_tests/data/client_side_encryption/updateMany.yml +77 -0
- data/spec/spec_tests/data/client_side_encryption/updateOne.yml +171 -0
- data/spec/spec_tests/data/cmap/connection-must-have-id.yml +27 -0
- data/spec/spec_tests/data/cmap/connection-must-order-ids.yml +27 -0
- data/spec/spec_tests/data/cmap/pool-checkin-destroy-closed.yml +27 -0
- data/spec/spec_tests/data/cmap/pool-checkin-destroy-stale.yml +27 -0
- data/spec/spec_tests/data/cmap/pool-checkin-make-available.yml +24 -0
- data/spec/spec_tests/data/cmap/pool-checkin.yml +19 -0
- data/spec/spec_tests/data/cmap/pool-checkout-connection.yml +19 -0
- data/spec/spec_tests/data/cmap/pool-checkout-error-closed.yml +36 -0
- data/spec/spec_tests/data/cmap/pool-checkout-multiple.yml +37 -0
- data/spec/spec_tests/data/cmap/pool-checkout-no-idle.yml +35 -0
- data/spec/spec_tests/data/cmap/pool-checkout-no-stale.yml +33 -0
- data/spec/spec_tests/data/cmap/pool-close-destroy-conns.yml +28 -0
- data/spec/spec_tests/data/cmap/pool-close.yml +11 -0
- data/spec/spec_tests/data/cmap/pool-create-max-size.yml +71 -0
- data/spec/spec_tests/data/cmap/pool-create-min-size.yml +34 -0
- data/spec/spec_tests/data/cmap/pool-create-with-options.yml +21 -0
- data/spec/spec_tests/data/cmap/pool-create.yml +12 -0
- data/spec/spec_tests/data/cmap/wait-queue-fairness.yml +124 -0
- data/spec/spec_tests/data/cmap/wait-queue-timeout.yml +46 -0
- data/spec/spec_tests/data/collection_management/timeseries-collection.yml +129 -0
- data/spec/spec_tests/data/command_monitoring/bulkWrite.yml +49 -0
- data/spec/{support → spec_tests/data}/command_monitoring/command.yml +0 -0
- data/spec/{support → spec_tests/data}/command_monitoring/deleteMany.yml +0 -0
- data/spec/{support → spec_tests/data}/command_monitoring/deleteOne.yml +0 -0
- data/spec/spec_tests/data/command_monitoring/find.yml +266 -0
- data/spec/spec_tests/data/command_monitoring/insertMany.yml +75 -0
- data/spec/{support → spec_tests/data}/command_monitoring/insertOne.yml +0 -0
- data/spec/{support → spec_tests/data}/command_monitoring/unacknowledgedBulkWrite.yml +0 -0
- data/spec/spec_tests/data/command_monitoring/updateMany.yml +65 -0
- data/spec/spec_tests/data/command_monitoring/updateOne.yml +90 -0
- data/spec/spec_tests/data/command_monitoring_unified/redacted-commands.yml +340 -0
- data/spec/spec_tests/data/connection_string/invalid-uris.yml +261 -0
- data/spec/spec_tests/data/connection_string/valid-auth.yml +257 -0
- data/spec/{support/connection_string_tests → spec_tests/data/connection_string}/valid-db-with-dotted-name.yml +0 -0
- data/spec/{support/connection_string_tests → spec_tests/data/connection_string}/valid-host_identifiers.yml +0 -0
- data/spec/{support/connection_string_tests → spec_tests/data/connection_string}/valid-options.yml +0 -0
- data/spec/{support/connection_string_tests → spec_tests/data/connection_string}/valid-unix_socket-absolute.yml +0 -0
- data/spec/{support/connection_string_tests → spec_tests/data/connection_string}/valid-unix_socket-relative.yml +0 -0
- data/spec/spec_tests/data/connection_string/valid-warnings.yml +75 -0
- data/spec/spec_tests/data/crud/read/aggregate-collation.yml +18 -0
- data/spec/spec_tests/data/crud/read/aggregate-out.yml +44 -0
- data/spec/{support/crud_tests → spec_tests/data/crud}/read/aggregate.yml +0 -0
- data/spec/spec_tests/data/crud/read/count-collation.yml +26 -0
- data/spec/spec_tests/data/crud/read/count-empty.yml +29 -0
- data/spec/{support/crud_tests → spec_tests/data/crud}/read/count.yml +0 -0
- data/spec/spec_tests/data/crud/read/distinct-collation.yml +18 -0
- data/spec/{support/crud_tests → spec_tests/data/crud}/read/distinct.yml +0 -0
- data/spec/spec_tests/data/crud/read/find-collation.yml +16 -0
- data/spec/{support/crud_tests → spec_tests/data/crud}/read/find.yml +0 -0
- data/spec/spec_tests/data/crud/write/bulkWrite-arrayFilters.yml +45 -0
- data/spec/spec_tests/data/crud/write/bulkWrite-collation.yml +102 -0
- data/spec/spec_tests/data/crud/write/bulkWrite.yml +405 -0
- data/spec/spec_tests/data/crud/write/deleteMany-collation.yml +23 -0
- data/spec/{support/crud_tests → spec_tests/data/crud}/write/deleteMany.yml +0 -0
- data/spec/spec_tests/data/crud/write/deleteOne-collation.yml +23 -0
- data/spec/{support/crud_tests → spec_tests/data/crud}/write/deleteOne.yml +0 -0
- data/spec/spec_tests/data/crud/write/findOneAndDelete-collation.yml +24 -0
- data/spec/{support/crud_tests → spec_tests/data/crud}/write/findOneAndDelete.yml +0 -0
- data/spec/spec_tests/data/crud/write/findOneAndReplace-collation.yml +25 -0
- data/spec/{support/crud_tests → spec_tests/data/crud}/write/findOneAndReplace-upsert.yml +0 -0
- data/spec/{support/crud_tests → spec_tests/data/crud}/write/findOneAndReplace-upsert_pre_2.6.yml +0 -0
- data/spec/{support/crud_tests → spec_tests/data/crud}/write/findOneAndReplace.yml +0 -0
- data/spec/{support/crud_tests → spec_tests/data/crud}/write/findOneAndUpdate-arrayFilters.yml +0 -0
- data/spec/spec_tests/data/crud/write/findOneAndUpdate-collation.yml +28 -0
- data/spec/{support/crud_tests → spec_tests/data/crud}/write/findOneAndUpdate.yml +0 -0
- data/spec/spec_tests/data/crud/write/insertMany.yml +81 -0
- data/spec/{support/crud_tests → spec_tests/data/crud}/write/insertOne.yml +0 -0
- data/spec/spec_tests/data/crud/write/replaceOne-collation.yml +25 -0
- data/spec/{support/crud_tests → spec_tests/data/crud}/write/replaceOne-pre_2.6.yml +0 -0
- data/spec/{support/crud_tests → spec_tests/data/crud}/write/replaceOne-upsert.yml +0 -0
- data/spec/{support/crud_tests → spec_tests/data/crud}/write/replaceOne.yml +0 -0
- data/spec/spec_tests/data/crud/write/updateMany-arrayFilters.yml +66 -0
- data/spec/spec_tests/data/crud/write/updateMany-collation.yml +29 -0
- data/spec/{support/crud_tests → spec_tests/data/crud}/write/updateMany-pre_2.6.yml +0 -0
- data/spec/{support/crud_tests → spec_tests/data/crud}/write/updateMany.yml +0 -0
- data/spec/spec_tests/data/crud/write/updateOne-arrayFilters.yml +114 -0
- data/spec/spec_tests/data/crud/write/updateOne-collation.yml +26 -0
- data/spec/{support/crud_tests → spec_tests/data/crud}/write/updateOne-pre_2.6.yml +0 -0
- data/spec/{support/crud_tests → spec_tests/data/crud}/write/updateOne.yml +0 -0
- data/spec/spec_tests/data/crud_unified/estimatedDocumentCount.yml +267 -0
- data/spec/spec_tests/data/crud_unified/updateWithPipelines.yml +305 -0
- data/spec/spec_tests/data/crud_v2/aggregate-merge.yml +103 -0
- data/spec/spec_tests/data/crud_v2/aggregate-out-readConcern.yml +111 -0
- data/spec/spec_tests/data/crud_v2/bulkWrite-arrayFilters.yml +103 -0
- data/spec/spec_tests/data/crud_v2/bulkWrite-delete-hint-clientError.yml +63 -0
- data/spec/spec_tests/data/crud_v2/bulkWrite-delete-hint-serverError.yml +92 -0
- data/spec/spec_tests/data/crud_v2/bulkWrite-delete-hint.yml +103 -0
- data/spec/spec_tests/data/crud_v2/bulkWrite-update-hint-clientError.yml +90 -0
- data/spec/spec_tests/data/crud_v2/bulkWrite-update-hint-serverError.yml +147 -0
- data/spec/spec_tests/data/crud_v2/bulkWrite-update-hint.yml +164 -0
- data/spec/spec_tests/data/crud_v2/db-aggregate.yml +39 -0
- data/spec/spec_tests/data/crud_v2/deleteMany-hint-clientError.yml +43 -0
- data/spec/spec_tests/data/crud_v2/deleteMany-hint-serverError.yml +62 -0
- data/spec/spec_tests/data/crud_v2/deleteMany-hint.yml +58 -0
- data/spec/spec_tests/data/crud_v2/deleteOne-hint-clientError.yml +41 -0
- data/spec/spec_tests/data/crud_v2/deleteOne-hint-serverError.yml +60 -0
- data/spec/spec_tests/data/crud_v2/deleteOne-hint.yml +57 -0
- data/spec/spec_tests/data/crud_v2/find-allowdiskuse-clientError.yml +28 -0
- data/spec/spec_tests/data/crud_v2/find-allowdiskuse-serverError.yml +44 -0
- data/spec/spec_tests/data/crud_v2/find-allowdiskuse.yml +50 -0
- data/spec/spec_tests/data/crud_v2/findOneAndDelete-hint-clientError.yml +45 -0
- data/spec/spec_tests/data/crud_v2/findOneAndDelete-hint-serverError.yml +60 -0
- data/spec/spec_tests/data/crud_v2/findOneAndDelete-hint.yml +56 -0
- data/spec/spec_tests/data/crud_v2/findOneAndReplace-hint-clientError.yml +40 -0
- data/spec/spec_tests/data/crud_v2/findOneAndReplace-hint-serverError.yml +59 -0
- data/spec/spec_tests/data/crud_v2/findOneAndReplace-hint.yml +55 -0
- data/spec/spec_tests/data/crud_v2/findOneAndUpdate-hint-clientError.yml +40 -0
- data/spec/spec_tests/data/crud_v2/findOneAndUpdate-hint-serverError.yml +58 -0
- data/spec/spec_tests/data/crud_v2/findOneAndUpdate-hint.yml +55 -0
- data/spec/spec_tests/data/crud_v2/replaceOne-hint.yml +61 -0
- data/spec/spec_tests/data/crud_v2/unacknowledged-bulkWrite-delete-hint-clientError.yml +60 -0
- data/spec/spec_tests/data/crud_v2/unacknowledged-bulkWrite-update-hint-clientError.yml +88 -0
- data/spec/spec_tests/data/crud_v2/unacknowledged-deleteMany-hint-clientError.yml +40 -0
- data/spec/spec_tests/data/crud_v2/unacknowledged-deleteOne-hint-clientError.yml +38 -0
- data/spec/spec_tests/data/crud_v2/unacknowledged-findOneAndDelete-hint-clientError.yml +42 -0
- data/spec/spec_tests/data/crud_v2/unacknowledged-findOneAndReplace-hint-clientError.yml +40 -0
- data/spec/spec_tests/data/crud_v2/unacknowledged-findOneAndUpdate-hint-clientError.yml +40 -0
- data/spec/spec_tests/data/crud_v2/unacknowledged-replaceOne-hint-clientError.yml +40 -0
- data/spec/spec_tests/data/crud_v2/unacknowledged-updateMany-hint-clientError.yml +43 -0
- data/spec/spec_tests/data/crud_v2/unacknowledged-updateOne-hint-clientError.yml +40 -0
- data/spec/spec_tests/data/crud_v2/updateMany-hint-clientError.yml +45 -0
- data/spec/spec_tests/data/crud_v2/updateMany-hint-serverError.yml +66 -0
- data/spec/spec_tests/data/crud_v2/updateMany-hint.yml +65 -0
- data/spec/spec_tests/data/crud_v2/updateOne-hint-clientError.yml +43 -0
- data/spec/spec_tests/data/crud_v2/updateOne-hint-serverError.yml +62 -0
- data/spec/spec_tests/data/crud_v2/updateOne-hint.yml +61 -0
- data/spec/spec_tests/data/crud_v2/updateWithPipelines.yml +157 -0
- data/spec/{support/gridfs_tests → spec_tests/data/gridfs}/delete.yml +0 -0
- data/spec/{support/gridfs_tests → spec_tests/data/gridfs}/download.yml +0 -0
- data/spec/{support/gridfs_tests → spec_tests/data/gridfs}/download_by_name.yml +0 -0
- data/spec/{support/gridfs_tests → spec_tests/data/gridfs}/upload.yml +0 -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/{support → spec_tests/data}/max_staleness/ReplicaSetNoPrimary/DefaultNoMaxStaleness.yml +0 -0
- data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetNoPrimary/Incompatible.yml +0 -0
- data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetNoPrimary/LastUpdateTime.yml +0 -0
- data/spec/{support/max_staleness/ReplicaSetNoPrimary/NoKnownServers.yml → spec_tests/data/max_staleness/ReplicaSetNoPrimary/MaxStalenessTooSmall.yml} +0 -0
- data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetNoPrimary/Nearest.yml +0 -0
- data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetNoPrimary/Nearest2.yml +0 -0
- data/spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/NoKnownServers.yml +16 -0
- data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetNoPrimary/PrimaryPreferred.yml +0 -0
- data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetNoPrimary/PrimaryPreferred_tags.yml +0 -0
- data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetNoPrimary/Secondary.yml +0 -0
- data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetNoPrimary/SecondaryPreferred.yml +0 -0
- data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetNoPrimary/SecondaryPreferred_tags.yml +0 -0
- data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetNoPrimary/ZeroMaxStaleness.yml +0 -0
- data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetWithPrimary/DefaultNoMaxStaleness.yml +0 -0
- data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetWithPrimary/Incompatible.yml +0 -0
- data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetWithPrimary/LastUpdateTime.yml +0 -0
- data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetWithPrimary/LongHeartbeat.yml +0 -0
- data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetWithPrimary/LongHeartbeat2.yml +0 -0
- data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetWithPrimary/MaxStalenessTooSmall.yml +0 -0
- data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetWithPrimary/MaxStalenessWithModePrimary.yml +0 -0
- data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetWithPrimary/Nearest.yml +0 -0
- data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetWithPrimary/Nearest2.yml +0 -0
- data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetWithPrimary/Nearest_tags.yml +0 -0
- data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetWithPrimary/PrimaryPreferred.yml +0 -0
- data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetWithPrimary/PrimaryPreferred_incompatible.yml +0 -0
- data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetWithPrimary/SecondaryPreferred.yml +0 -0
- data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetWithPrimary/SecondaryPreferred_tags.yml +0 -0
- data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetWithPrimary/SecondaryPreferred_tags2.yml +0 -0
- data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetWithPrimary/Secondary_tags.yml +0 -0
- data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetWithPrimary/Secondary_tags2.yml +0 -0
- data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetWithPrimary/ZeroMaxStaleness.yml +0 -0
- data/spec/{support → spec_tests/data}/max_staleness/Sharded/Incompatible.yml +0 -0
- data/spec/{support → spec_tests/data}/max_staleness/Sharded/SmallMaxStaleness.yml +0 -0
- data/spec/{support → spec_tests/data}/max_staleness/Single/Incompatible.yml +0 -0
- data/spec/{support → spec_tests/data}/max_staleness/Single/SmallMaxStaleness.yml +0 -0
- data/spec/spec_tests/data/max_staleness/Unknown/SmallMaxStaleness.yml +15 -0
- data/spec/spec_tests/data/read_write_concern/connection-string/read-concern.yml +32 -0
- data/spec/spec_tests/data/read_write_concern/connection-string/write-concern.yml +79 -0
- data/spec/spec_tests/data/read_write_concern/document/read-concern.yml +37 -0
- data/spec/spec_tests/data/read_write_concern/document/write-concern.yml +100 -0
- data/spec/spec_tests/data/read_write_concern/operation/default-write-concern-2.6.yml +215 -0
- data/spec/spec_tests/data/read_write_concern/operation/default-write-concern-3.2.yml +58 -0
- data/spec/spec_tests/data/read_write_concern/operation/default-write-concern-3.4.yml +95 -0
- data/spec/spec_tests/data/read_write_concern/operation/default-write-concern-4.2.yml +36 -0
- data/spec/spec_tests/data/retryable_reads/aggregate-merge.yml +39 -0
- data/spec/spec_tests/data/retryable_reads/aggregate-serverErrors.yml +157 -0
- data/spec/spec_tests/data/retryable_reads/aggregate.yml +87 -0
- data/spec/spec_tests/data/retryable_reads/changeStreams-client.watch-serverErrors.yml +150 -0
- data/spec/spec_tests/data/retryable_reads/changeStreams-client.watch.yml +62 -0
- data/spec/spec_tests/data/retryable_reads/changeStreams-db.coll.watch-serverErrors.yml +150 -0
- data/spec/spec_tests/data/retryable_reads/changeStreams-db.coll.watch.yml +66 -0
- data/spec/spec_tests/data/retryable_reads/changeStreams-db.watch-serverErrors.yml +154 -0
- data/spec/spec_tests/data/retryable_reads/changeStreams-db.watch.yml +62 -0
- data/spec/spec_tests/data/retryable_reads/count-serverErrors.yml +150 -0
- data/spec/spec_tests/data/retryable_reads/count.yml +64 -0
- data/spec/spec_tests/data/retryable_reads/countDocuments-serverErrors.yml +150 -0
- data/spec/spec_tests/data/retryable_reads/countDocuments.yml +64 -0
- data/spec/spec_tests/data/retryable_reads/distinct-serverErrors.yml +156 -0
- data/spec/spec_tests/data/retryable_reads/distinct.yml +71 -0
- data/spec/spec_tests/data/retryable_reads/estimatedDocumentCount-4.9.yml +60 -0
- data/spec/spec_tests/data/retryable_reads/estimatedDocumentCount-pre4.9.yml +64 -0
- data/spec/spec_tests/data/retryable_reads/estimatedDocumentCount-serverErrors-4.9.yml +146 -0
- data/spec/spec_tests/data/retryable_reads/estimatedDocumentCount-serverErrors-pre4.9.yml +150 -0
- data/spec/spec_tests/data/retryable_reads/find-serverErrors.yml +160 -0
- data/spec/spec_tests/data/retryable_reads/find.yml +86 -0
- data/spec/spec_tests/data/retryable_reads/findOne-serverErrors.yml +154 -0
- data/spec/spec_tests/data/retryable_reads/findOne.yml +68 -0
- data/spec/spec_tests/data/retryable_reads/gridfs-download-serverErrors.yml +173 -0
- data/spec/spec_tests/data/retryable_reads/gridfs-download.yml +79 -0
- data/spec/spec_tests/data/retryable_reads/gridfs-downloadByName-serverErrors.yml +174 -0
- data/spec/spec_tests/data/retryable_reads/gridfs-downloadByName.yml +79 -0
- data/spec/spec_tests/data/retryable_reads/listCollectionNames-serverErrors.yml +143 -0
- data/spec/spec_tests/data/retryable_reads/listCollectionNames.yml +59 -0
- data/spec/spec_tests/data/retryable_reads/listCollectionObjects-serverErrors.yml +144 -0
- data/spec/spec_tests/data/retryable_reads/listCollectionObjects.yml +59 -0
- data/spec/spec_tests/data/retryable_reads/listCollections-serverErrors.yml +143 -0
- data/spec/spec_tests/data/retryable_reads/listCollections.yml +59 -0
- data/spec/spec_tests/data/retryable_reads/listDatabaseNames-serverErrors.yml +143 -0
- data/spec/spec_tests/data/retryable_reads/listDatabaseNames.yml +59 -0
- data/spec/spec_tests/data/retryable_reads/listDatabaseObjects-serverErrors.yml +144 -0
- data/spec/spec_tests/data/retryable_reads/listDatabaseObjects.yml +59 -0
- data/spec/spec_tests/data/retryable_reads/listDatabases-serverErrors.yml +144 -0
- data/spec/spec_tests/data/retryable_reads/listDatabases.yml +59 -0
- data/spec/spec_tests/data/retryable_reads/listIndexNames-serverErrors.yml +144 -0
- data/spec/spec_tests/data/retryable_reads/listIndexNames.yml +60 -0
- data/spec/spec_tests/data/retryable_reads/listIndexes-serverErrors.yml +145 -0
- data/spec/spec_tests/data/retryable_reads/listIndexes.yml +60 -0
- data/spec/spec_tests/data/retryable_reads/mapReduce.yml +62 -0
- data/spec/spec_tests/data/retryable_writes/bulkWrite-errorLabels.yml +77 -0
- data/spec/spec_tests/data/retryable_writes/bulkWrite-serverErrors.yml +130 -0
- data/spec/spec_tests/data/retryable_writes/bulkWrite.yml +402 -0
- data/spec/spec_tests/data/retryable_writes/deleteMany.yml +22 -0
- data/spec/spec_tests/data/retryable_writes/deleteOne-errorLabels.yml +48 -0
- data/spec/spec_tests/data/retryable_writes/deleteOne-serverErrors.yml +73 -0
- data/spec/spec_tests/data/retryable_writes/deleteOne.yml +57 -0
- data/spec/spec_tests/data/retryable_writes/findOneAndDelete-errorLabels.yml +49 -0
- data/spec/spec_tests/data/retryable_writes/findOneAndDelete-serverErrors.yml +74 -0
- data/spec/spec_tests/data/retryable_writes/findOneAndDelete.yml +58 -0
- data/spec/spec_tests/data/retryable_writes/findOneAndReplace-errorLabels.yml +52 -0
- data/spec/spec_tests/data/retryable_writes/findOneAndReplace-serverErrors.yml +80 -0
- data/spec/spec_tests/data/retryable_writes/findOneAndReplace.yml +63 -0
- data/spec/spec_tests/data/retryable_writes/findOneAndUpdate-errorLabels.yml +52 -0
- data/spec/spec_tests/data/retryable_writes/findOneAndUpdate-serverErrors.yml +79 -0
- data/spec/spec_tests/data/retryable_writes/findOneAndUpdate.yml +62 -0
- data/spec/spec_tests/data/retryable_writes/insertMany-errorLabels.yml +54 -0
- data/spec/spec_tests/data/retryable_writes/insertMany-serverErrors.yml +84 -0
- data/spec/spec_tests/data/retryable_writes/insertMany.yml +74 -0
- data/spec/spec_tests/data/retryable_writes/insertOne-errorLabels.yml +44 -0
- data/spec/spec_tests/data/retryable_writes/insertOne-serverErrors.yml +527 -0
- data/spec/spec_tests/data/retryable_writes/insertOne.yml +61 -0
- data/spec/spec_tests/data/retryable_writes/replaceOne-errorLabels.yml +53 -0
- data/spec/spec_tests/data/retryable_writes/replaceOne-serverErrors.yml +82 -0
- data/spec/spec_tests/data/retryable_writes/replaceOne.yml +66 -0
- data/spec/spec_tests/data/retryable_writes/updateMany.yml +27 -0
- data/spec/spec_tests/data/retryable_writes/updateOne-errorLabels.yml +53 -0
- data/spec/spec_tests/data/retryable_writes/updateOne-serverErrors.yml +82 -0
- data/spec/spec_tests/data/retryable_writes/updateOne.yml +129 -0
- data/spec/spec_tests/data/sdam/errors/error_handling_handshake.yml +55 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-network-error.yml +47 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-network-timeout-error.yml +38 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-InterruptedAtShutdown.yml +61 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-InterruptedDueToReplStateChange.yml +61 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-LegacyNotPrimary.yml +61 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-NotPrimaryNoSecondaryOk.yml +61 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-NotPrimaryOrSecondary.yml +61 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-NotWritablePrimary.yml +61 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-PrimarySteppedDown.yml +61 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-ShutdownInProgress.yml +61 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-InterruptedAtShutdown.yml +52 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-InterruptedDueToReplStateChange.yml +52 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-LegacyNotPrimary.yml +52 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-NotPrimaryNoSecondaryOk.yml +52 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-NotPrimaryOrSecondary.yml +52 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-NotWritablePrimary.yml +52 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-PrimarySteppedDown.yml +52 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-ShutdownInProgress.yml +52 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-InterruptedAtShutdown.yml +61 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-InterruptedDueToReplStateChange.yml +61 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-LegacyNotPrimary.yml +61 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-NotPrimaryNoSecondaryOk.yml +61 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-NotPrimaryOrSecondary.yml +61 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-NotWritablePrimary.yml +61 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-PrimarySteppedDown.yml +61 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-ShutdownInProgress.yml +61 -0
- data/spec/spec_tests/data/sdam/errors/post-42-InterruptedAtShutdown.yml +47 -0
- data/spec/spec_tests/data/sdam/errors/post-42-InterruptedDueToReplStateChange.yml +47 -0
- data/spec/spec_tests/data/sdam/errors/post-42-LegacyNotPrimary.yml +47 -0
- data/spec/spec_tests/data/sdam/errors/post-42-NotPrimaryNoSecondaryOk.yml +47 -0
- data/spec/spec_tests/data/sdam/errors/post-42-NotPrimaryOrSecondary.yml +47 -0
- data/spec/spec_tests/data/sdam/errors/post-42-NotWritablePrimary.yml +47 -0
- data/spec/spec_tests/data/sdam/errors/post-42-PrimarySteppedDown.yml +47 -0
- data/spec/spec_tests/data/sdam/errors/post-42-ShutdownInProgress.yml +47 -0
- data/spec/spec_tests/data/sdam/errors/pre-42-InterruptedAtShutdown.yml +47 -0
- data/spec/spec_tests/data/sdam/errors/pre-42-InterruptedDueToReplStateChange.yml +47 -0
- data/spec/spec_tests/data/sdam/errors/pre-42-LegacyNotPrimary.yml +47 -0
- data/spec/spec_tests/data/sdam/errors/pre-42-NotPrimaryNoSecondaryOk.yml +47 -0
- data/spec/spec_tests/data/sdam/errors/pre-42-NotPrimaryOrSecondary.yml +47 -0
- data/spec/spec_tests/data/sdam/errors/pre-42-NotWritablePrimary.yml +47 -0
- data/spec/spec_tests/data/sdam/errors/pre-42-PrimarySteppedDown.yml +47 -0
- data/spec/spec_tests/data/sdam/errors/pre-42-ShutdownInProgress.yml +47 -0
- data/spec/spec_tests/data/sdam/errors/prefer-error-code.yml +54 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-InterruptedAtShutdown.yml +91 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-InterruptedDueToReplStateChange.yml +91 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-NotPrimaryNoSecondaryOk.yml +91 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-NotPrimaryOrSecondary.yml +91 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-NotWritablePrimary.yml +91 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-PrimarySteppedDown.yml +91 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-ShutdownInProgress.yml +91 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-InterruptedAtShutdown.yml +91 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-InterruptedDueToReplStateChange.yml +91 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-LegacyNotPrimary.yml +91 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-NotPrimaryNoSecondaryOk.yml +91 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-NotPrimaryOrSecondary.yml +91 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-NotWritablePrimary.yml +91 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-PrimarySteppedDown.yml +91 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-ShutdownInProgress.yml +91 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-network.yml +82 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-timeout.yml +82 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-InterruptedAtShutdown.yml +91 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-InterruptedDueToReplStateChange.yml +91 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-LegacyNotPrimary.yml +91 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-NotPrimaryNoSecondaryOk.yml +91 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-NotPrimaryOrSecondary.yml +91 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-NotWritablePrimary.yml +91 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-PrimarySteppedDown.yml +91 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-ShutdownInProgress.yml +91 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-network.yml +82 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-timeout.yml +82 -0
- data/spec/spec_tests/data/sdam/errors/stale-topologyVersion-InterruptedAtShutdown.yml +65 -0
- data/spec/spec_tests/data/sdam/errors/stale-topologyVersion-InterruptedDueToReplStateChange.yml +65 -0
- data/spec/spec_tests/data/sdam/errors/stale-topologyVersion-LegacyNotPrimary.yml +65 -0
- data/spec/spec_tests/data/sdam/errors/stale-topologyVersion-NotPrimaryNoSecondaryOk.yml +65 -0
- data/spec/spec_tests/data/sdam/errors/stale-topologyVersion-NotPrimaryOrSecondary.yml +65 -0
- data/spec/spec_tests/data/sdam/errors/stale-topologyVersion-NotWritablePrimary.yml +65 -0
- data/spec/spec_tests/data/sdam/errors/stale-topologyVersion-PrimarySteppedDown.yml +65 -0
- data/spec/spec_tests/data/sdam/errors/stale-topologyVersion-ShutdownInProgress.yml +65 -0
- data/spec/spec_tests/data/sdam/errors/write_errors_ignored.yml +42 -0
- data/spec/spec_tests/data/sdam/load-balanced/discover_load_balancer.yml +25 -0
- data/spec/spec_tests/data/sdam/rs/compatible.yml +45 -0
- data/spec/spec_tests/data/sdam/rs/compatible_unknown.yml +34 -0
- data/spec/spec_tests/data/sdam/rs/discover_arbiters.yml +44 -0
- data/spec/spec_tests/data/sdam/rs/discover_arbiters_replicaset.yml +44 -0
- data/spec/spec_tests/data/sdam/rs/discover_ghost.yml +36 -0
- data/spec/spec_tests/data/sdam/rs/discover_ghost_replicaset.yml +42 -0
- data/spec/spec_tests/data/sdam/rs/discover_hidden.yml +51 -0
- data/spec/spec_tests/data/sdam/rs/discover_hidden_replicaset.yml +51 -0
- data/spec/spec_tests/data/sdam/rs/discover_passives.yml +83 -0
- data/spec/spec_tests/data/sdam/rs/discover_passives_replicaset.yml +83 -0
- data/spec/spec_tests/data/sdam/rs/discover_primary.yml +43 -0
- data/spec/spec_tests/data/sdam/rs/discover_primary_replicaset.yml +43 -0
- data/spec/spec_tests/data/sdam/rs/discover_rsother.yml +50 -0
- data/spec/spec_tests/data/sdam/rs/discover_rsother_replicaset.yml +68 -0
- data/spec/spec_tests/data/sdam/rs/discover_secondary.yml +44 -0
- data/spec/spec_tests/data/sdam/rs/discover_secondary_replicaset.yml +44 -0
- data/spec/spec_tests/data/sdam/rs/discovery.yml +207 -0
- data/spec/spec_tests/data/sdam/rs/equal_electionids.yml +57 -0
- data/spec/spec_tests/data/sdam/rs/hosts_differ_from_seeds.yml +37 -0
- data/spec/spec_tests/data/sdam/rs/incompatible_arbiter.yml +36 -0
- data/spec/spec_tests/data/sdam/rs/incompatible_ghost.yml +34 -0
- data/spec/spec_tests/data/sdam/rs/incompatible_other.yml +36 -0
- data/spec/spec_tests/data/sdam/rs/ls_timeout.yml +249 -0
- data/spec/spec_tests/data/sdam/rs/member_reconfig.yml +74 -0
- data/spec/spec_tests/data/sdam/rs/member_standalone.yml +66 -0
- data/spec/spec_tests/data/sdam/rs/new_primary.yml +80 -0
- data/spec/spec_tests/data/sdam/rs/new_primary_new_electionid.yml +119 -0
- data/spec/spec_tests/data/sdam/rs/new_primary_new_setversion.yml +119 -0
- data/spec/spec_tests/data/sdam/rs/new_primary_wrong_set_name.yml +77 -0
- data/spec/spec_tests/data/sdam/rs/non_rs_member.yml +33 -0
- data/spec/spec_tests/data/sdam/rs/normalize_case.yml +52 -0
- data/spec/spec_tests/data/sdam/rs/normalize_case_me.yml +102 -0
- data/spec/spec_tests/data/sdam/rs/null_election_id.yml +175 -0
- data/spec/spec_tests/data/sdam/rs/primary_becomes_ghost.yml +65 -0
- data/spec/spec_tests/data/sdam/rs/primary_becomes_mongos.yml +58 -0
- data/spec/spec_tests/data/sdam/rs/primary_becomes_standalone.yml +55 -0
- data/spec/spec_tests/data/sdam/rs/primary_changes_set_name.yml +63 -0
- data/spec/spec_tests/data/sdam/rs/primary_disconnect.yml +59 -0
- data/spec/spec_tests/data/sdam/rs/primary_disconnect_electionid.yml +189 -0
- data/spec/spec_tests/data/sdam/rs/primary_disconnect_setversion.yml +189 -0
- data/spec/spec_tests/data/sdam/rs/primary_hint_from_secondary_with_mismatched_me.yml +64 -0
- data/spec/spec_tests/data/sdam/rs/primary_mismatched_me.yml +27 -0
- data/spec/spec_tests/data/sdam/rs/primary_mismatched_me_not_removed.yml +75 -0
- data/spec/spec_tests/data/sdam/rs/primary_reports_new_member.yml +175 -0
- data/spec/spec_tests/data/sdam/rs/primary_to_no_primary_mismatched_me.yml +81 -0
- data/spec/spec_tests/data/sdam/rs/primary_wrong_set_name.yml +30 -0
- data/spec/spec_tests/data/sdam/rs/repeated.yml +105 -0
- data/spec/spec_tests/data/sdam/rs/replicaset_rsnp.yml +21 -0
- data/spec/spec_tests/data/sdam/rs/response_from_removed.yml +69 -0
- data/spec/spec_tests/data/sdam/rs/ruby_primary_address_change.yml +31 -0
- data/spec/spec_tests/data/sdam/rs/ruby_secondary_wrong_set_name_with_primary_second.yml +73 -0
- data/spec/spec_tests/data/sdam/rs/sec_not_auth.yml +55 -0
- data/spec/spec_tests/data/sdam/rs/secondary_ignore_ok_0.yml +87 -0
- data/spec/spec_tests/data/sdam/rs/secondary_mismatched_me.yml +28 -0
- data/spec/spec_tests/data/sdam/rs/secondary_wrong_set_name.yml +31 -0
- data/spec/spec_tests/data/sdam/rs/secondary_wrong_set_name_with_primary.yml +75 -0
- data/spec/spec_tests/data/sdam/rs/setversion_without_electionid.yml +79 -0
- data/spec/spec_tests/data/sdam/rs/stepdown_change_set_name.yml +65 -0
- data/spec/spec_tests/data/sdam/rs/too_new.yml +45 -0
- data/spec/spec_tests/data/sdam/rs/too_old.yml +41 -0
- data/spec/spec_tests/data/sdam/rs/topology_version_equal.yml +68 -0
- data/spec/spec_tests/data/sdam/rs/topology_version_greater.yml +194 -0
- data/spec/spec_tests/data/sdam/rs/topology_version_less.yml +64 -0
- data/spec/spec_tests/data/sdam/rs/unexpected_mongos.yml +29 -0
- data/spec/spec_tests/data/sdam/rs/use_setversion_without_electionid.yml +117 -0
- data/spec/spec_tests/data/sdam/rs/wrong_set_name.yml +38 -0
- data/spec/spec_tests/data/sdam/sharded/compatible.yml +40 -0
- data/spec/spec_tests/data/sdam/sharded/discover_single_mongos.yml +24 -0
- data/spec/spec_tests/data/sdam/sharded/ls_timeout_mongos.yml +101 -0
- data/spec/spec_tests/data/sdam/sharded/mongos_disconnect.yml +113 -0
- data/spec/spec_tests/data/sdam/sharded/multiple_mongoses.yml +52 -0
- data/spec/spec_tests/data/sdam/sharded/non_mongos_removed.yml +47 -0
- data/spec/{support → spec_tests/data}/sdam/sharded/normalize_uri_case.yml +0 -0
- data/spec/spec_tests/data/sdam/sharded/ruby_primary_different_address.yml +21 -0
- data/spec/spec_tests/data/sdam/sharded/ruby_primary_mismatched_me.yml +22 -0
- data/spec/spec_tests/data/sdam/sharded/too_new.yml +38 -0
- data/spec/spec_tests/data/sdam/sharded/too_old.yml +38 -0
- data/spec/spec_tests/data/sdam/single/compatible.yml +27 -0
- data/spec/spec_tests/data/sdam/single/direct_connection_external_ip.yml +37 -0
- data/spec/spec_tests/data/sdam/single/direct_connection_mongos.yml +36 -0
- data/spec/spec_tests/data/sdam/single/direct_connection_replicaset.yml +23 -0
- data/spec/spec_tests/data/sdam/single/direct_connection_rsarbiter.yml +38 -0
- data/spec/spec_tests/data/sdam/single/direct_connection_rsprimary.yml +37 -0
- data/spec/spec_tests/data/sdam/single/direct_connection_rssecondary.yml +38 -0
- data/spec/spec_tests/data/sdam/single/direct_connection_standalone.yml +35 -0
- data/spec/spec_tests/data/sdam/single/direct_connection_unavailable_seed.yml +28 -0
- data/spec/spec_tests/data/sdam/single/direct_connection_wrong_set_name.yml +40 -0
- data/spec/spec_tests/data/sdam/single/discover_standalone.yml +35 -0
- data/spec/spec_tests/data/sdam/single/discover_unavailable_seed.yml +28 -0
- data/spec/spec_tests/data/sdam/single/ls_timeout_standalone.yml +36 -0
- data/spec/spec_tests/data/sdam/single/not_ok_response.yml +44 -0
- data/spec/spec_tests/data/sdam/single/ruby_primary_different_address.yml +24 -0
- data/spec/spec_tests/data/sdam/single/ruby_primary_mismatched_me.yml +25 -0
- data/spec/spec_tests/data/sdam/single/standalone_removed.yml +35 -0
- data/spec/spec_tests/data/sdam/single/standalone_using_legacy_hello.yml +34 -0
- data/spec/spec_tests/data/sdam/single/too_new.yml +27 -0
- data/spec/spec_tests/data/sdam/single/too_old.yml +25 -0
- data/spec/spec_tests/data/sdam/single/too_old_then_upgraded.yml +48 -0
- data/spec/spec_tests/data/sdam_integration/cancel-server-check.yml +96 -0
- data/spec/spec_tests/data/sdam_integration/connectTimeoutMS.yml +88 -0
- data/spec/spec_tests/data/sdam_integration/find-network-error.yml +85 -0
- data/spec/spec_tests/data/sdam_integration/find-shutdown-error.yml +118 -0
- data/spec/spec_tests/data/sdam_integration/hello-command-error.yml +160 -0
- data/spec/spec_tests/data/sdam_integration/hello-network-error.yml +158 -0
- data/spec/spec_tests/data/sdam_integration/hello-timeout.yml +225 -0
- data/spec/spec_tests/data/sdam_integration/insert-network-error.yml +88 -0
- data/spec/spec_tests/data/sdam_integration/insert-shutdown-error.yml +117 -0
- data/spec/spec_tests/data/sdam_integration/rediscover-quickly-after-step-down.yml +98 -0
- data/spec/spec_tests/data/sdam_monitoring/discovered_standalone.yml +70 -0
- data/spec/spec_tests/data/sdam_monitoring/load_balancer.yml +65 -0
- data/spec/spec_tests/data/sdam_monitoring/replica_set_other_chain.yml +222 -0
- data/spec/spec_tests/data/sdam_monitoring/replica_set_other_change.yml +225 -0
- data/spec/spec_tests/data/sdam_monitoring/replica_set_primary_address_change.yml +251 -0
- data/spec/spec_tests/data/sdam_monitoring/replica_set_with_me_mismatch.yml +111 -0
- data/spec/spec_tests/data/sdam_monitoring/replica_set_with_no_primary.yml +113 -0
- data/spec/spec_tests/data/sdam_monitoring/replica_set_with_primary.yml +112 -0
- data/spec/spec_tests/data/sdam_monitoring/replica_set_with_primary_and_secondary.yml +198 -0
- data/spec/spec_tests/data/sdam_monitoring/replica_set_with_primary_removal.yml +175 -0
- data/spec/spec_tests/data/sdam_monitoring/replica_set_with_removal.yml +111 -0
- data/spec/spec_tests/data/sdam_monitoring/replica_set_with_second_seed_removal.yml +106 -0
- data/spec/spec_tests/data/sdam_monitoring/required_replica_set.yml +108 -0
- data/spec/spec_tests/data/sdam_monitoring/standalone.yml +70 -0
- data/spec/spec_tests/data/sdam_monitoring/standalone_repeated.yml +86 -0
- data/spec/spec_tests/data/sdam_monitoring/standalone_suppress_equal_description_changes.yml +73 -0
- data/spec/spec_tests/data/sdam_monitoring/standalone_to_rs_with_me_mismatch.yml +90 -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-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/replica-set/direct-connection-false.yml +10 -0
- data/spec/spec_tests/data/seed_list_discovery/replica-set/direct-connection-true.yml +5 -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/{support/dns_seedlist_discovery_tests → spec_tests/data/seed_list_discovery/replica-set}/longer-parent-in-return.yml +0 -0
- data/spec/{support/dns_seedlist_discovery_tests → spec_tests/data/seed_list_discovery/replica-set}/misformatted-option.yml +0 -0
- data/spec/{support/dns_seedlist_discovery_tests → spec_tests/data/seed_list_discovery/replica-set}/no-results.yml +0 -0
- data/spec/{support/dns_seedlist_discovery_tests → spec_tests/data/seed_list_discovery/replica-set}/not-enough-parts.yml +0 -0
- data/spec/{support/dns_seedlist_discovery_tests → spec_tests/data/seed_list_discovery/replica-set}/one-result-default-port.yml +0 -0
- data/spec/{support/dns_seedlist_discovery_tests → spec_tests/data/seed_list_discovery/replica-set}/one-txt-record-multiple-strings.yml +0 -0
- data/spec/{support/dns_seedlist_discovery_tests → spec_tests/data/seed_list_discovery/replica-set}/one-txt-record.yml +0 -0
- data/spec/{support/dns_seedlist_discovery_tests → spec_tests/data/seed_list_discovery/replica-set}/parent-part-mismatch1.yml +0 -0
- data/spec/{support/dns_seedlist_discovery_tests → spec_tests/data/seed_list_discovery/replica-set}/parent-part-mismatch2.yml +0 -0
- data/spec/{support/dns_seedlist_discovery_tests → spec_tests/data/seed_list_discovery/replica-set}/parent-part-mismatch3.yml +0 -0
- data/spec/{support/dns_seedlist_discovery_tests → spec_tests/data/seed_list_discovery/replica-set}/parent-part-mismatch4.yml +0 -0
- data/spec/{support/dns_seedlist_discovery_tests → spec_tests/data/seed_list_discovery/replica-set}/parent-part-mismatch5.yml +0 -0
- data/spec/{support/dns_seedlist_discovery_tests → spec_tests/data/seed_list_discovery/replica-set}/returned-parent-too-short.yml +0 -0
- data/spec/{support/dns_seedlist_discovery_tests → spec_tests/data/seed_list_discovery/replica-set}/returned-parent-wrong.yml +0 -0
- data/spec/{support/dns_seedlist_discovery_tests → spec_tests/data/seed_list_discovery/replica-set}/two-results-default-port.yml +0 -0
- data/spec/{support/dns_seedlist_discovery_tests → spec_tests/data/seed_list_discovery/replica-set}/two-results-nonstandard-port.yml +0 -0
- data/spec/{support/dns_seedlist_discovery_tests → spec_tests/data/seed_list_discovery/replica-set}/two-txt-records.yml +0 -0
- data/spec/{support/dns_seedlist_discovery_tests → spec_tests/data/seed_list_discovery/replica-set}/txt-record-not-allowed-option.yml +0 -0
- data/spec/{support/dns_seedlist_discovery_tests → spec_tests/data/seed_list_discovery/replica-set}/txt-record-with-overridden-ssl-option.yml +0 -0
- data/spec/{support/dns_seedlist_discovery_tests → spec_tests/data/seed_list_discovery/replica-set}/txt-record-with-overridden-uri-option.yml +0 -0
- data/spec/{support/dns_seedlist_discovery_tests → spec_tests/data/seed_list_discovery/replica-set}/txt-record-with-unallowed-option.yml +0 -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/{support/dns_seedlist_discovery_tests → spec_tests/data/seed_list_discovery/replica-set}/uri-with-port.yml +0 -0
- data/spec/{support/dns_seedlist_discovery_tests → spec_tests/data/seed_list_discovery/replica-set}/uri-with-two-hosts.yml +0 -0
- data/spec/{support/server_selection/selection → spec_tests/data/server_selection}/ReplicaSetNoPrimary/read/Nearest.yml +0 -0
- data/spec/{support/server_selection/selection → spec_tests/data/server_selection}/ReplicaSetNoPrimary/read/Nearest_multiple.yml +0 -0
- data/spec/{support/server_selection/selection → spec_tests/data/server_selection}/ReplicaSetNoPrimary/read/Nearest_non_matching.yml +0 -0
- data/spec/{support/server_selection/selection → spec_tests/data/server_selection}/ReplicaSetNoPrimary/read/PossiblePrimary.yml +0 -0
- data/spec/{support/server_selection/selection → spec_tests/data/server_selection}/ReplicaSetNoPrimary/read/PossiblePrimaryNearest.yml +0 -0
- data/spec/{support/server_selection/selection → spec_tests/data/server_selection}/ReplicaSetNoPrimary/read/Primary.yml +0 -0
- data/spec/{support/server_selection/selection → spec_tests/data/server_selection}/ReplicaSetNoPrimary/read/PrimaryPreferred.yml +0 -0
- data/spec/{support/server_selection/selection → spec_tests/data/server_selection}/ReplicaSetNoPrimary/read/PrimaryPreferred_non_matching.yml +0 -0
- data/spec/{support/server_selection/selection → spec_tests/data/server_selection}/ReplicaSetNoPrimary/read/Secondary.yml +0 -0
- data/spec/{support/server_selection/selection → spec_tests/data/server_selection}/ReplicaSetNoPrimary/read/SecondaryPreferred.yml +0 -0
- data/spec/{support/server_selection/selection → spec_tests/data/server_selection}/ReplicaSetNoPrimary/read/SecondaryPreferred_non_matching.yml +0 -0
- data/spec/{support/server_selection/selection → spec_tests/data/server_selection}/ReplicaSetNoPrimary/read/Secondary_multi_tags.yml +0 -0
- data/spec/{support/server_selection/selection → spec_tests/data/server_selection}/ReplicaSetNoPrimary/read/Secondary_multi_tags2.yml +0 -0
- data/spec/{support/server_selection/selection → spec_tests/data/server_selection}/ReplicaSetNoPrimary/read/Secondary_non_matching.yml +0 -0
- data/spec/{support/server_selection/selection → spec_tests/data/server_selection}/ReplicaSetWithPrimary/read/Nearest.yml +0 -0
- data/spec/{support/server_selection/selection → spec_tests/data/server_selection}/ReplicaSetWithPrimary/read/Nearest_multiple.yml +0 -0
- data/spec/{support/server_selection/selection → spec_tests/data/server_selection}/ReplicaSetWithPrimary/read/Nearest_non_matching.yml +0 -0
- data/spec/{support/server_selection/selection → spec_tests/data/server_selection}/ReplicaSetWithPrimary/read/Primary.yml +0 -0
- data/spec/{support/server_selection/selection → spec_tests/data/server_selection}/ReplicaSetWithPrimary/read/PrimaryPreferred.yml +0 -0
- data/spec/{support/server_selection/selection → spec_tests/data/server_selection}/ReplicaSetWithPrimary/read/PrimaryPreferred_non_matching.yml +0 -0
- data/spec/{support/server_selection/selection → spec_tests/data/server_selection}/ReplicaSetWithPrimary/read/Secondary.yml +0 -0
- data/spec/{support/server_selection/selection → spec_tests/data/server_selection}/ReplicaSetWithPrimary/read/SecondaryPreferred.yml +0 -0
- data/spec/{support/server_selection/selection → spec_tests/data/server_selection}/ReplicaSetWithPrimary/read/SecondaryPreferred_non_matching.yml +0 -0
- data/spec/{support/server_selection/selection → spec_tests/data/server_selection}/ReplicaSetWithPrimary/read/SecondaryPreferred_tags.yml +0 -0
- data/spec/{support/server_selection/selection → spec_tests/data/server_selection}/ReplicaSetWithPrimary/read/Secondary_non_matching.yml +0 -0
- data/spec/{support/server_selection/selection → spec_tests/data/server_selection}/Sharded/read/Nearest.yml +0 -0
- data/spec/{support/server_selection/selection → spec_tests/data/server_selection}/Sharded/read/Primary.yml +0 -0
- data/spec/{support/server_selection/selection → spec_tests/data/server_selection}/Sharded/read/PrimaryPreferred.yml +0 -0
- data/spec/{support/server_selection/selection → spec_tests/data/server_selection}/Sharded/read/Secondary.yml +0 -0
- data/spec/{support/server_selection/selection → spec_tests/data/server_selection}/Sharded/read/SecondaryPreferred.yml +0 -0
- data/spec/{support/server_selection/selection → spec_tests/data/server_selection}/Single/read/SecondaryPreferred.yml +0 -0
- data/spec/{support/server_selection/selection → spec_tests/data/server_selection}/Unknown/read/SecondaryPreferred.yml +0 -0
- data/spec/{support/server_selection/rtt → spec_tests/data/server_selection_rtt}/first_value.yml +0 -0
- data/spec/{support/server_selection/rtt → spec_tests/data/server_selection_rtt}/first_value_zero.yml +0 -0
- data/spec/{support/server_selection/rtt → spec_tests/data/server_selection_rtt}/value_test_1.yml +0 -0
- data/spec/{support/server_selection/rtt → spec_tests/data/server_selection_rtt}/value_test_2.yml +0 -0
- data/spec/{support/server_selection/rtt → spec_tests/data/server_selection_rtt}/value_test_3.yml +0 -0
- data/spec/{support/server_selection/rtt → spec_tests/data/server_selection_rtt}/value_test_4.yml +0 -0
- data/spec/{support/server_selection/rtt → spec_tests/data/server_selection_rtt}/value_test_5.yml +0 -0
- data/spec/spec_tests/data/transactions/abort.yml +413 -0
- data/spec/spec_tests/data/transactions/bulk.yml +267 -0
- data/spec/spec_tests/data/transactions/causal-consistency.yml +175 -0
- data/spec/spec_tests/data/transactions/commit.yml +603 -0
- data/spec/spec_tests/data/transactions/count.yml +67 -0
- data/spec/spec_tests/data/transactions/create-collection.yml +131 -0
- data/spec/spec_tests/data/transactions/create-index.yml +152 -0
- data/spec/spec_tests/data/transactions/delete.yml +192 -0
- data/spec/spec_tests/data/transactions/error-labels.yml +1030 -0
- data/spec/spec_tests/data/transactions/errors-client.yml +56 -0
- data/spec/spec_tests/data/transactions/errors.yml +133 -0
- data/spec/spec_tests/data/transactions/findOneAndDelete.yml +134 -0
- data/spec/spec_tests/data/transactions/findOneAndReplace.yml +148 -0
- data/spec/spec_tests/data/transactions/findOneAndUpdate.yml +236 -0
- data/spec/spec_tests/data/transactions/insert.yml +390 -0
- data/spec/spec_tests/data/transactions/isolation.yml +133 -0
- data/spec/spec_tests/data/transactions/mongos-pin-auto.yml +1674 -0
- data/spec/spec_tests/data/transactions/mongos-recovery-token.yml +350 -0
- data/spec/spec_tests/data/transactions/pin-mongos.yml +559 -0
- data/spec/spec_tests/data/transactions/read-concern.yml +623 -0
- data/spec/spec_tests/data/transactions/read-pref.yml +348 -0
- data/spec/spec_tests/data/transactions/reads.yml +261 -0
- data/spec/spec_tests/data/transactions/retryable-abort-errorLabels.yml +126 -0
- data/spec/spec_tests/data/transactions/retryable-abort.yml +1317 -0
- data/spec/spec_tests/data/transactions/retryable-commit-errorLabels.yml +134 -0
- data/spec/spec_tests/data/transactions/retryable-commit.yml +1462 -0
- data/spec/spec_tests/data/transactions/retryable-writes.yml +218 -0
- data/spec/spec_tests/data/transactions/run-command.yml +197 -0
- data/spec/spec_tests/data/transactions/transaction-options-repl.yml +117 -0
- data/spec/spec_tests/data/transactions/transaction-options.yml +781 -0
- data/spec/spec_tests/data/transactions/update.yml +246 -0
- data/spec/spec_tests/data/transactions/write-concern.yml +554 -0
- data/spec/spec_tests/data/transactions_api/callback-aborts.yml +170 -0
- data/spec/spec_tests/data/transactions_api/callback-commits.yml +204 -0
- data/spec/spec_tests/data/transactions_api/callback-retry.yml +215 -0
- data/spec/spec_tests/data/transactions_api/commit-retry.yml +324 -0
- data/spec/spec_tests/data/transactions_api/commit-transienttransactionerror-4.2.yml +139 -0
- data/spec/spec_tests/data/transactions_api/commit-transienttransactionerror.yml +175 -0
- data/spec/spec_tests/data/transactions_api/commit-writeconcernerror.yml +216 -0
- data/spec/spec_tests/data/transactions_api/commit.yml +193 -0
- data/spec/spec_tests/data/transactions_api/transaction-options.yml +274 -0
- data/spec/spec_tests/data/transactions_unified/mongos-unpin.yml +172 -0
- data/spec/spec_tests/data/unified/valid-fail/operation-failure.yml +31 -0
- data/spec/spec_tests/data/unified/valid-pass/poc-change-streams.yml +220 -0
- data/spec/spec_tests/data/unified/valid-pass/poc-command-monitoring.yml +102 -0
- data/spec/spec_tests/data/unified/valid-pass/poc-crud.yml +184 -0
- data/spec/spec_tests/data/unified/valid-pass/poc-gridfs.yml +155 -0
- data/spec/spec_tests/data/unified/valid-pass/poc-retryable-reads.yml +193 -0
- data/spec/spec_tests/data/unified/valid-pass/poc-retryable-writes.yml +210 -0
- data/spec/spec_tests/data/unified/valid-pass/poc-sessions.yml +215 -0
- data/spec/spec_tests/data/unified/valid-pass/poc-transactions-convenient-api.yml +235 -0
- data/spec/spec_tests/data/unified/valid-pass/poc-transactions-mongos-pin-auto.yml +169 -0
- data/spec/spec_tests/data/unified/valid-pass/poc-transactions.yml +170 -0
- data/spec/spec_tests/data/uri_options/auth-options.yml +49 -0
- data/spec/spec_tests/data/uri_options/compression-options.yml +51 -0
- data/spec/spec_tests/data/uri_options/concern-options.yml +55 -0
- data/spec/spec_tests/data/uri_options/connection-options.yml +209 -0
- data/spec/spec_tests/data/uri_options/connection-pool-options.yml +26 -0
- data/spec/spec_tests/data/uri_options/read-preference-options.yml +66 -0
- data/spec/spec_tests/data/uri_options/ruby-auth-options.yml +12 -0
- data/spec/spec_tests/data/uri_options/ruby-connection-options.yml +58 -0
- data/spec/spec_tests/data/uri_options/tls-options.yml +364 -0
- data/spec/spec_tests/data/versioned_api/crud-api-version-1-strict.yml +417 -0
- data/spec/spec_tests/data/versioned_api/crud-api-version-1.yml +411 -0
- data/spec/spec_tests/data/versioned_api/runcommand-helper-no-api-version-declared.yml +75 -0
- data/spec/spec_tests/data/versioned_api/test-commands-deprecation-errors.yml +47 -0
- data/spec/spec_tests/data/versioned_api/test-commands-strict-mode.yml +46 -0
- data/spec/spec_tests/data/versioned_api/transaction-handling.yml +128 -0
- data/spec/spec_tests/gridfs_spec.rb +6 -1
- data/spec/spec_tests/load_balancers_spec.rb +15 -0
- data/spec/spec_tests/max_staleness_spec.rb +7 -120
- data/spec/spec_tests/read_write_concern_connection_string_spec.rb +13 -0
- data/spec/spec_tests/read_write_concern_document_spec.rb +77 -0
- data/spec/spec_tests/read_write_concern_operaton_spec.rb +13 -0
- data/spec/spec_tests/retryable_reads_spec.rb +50 -0
- data/spec/spec_tests/retryable_writes_spec.rb +14 -70
- data/spec/spec_tests/sdam_integration_spec.rb +16 -0
- data/spec/spec_tests/sdam_monitoring_spec.rb +59 -22
- data/spec/spec_tests/sdam_spec.rb +156 -20
- data/spec/spec_tests/seed_list_discovery_spec.rb +118 -0
- data/spec/spec_tests/server_selection_rtt_spec.rb +11 -63
- data/spec/spec_tests/server_selection_spec.rb +7 -90
- data/spec/spec_tests/transactions_api_spec.rb +13 -0
- data/spec/spec_tests/transactions_spec.rb +8 -44
- data/spec/spec_tests/transactions_unified_spec.rb +13 -0
- data/spec/spec_tests/unified_spec.rb +18 -0
- data/spec/spec_tests/uri_options_spec.rb +93 -0
- data/spec/spec_tests/versioned_api_spec.rb +13 -0
- data/spec/stress/cleanup_spec.rb +61 -0
- data/spec/stress/connection_pool_stress_spec.rb +204 -0
- data/spec/stress/connection_pool_timing_spec.rb +184 -0
- data/spec/stress/fork_reconnect_stress_spec.rb +108 -0
- data/spec/stress/push_monitor_close_spec.rb +44 -0
- data/spec/support/authorization.rb +43 -173
- data/spec/support/aws_utils/base.rb +137 -0
- data/spec/support/aws_utils/inspector.rb +227 -0
- data/spec/support/aws_utils/orchestrator.rb +373 -0
- data/spec/support/aws_utils/provisioner.rb +363 -0
- data/spec/support/aws_utils.rb +65 -0
- data/spec/support/background_thread_registry.rb +70 -0
- data/spec/support/certificates/README.md +106 -0
- data/spec/support/certificates/atlas-ocsp-ca.crt +110 -0
- data/spec/support/certificates/atlas-ocsp.crt +157 -0
- data/spec/support/certificates/ca.crt +76 -0
- data/spec/support/certificates/client-encrypted.key +30 -0
- data/spec/support/certificates/client-int.crt +78 -0
- data/spec/support/certificates/client-second-level-bundle.pem +179 -0
- data/spec/support/certificates/client-second-level.crt +74 -0
- data/spec/support/certificates/client-second-level.key +27 -0
- data/spec/support/certificates/client-second-level.pem +101 -0
- data/spec/support/certificates/client-x509.crt +78 -0
- data/spec/support/certificates/client-x509.key +27 -0
- data/spec/support/certificates/client-x509.pem +105 -0
- data/spec/support/certificates/client.crt +74 -0
- data/spec/support/certificates/client.key +27 -0
- data/spec/support/certificates/client.pem +90 -90
- data/spec/support/certificates/crl.pem +10 -8
- data/spec/support/certificates/crl_client_revoked.pem +11 -10
- data/spec/support/certificates/multi-ca.crt +152 -0
- data/spec/support/certificates/python-ca.crt +76 -0
- data/spec/support/certificates/server-int.crt +78 -0
- data/spec/support/certificates/server-second-level-bundle.pem +179 -0
- data/spec/support/certificates/server-second-level.crt +74 -0
- data/spec/support/certificates/server-second-level.key +27 -0
- data/spec/support/certificates/server-second-level.pem +101 -0
- data/spec/support/certificates/server.pem +99 -32
- data/spec/support/client_registry.rb +254 -0
- data/spec/support/client_registry_macros.rb +26 -0
- data/spec/support/cluster_tools.rb +379 -0
- data/spec/support/common_shortcuts.rb +374 -0
- data/spec/support/constraints.rb +12 -73
- data/spec/support/crypt/corpus/corpus-key-aws.json +33 -0
- data/spec/support/crypt/corpus/corpus-key-local.json +31 -0
- data/spec/support/crypt/corpus/corpus-schema.json +2057 -0
- data/spec/support/crypt/corpus/corpus.json +3657 -0
- data/spec/support/crypt/corpus/corpus_encrypted.json +4152 -0
- data/spec/support/crypt/data_keys/key_document_aws.json +34 -0
- data/spec/support/crypt/data_keys/key_document_local.json +31 -0
- data/spec/support/crypt/external/external-key.json +31 -0
- data/spec/support/crypt/external/external-schema.json +19 -0
- data/spec/support/crypt/limits/limits-doc.json +102 -0
- data/spec/support/crypt/limits/limits-key.json +31 -0
- data/spec/support/crypt/limits/limits-schema.json +1405 -0
- data/spec/support/crypt/schema_maps/schema_map_aws.json +17 -0
- data/spec/support/crypt/schema_maps/schema_map_aws_key_alt_names.json +12 -0
- data/spec/support/crypt/schema_maps/schema_map_local.json +18 -0
- data/spec/support/crypt/schema_maps/schema_map_local_key_alt_names.json +12 -0
- data/spec/support/crypt.rb +157 -0
- data/spec/support/dns.rb +16 -0
- data/spec/support/json_ext_formatter.rb +16 -0
- data/spec/support/keyword_struct.rb +29 -0
- data/spec/support/local_resource_registry.rb +37 -0
- data/spec/support/matchers.rb +52 -1
- data/spec/support/monitoring_ext.rb +19 -0
- data/spec/support/ocsp +1 -0
- data/spec/support/primary_socket.rb +5 -2
- data/spec/support/sdam_formatter_integration.rb +119 -0
- data/spec/support/session_registry.rb +55 -0
- data/spec/support/shared/app_metadata.rb +167 -0
- data/spec/support/shared/auth_context.rb +16 -0
- data/spec/support/shared/protocol.rb +5 -0
- data/spec/support/shared/scram_conversation.rb +103 -0
- data/spec/support/shared/server_selector.rb +114 -65
- data/spec/support/shared/session.rb +108 -63
- data/spec/support/spec_config.rb +585 -22
- data/spec/support/spec_setup.rb +83 -0
- data/spec/support/using_hash.rb +31 -0
- data/spec/support/utils.rb +598 -0
- data.tar.gz.sig +0 -0
- metadata +2227 -792
- metadata.gz.sig +2 -1
- data/lib/mongo/cluster/app_metadata.rb +0 -158
- data/lib/mongo/cluster/topology/replica_set.rb +0 -339
- data/lib/mongo/collection/view/builder/find_command.rb +0 -139
- data/lib/mongo/collection/view/builder/flags.rb +0 -62
- data/lib/mongo/collection/view/builder/modifiers.rb +0 -80
- data/lib/mongo/collection/view/builder/op_query.rb +0 -91
- data/lib/mongo/cursor/builder/get_more_command.rb +0 -74
- data/lib/mongo/cursor/builder/kill_cursors_command.rb +0 -90
- data/lib/mongo/cursor/builder/op_get_more.rb +0 -61
- data/lib/mongo/cursor/builder/op_kill_cursors.rb +0 -84
- data/lib/mongo/cursor/builder.rb +0 -18
- data/lib/mongo/error/failed_stringprep_validation.rb +0 -38
- data/lib/mongo/event/description_changed.rb +0 -72
- data/lib/mongo/event/member_discovered.rb +0 -67
- data/lib/mongo/event/primary_elected.rb +0 -55
- data/lib/mongo/event/standalone_discovered.rb +0 -53
- data/lib/mongo/server/connectable.rb +0 -107
- data/lib/mongo/server/connection_pool/queue.rb +0 -242
- data/lib/mongo/server/context.rb +0 -69
- data/lib/mongo/server/description/inspector/description_changed.rb +0 -57
- data/lib/mongo/server/description/inspector/member_discovered.rb +0 -59
- data/lib/mongo/server/description/inspector/primary_elected.rb +0 -60
- data/lib/mongo/server/description/inspector/standalone_discovered.rb +0 -56
- data/lib/mongo/server/description/inspector.rb +0 -81
- data/lib/mongo/server_selector/selectable.rb +0 -281
- data/lib/mongo/write_concern/normalizable.rb +0 -64
- data/spec/integration/retryable_writes_spec.rb +0 -737
- data/spec/mongo/auth/scram/negotiation_spec.rb +0 -575
- data/spec/mongo/cluster/app_metadata_spec.rb +0 -133
- data/spec/mongo/collection/view/builder/flags_spec.rb +0 -106
- data/spec/mongo/collection/view/builder/modifiers_spec.rb +0 -210
- data/spec/mongo/operation/read_preference_spec.rb +0 -245
- data/spec/mongo/server/connection_pool/queue_spec.rb +0 -223
- data/spec/mongo/server/description/inspector/description_changed_spec.rb +0 -78
- data/spec/mongo/server/description/inspector/primary_elected_spec.rb +0 -94
- data/spec/spec_tests/dns_seedlist_discovery_spec.rb +0 -96
- data/spec/support/certificates/ca.pem +0 -17
- data/spec/support/certificates/client_cert.pem +0 -21
- data/spec/support/certificates/client_key.pem +0 -28
- data/spec/support/certificates/client_key_encrypted.pem +0 -30
- data/spec/support/certificates/password_protected.pem +0 -51
- data/spec/support/change_streams/operation.rb +0 -62
- data/spec/support/change_streams.rb +0 -265
- data/spec/support/change_streams_tests/change-streams-errors.yml +0 -53
- data/spec/support/change_streams_tests/change-streams.yml +0 -299
- data/spec/support/command_monitoring/bulkWrite.yml +0 -49
- data/spec/support/command_monitoring/find.yml +0 -266
- data/spec/support/command_monitoring/insertMany.yml +0 -75
- data/spec/support/command_monitoring/updateMany.yml +0 -67
- data/spec/support/command_monitoring/updateOne.yml +0 -95
- data/spec/support/command_monitoring.rb +0 -376
- data/spec/support/connection_string.rb +0 -232
- data/spec/support/connection_string_tests/invalid-uris.yml +0 -241
- data/spec/support/connection_string_tests/valid-auth.yml +0 -241
- data/spec/support/connection_string_tests/valid-warnings.yml +0 -55
- data/spec/support/crud/read.rb +0 -175
- data/spec/support/crud/write.rb +0 -269
- data/spec/support/crud.rb +0 -320
- data/spec/support/crud_tests/read/aggregate-collation.yml +0 -17
- data/spec/support/crud_tests/read/aggregate-out.yml +0 -49
- data/spec/support/crud_tests/read/count-collation.yml +0 -25
- data/spec/support/crud_tests/read/distinct-collation.yml +0 -17
- data/spec/support/crud_tests/read/find-collation.yml +0 -15
- data/spec/support/crud_tests/write/bulkWrite-arrayFilters.yml +0 -44
- data/spec/support/crud_tests/write/deleteMany-collation.yml +0 -22
- data/spec/support/crud_tests/write/deleteOne-collation.yml +0 -22
- data/spec/support/crud_tests/write/findOneAndDelete-collation.yml +0 -23
- data/spec/support/crud_tests/write/findOneAndReplace-collation.yml +0 -24
- data/spec/support/crud_tests/write/findOneAndUpdate-collation.yml +0 -27
- data/spec/support/crud_tests/write/insertMany.yml +0 -21
- data/spec/support/crud_tests/write/replaceOne-collation.yml +0 -24
- data/spec/support/crud_tests/write/updateMany-arrayFilters.yml +0 -63
- data/spec/support/crud_tests/write/updateMany-collation.yml +0 -28
- data/spec/support/crud_tests/write/updateOne-arrayFilters.yml +0 -109
- data/spec/support/crud_tests/write/updateOne-collation.yml +0 -25
- data/spec/support/event_subscriber.rb +0 -66
- data/spec/support/gridfs.rb +0 -638
- data/spec/support/lite_constraints.rb +0 -18
- data/spec/support/max_staleness/Unknown/SmallMaxStaleness.yml +0 -14
- data/spec/support/retryable_writes_tests/bulkWrite-serverErrors.yml +0 -90
- data/spec/support/retryable_writes_tests/bulkWrite.yml +0 -403
- data/spec/support/retryable_writes_tests/deleteOne-serverErrors.yml +0 -50
- data/spec/support/retryable_writes_tests/deleteOne.yml +0 -60
- data/spec/support/retryable_writes_tests/findOneAndDelete-serverErrors.yml +0 -50
- data/spec/support/retryable_writes_tests/findOneAndDelete.yml +0 -61
- data/spec/support/retryable_writes_tests/findOneAndReplace-serverErrors.yml +0 -54
- data/spec/support/retryable_writes_tests/findOneAndReplace.yml +0 -66
- data/spec/support/retryable_writes_tests/findOneAndUpdate-serverErrors.yml +0 -54
- data/spec/support/retryable_writes_tests/findOneAndUpdate.yml +0 -65
- data/spec/support/retryable_writes_tests/insertMany-serverErrors.yml +0 -59
- data/spec/support/retryable_writes_tests/insertMany.yml +0 -77
- data/spec/support/retryable_writes_tests/insertOne-serverErrors.yml +0 -471
- data/spec/support/retryable_writes_tests/insertOne.yml +0 -64
- data/spec/support/retryable_writes_tests/replaceOne-serverErrors.yml +0 -58
- data/spec/support/retryable_writes_tests/replaceOne.yml +0 -69
- data/spec/support/retryable_writes_tests/updateOne-serverErrors.yml +0 -58
- data/spec/support/retryable_writes_tests/updateOne.yml +0 -138
- data/spec/support/sdam/rs/compatible.yml +0 -41
- data/spec/support/sdam/rs/discover_arbiters.yml +0 -43
- data/spec/support/sdam/rs/discover_passives.yml +0 -81
- data/spec/support/sdam/rs/discover_primary.yml +0 -42
- data/spec/support/sdam/rs/discover_secondary.yml +0 -43
- data/spec/support/sdam/rs/discovery.yml +0 -203
- data/spec/support/sdam/rs/equal_electionids.yml +0 -53
- data/spec/support/sdam/rs/ghost_discovered.yml +0 -41
- data/spec/support/sdam/rs/hosts_differ_from_seeds.yml +0 -36
- data/spec/support/sdam/rs/ls_timeout.yml +0 -243
- data/spec/support/sdam/rs/member_reconfig.yml +0 -72
- data/spec/support/sdam/rs/member_standalone.yml +0 -64
- data/spec/support/sdam/rs/new_primary.yml +0 -78
- data/spec/support/sdam/rs/new_primary_new_electionid.yml +0 -110
- data/spec/support/sdam/rs/new_primary_new_setversion.yml +0 -110
- data/spec/support/sdam/rs/new_primary_wrong_set_name.yml +0 -75
- data/spec/support/sdam/rs/non_rs_member.yml +0 -32
- data/spec/support/sdam/rs/normalize_case.yml +0 -51
- data/spec/support/sdam/rs/normalize_case_me.yml +0 -100
- data/spec/support/sdam/rs/null_election_id.yml +0 -164
- data/spec/support/sdam/rs/primary_becomes_standalone.yml +0 -54
- data/spec/support/sdam/rs/primary_changes_set_name.yml +0 -61
- data/spec/support/sdam/rs/primary_disconnect.yml +0 -58
- data/spec/support/sdam/rs/primary_disconnect_electionid.yml +0 -174
- data/spec/support/sdam/rs/primary_disconnect_setversion.yml +0 -174
- data/spec/support/sdam/rs/primary_hint_from_secondary_with_mismatched_me.yml +0 -62
- data/spec/support/sdam/rs/primary_mismatched_me.yml +0 -26
- data/spec/support/sdam/rs/primary_reports_new_member.yml +0 -171
- data/spec/support/sdam/rs/primary_to_no_primary_mismatched_me.yml +0 -79
- data/spec/support/sdam/rs/primary_wrong_set_name.yml +0 -29
- data/spec/support/sdam/rs/response_from_removed.yml +0 -67
- data/spec/support/sdam/rs/rsother_discovered.yml +0 -66
- data/spec/support/sdam/rs/sec_not_auth.yml +0 -53
- data/spec/support/sdam/rs/secondary_ignore_ok_0.yml +0 -85
- data/spec/support/sdam/rs/secondary_mismatched_me.yml +0 -26
- data/spec/support/sdam/rs/secondary_wrong_set_name.yml +0 -30
- data/spec/support/sdam/rs/secondary_wrong_set_name_with_primary.yml +0 -73
- data/spec/support/sdam/rs/set_version_without_electionid.yml +0 -69
- data/spec/support/sdam/rs/setversion_without_electionid.yml +0 -75
- data/spec/support/sdam/rs/stepdown_change_set_name.yml +0 -63
- data/spec/support/sdam/rs/too_new.yml +0 -41
- data/spec/support/sdam/rs/too_old.yml +0 -39
- data/spec/support/sdam/rs/unexpected_mongos.yml +0 -28
- data/spec/support/sdam/rs/use_setversion_without_electionid.yml +0 -108
- data/spec/support/sdam/rs/wrong_set_name.yml +0 -37
- data/spec/support/sdam/sharded/compatible.yml +0 -38
- data/spec/support/sdam/sharded/ls_timeout_mongos.yml +0 -97
- data/spec/support/sdam/sharded/mongos_disconnect.yml +0 -110
- data/spec/support/sdam/sharded/multiple_mongoses.yml +0 -50
- data/spec/support/sdam/sharded/non_mongos_removed.yml +0 -45
- data/spec/support/sdam/sharded/single_mongos.yml +0 -33
- data/spec/support/sdam/sharded/too_new.yml +0 -36
- data/spec/support/sdam/sharded/too_old.yml +0 -36
- data/spec/support/sdam/single/compatible.yml +0 -26
- data/spec/support/sdam/single/direct_connection_external_ip.yml +0 -36
- data/spec/support/sdam/single/direct_connection_mongos.yml +0 -35
- data/spec/support/sdam/single/direct_connection_rsarbiter.yml +0 -37
- data/spec/support/sdam/single/direct_connection_rsprimary.yml +0 -36
- data/spec/support/sdam/single/direct_connection_rssecondary.yml +0 -37
- data/spec/support/sdam/single/direct_connection_slave.yml +0 -34
- data/spec/support/sdam/single/direct_connection_standalone.yml +0 -34
- data/spec/support/sdam/single/ls_timeout_standalone.yml +0 -35
- data/spec/support/sdam/single/not_ok_response.yml +0 -42
- data/spec/support/sdam/single/standalone_removed.yml +0 -34
- data/spec/support/sdam/single/too_new.yml +0 -26
- data/spec/support/sdam/single/too_old.yml +0 -24
- data/spec/support/sdam/single/unavailable_seed.yml +0 -28
- data/spec/support/sdam_monitoring/replica_set_with_no_primary.yml +0 -112
- data/spec/support/sdam_monitoring/replica_set_with_primary.yml +0 -111
- data/spec/support/sdam_monitoring/replica_set_with_removal.yml +0 -106
- data/spec/support/sdam_monitoring/required_replica_set.yml +0 -84
- data/spec/support/sdam_monitoring/standalone.yml +0 -70
- data/spec/support/sdam_monitoring.rb +0 -144
- data/spec/support/server_discovery_and_monitoring.rb +0 -236
- data/spec/support/server_selection.rb +0 -163
- data/spec/support/server_selection_rtt.rb +0 -41
- data/spec/support/transactions/operation.rb +0 -373
- data/spec/support/transactions.rb +0 -391
- data/spec/support/transactions_tests/abort.yml +0 -403
- data/spec/support/transactions_tests/bulk.yml +0 -267
- data/spec/support/transactions_tests/causal-consistency.yml +0 -173
- data/spec/support/transactions_tests/commit.yml +0 -593
- data/spec/support/transactions_tests/delete.yml +0 -184
- data/spec/support/transactions_tests/error-labels.yml +0 -948
- data/spec/support/transactions_tests/errors.yml +0 -125
- data/spec/support/transactions_tests/findOneAndDelete.yml +0 -126
- data/spec/support/transactions_tests/findOneAndReplace.yml +0 -140
- data/spec/support/transactions_tests/findOneAndUpdate.yml +0 -228
- data/spec/support/transactions_tests/insert.yml +0 -264
- data/spec/support/transactions_tests/isolation.yml +0 -125
- data/spec/support/transactions_tests/read-pref.yml +0 -340
- data/spec/support/transactions_tests/reads.yml +0 -298
- data/spec/support/transactions_tests/retryable-abort.yml +0 -1292
- data/spec/support/transactions_tests/retryable-commit.yml +0 -1332
- data/spec/support/transactions_tests/retryable-writes.yml +0 -208
- data/spec/support/transactions_tests/run-command.yml +0 -189
- data/spec/support/transactions_tests/transaction-options.yml +0 -877
- data/spec/support/transactions_tests/update.yml +0 -246
- data/spec/support/transactions_tests/write-concern.yml +0 -236
- data/spec/support/travis.rb +0 -14
data/lib/mongo/client.rb
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
#
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
# encoding: utf-8
|
|
3
|
+
|
|
4
|
+
# Copyright (C) 2014-2020 MongoDB Inc.
|
|
2
5
|
#
|
|
3
6
|
# Licensed under the Apache License, Version 2.0 (the 'License');
|
|
4
7
|
# you may not use this file except in compliance with the License.
|
|
@@ -22,11 +25,29 @@ module Mongo
|
|
|
22
25
|
extend Forwardable
|
|
23
26
|
include Loggable
|
|
24
27
|
|
|
25
|
-
# The options that do not affect the
|
|
28
|
+
# The options that do not affect the behavior of a cluster and its
|
|
26
29
|
# subcomponents.
|
|
27
30
|
#
|
|
28
31
|
# @since 2.1.0
|
|
29
|
-
CRUD_OPTIONS = [
|
|
32
|
+
CRUD_OPTIONS = [
|
|
33
|
+
:auto_encryption_options,
|
|
34
|
+
:database,
|
|
35
|
+
:read, :read_concern,
|
|
36
|
+
:write, :write_concern,
|
|
37
|
+
:retry_reads, :max_read_retries, :read_retry_interval,
|
|
38
|
+
:retry_writes, :max_write_retries,
|
|
39
|
+
|
|
40
|
+
# Options which cannot currently be here:
|
|
41
|
+
#
|
|
42
|
+
# :server_selection_timeout
|
|
43
|
+
# Server selection timeout is used by cluster constructor to figure out
|
|
44
|
+
# how long to wait for initial scan in compatibility mode, but once
|
|
45
|
+
# the cluster is initialized it no longer uses this timeout.
|
|
46
|
+
# Unfortunately server selector reads server selection timeout out of
|
|
47
|
+
# the cluster, and this behavior is required by Cluster#next_primary
|
|
48
|
+
# which takes no arguments. When next_primary is removed we can revsit
|
|
49
|
+
# using the same cluster object with different server selection timeouts.
|
|
50
|
+
].freeze
|
|
30
51
|
|
|
31
52
|
# Valid client options.
|
|
32
53
|
#
|
|
@@ -36,51 +57,78 @@ module Mongo
|
|
|
36
57
|
:auth_mech,
|
|
37
58
|
:auth_mech_properties,
|
|
38
59
|
:auth_source,
|
|
60
|
+
:auto_encryption_options,
|
|
61
|
+
:bg_error_backtrace,
|
|
62
|
+
:cleanup,
|
|
63
|
+
:compressors,
|
|
64
|
+
:direct_connection,
|
|
39
65
|
:connect,
|
|
40
66
|
:connect_timeout,
|
|
41
|
-
:compressors,
|
|
42
67
|
:database,
|
|
43
68
|
:heartbeat_frequency,
|
|
44
69
|
:id_generator,
|
|
70
|
+
:load_balanced,
|
|
45
71
|
:local_threshold,
|
|
46
72
|
:logger,
|
|
73
|
+
:log_prefix,
|
|
47
74
|
:max_idle_time,
|
|
48
75
|
:max_pool_size,
|
|
49
76
|
:max_read_retries,
|
|
77
|
+
:max_write_retries,
|
|
50
78
|
:min_pool_size,
|
|
51
79
|
:monitoring,
|
|
80
|
+
:monitoring_io,
|
|
52
81
|
:password,
|
|
53
82
|
:platform,
|
|
54
83
|
:read,
|
|
55
84
|
:read_concern,
|
|
56
85
|
:read_retry_interval,
|
|
57
86
|
:replica_set,
|
|
87
|
+
:resolv_options,
|
|
88
|
+
:retry_reads,
|
|
58
89
|
:retry_writes,
|
|
90
|
+
:scan,
|
|
91
|
+
:sdam_proc,
|
|
92
|
+
:server_api,
|
|
59
93
|
:server_selection_timeout,
|
|
60
94
|
:socket_timeout,
|
|
61
95
|
:ssl,
|
|
62
96
|
:ssl_ca_cert,
|
|
63
|
-
:ssl_ca_cert_string,
|
|
64
97
|
:ssl_ca_cert_object,
|
|
98
|
+
:ssl_ca_cert_string,
|
|
65
99
|
:ssl_cert,
|
|
66
|
-
:ssl_cert_string,
|
|
67
100
|
:ssl_cert_object,
|
|
101
|
+
:ssl_cert_string,
|
|
68
102
|
:ssl_key,
|
|
69
|
-
:ssl_key_string,
|
|
70
103
|
:ssl_key_object,
|
|
71
104
|
:ssl_key_pass_phrase,
|
|
105
|
+
:ssl_key_string,
|
|
72
106
|
:ssl_verify,
|
|
107
|
+
:ssl_verify_certificate,
|
|
108
|
+
:ssl_verify_hostname,
|
|
109
|
+
:ssl_verify_ocsp_endpoint,
|
|
73
110
|
:truncate_logs,
|
|
74
111
|
:user,
|
|
75
112
|
:wait_queue_timeout,
|
|
113
|
+
:wrapping_libraries,
|
|
76
114
|
:write,
|
|
77
|
-
:
|
|
115
|
+
:write_concern,
|
|
116
|
+
:zlib_compression_level,
|
|
78
117
|
].freeze
|
|
79
118
|
|
|
80
119
|
# The compression algorithms supported by the driver.
|
|
81
120
|
#
|
|
82
121
|
# @since 2.5.0
|
|
83
|
-
VALID_COMPRESSORS = [
|
|
122
|
+
VALID_COMPRESSORS = [
|
|
123
|
+
Mongo::Protocol::Compressed::ZSTD,
|
|
124
|
+
Mongo::Protocol::Compressed::SNAPPY,
|
|
125
|
+
Mongo::Protocol::Compressed::ZLIB
|
|
126
|
+
].freeze
|
|
127
|
+
|
|
128
|
+
# The known server API versions.
|
|
129
|
+
VALID_SERVER_API_VERSIONS = %w(
|
|
130
|
+
1
|
|
131
|
+
).freeze
|
|
84
132
|
|
|
85
133
|
# @return [ Mongo::Cluster ] cluster The cluster of servers for the client.
|
|
86
134
|
attr_reader :cluster
|
|
@@ -91,15 +139,25 @@ module Mongo
|
|
|
91
139
|
# @return [ Hash ] options The configuration options.
|
|
92
140
|
attr_reader :options
|
|
93
141
|
|
|
142
|
+
# @return [ Mongo::Crypt::AutoEncrypter ] The object that encapsulates
|
|
143
|
+
# auto-encryption behavior
|
|
144
|
+
attr_reader :encrypter
|
|
145
|
+
|
|
94
146
|
# Delegate command and collections execution to the current database.
|
|
95
147
|
def_delegators :@database, :command, :collections
|
|
96
148
|
|
|
97
149
|
# Delegate subscription to monitoring.
|
|
98
150
|
def_delegators :monitoring, :subscribe, :unsubscribe
|
|
99
151
|
|
|
100
|
-
#
|
|
101
|
-
|
|
102
|
-
|
|
152
|
+
# @return [ Monitoring ] monitoring The monitoring.
|
|
153
|
+
# @api private
|
|
154
|
+
def monitoring
|
|
155
|
+
if cluster
|
|
156
|
+
cluster.monitoring
|
|
157
|
+
else
|
|
158
|
+
@monitoring
|
|
159
|
+
end
|
|
160
|
+
end
|
|
103
161
|
private :monitoring
|
|
104
162
|
|
|
105
163
|
# Determine if this client is equivalent to another object.
|
|
@@ -159,38 +217,86 @@ module Mongo
|
|
|
159
217
|
# # connect to the replica set if given the address of a server in
|
|
160
218
|
# # a replica set
|
|
161
219
|
#
|
|
162
|
-
# @param [ Array<String
|
|
220
|
+
# @param [ Array<String> | String ] addresses_or_uri The array of server addresses in the
|
|
163
221
|
# form of host:port or a MongoDB URI connection string.
|
|
164
|
-
# @param [ Hash ] options The options to be used by the client.
|
|
222
|
+
# @param [ Hash ] options The options to be used by the client. If a MongoDB URI
|
|
223
|
+
# connection string is also provided, these options take precedence over any
|
|
224
|
+
# analogous options present in the URI string.
|
|
165
225
|
#
|
|
226
|
+
# @option options [ String, Symbol ] :app_name Application name that is
|
|
227
|
+
# printed to the mongod logs upon establishing a connection in server
|
|
228
|
+
# versions >= 3.4.
|
|
166
229
|
# @option options [ Symbol ] :auth_mech The authentication mechanism to
|
|
167
230
|
# use. One of :mongodb_cr, :mongodb_x509, :plain, :scram, :scram256
|
|
231
|
+
# @option options [ Hash ] :auth_mech_properties
|
|
168
232
|
# @option options [ String ] :auth_source The source to authenticate from.
|
|
169
|
-
# @option options [
|
|
233
|
+
# @option options [ true | false | nil | Integer ] :bg_error_backtrace
|
|
234
|
+
# Experimental. Set to true to log complete backtraces for errors in
|
|
235
|
+
# background threads. Set to false or nil to not log backtraces. Provide
|
|
236
|
+
# a positive integer to log up to that many backtrace lines.
|
|
237
|
+
# @option options [ Array<String> ] :compressors A list of potential
|
|
238
|
+
# compressors to use, in order of preference. The driver chooses the
|
|
239
|
+
# first compressor that is also supported by the server. Currently the
|
|
240
|
+
# driver only supports 'zstd, 'snappy' and 'zlib'.
|
|
241
|
+
# @option options [ true | false ] :direct_connection Whether to connect
|
|
242
|
+
# directly to the specified seed, bypassing topology discovery. Exactly
|
|
243
|
+
# one seed must be provided.
|
|
244
|
+
# @option options [ Symbol ] :connect Deprecated - use :direct_connection
|
|
245
|
+
# option instead of this option. The connection method to use. This
|
|
170
246
|
# forces the cluster to behave in the specified way instead of
|
|
171
|
-
# auto-discovering. One of :direct, :replica_set, :sharded
|
|
247
|
+
# auto-discovering. One of :direct, :replica_set, :sharded,
|
|
248
|
+
# :load_balanced. If :connect is set to :load_balanced, the driver
|
|
249
|
+
# will behave as if the server is a load balancer even if it isn't
|
|
250
|
+
# connected to a load balancer.
|
|
251
|
+
# @option options [ Float ] :connect_timeout The timeout, in seconds, to
|
|
252
|
+
# attempt a connection.
|
|
172
253
|
# @option options [ String ] :database The database to connect to.
|
|
173
|
-
# @option options [
|
|
174
|
-
#
|
|
175
|
-
#
|
|
254
|
+
# @option options [ Float ] :heartbeat_frequency The interval, in seconds,
|
|
255
|
+
# for the server monitor to refresh its description via hello.
|
|
256
|
+
# @option options [ Object ] :id_generator A custom object to generate ids
|
|
257
|
+
# for documents. Must respond to #generate.
|
|
258
|
+
# @option options [ true | false ] :load_balanced Whether to expect to
|
|
259
|
+
# connect to a load balancer.
|
|
176
260
|
# @option options [ Integer ] :local_threshold The local threshold boundary
|
|
177
261
|
# in seconds for selecting a near server for an operation.
|
|
178
|
-
# @option options [
|
|
179
|
-
#
|
|
180
|
-
#
|
|
262
|
+
# @option options [ Logger ] :logger A custom logger to use.
|
|
263
|
+
# @option options [ String ] :log_prefix A custom log prefix to use when
|
|
264
|
+
# logging. This option is experimental and subject to change in a future
|
|
265
|
+
# version of the driver.
|
|
181
266
|
# @option options [ Integer ] :max_idle_time The maximum seconds a socket can remain idle
|
|
182
267
|
# since it has been checked in to the pool.
|
|
183
268
|
# @option options [ Integer ] :max_pool_size The maximum size of the
|
|
184
269
|
# connection pool.
|
|
270
|
+
# @option options [ Integer ] :max_read_retries The maximum number of read
|
|
271
|
+
# retries when legacy read retries are in use.
|
|
272
|
+
# @option options [ Integer ] :max_write_retries The maximum number of write
|
|
273
|
+
# retries when legacy write retries are in use.
|
|
185
274
|
# @option options [ Integer ] :min_pool_size The minimum size of the
|
|
186
275
|
# connection pool.
|
|
187
|
-
# @option options [
|
|
188
|
-
#
|
|
189
|
-
#
|
|
190
|
-
#
|
|
191
|
-
#
|
|
192
|
-
#
|
|
193
|
-
#
|
|
276
|
+
# @option options [ true, false ] :monitoring If false is given, the
|
|
277
|
+
# client is initialized without global SDAM event subscribers and
|
|
278
|
+
# will not publish SDAM events. Command monitoring and legacy events
|
|
279
|
+
# will still be published, and the driver will still perform SDAM and
|
|
280
|
+
# monitor its cluster in order to perform server selection. Built-in
|
|
281
|
+
# driver logging of SDAM events will be disabled because it is
|
|
282
|
+
# implemented through SDAM event subscription. Client#subscribe will
|
|
283
|
+
# succeed for all event types, but subscribers to SDAM events will
|
|
284
|
+
# not be invoked. Values other than false result in default behavior
|
|
285
|
+
# which is to perform normal SDAM event publication.
|
|
286
|
+
# @option options [ true, false ] :monitoring_io For internal driver
|
|
287
|
+
# use only. Set to false to prevent SDAM-related I/O from being
|
|
288
|
+
# done by this client or servers under it. Note: setting this option
|
|
289
|
+
# to false will make the client non-functional. It is intended for
|
|
290
|
+
# use in tests which manually invoke SDAM state transitions.
|
|
291
|
+
# @option options [ true | false ] :cleanup For internal driver use only.
|
|
292
|
+
# Set to false to prevent endSessions command being sent to the server
|
|
293
|
+
# to clean up server sessions when the cluster is disconnected, and to
|
|
294
|
+
# to not start the periodic executor. If :monitoring_io is false,
|
|
295
|
+
# :cleanup automatically defaults to false as well.
|
|
296
|
+
# @option options [ String ] :password The user's password.
|
|
297
|
+
# @option options [ String ] :platform Platform information to include in
|
|
298
|
+
# the metadata printed to the mongod logs upon establishing a connection
|
|
299
|
+
# in server versions >= 3.4.
|
|
194
300
|
# @option options [ Hash ] :read The read preference options. The hash
|
|
195
301
|
# may have the following items:
|
|
196
302
|
# - *:mode* -- read preference specified as a symbol; valid values are
|
|
@@ -198,94 +304,338 @@ module Mongo
|
|
|
198
304
|
# and *:nearest*.
|
|
199
305
|
# - *:tag_sets* -- an array of hashes.
|
|
200
306
|
# - *:local_threshold*.
|
|
307
|
+
# @option options [ Hash ] :read_concern The read concern option.
|
|
308
|
+
# @option options [ Float ] :read_retry_interval The interval, in seconds,
|
|
309
|
+
# in which reads on a mongos are retried.
|
|
201
310
|
# @option options [ Symbol ] :replica_set The name of the replica set to
|
|
202
311
|
# connect to. Servers not in this replica set will be ignored.
|
|
203
|
-
# @option options [ true
|
|
312
|
+
# @option options [ true | false ] :retry_reads If true, modern retryable
|
|
313
|
+
# reads are enabled (which is the default). If false, modern retryable
|
|
314
|
+
# reads are disabled and legacy retryable reads are enabled.
|
|
315
|
+
# @option options [ true | false ] :retry_writes Retry writes once when
|
|
316
|
+
# connected to a replica set or sharded cluster versions 3.6 and up.
|
|
317
|
+
# (Default is true.)
|
|
318
|
+
# @option options [ true | false ] :scan Whether to scan all seeds
|
|
319
|
+
# in constructor. The default in driver version 2.x is to do so;
|
|
320
|
+
# driver version 3.x will not scan seeds in constructor. Opt in to the
|
|
321
|
+
# new behavior by setting this option to false. *Note:* setting
|
|
322
|
+
# this option to nil enables scanning seeds in constructor in driver
|
|
323
|
+
# version 2.x. Driver version 3.x will recognize this option but
|
|
324
|
+
# will ignore it and will never scan seeds in the constructor.
|
|
325
|
+
# @option options [ Proc ] :sdam_proc A Proc to invoke with the client
|
|
326
|
+
# as the argument prior to performing server discovery and monitoring.
|
|
327
|
+
# Use this to set up SDAM event listeners to receive events published
|
|
328
|
+
# during client construction.
|
|
329
|
+
#
|
|
330
|
+
# Note: the client is not fully constructed when sdam_proc is invoked,
|
|
331
|
+
# in particular the cluster is nil at this time. sdam_proc should
|
|
332
|
+
# limit itself to calling #subscribe and #unsubscribe methods on the
|
|
333
|
+
# client only.
|
|
334
|
+
# @option options [ Hash ] :server_api The requested server API version.
|
|
335
|
+
# This hash can have the following items:
|
|
336
|
+
# - *:version* -- string
|
|
337
|
+
# - *:strict* -- boolean
|
|
338
|
+
# - *:deprecation_errors* -- boolean
|
|
339
|
+
# @option options [ Integer ] :server_selection_timeout The timeout in seconds
|
|
340
|
+
# for selecting a server for an operation.
|
|
341
|
+
# @option options [ Float ] :socket_timeout The timeout, in seconds, to
|
|
342
|
+
# execute operations on a socket.
|
|
343
|
+
# @option options [ true, false ] :ssl Whether to use TLS.
|
|
344
|
+
# @option options [ String ] :ssl_ca_cert The file containing concatenated
|
|
345
|
+
# certificate authority certificates used to validate certs passed from the
|
|
346
|
+
# other end of the connection. Intermediate certificates should NOT be
|
|
347
|
+
# specified in files referenced by this option. One of :ssl_ca_cert,
|
|
348
|
+
# :ssl_ca_cert_string or :ssl_ca_cert_object (in order of priority) is
|
|
349
|
+
# required when using :ssl_verify.
|
|
350
|
+
# @option options [ Array<OpenSSL::X509::Certificate> ] :ssl_ca_cert_object
|
|
351
|
+
# An array of OpenSSL::X509::Certificate objects representing the
|
|
352
|
+
# certificate authority certificates used to validate certs passed from
|
|
353
|
+
# the other end of the connection. Intermediate certificates should NOT
|
|
354
|
+
# be specified in files referenced by this option. One of :ssl_ca_cert,
|
|
355
|
+
# :ssl_ca_cert_string or :ssl_ca_cert_object (in order of priority)
|
|
356
|
+
# is required when using :ssl_verify.
|
|
357
|
+
# @option options [ String ] :ssl_ca_cert_string A string containing
|
|
358
|
+
# certificate authority certificate used to validate certs passed from the
|
|
359
|
+
# other end of the connection. This option allows passing only one CA
|
|
360
|
+
# certificate to the driver. Intermediate certificates should NOT
|
|
361
|
+
# be specified in files referenced by this option. One of :ssl_ca_cert,
|
|
362
|
+
# :ssl_ca_cert_string or :ssl_ca_cert_object (in order of priority) is
|
|
363
|
+
# required when using :ssl_verify.
|
|
204
364
|
# @option options [ String ] :ssl_cert The certificate file used to identify
|
|
205
|
-
# the connection against MongoDB.
|
|
206
|
-
#
|
|
207
|
-
#
|
|
208
|
-
# certificate
|
|
209
|
-
# takes precedence over the
|
|
365
|
+
# the connection against MongoDB. A certificate chain may be passed by
|
|
366
|
+
# specifying the client certificate first followed by any intermediate
|
|
367
|
+
# certificates up to the CA certificate. The file may also contain the
|
|
368
|
+
# certificate's private key, which will be ignored. This option, if present,
|
|
369
|
+
# takes precedence over the values of :ssl_cert_string and :ssl_cert_object
|
|
210
370
|
# @option options [ OpenSSL::X509::Certificate ] :ssl_cert_object The OpenSSL::X509::Certificate
|
|
211
|
-
# used to identify the connection against MongoDB
|
|
371
|
+
# used to identify the connection against MongoDB. Only one certificate
|
|
372
|
+
# may be passed through this option.
|
|
373
|
+
# @option options [ String ] :ssl_cert_string A string containing the PEM-encoded
|
|
374
|
+
# certificate used to identify the connection against MongoDB. A certificate
|
|
375
|
+
# chain may be passed by specifying the client certificate first followed
|
|
376
|
+
# by any intermediate certificates up to the CA certificate. The string
|
|
377
|
+
# may also contain the certificate's private key, which will be ignored,
|
|
378
|
+
# This option, if present, takes precedence over the value of :ssl_cert_object
|
|
212
379
|
# @option options [ String ] :ssl_key The private keyfile used to identify the
|
|
213
380
|
# connection against MongoDB. Note that even if the key is stored in the same
|
|
214
381
|
# file as the certificate, both need to be explicitly specified. This option,
|
|
215
382
|
# if present, takes precedence over the values of :ssl_key_string and :ssl_key_object
|
|
216
|
-
# @option options [ String ] :ssl_key_string A string containing the PEM-encoded private key
|
|
217
|
-
# used to identify the connection against MongoDB. This parameter, if present,
|
|
218
|
-
# takes precedence over the value of option :ssl_key_object
|
|
219
383
|
# @option options [ OpenSSL::PKey ] :ssl_key_object The private key used to identify the
|
|
220
384
|
# connection against MongoDB
|
|
221
385
|
# @option options [ String ] :ssl_key_pass_phrase A passphrase for the private key.
|
|
222
|
-
# @option options [
|
|
223
|
-
#
|
|
224
|
-
#
|
|
225
|
-
#
|
|
226
|
-
#
|
|
227
|
-
# :
|
|
228
|
-
#
|
|
229
|
-
#
|
|
230
|
-
#
|
|
231
|
-
#
|
|
232
|
-
# @option options [
|
|
233
|
-
#
|
|
234
|
-
#
|
|
235
|
-
# :ssl_ca_cert_string or :ssl_ca_cert_object (in order of priority) is required for :ssl_verify.
|
|
236
|
-
# @option options [ Float ] :socket_timeout The timeout, in seconds, to
|
|
237
|
-
# execute operations on a socket.
|
|
238
|
-
# @option options [ String ] :user The user name.
|
|
239
|
-
# @option options [ Hash ] :write The write concern options. Can be :w =>
|
|
240
|
-
# Integer|String, :fsync => Boolean, :j => Boolean.
|
|
241
|
-
# @option options [ Hash ] :read_concern The read concern option.
|
|
242
|
-
# @option options [ true, false ] :monitoring Initializes a client without
|
|
243
|
-
# any default monitoring if false is provided.
|
|
244
|
-
# @option options [ Logger ] :logger A custom logger if desired.
|
|
386
|
+
# @option options [ String ] :ssl_key_string A string containing the PEM-encoded private key
|
|
387
|
+
# used to identify the connection against MongoDB. This parameter, if present,
|
|
388
|
+
# takes precedence over the value of option :ssl_key_object
|
|
389
|
+
# @option options [ true, false ] :ssl_verify Whether to perform peer certificate validation and
|
|
390
|
+
# hostname verification. Note that the decision of whether to validate certificates will be
|
|
391
|
+
# overridden if :ssl_verify_certificate is set, and the decision of whether to validate
|
|
392
|
+
# hostnames will be overridden if :ssl_verify_hostname is set.
|
|
393
|
+
# @option options [ true, false ] :ssl_verify_certificate Whether to perform peer certificate
|
|
394
|
+
# validation. This setting overrides :ssl_verify with respect to whether certificate
|
|
395
|
+
# validation is performed.
|
|
396
|
+
# @option options [ true, false ] :ssl_verify_hostname Whether to perform peer hostname
|
|
397
|
+
# validation. This setting overrides :ssl_verify with respect to whether hostname validation
|
|
398
|
+
# is performed.
|
|
245
399
|
# @option options [ true, false ] :truncate_logs Whether to truncate the
|
|
246
400
|
# logs at the default 250 characters.
|
|
247
|
-
# @option options [
|
|
248
|
-
#
|
|
249
|
-
#
|
|
250
|
-
#
|
|
251
|
-
#
|
|
252
|
-
#
|
|
253
|
-
#
|
|
254
|
-
#
|
|
255
|
-
#
|
|
256
|
-
#
|
|
401
|
+
# @option options [ String ] :user The user name.
|
|
402
|
+
# @option options [ Float ] :wait_queue_timeout The time to wait, in
|
|
403
|
+
# seconds, in the connection pool for a connection to be checked in.
|
|
404
|
+
# @option options [ Array<Hash> ] :wrapping_libraries Information about
|
|
405
|
+
# libraries such as ODMs that are wrapping the driver, to be added to
|
|
406
|
+
# metadata sent to the server. Specify the lower level libraries first.
|
|
407
|
+
# Allowed hash keys: :name, :version, :platform.
|
|
408
|
+
# @option options [ Hash ] :write Deprecated. Equivalent to :write_concern
|
|
409
|
+
# option.
|
|
410
|
+
# @option options [ Hash ] :write_concern The write concern options.
|
|
411
|
+
# Can be :w => Integer|String, :wtimeout => Integer (in milliseconds),
|
|
412
|
+
# :j => Boolean, :fsync => Boolean.
|
|
257
413
|
# @option options [ Integer ] :zlib_compression_level The Zlib compression level to use, if using compression.
|
|
258
414
|
# See Ruby's Zlib module for valid levels.
|
|
259
|
-
# @option options [
|
|
260
|
-
#
|
|
261
|
-
# @option options [
|
|
262
|
-
#
|
|
263
|
-
#
|
|
264
|
-
#
|
|
415
|
+
# @option options [ Hash ] :resolv_options For internal driver use only.
|
|
416
|
+
# Options to pass through to Resolv::DNS constructor for SRV lookups.
|
|
417
|
+
# @option options [ Hash ] :auto_encryption_options Auto-encryption related
|
|
418
|
+
# options.
|
|
419
|
+
# - :key_vault_client => Client | nil, a client connected to the MongoDB
|
|
420
|
+
# instance containing the encryption key vault
|
|
421
|
+
# - :key_vault_namespace => String, the namespace of the key vault in the
|
|
422
|
+
# format database.collection
|
|
423
|
+
# - :kms_providers => Hash, A hash of key management service configuration
|
|
424
|
+
# information. Valid hash keys are :local or :aws. There may be more
|
|
425
|
+
# than one kms provider specified.
|
|
426
|
+
# - :schema_map => Hash | nil, JSONSchema for one or more collections
|
|
427
|
+
# specifying which fields should be encrypted.
|
|
428
|
+
# - Note: Schemas supplied in the schema_map only apply to configuring
|
|
429
|
+
# automatic encryption for client side encryption. Other validation
|
|
430
|
+
# rules in the JSON schema will not be enforced by the driver and will
|
|
431
|
+
# result in an error.
|
|
432
|
+
# - Note: Supplying a schema_map provides more security than relying on
|
|
433
|
+
# JSON Schemas obtained from the server. It protects against a
|
|
434
|
+
# malicious server advertising a false JSON Schema, which could trick
|
|
435
|
+
# the client into sending unencrypted data that should be encrypted.
|
|
436
|
+
# - :bypass_auto_encryption => Boolean, when true, disables auto encryption;
|
|
437
|
+
# defaults to false.
|
|
438
|
+
# - :extra_options => Hash | nil, options related to spawning mongocryptd
|
|
439
|
+
# (this part of the API is subject to change).
|
|
440
|
+
#
|
|
441
|
+
# Notes on automatic encryption:
|
|
442
|
+
# - Automatic encryption is an enterprise only feature that only applies
|
|
443
|
+
# to operations on a collection.
|
|
444
|
+
# - Automatic encryption is not supported for operations on a database or
|
|
445
|
+
# view.
|
|
446
|
+
# - Automatic encryption requires the authenticated user to have the
|
|
447
|
+
# listCollections privilege.
|
|
448
|
+
# - At worst, automatic encryption may triple the number of connections
|
|
449
|
+
# used by the Client at any one time.
|
|
450
|
+
# - If automatic encryption fails on an operation, use a MongoClient
|
|
451
|
+
# configured with bypass_auto_encryption: true and use
|
|
452
|
+
# ClientEncryption.encrypt to manually encrypt values.
|
|
453
|
+
# - Enabling Client Side Encryption reduces the maximum write batch size
|
|
454
|
+
# and may have a negative performance impact.
|
|
265
455
|
#
|
|
266
456
|
# @since 2.0.0
|
|
267
|
-
def initialize(addresses_or_uri, options =
|
|
268
|
-
|
|
457
|
+
def initialize(addresses_or_uri, options = nil)
|
|
458
|
+
options = options ? options.dup : {}
|
|
459
|
+
|
|
460
|
+
srv_uri = nil
|
|
269
461
|
if addresses_or_uri.is_a?(::String)
|
|
270
462
|
uri = URI.get(addresses_or_uri, options)
|
|
463
|
+
if uri.is_a?(URI::SRVProtocol)
|
|
464
|
+
# If the URI is an SRV URI, note this so that we can start
|
|
465
|
+
# SRV polling if the topology is a sharded cluster.
|
|
466
|
+
srv_uri = uri
|
|
467
|
+
end
|
|
271
468
|
addresses = uri.servers
|
|
272
|
-
|
|
469
|
+
uri_options = uri.client_options.dup
|
|
470
|
+
# Special handing for :write and :write_concern: allow client Ruby
|
|
471
|
+
# options to override URI options, even when the Ruby option uses the
|
|
472
|
+
# deprecated :write key and the URI option uses the current
|
|
473
|
+
# :write_concern key
|
|
474
|
+
if options[:write]
|
|
475
|
+
uri_options.delete(:write_concern)
|
|
476
|
+
end
|
|
477
|
+
options = uri_options.merge(options)
|
|
478
|
+
@srv_records = uri.srv_records
|
|
273
479
|
else
|
|
274
480
|
addresses = addresses_or_uri
|
|
481
|
+
addresses.each do |addr|
|
|
482
|
+
if addr =~ /\Amongodb(\+srv)?:\/\//i
|
|
483
|
+
raise ArgumentError, "Host '#{addr}' should not contain protocol. Did you mean to not use an array?"
|
|
484
|
+
end
|
|
485
|
+
end
|
|
486
|
+
|
|
487
|
+
@srv_records = nil
|
|
488
|
+
end
|
|
489
|
+
|
|
490
|
+
options = self.class.canonicalize_ruby_options(options)
|
|
491
|
+
|
|
492
|
+
# The server API version is specified to be a string.
|
|
493
|
+
# However, it is very annoying to always provide the number 1 as a string,
|
|
494
|
+
# therefore cast to the string type here.
|
|
495
|
+
if server_api = options[:server_api]
|
|
496
|
+
if server_api.is_a?(Hash)
|
|
497
|
+
server_api = Options::Redacted.new(server_api)
|
|
498
|
+
if (version = server_api[:version]).is_a?(Integer)
|
|
499
|
+
options[:server_api] = server_api.merge(version: version.to_s)
|
|
500
|
+
end
|
|
501
|
+
end
|
|
275
502
|
end
|
|
276
|
-
|
|
503
|
+
|
|
277
504
|
# Special handling for sdam_proc as it is only used during client
|
|
278
505
|
# construction
|
|
279
506
|
sdam_proc = options.delete(:sdam_proc)
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
507
|
+
|
|
508
|
+
# For gssapi service_name, the default option is given in a hash
|
|
509
|
+
# (one level down from the top level).
|
|
510
|
+
merged_options = default_options(options)
|
|
511
|
+
options.each do |k, v|
|
|
512
|
+
default_v = merged_options[k]
|
|
513
|
+
if Hash === default_v
|
|
514
|
+
v = default_v.merge(v)
|
|
515
|
+
end
|
|
516
|
+
merged_options[k] = v
|
|
517
|
+
end
|
|
518
|
+
options = merged_options
|
|
519
|
+
|
|
520
|
+
options.keys.each do |k|
|
|
521
|
+
if options[k].nil?
|
|
522
|
+
options.delete(k)
|
|
523
|
+
end
|
|
524
|
+
end
|
|
525
|
+
|
|
526
|
+
@options = validate_new_options!(options)
|
|
527
|
+
=begin WriteConcern object support
|
|
528
|
+
if @options[:write_concern].is_a?(WriteConcern::Base)
|
|
529
|
+
# Cache the instance so that we do not needlessly reconstruct it.
|
|
530
|
+
@write_concern = @options[:write_concern]
|
|
531
|
+
@options[:write_concern] = @write_concern.options
|
|
532
|
+
end
|
|
533
|
+
=end
|
|
534
|
+
@options.freeze
|
|
535
|
+
validate_options!(addresses)
|
|
536
|
+
validate_authentication_options!
|
|
537
|
+
|
|
538
|
+
database_options = @options.dup
|
|
539
|
+
database_options.delete(:server_api)
|
|
540
|
+
@database = Database.new(self, @options[:database], database_options)
|
|
541
|
+
|
|
542
|
+
# Temporarily set monitoring so that event subscriptions can be
|
|
543
|
+
# set up without there being a cluster
|
|
544
|
+
@monitoring = Monitoring.new(@options)
|
|
545
|
+
|
|
283
546
|
if sdam_proc
|
|
284
|
-
@cluster = Cluster.new([], monitoring, @options)
|
|
285
547
|
sdam_proc.call(self)
|
|
286
548
|
end
|
|
287
|
-
|
|
288
|
-
|
|
549
|
+
|
|
550
|
+
@connect_lock = Mutex.new
|
|
551
|
+
@connect_lock.synchronize do
|
|
552
|
+
@cluster = Cluster.new(addresses, @monitoring,
|
|
553
|
+
cluster_options.merge(srv_uri: srv_uri))
|
|
554
|
+
end
|
|
555
|
+
|
|
556
|
+
begin
|
|
557
|
+
# Unset monitoring, it will be taken out of cluster from now on
|
|
558
|
+
remove_instance_variable('@monitoring')
|
|
559
|
+
|
|
560
|
+
if @options[:auto_encryption_options]
|
|
561
|
+
@connect_lock.synchronize do
|
|
562
|
+
build_encrypter
|
|
563
|
+
end
|
|
564
|
+
end
|
|
565
|
+
|
|
566
|
+
rescue
|
|
567
|
+
begin
|
|
568
|
+
@cluster.disconnect!
|
|
569
|
+
rescue => e
|
|
570
|
+
log_warn("Eror disconnecting cluster in client constructor's exception handler: #{e.class}: #{e}")
|
|
571
|
+
# Drop this exception so that the original exception is raised
|
|
572
|
+
end
|
|
573
|
+
raise
|
|
574
|
+
end
|
|
575
|
+
|
|
576
|
+
if block_given?
|
|
577
|
+
begin
|
|
578
|
+
yield(self)
|
|
579
|
+
ensure
|
|
580
|
+
close
|
|
581
|
+
end
|
|
582
|
+
end
|
|
583
|
+
end
|
|
584
|
+
|
|
585
|
+
# @api private
|
|
586
|
+
def cluster_options
|
|
587
|
+
# We share clusters when a new client with different CRUD_OPTIONS
|
|
588
|
+
# is requested; therefore, cluster should not be getting any of these
|
|
589
|
+
# options upon instantiation
|
|
590
|
+
options.reject do |key, value|
|
|
591
|
+
CRUD_OPTIONS.include?(key.to_sym)
|
|
592
|
+
end.merge(
|
|
593
|
+
# but need to put the database back in for auth...
|
|
594
|
+
database: options[:database],
|
|
595
|
+
|
|
596
|
+
# Put these options in for legacy compatibility, but note that
|
|
597
|
+
# their values on the client and the cluster do not have to match -
|
|
598
|
+
# applications should read these values from client, not from cluster
|
|
599
|
+
max_read_retries: options[:max_read_retries],
|
|
600
|
+
read_retry_interval: options[:read_retry_interval],
|
|
601
|
+
).tap do |options|
|
|
602
|
+
# If the client has a cluster already, forward srv_uri to the new
|
|
603
|
+
# cluster to maintain SRV monitoring. If the client is brand new,
|
|
604
|
+
# its constructor sets srv_uri manually.
|
|
605
|
+
if cluster
|
|
606
|
+
options.update(srv_uri: cluster.options[:srv_uri])
|
|
607
|
+
end
|
|
608
|
+
end
|
|
609
|
+
end
|
|
610
|
+
|
|
611
|
+
# Get the maximum number of times the client can retry a read operation
|
|
612
|
+
# when using legacy read retries.
|
|
613
|
+
#
|
|
614
|
+
# @return [ Integer ] The maximum number of retries.
|
|
615
|
+
#
|
|
616
|
+
# @api private
|
|
617
|
+
def max_read_retries
|
|
618
|
+
options[:max_read_retries] || Cluster::MAX_READ_RETRIES
|
|
619
|
+
end
|
|
620
|
+
|
|
621
|
+
# Get the interval, in seconds, in which read retries when using legacy
|
|
622
|
+
# read retries.
|
|
623
|
+
#
|
|
624
|
+
# @return [ Float ] The interval.
|
|
625
|
+
#
|
|
626
|
+
# @api private
|
|
627
|
+
def read_retry_interval
|
|
628
|
+
options[:read_retry_interval] || Cluster::READ_RETRY_INTERVAL
|
|
629
|
+
end
|
|
630
|
+
|
|
631
|
+
# Get the maximum number of times the client can retry a write operation
|
|
632
|
+
# when using legacy write retries.
|
|
633
|
+
#
|
|
634
|
+
# @return [ Integer ] The maximum number of retries.
|
|
635
|
+
#
|
|
636
|
+
# @api private
|
|
637
|
+
def max_write_retries
|
|
638
|
+
options[:max_write_retries] || Cluster::MAX_WRITE_RETRIES
|
|
289
639
|
end
|
|
290
640
|
|
|
291
641
|
# Get an inspection of the client as a string.
|
|
@@ -297,7 +647,19 @@ module Mongo
|
|
|
297
647
|
#
|
|
298
648
|
# @since 2.0.0
|
|
299
649
|
def inspect
|
|
300
|
-
"#<Mongo::Client:0x#{object_id} cluster=#{cluster.
|
|
650
|
+
"#<Mongo::Client:0x#{object_id} cluster=#{cluster.summary}>"
|
|
651
|
+
end
|
|
652
|
+
|
|
653
|
+
# Get a summary of the client state.
|
|
654
|
+
#
|
|
655
|
+
# @note The exact format and layout of the returned summary string is
|
|
656
|
+
# not part of the driver's public API and may be changed at any time.
|
|
657
|
+
#
|
|
658
|
+
# @return [ String ] The summary string.
|
|
659
|
+
#
|
|
660
|
+
# @since 2.7.0
|
|
661
|
+
def summary
|
|
662
|
+
"#<Client cluster=#{cluster.summary}>"
|
|
301
663
|
end
|
|
302
664
|
|
|
303
665
|
# Get the server selector. It either uses the read preference
|
|
@@ -311,7 +673,11 @@ module Mongo
|
|
|
311
673
|
#
|
|
312
674
|
# @since 2.5.0
|
|
313
675
|
def server_selector
|
|
314
|
-
@server_selector ||=
|
|
676
|
+
@server_selector ||= if read_preference
|
|
677
|
+
ServerSelector.get(read_preference)
|
|
678
|
+
else
|
|
679
|
+
ServerSelector.primary
|
|
680
|
+
end
|
|
315
681
|
end
|
|
316
682
|
|
|
317
683
|
# Get the read preference from the options passed to the client.
|
|
@@ -321,7 +687,7 @@ module Mongo
|
|
|
321
687
|
#
|
|
322
688
|
# @return [ BSON::Document ] The user-defined read preference.
|
|
323
689
|
# The document may have the following fields:
|
|
324
|
-
# - *:
|
|
690
|
+
# - *:mode* -- read preference specified as a symbol; valid values are
|
|
325
691
|
# *:primary*, *:primary_preferred*, *:secondary*, *:secondary_preferred*
|
|
326
692
|
# and *:nearest*.
|
|
327
693
|
# - *:tag_sets* -- an array of hashes.
|
|
@@ -332,25 +698,35 @@ module Mongo
|
|
|
332
698
|
@read_preference ||= options[:read]
|
|
333
699
|
end
|
|
334
700
|
|
|
335
|
-
#
|
|
336
|
-
#
|
|
701
|
+
# Creates a new client configured to use the database with the provided
|
|
702
|
+
# name, and using the other options configured in this client.
|
|
337
703
|
#
|
|
338
|
-
# @
|
|
704
|
+
# @note The new client shares the cluster with the original client,
|
|
705
|
+
# and as a result also shares the monitoring instance and monitoring
|
|
706
|
+
# event subscribers.
|
|
707
|
+
#
|
|
708
|
+
# @example Create a client for the `users' database.
|
|
339
709
|
# client.use(:users)
|
|
340
710
|
#
|
|
341
711
|
# @param [ String, Symbol ] name The name of the database to use.
|
|
342
712
|
#
|
|
343
|
-
# @return [ Mongo::Client ]
|
|
713
|
+
# @return [ Mongo::Client ] A new client instance.
|
|
344
714
|
#
|
|
345
715
|
# @since 2.0.0
|
|
346
716
|
def use(name)
|
|
347
717
|
with(database: name)
|
|
348
718
|
end
|
|
349
719
|
|
|
350
|
-
#
|
|
720
|
+
# Creates a new client with the passed options merged over the existing
|
|
351
721
|
# options of this client. Useful for one-offs to change specific options
|
|
352
722
|
# without altering the original client.
|
|
353
723
|
#
|
|
724
|
+
# @note Depending on options given, the returned client may share the
|
|
725
|
+
# cluster with the original client or be created with a new cluster.
|
|
726
|
+
# If a new cluster is created, the monitoring event subscribers on
|
|
727
|
+
# the new client are set to the default event subscriber set and
|
|
728
|
+
# none of the subscribers on the original client are copied over.
|
|
729
|
+
#
|
|
354
730
|
# @example Get a client with changed options.
|
|
355
731
|
# client.with(:read => { :mode => :primary_preferred })
|
|
356
732
|
#
|
|
@@ -359,10 +735,9 @@ module Mongo
|
|
|
359
735
|
# @return [ Mongo::Client ] A new client instance.
|
|
360
736
|
#
|
|
361
737
|
# @since 2.0.0
|
|
362
|
-
def with(new_options =
|
|
738
|
+
def with(new_options = nil)
|
|
363
739
|
clone.tap do |client|
|
|
364
|
-
opts =
|
|
365
|
-
client.options.update(opts)
|
|
740
|
+
opts = client.update_options(new_options || Options::Redacted.new)
|
|
366
741
|
Database.create(client)
|
|
367
742
|
# We can't use the same cluster if some options that would affect it
|
|
368
743
|
# have changed.
|
|
@@ -372,6 +747,62 @@ module Mongo
|
|
|
372
747
|
end
|
|
373
748
|
end
|
|
374
749
|
|
|
750
|
+
# Updates this client's options from new_options, validating all options.
|
|
751
|
+
#
|
|
752
|
+
# The new options may be transformed according to various rules.
|
|
753
|
+
# The final hash of options actually applied to the client is returned.
|
|
754
|
+
#
|
|
755
|
+
# If options fail validation, this method may warn or raise an exception.
|
|
756
|
+
# If this method raises an exception, the client should be discarded
|
|
757
|
+
# (similarly to if a constructor raised an exception).
|
|
758
|
+
#
|
|
759
|
+
# @param [ Hash ] new_options The new options to use.
|
|
760
|
+
#
|
|
761
|
+
# @return [ Hash ] Modified new options written into the client.
|
|
762
|
+
#
|
|
763
|
+
# @api private
|
|
764
|
+
def update_options(new_options)
|
|
765
|
+
old_options = @options
|
|
766
|
+
|
|
767
|
+
new_options = self.class.canonicalize_ruby_options(new_options || {})
|
|
768
|
+
|
|
769
|
+
validate_new_options!(new_options).tap do |opts|
|
|
770
|
+
# Our options are frozen
|
|
771
|
+
options = @options.dup
|
|
772
|
+
if options[:write] && opts[:write_concern]
|
|
773
|
+
options.delete(:write)
|
|
774
|
+
end
|
|
775
|
+
if options[:write_concern] && opts[:write]
|
|
776
|
+
options.delete(:write_concern)
|
|
777
|
+
end
|
|
778
|
+
|
|
779
|
+
options.update(opts)
|
|
780
|
+
@options = options.freeze
|
|
781
|
+
|
|
782
|
+
auto_encryption_options_changed =
|
|
783
|
+
@options[:auto_encryption_options] != old_options[:auto_encryption_options]
|
|
784
|
+
|
|
785
|
+
# If there are new auto_encryption_options, create a new encrypter.
|
|
786
|
+
# Otherwise, allow the new client to share an encrypter with the
|
|
787
|
+
# original client.
|
|
788
|
+
#
|
|
789
|
+
# If auto_encryption_options are nil, set @encrypter to nil, but do not
|
|
790
|
+
# close the encrypter because it may still be used by the original client.
|
|
791
|
+
if @options[:auto_encryption_options] && auto_encryption_options_changed
|
|
792
|
+
@connect_lock.synchronize do
|
|
793
|
+
build_encrypter
|
|
794
|
+
end
|
|
795
|
+
elsif @options[:auto_encryption_options].nil?
|
|
796
|
+
@connect_lock.synchronize do
|
|
797
|
+
@encrypter = nil
|
|
798
|
+
end
|
|
799
|
+
end
|
|
800
|
+
|
|
801
|
+
validate_options!
|
|
802
|
+
validate_authentication_options!
|
|
803
|
+
end
|
|
804
|
+
end
|
|
805
|
+
|
|
375
806
|
# Get the read concern for this client.
|
|
376
807
|
#
|
|
377
808
|
# @example Get the client read concern.
|
|
@@ -381,10 +812,9 @@ module Mongo
|
|
|
381
812
|
#
|
|
382
813
|
# @since 2.6.0
|
|
383
814
|
def read_concern
|
|
384
|
-
|
|
815
|
+
options[:read_concern]
|
|
385
816
|
end
|
|
386
817
|
|
|
387
|
-
|
|
388
818
|
# Get the write concern for this client. If no option was provided, then a
|
|
389
819
|
# default single server acknowledgement will be used.
|
|
390
820
|
#
|
|
@@ -395,19 +825,28 @@ module Mongo
|
|
|
395
825
|
#
|
|
396
826
|
# @since 2.0.0
|
|
397
827
|
def write_concern
|
|
398
|
-
@write_concern ||= WriteConcern.get(options[:write])
|
|
828
|
+
@write_concern ||= WriteConcern.get(options[:write_concern] || options[:write])
|
|
399
829
|
end
|
|
400
830
|
|
|
401
831
|
# Close all connections.
|
|
402
832
|
#
|
|
403
|
-
# @example Disconnect the client.
|
|
404
|
-
# client.close
|
|
405
|
-
#
|
|
406
833
|
# @return [ true ] Always true.
|
|
407
834
|
#
|
|
408
835
|
# @since 2.1.0
|
|
409
836
|
def close
|
|
410
|
-
@
|
|
837
|
+
@connect_lock.synchronize do
|
|
838
|
+
do_close
|
|
839
|
+
end
|
|
840
|
+
true
|
|
841
|
+
end
|
|
842
|
+
|
|
843
|
+
# Close encrypter and clean up auto-encryption resources.
|
|
844
|
+
#
|
|
845
|
+
# @return [ true ] Always true.
|
|
846
|
+
def close_encrypter
|
|
847
|
+
@encrypter.close if @encrypter
|
|
848
|
+
|
|
849
|
+
true
|
|
411
850
|
end
|
|
412
851
|
|
|
413
852
|
# Reconnect the client.
|
|
@@ -420,11 +859,17 @@ module Mongo
|
|
|
420
859
|
# @since 2.1.0
|
|
421
860
|
def reconnect
|
|
422
861
|
addresses = cluster.addresses.map(&:to_s)
|
|
423
|
-
monitoring = cluster.monitoring
|
|
424
862
|
|
|
425
|
-
@
|
|
863
|
+
@connect_lock.synchronize do
|
|
864
|
+
do_close rescue nil
|
|
865
|
+
|
|
866
|
+
@cluster = Cluster.new(addresses, monitoring, cluster_options)
|
|
867
|
+
|
|
868
|
+
if @options[:auto_encryption_options]
|
|
869
|
+
build_encrypter
|
|
870
|
+
end
|
|
871
|
+
end
|
|
426
872
|
|
|
427
|
-
@cluster = Cluster.new(addresses, monitoring, options)
|
|
428
873
|
true
|
|
429
874
|
end
|
|
430
875
|
|
|
@@ -436,11 +881,18 @@ module Mongo
|
|
|
436
881
|
# @param [ Hash ] filter The filter criteria for getting a list of databases.
|
|
437
882
|
# @param [ Hash ] opts The command options.
|
|
438
883
|
#
|
|
884
|
+
# @option opts [ true, false ] :authorized_databases A flag that determines
|
|
885
|
+
# which databases are returned based on user privileges when access control
|
|
886
|
+
# is enabled
|
|
887
|
+
#
|
|
888
|
+
# See https://docs.mongodb.com/manual/reference/command/listDatabases/
|
|
889
|
+
# for more information and usage.
|
|
890
|
+
#
|
|
439
891
|
# @return [ Array<String> ] The names of the databases.
|
|
440
892
|
#
|
|
441
893
|
# @since 2.0.5
|
|
442
894
|
def database_names(filter = {}, opts = {})
|
|
443
|
-
list_databases(filter, true, opts).collect{ |info| info[
|
|
895
|
+
list_databases(filter, true, opts).collect{ |info| info['name'] }
|
|
444
896
|
end
|
|
445
897
|
|
|
446
898
|
# Get info for each database.
|
|
@@ -452,6 +904,13 @@ module Mongo
|
|
|
452
904
|
# @param [ true, false ] name_only Whether to only return each database name without full metadata.
|
|
453
905
|
# @param [ Hash ] opts The command options.
|
|
454
906
|
#
|
|
907
|
+
# @option opts [ true, false ] :authorized_databases A flag that determines
|
|
908
|
+
# which databases are returned based on user privileges when access control
|
|
909
|
+
# is enabled
|
|
910
|
+
#
|
|
911
|
+
# See https://docs.mongodb.com/manual/reference/command/listDatabases/
|
|
912
|
+
# for more information and usage.
|
|
913
|
+
#
|
|
455
914
|
# @return [ Array<Hash> ] The info for each database.
|
|
456
915
|
#
|
|
457
916
|
# @since 2.0.5
|
|
@@ -459,7 +918,8 @@ module Mongo
|
|
|
459
918
|
cmd = { listDatabases: 1 }
|
|
460
919
|
cmd[:nameOnly] = !!name_only
|
|
461
920
|
cmd[:filter] = filter unless filter.empty?
|
|
462
|
-
|
|
921
|
+
cmd[:authorizedDatabases] = true if opts[:authorized_databases]
|
|
922
|
+
use(Database::ADMIN).database.read_command(cmd, opts).first[Database::DATABASES]
|
|
463
923
|
end
|
|
464
924
|
|
|
465
925
|
# Returns a list of Mongo::Database objects.
|
|
@@ -481,20 +941,34 @@ module Mongo
|
|
|
481
941
|
|
|
482
942
|
# Start a session.
|
|
483
943
|
#
|
|
944
|
+
# If the deployment does not support sessions, raises
|
|
945
|
+
# Mongo::Error::InvalidSession. This exception can also be raised when
|
|
946
|
+
# the driver is not connected to a data-bearing server, for example
|
|
947
|
+
# during failover.
|
|
948
|
+
#
|
|
484
949
|
# @example Start a session.
|
|
485
950
|
# client.start_session(causal_consistency: true)
|
|
486
951
|
#
|
|
487
|
-
# @param [ Hash ] options The session options.
|
|
952
|
+
# @param [ Hash ] options The session options. Accepts the options
|
|
953
|
+
# that Session#initialize accepts.
|
|
488
954
|
#
|
|
489
|
-
# @note A Session cannot be used by multiple threads at once; session
|
|
490
|
-
# thread-safe.
|
|
955
|
+
# @note A Session cannot be used by multiple threads at once; session
|
|
956
|
+
# objects are not thread-safe.
|
|
491
957
|
#
|
|
492
958
|
# @return [ Session ] The session.
|
|
493
959
|
#
|
|
494
960
|
# @since 2.5.0
|
|
495
961
|
def start_session(options = {})
|
|
496
|
-
|
|
497
|
-
|
|
962
|
+
session = get_session!(options.merge(implicit: false))
|
|
963
|
+
if block_given?
|
|
964
|
+
begin
|
|
965
|
+
yield session
|
|
966
|
+
ensure
|
|
967
|
+
session.end_session
|
|
968
|
+
end
|
|
969
|
+
else
|
|
970
|
+
session
|
|
971
|
+
end
|
|
498
972
|
end
|
|
499
973
|
|
|
500
974
|
# As of version 3.6 of the MongoDB server, a ``$changeStream`` pipeline stage is supported
|
|
@@ -540,14 +1014,136 @@ module Mongo
|
|
|
540
1014
|
options)
|
|
541
1015
|
end
|
|
542
1016
|
|
|
543
|
-
|
|
544
|
-
|
|
1017
|
+
# Returns a session to use for operations if possible.
|
|
1018
|
+
#
|
|
1019
|
+
# If :session option is set, validates that session and returns it.
|
|
1020
|
+
# Otherwise, if deployment supports sessions, creates a new session and
|
|
1021
|
+
# returns it. When a new session is created, the session will be implicit
|
|
1022
|
+
# (lifecycle is managed by the driver) if the :implicit option is given,
|
|
1023
|
+
# otherwise the session will be explicit (lifecycle managed by the
|
|
1024
|
+
# application). If deployment does not support session, returns nil.
|
|
1025
|
+
#
|
|
1026
|
+
# @option options [ true | false ] :implicit When no session is passed in,
|
|
1027
|
+
# whether to create an implicit session.
|
|
1028
|
+
# @option options [ Session ] :session The session to validate and return.
|
|
1029
|
+
#
|
|
1030
|
+
# @return [ Session | nil ] Session object or nil if sessions are not
|
|
1031
|
+
# supported by the deployment.
|
|
1032
|
+
#
|
|
1033
|
+
# @api private
|
|
545
1034
|
def get_session(options = {})
|
|
546
|
-
|
|
1035
|
+
get_session!(options)
|
|
1036
|
+
rescue Error::SessionsNotSupported
|
|
1037
|
+
nil
|
|
547
1038
|
end
|
|
548
1039
|
|
|
1040
|
+
# Creates a session to use for operations if possible and yields it to
|
|
1041
|
+
# the provided block.
|
|
1042
|
+
#
|
|
1043
|
+
# If :session option is set, validates that session and uses it.
|
|
1044
|
+
# Otherwise, if deployment supports sessions, creates a new session and
|
|
1045
|
+
# uses it. When a new session is created, the session will be implicit
|
|
1046
|
+
# (lifecycle is managed by the driver) if the :implicit option is given,
|
|
1047
|
+
# otherwise the session will be explicit (lifecycle managed by the
|
|
1048
|
+
# application). If deployment does not support session, yields nil to
|
|
1049
|
+
# the block.
|
|
1050
|
+
#
|
|
1051
|
+
# When the block finishes, if the session was created and was implicit,
|
|
1052
|
+
# or if an implicit session was passed in, the session is ended which
|
|
1053
|
+
# returns it to the pool of available sessions.
|
|
1054
|
+
#
|
|
1055
|
+
# @option options [ true | false ] :implicit When no session is passed in,
|
|
1056
|
+
# whether to create an implicit session.
|
|
1057
|
+
# @option options [ Session ] :session The session to validate and return.
|
|
1058
|
+
#
|
|
1059
|
+
# @api private
|
|
549
1060
|
def with_session(options = {}, &block)
|
|
550
|
-
|
|
1061
|
+
session = get_session(options)
|
|
1062
|
+
|
|
1063
|
+
yield session
|
|
1064
|
+
ensure
|
|
1065
|
+
if session && session.implicit?
|
|
1066
|
+
session.end_session
|
|
1067
|
+
end
|
|
1068
|
+
end
|
|
1069
|
+
|
|
1070
|
+
class << self
|
|
1071
|
+
# Lowercases auth mechanism properties, if given, in the specified
|
|
1072
|
+
# options, then converts the options to an instance of Options::Redacted.
|
|
1073
|
+
#
|
|
1074
|
+
# @api private
|
|
1075
|
+
def canonicalize_ruby_options(options)
|
|
1076
|
+
Options::Redacted.new(Hash[options.map do |k, v|
|
|
1077
|
+
if k == :auth_mech_properties || k == 'auth_mech_properties'
|
|
1078
|
+
if v
|
|
1079
|
+
v = Hash[v.map { |pk, pv| [pk.downcase, pv] }]
|
|
1080
|
+
end
|
|
1081
|
+
end
|
|
1082
|
+
[k, v]
|
|
1083
|
+
end])
|
|
1084
|
+
end
|
|
1085
|
+
end
|
|
1086
|
+
|
|
1087
|
+
private
|
|
1088
|
+
|
|
1089
|
+
# Create a new encrypter object using the client's auto encryption options
|
|
1090
|
+
def build_encrypter
|
|
1091
|
+
@encrypter = Crypt::AutoEncrypter.new(
|
|
1092
|
+
@options[:auto_encryption_options].merge(client: self)
|
|
1093
|
+
)
|
|
1094
|
+
end
|
|
1095
|
+
|
|
1096
|
+
# Generate default client options based on the URI and options
|
|
1097
|
+
# passed into the Client constructor.
|
|
1098
|
+
def default_options(options)
|
|
1099
|
+
Database::DEFAULT_OPTIONS.dup.tap do |default_options|
|
|
1100
|
+
if options[:auth_mech] || options[:user]
|
|
1101
|
+
default_options[:auth_source] = Auth::User.default_auth_source(options)
|
|
1102
|
+
end
|
|
1103
|
+
|
|
1104
|
+
if options[:auth_mech] == :gssapi
|
|
1105
|
+
default_options[:auth_mech_properties] = { service_name: 'mongodb' }
|
|
1106
|
+
end
|
|
1107
|
+
|
|
1108
|
+
default_options[:retry_reads] = true
|
|
1109
|
+
default_options[:retry_writes] = true
|
|
1110
|
+
end
|
|
1111
|
+
end
|
|
1112
|
+
|
|
1113
|
+
# Implementation for #close, assumes the connect lock is already acquired.
|
|
1114
|
+
def do_close
|
|
1115
|
+
@cluster.disconnect!
|
|
1116
|
+
close_encrypter
|
|
1117
|
+
end
|
|
1118
|
+
|
|
1119
|
+
# Returns a session to use for operations.
|
|
1120
|
+
#
|
|
1121
|
+
# If :session option is set, validates that session and returns it.
|
|
1122
|
+
# Otherwise, if deployment supports sessions, creates a new session and
|
|
1123
|
+
# returns it. When a new session is created, the session will be implicit
|
|
1124
|
+
# (lifecycle is managed by the driver) if the :implicit option is given,
|
|
1125
|
+
# otherwise the session will be explicit (lifecycle managed by the
|
|
1126
|
+
# application). If deployment does not support session, raises
|
|
1127
|
+
# Error::InvalidSession.
|
|
1128
|
+
#
|
|
1129
|
+
# @option options [ true | false ] :implicit When no session is passed in,
|
|
1130
|
+
# whether to create an implicit session.
|
|
1131
|
+
# @option options [ Session ] :session The session to validate and return.
|
|
1132
|
+
#
|
|
1133
|
+
# @return [ Session ] A session object.
|
|
1134
|
+
#
|
|
1135
|
+
# @raise Error::SessionsNotSupported if sessions are not supported by
|
|
1136
|
+
# the deployment.
|
|
1137
|
+
#
|
|
1138
|
+
# @api private
|
|
1139
|
+
def get_session!(options = {})
|
|
1140
|
+
if options[:session]
|
|
1141
|
+
return options[:session].validate!(self)
|
|
1142
|
+
end
|
|
1143
|
+
|
|
1144
|
+
cluster.validate_session_support!
|
|
1145
|
+
|
|
1146
|
+
Session.new(cluster.session_pool.checkout, self, { implicit: true }.merge(options))
|
|
551
1147
|
end
|
|
552
1148
|
|
|
553
1149
|
def initialize_copy(original)
|
|
@@ -567,8 +1163,48 @@ module Mongo
|
|
|
567
1163
|
end
|
|
568
1164
|
end
|
|
569
1165
|
|
|
570
|
-
|
|
1166
|
+
# Validates options in the provided argument for validity.
|
|
1167
|
+
# The argument may contain a subset of options that the client will
|
|
1168
|
+
# eventually have; this method validates each of the provided options
|
|
1169
|
+
# but does not check for interactions between combinations of options.
|
|
1170
|
+
def validate_new_options!(opts)
|
|
571
1171
|
return Options::Redacted.new unless opts
|
|
1172
|
+
if opts[:read_concern]
|
|
1173
|
+
# Raise an error for non user-settable options
|
|
1174
|
+
if opts[:read_concern][:after_cluster_time]
|
|
1175
|
+
raise Mongo::Error::InvalidReadConcern.new(
|
|
1176
|
+
'The after_cluster_time read_concern option cannot be specified by the user'
|
|
1177
|
+
)
|
|
1178
|
+
end
|
|
1179
|
+
|
|
1180
|
+
given_keys = opts[:read_concern].keys.map(&:to_s)
|
|
1181
|
+
allowed_keys = ['level']
|
|
1182
|
+
invalid_keys = given_keys - allowed_keys
|
|
1183
|
+
# Warn that options are invalid but keep it and forward to the server
|
|
1184
|
+
unless invalid_keys.empty?
|
|
1185
|
+
log_warn("Read concern has invalid keys: #{invalid_keys.join(',')}.")
|
|
1186
|
+
end
|
|
1187
|
+
end
|
|
1188
|
+
|
|
1189
|
+
if server_api = opts[:server_api]
|
|
1190
|
+
unless server_api.is_a?(Hash)
|
|
1191
|
+
raise ArgumentError, ":server_api value must be a hash: #{server_api}"
|
|
1192
|
+
end
|
|
1193
|
+
|
|
1194
|
+
extra_keys = server_api.keys - %w(version strict deprecation_errors)
|
|
1195
|
+
unless extra_keys.empty?
|
|
1196
|
+
raise ArgumentError, "Unknown keys under :server_api: #{extra_keys.map(&:inspect).join(', ')}"
|
|
1197
|
+
end
|
|
1198
|
+
|
|
1199
|
+
if version = server_api[:version]
|
|
1200
|
+
unless VALID_SERVER_API_VERSIONS.include?(version)
|
|
1201
|
+
raise ArgumentError, "Unknown server API version: #{version}"
|
|
1202
|
+
end
|
|
1203
|
+
end
|
|
1204
|
+
end
|
|
1205
|
+
|
|
1206
|
+
Lint.validate_underscore_read_preference(opts[:read])
|
|
1207
|
+
Lint.validate_read_concern_option(opts[:read_concern])
|
|
572
1208
|
opts.each.inject(Options::Redacted.new) do |_options, (k, v)|
|
|
573
1209
|
key = k.to_sym
|
|
574
1210
|
if VALID_OPTIONS.include?(key)
|
|
@@ -576,6 +1212,15 @@ module Mongo
|
|
|
576
1212
|
validate_read!(key, opts)
|
|
577
1213
|
if key == :compressors
|
|
578
1214
|
compressors = valid_compressors(v)
|
|
1215
|
+
|
|
1216
|
+
if compressors.include?('snappy')
|
|
1217
|
+
validate_snappy_compression!
|
|
1218
|
+
end
|
|
1219
|
+
|
|
1220
|
+
if compressors.include?('zstd')
|
|
1221
|
+
validate_zstd_compression!
|
|
1222
|
+
end
|
|
1223
|
+
|
|
579
1224
|
_options[key] = compressors unless compressors.empty?
|
|
580
1225
|
else
|
|
581
1226
|
_options[key] = v
|
|
@@ -587,6 +1232,178 @@ module Mongo
|
|
|
587
1232
|
end
|
|
588
1233
|
end
|
|
589
1234
|
|
|
1235
|
+
# Validates all options after they are set on the client.
|
|
1236
|
+
# This method is intended to catch combinations of options which are
|
|
1237
|
+
# not allowed.
|
|
1238
|
+
def validate_options!(addresses = nil)
|
|
1239
|
+
if options[:write] && options[:write_concern] && options[:write] != options[:write_concern]
|
|
1240
|
+
raise ArgumentError, "If :write and :write_concern are both given, they must be identical: #{options.inspect}"
|
|
1241
|
+
end
|
|
1242
|
+
|
|
1243
|
+
connect = options[:connect]&.to_sym
|
|
1244
|
+
|
|
1245
|
+
if connect && !%i(direct replica_set sharded load_balanced).include?(connect)
|
|
1246
|
+
raise ArgumentError, "Invalid :connect option value: #{connect}"
|
|
1247
|
+
end
|
|
1248
|
+
|
|
1249
|
+
if options[:direct_connection]
|
|
1250
|
+
if connect && connect != :direct
|
|
1251
|
+
raise ArgumentError, "Conflicting client options: direct_connection=true and connect=#{connect}"
|
|
1252
|
+
end
|
|
1253
|
+
# When a new client is created, we get the list of seed addresses
|
|
1254
|
+
if addresses && addresses.length > 1
|
|
1255
|
+
raise ArgumentError, "direct_connection=true cannot be used with multiple seeds"
|
|
1256
|
+
end
|
|
1257
|
+
# When a client is copied using #with, we have a cluster
|
|
1258
|
+
if cluster && !cluster.topology.is_a?(Mongo::Cluster::Topology::Single)
|
|
1259
|
+
raise ArgumentError, "direct_connection=true cannot be used with topologies other than Single (this client is #{cluster.topology.class.name.sub(/.*::/, '')})"
|
|
1260
|
+
end
|
|
1261
|
+
end
|
|
1262
|
+
|
|
1263
|
+
if options[:load_balanced]
|
|
1264
|
+
if addresses && addresses.length > 1
|
|
1265
|
+
raise ArgumentError, "load_balanced=true cannot be used with multiple seeds"
|
|
1266
|
+
end
|
|
1267
|
+
|
|
1268
|
+
if options[:direct_connection]
|
|
1269
|
+
raise ArgumentError, "direct_connection=true cannot be used with load_balanced=true"
|
|
1270
|
+
end
|
|
1271
|
+
|
|
1272
|
+
if connect && connect != :load_balanced
|
|
1273
|
+
raise ArgumentError, "connect=#{connect} cannot be used with load_balanced=true"
|
|
1274
|
+
end
|
|
1275
|
+
|
|
1276
|
+
if options[:replica_set]
|
|
1277
|
+
raise ArgumentError, "load_balanced=true cannot be used with replica_set option"
|
|
1278
|
+
end
|
|
1279
|
+
end
|
|
1280
|
+
|
|
1281
|
+
if connect == :load_balanced
|
|
1282
|
+
if addresses && addresses.length > 1
|
|
1283
|
+
raise ArgumentError, "connect=load_balanced cannot be used with multiple seeds"
|
|
1284
|
+
end
|
|
1285
|
+
|
|
1286
|
+
if options[:replica_set]
|
|
1287
|
+
raise ArgumentError, "connect=load_balanced cannot be used with replica_set option"
|
|
1288
|
+
end
|
|
1289
|
+
end
|
|
1290
|
+
|
|
1291
|
+
if options[:direct_connection] == false && connect && connect == :direct
|
|
1292
|
+
raise ArgumentError, "Conflicting client options: direct_connection=false and connect=#{connect}"
|
|
1293
|
+
end
|
|
1294
|
+
|
|
1295
|
+
%i(connect_timeout socket_timeout).each do |key|
|
|
1296
|
+
if value = options[key]
|
|
1297
|
+
unless Numeric === value
|
|
1298
|
+
raise ArgumentError, "#{key} must be a non-negative number: #{value}"
|
|
1299
|
+
end
|
|
1300
|
+
if value < 0
|
|
1301
|
+
raise ArgumentError, "#{key} must be a non-negative number: #{value}"
|
|
1302
|
+
end
|
|
1303
|
+
end
|
|
1304
|
+
end
|
|
1305
|
+
|
|
1306
|
+
if value = options[:bg_error_backtrace]
|
|
1307
|
+
case value
|
|
1308
|
+
when Integer
|
|
1309
|
+
if value <= 0
|
|
1310
|
+
raise ArgumentError, ":bg_error_backtrace option value must be true, false, nil or a positive integer: #{value}"
|
|
1311
|
+
end
|
|
1312
|
+
when true
|
|
1313
|
+
# OK
|
|
1314
|
+
else
|
|
1315
|
+
raise ArgumentError, ":bg_error_backtrace option value must be true, false, nil or a positive integer: #{value}"
|
|
1316
|
+
end
|
|
1317
|
+
end
|
|
1318
|
+
|
|
1319
|
+
if libraries = options[:wrapping_libraries]
|
|
1320
|
+
unless Array === libraries
|
|
1321
|
+
raise ArgumentError, ":wrapping_libraries must be an array of hashes: #{libraries}"
|
|
1322
|
+
end
|
|
1323
|
+
|
|
1324
|
+
libraries = libraries.map do |library|
|
|
1325
|
+
Utils.shallow_symbolize_keys(library)
|
|
1326
|
+
end
|
|
1327
|
+
|
|
1328
|
+
libraries.each do |library|
|
|
1329
|
+
unless Hash === library
|
|
1330
|
+
raise ArgumentError, ":wrapping_libraries element is not a hash: #{library}"
|
|
1331
|
+
end
|
|
1332
|
+
|
|
1333
|
+
if library.empty?
|
|
1334
|
+
raise ArgumentError, ":wrapping_libraries element is empty"
|
|
1335
|
+
end
|
|
1336
|
+
|
|
1337
|
+
unless (library.keys - %i(name platform version)).empty?
|
|
1338
|
+
raise ArgumentError, ":wrapping_libraries element has invalid keys (allowed keys: :name, :platform, :version): #{library}"
|
|
1339
|
+
end
|
|
1340
|
+
|
|
1341
|
+
library.each do |key, value|
|
|
1342
|
+
if value.include?('|')
|
|
1343
|
+
raise ArgumentError, ":wrapping_libraries element value cannot include '|': #{value}"
|
|
1344
|
+
end
|
|
1345
|
+
end
|
|
1346
|
+
end
|
|
1347
|
+
end
|
|
1348
|
+
end
|
|
1349
|
+
|
|
1350
|
+
# Validates all authentication-related options after they are set on the client
|
|
1351
|
+
# This method is intended to catch combinations of options which are not allowed
|
|
1352
|
+
def validate_authentication_options!
|
|
1353
|
+
auth_mech = options[:auth_mech]
|
|
1354
|
+
user = options[:user]
|
|
1355
|
+
password = options[:password]
|
|
1356
|
+
auth_source = options[:auth_source]
|
|
1357
|
+
mech_properties = options[:auth_mech_properties]
|
|
1358
|
+
|
|
1359
|
+
if auth_mech.nil?
|
|
1360
|
+
if user && user.empty?
|
|
1361
|
+
raise Mongo::Auth::InvalidConfiguration, 'Empty username is not supported for default auth mechanism'
|
|
1362
|
+
end
|
|
1363
|
+
|
|
1364
|
+
if auth_source == ''
|
|
1365
|
+
raise Mongo::Auth::InvalidConfiguration, 'Auth source cannot be empty for default auth mechanism'
|
|
1366
|
+
end
|
|
1367
|
+
|
|
1368
|
+
return
|
|
1369
|
+
end
|
|
1370
|
+
|
|
1371
|
+
if !Mongo::Auth::SOURCES.key?(auth_mech)
|
|
1372
|
+
raise Mongo::Auth::InvalidMechanism.new(auth_mech)
|
|
1373
|
+
end
|
|
1374
|
+
|
|
1375
|
+
if user.nil? && !%i(aws mongodb_x509).include?(auth_mech)
|
|
1376
|
+
raise Mongo::Auth::InvalidConfiguration, "Username is required for auth mechanism #{auth_mech}"
|
|
1377
|
+
end
|
|
1378
|
+
|
|
1379
|
+
if password.nil? && !%i(aws gssapi mongodb_x509).include?(auth_mech)
|
|
1380
|
+
raise Mongo::Auth::InvalidConfiguration, "Password is required for auth mechanism #{auth_mech}"
|
|
1381
|
+
end
|
|
1382
|
+
|
|
1383
|
+
if password && auth_mech == :mongodb_x509
|
|
1384
|
+
raise Mongo::Auth::InvalidConfiguration, 'Password is not supported for :mongodb_x509 auth mechanism'
|
|
1385
|
+
end
|
|
1386
|
+
|
|
1387
|
+
if auth_mech == :aws && user && !password
|
|
1388
|
+
raise Mongo::Auth::InvalidConfiguration, 'Username is provided but password is not provided for :aws auth mechanism'
|
|
1389
|
+
end
|
|
1390
|
+
|
|
1391
|
+
if %i(aws gssapi mongodb_x509).include?(auth_mech)
|
|
1392
|
+
if !['$external', nil].include?(auth_source)
|
|
1393
|
+
raise Mongo::Auth::InvalidConfiguration, "#{auth_source} is an invalid auth source for #{auth_mech}; valid options are $external and nil"
|
|
1394
|
+
end
|
|
1395
|
+
else
|
|
1396
|
+
# Auth source is the database name, and thus cannot be the empty string.
|
|
1397
|
+
if auth_source == ''
|
|
1398
|
+
raise Mongo::Auth::InvalidConfiguration, "Auth source cannot be empty for auth mechanism #{auth_mech}"
|
|
1399
|
+
end
|
|
1400
|
+
end
|
|
1401
|
+
|
|
1402
|
+
if mech_properties && !%i(aws gssapi).include?(auth_mech)
|
|
1403
|
+
raise Mongo::Auth::InvalidConfiguration, ":mechanism_properties are not supported for auth mechanism #{auth_mech}"
|
|
1404
|
+
end
|
|
1405
|
+
end
|
|
1406
|
+
|
|
590
1407
|
def valid_compressors(compressors)
|
|
591
1408
|
compressors.select do |compressor|
|
|
592
1409
|
if !VALID_COMPRESSORS.include?(compressor)
|
|
@@ -594,14 +1411,33 @@ module Mongo
|
|
|
594
1411
|
"This compressor will not be used.")
|
|
595
1412
|
false
|
|
596
1413
|
else
|
|
1414
|
+
|
|
597
1415
|
true
|
|
598
1416
|
end
|
|
599
1417
|
end
|
|
600
1418
|
end
|
|
601
1419
|
|
|
1420
|
+
def validate_snappy_compression!
|
|
1421
|
+
return if defined?(Snappy)
|
|
1422
|
+
require 'snappy'
|
|
1423
|
+
rescue LoadError => e
|
|
1424
|
+
raise Error::UnmetDependency, "Cannot enable snappy compression because the snappy gem " \
|
|
1425
|
+
"has not been installed. Add \"gem 'snappy'\" to your Gemfile and run " \
|
|
1426
|
+
"\"bundle install\" to install the gem. (#{e.class}: #{e})"
|
|
1427
|
+
end
|
|
1428
|
+
|
|
1429
|
+
def validate_zstd_compression!
|
|
1430
|
+
return if defined?(Zstd)
|
|
1431
|
+
require 'zstd-ruby'
|
|
1432
|
+
rescue LoadError => e
|
|
1433
|
+
raise Error::UnmetDependency, "Cannot enable zstd compression because the zstd-ruby gem " \
|
|
1434
|
+
"has not been installed. Add \"gem 'zstd-ruby'\" to your Gemfile and run " \
|
|
1435
|
+
"\"bundle install\" to install the gem. (#{e.class}: #{e})"
|
|
1436
|
+
end
|
|
1437
|
+
|
|
602
1438
|
def validate_max_min_pool_size!(option, opts)
|
|
603
1439
|
if option == :min_pool_size && opts[:min_pool_size]
|
|
604
|
-
max = opts[:max_pool_size] || Server::ConnectionPool::
|
|
1440
|
+
max = opts[:max_pool_size] || Server::ConnectionPool::DEFAULT_MAX_SIZE
|
|
605
1441
|
raise Error::InvalidMinPoolSize.new(opts[:min_pool_size], max) unless opts[:min_pool_size] <= max
|
|
606
1442
|
end
|
|
607
1443
|
true
|