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