mongo 2.11.2 → 2.13.0.beta1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/CONTRIBUTING.md +8 -36
- data/LICENSE +1 -1
- data/README.md +54 -53
- data/Rakefile +1 -1
- data/lib/mongo.rb +7 -1
- data/lib/mongo/active_support.rb +1 -1
- data/lib/mongo/address.rb +114 -46
- data/lib/mongo/address/ipv4.rb +32 -5
- data/lib/mongo/address/ipv6.rb +32 -5
- data/lib/mongo/address/unix.rb +3 -3
- data/lib/mongo/address/validator.rb +1 -1
- data/lib/mongo/auth.rb +37 -13
- data/lib/mongo/auth/aws.rb +37 -0
- 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 +257 -0
- data/lib/mongo/auth/base.rb +129 -0
- data/lib/mongo/auth/conversation_base.rb +52 -0
- data/lib/mongo/auth/cr.rb +9 -36
- data/lib/mongo/auth/cr/conversation.rb +24 -69
- data/lib/mongo/auth/credential_cache.rb +51 -0
- data/lib/mongo/auth/gssapi.rb +38 -0
- data/lib/mongo/auth/gssapi/conversation.rb +108 -0
- data/lib/mongo/auth/ldap.rb +9 -34
- data/lib/mongo/auth/ldap/conversation.rb +3 -43
- data/lib/mongo/auth/roles.rb +1 -1
- data/lib/mongo/auth/sasl_conversation_base.rb +111 -0
- data/lib/mongo/auth/scram.rb +39 -51
- data/lib/mongo/auth/scram/conversation.rb +12 -502
- data/lib/mongo/auth/scram256.rb +31 -0
- data/lib/mongo/auth/scram256/conversation.rb +63 -0
- data/lib/mongo/auth/scram_conversation_base.rb +402 -0
- data/lib/mongo/auth/stringprep.rb +5 -4
- data/lib/mongo/auth/stringprep/profiles/sasl.rb +2 -1
- data/lib/mongo/auth/stringprep/tables.rb +2 -1
- data/lib/mongo/auth/stringprep/unicode_normalize/normalize.rb +1 -0
- data/lib/mongo/auth/stringprep/unicode_normalize/tables.rb +1 -0
- data/lib/mongo/auth/user.rb +9 -11
- data/lib/mongo/auth/user/view.rb +5 -5
- data/lib/mongo/auth/x509.rb +14 -32
- data/lib/mongo/auth/x509/conversation.rb +15 -42
- data/lib/mongo/background_thread.rb +12 -3
- data/lib/mongo/bson.rb +1 -1
- data/lib/mongo/bulk_write.rb +61 -26
- data/lib/mongo/bulk_write/combineable.rb +20 -8
- data/lib/mongo/bulk_write/ordered_combiner.rb +1 -1
- data/lib/mongo/bulk_write/result.rb +1 -1
- data/lib/mongo/bulk_write/result_combiner.rb +1 -1
- data/lib/mongo/bulk_write/transformable.rb +9 -10
- data/lib/mongo/bulk_write/unordered_combiner.rb +1 -1
- data/lib/mongo/bulk_write/validatable.rb +5 -1
- data/lib/mongo/client.rb +178 -23
- data/lib/mongo/client_encryption.rb +103 -0
- data/lib/mongo/cluster.rb +130 -52
- data/lib/mongo/cluster/periodic_executor.rb +1 -1
- data/lib/mongo/cluster/reapers/cursor_reaper.rb +19 -7
- data/lib/mongo/cluster/reapers/socket_reaper.rb +1 -1
- data/lib/mongo/cluster/sdam_flow.rb +74 -62
- data/lib/mongo/cluster/topology.rb +19 -2
- data/lib/mongo/cluster/topology/base.rb +1 -1
- data/lib/mongo/cluster/topology/no_replica_set_options.rb +1 -1
- data/lib/mongo/cluster/topology/replica_set_no_primary.rb +1 -1
- data/lib/mongo/cluster/topology/replica_set_with_primary.rb +1 -1
- data/lib/mongo/cluster/topology/sharded.rb +1 -1
- data/lib/mongo/cluster/topology/single.rb +1 -1
- data/lib/mongo/cluster/topology/unknown.rb +1 -1
- data/lib/mongo/cluster_time.rb +1 -1
- data/lib/mongo/collection.rb +25 -5
- data/lib/mongo/collection/view.rb +7 -3
- data/lib/mongo/collection/view/aggregation.rb +7 -4
- data/lib/mongo/collection/view/builder.rb +1 -1
- data/lib/mongo/collection/view/builder/aggregation.rb +1 -1
- data/lib/mongo/collection/view/builder/find_command.rb +9 -1
- data/lib/mongo/collection/view/builder/flags.rb +1 -1
- data/lib/mongo/collection/view/builder/map_reduce.rb +1 -1
- data/lib/mongo/collection/view/builder/modifiers.rb +1 -1
- data/lib/mongo/collection/view/builder/op_query.rb +1 -1
- data/lib/mongo/collection/view/change_stream.rb +15 -9
- data/lib/mongo/collection/view/change_stream/retryable.rb +1 -1
- data/lib/mongo/collection/view/explainable.rb +1 -1
- data/lib/mongo/collection/view/immutable.rb +1 -1
- data/lib/mongo/collection/view/iterable.rb +22 -7
- data/lib/mongo/collection/view/map_reduce.rb +9 -6
- data/lib/mongo/collection/view/readable.rb +16 -8
- data/lib/mongo/collection/view/writable.rb +62 -18
- data/lib/mongo/crypt.rb +33 -0
- 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/cursor.rb +67 -35
- data/lib/mongo/cursor/builder.rb +1 -1
- data/lib/mongo/cursor/builder/get_more_command.rb +1 -1
- data/lib/mongo/cursor/builder/kill_cursors_command.rb +9 -2
- data/lib/mongo/cursor/builder/op_get_more.rb +1 -1
- data/lib/mongo/cursor/builder/op_kill_cursors.rb +9 -2
- data/lib/mongo/database.rb +27 -7
- data/lib/mongo/database/view.rb +15 -6
- data/lib/mongo/dbref.rb +10 -3
- data/lib/mongo/error.rb +30 -3
- data/lib/mongo/error/auth_error.rb +1 -1
- data/lib/mongo/error/bulk_write_error.rb +17 -15
- data/lib/mongo/error/change_stream_resumable.rb +1 -1
- data/lib/mongo/error/closed_stream.rb +1 -1
- data/lib/mongo/error/connection_check_out_timeout.rb +1 -1
- 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_stringprep_validation.rb → failed_string_prep_validation.rb} +0 -0
- data/lib/mongo/error/file_not_found.rb +1 -1
- data/lib/mongo/error/handshake_error.rb +1 -1
- data/lib/mongo/error/insufficient_iteration_count.rb +1 -1
- data/lib/mongo/error/invalid_address.rb +1 -1
- 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 +1 -1
- data/lib/mongo/error/invalid_nonce.rb +2 -2
- data/lib/mongo/error/invalid_read_option.rb +1 -1
- data/lib/mongo/error/invalid_replacement_document.rb +1 -1
- data/lib/mongo/error/invalid_server_auth_response.rb +23 -0
- data/lib/mongo/error/invalid_server_preference.rb +6 -1
- data/lib/mongo/error/invalid_session.rb +1 -1
- data/lib/mongo/error/invalid_signature.rb +1 -1
- data/lib/mongo/error/invalid_transaction_operation.rb +1 -1
- data/lib/mongo/error/invalid_txt_record.rb +1 -1
- data/lib/mongo/error/invalid_update_document.rb +1 -1
- data/lib/mongo/error/invalid_uri.rb +1 -1
- data/lib/mongo/error/invalid_write_concern.rb +1 -1
- data/lib/mongo/error/kms_error.rb +22 -0
- data/lib/mongo/error/lint_error.rb +1 -1
- 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 +1 -1
- data/lib/mongo/error/missing_file_chunk.rb +1 -1
- data/lib/mongo/error/missing_password.rb +1 -1
- data/lib/mongo/error/missing_resume_token.rb +1 -1
- 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 +9 -4
- data/lib/mongo/error/no_srv_records.rb +1 -1
- data/lib/mongo/error/notable.rb +17 -17
- data/lib/mongo/error/operation_failure.rb +57 -43
- data/lib/mongo/error/parser.rb +17 -6
- data/lib/mongo/error/pool_closed_error.rb +1 -1
- data/lib/mongo/error/raise_original_error.rb +29 -0
- data/lib/mongo/error/session_ended.rb +1 -1
- data/lib/mongo/error/socket_error.rb +1 -1
- data/lib/mongo/error/socket_timeout_error.rb +1 -1
- 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 +1 -1
- data/lib/mongo/error/unsupported_array_filters.rb +7 -2
- data/lib/mongo/error/unsupported_collation.rb +7 -2
- data/lib/mongo/error/unsupported_features.rb +1 -1
- data/lib/mongo/error/unsupported_message_type.rb +1 -1
- data/lib/mongo/error/unsupported_option.rb +99 -0
- data/lib/mongo/error/write_retryable.rb +1 -1
- data/lib/mongo/event.rb +1 -1
- data/lib/mongo/event/base.rb +1 -1
- 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/grid.rb +1 -1
- data/lib/mongo/grid/file.rb +1 -1
- data/lib/mongo/grid/file/chunk.rb +1 -1
- data/lib/mongo/grid/file/info.rb +4 -3
- data/lib/mongo/grid/fs_bucket.rb +7 -2
- data/lib/mongo/grid/stream.rb +1 -1
- data/lib/mongo/grid/stream/read.rb +1 -1
- data/lib/mongo/grid/stream/write.rb +1 -1
- data/lib/mongo/id.rb +1 -1
- data/lib/mongo/index.rb +2 -1
- data/lib/mongo/index/view.rb +61 -14
- data/lib/mongo/lint.rb +10 -0
- data/lib/mongo/loggable.rb +1 -1
- data/lib/mongo/logger.rb +1 -1
- data/lib/mongo/monitoring.rb +1 -1
- data/lib/mongo/monitoring/cmap_log_subscriber.rb +1 -1
- data/lib/mongo/monitoring/command_log_subscriber.rb +12 -5
- data/lib/mongo/monitoring/event.rb +1 -1
- data/lib/mongo/monitoring/event/cmap.rb +1 -1
- data/lib/mongo/monitoring/event/cmap/base.rb +1 -1
- data/lib/mongo/monitoring/event/cmap/connection_check_out_failed.rb +2 -2
- data/lib/mongo/monitoring/event/cmap/connection_check_out_started.rb +1 -1
- data/lib/mongo/monitoring/event/cmap/connection_checked_in.rb +1 -1
- data/lib/mongo/monitoring/event/cmap/connection_checked_out.rb +1 -1
- data/lib/mongo/monitoring/event/cmap/connection_closed.rb +1 -1
- data/lib/mongo/monitoring/event/cmap/connection_created.rb +1 -1
- data/lib/mongo/monitoring/event/cmap/connection_ready.rb +1 -1
- data/lib/mongo/monitoring/event/cmap/pool_cleared.rb +1 -1
- data/lib/mongo/monitoring/event/cmap/pool_closed.rb +1 -1
- data/lib/mongo/monitoring/event/cmap/pool_created.rb +1 -1
- data/lib/mongo/monitoring/event/command_failed.rb +1 -1
- data/lib/mongo/monitoring/event/command_started.rb +15 -4
- data/lib/mongo/monitoring/event/command_succeeded.rb +1 -1
- data/lib/mongo/monitoring/event/secure.rb +8 -2
- data/lib/mongo/monitoring/event/server_closed.rb +1 -1
- data/lib/mongo/monitoring/event/server_description_changed.rb +1 -1
- data/lib/mongo/monitoring/event/server_heartbeat_failed.rb +1 -1
- data/lib/mongo/monitoring/event/server_heartbeat_started.rb +1 -1
- data/lib/mongo/monitoring/event/server_heartbeat_succeeded.rb +1 -1
- data/lib/mongo/monitoring/event/server_opening.rb +1 -1
- data/lib/mongo/monitoring/event/topology_changed.rb +1 -1
- data/lib/mongo/monitoring/event/topology_closed.rb +1 -1
- data/lib/mongo/monitoring/event/topology_opening.rb +1 -1
- data/lib/mongo/monitoring/publishable.rb +5 -8
- 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 +1 -1
- data/lib/mongo/monitoring/server_opening_log_subscriber.rb +1 -1
- data/lib/mongo/monitoring/topology_changed_log_subscriber.rb +1 -1
- data/lib/mongo/monitoring/topology_closed_log_subscriber.rb +1 -1
- data/lib/mongo/monitoring/topology_opening_log_subscriber.rb +1 -1
- data/lib/mongo/monitoring/unified_sdam_log_subscriber.rb +1 -1
- data/lib/mongo/operation.rb +1 -0
- data/lib/mongo/operation/aggregate.rb +1 -1
- data/lib/mongo/operation/aggregate/command.rb +5 -5
- data/lib/mongo/operation/aggregate/op_msg.rb +1 -1
- data/lib/mongo/operation/aggregate/result.rb +1 -1
- data/lib/mongo/operation/collections_info.rb +3 -33
- data/lib/mongo/operation/collections_info/command.rb +40 -0
- data/lib/mongo/operation/collections_info/result.rb +1 -1
- data/lib/mongo/operation/command.rb +1 -1
- data/lib/mongo/operation/command/command.rb +3 -3
- data/lib/mongo/operation/command/op_msg.rb +1 -1
- data/lib/mongo/operation/count.rb +1 -1
- data/lib/mongo/operation/count/command.rb +3 -3
- data/lib/mongo/operation/count/op_msg.rb +1 -1
- data/lib/mongo/operation/create.rb +1 -1
- data/lib/mongo/operation/create/command.rb +3 -3
- data/lib/mongo/operation/create/op_msg.rb +1 -1
- data/lib/mongo/operation/create_index.rb +1 -1
- data/lib/mongo/operation/create_index/command.rb +4 -4
- data/lib/mongo/operation/create_index/op_msg.rb +6 -3
- data/lib/mongo/operation/create_user.rb +1 -1
- data/lib/mongo/operation/create_user/command.rb +4 -4
- data/lib/mongo/operation/create_user/op_msg.rb +2 -2
- data/lib/mongo/operation/delete.rb +1 -1
- data/lib/mongo/operation/delete/bulk_result.rb +1 -1
- data/lib/mongo/operation/delete/command.rb +4 -4
- data/lib/mongo/operation/delete/legacy.rb +2 -2
- data/lib/mongo/operation/delete/op_msg.rb +5 -5
- data/lib/mongo/operation/delete/result.rb +2 -2
- data/lib/mongo/operation/distinct.rb +1 -1
- data/lib/mongo/operation/distinct/command.rb +3 -3
- data/lib/mongo/operation/distinct/op_msg.rb +1 -1
- data/lib/mongo/operation/drop.rb +1 -1
- data/lib/mongo/operation/drop/command.rb +3 -3
- data/lib/mongo/operation/drop/op_msg.rb +1 -1
- data/lib/mongo/operation/drop_database.rb +1 -1
- data/lib/mongo/operation/drop_database/command.rb +3 -3
- data/lib/mongo/operation/drop_database/op_msg.rb +1 -1
- data/lib/mongo/operation/drop_index.rb +1 -1
- data/lib/mongo/operation/drop_index/command.rb +4 -4
- data/lib/mongo/operation/drop_index/op_msg.rb +2 -2
- data/lib/mongo/operation/explain.rb +1 -1
- data/lib/mongo/operation/explain/command.rb +3 -3
- data/lib/mongo/operation/explain/legacy.rb +3 -3
- data/lib/mongo/operation/explain/op_msg.rb +1 -1
- data/lib/mongo/operation/explain/result.rb +1 -1
- data/lib/mongo/operation/find.rb +1 -1
- data/lib/mongo/operation/find/command.rb +3 -3
- data/lib/mongo/operation/find/legacy.rb +3 -3
- data/lib/mongo/operation/find/legacy/result.rb +1 -1
- data/lib/mongo/operation/find/op_msg.rb +2 -9
- data/lib/mongo/operation/find/result.rb +1 -1
- data/lib/mongo/operation/get_more.rb +1 -1
- data/lib/mongo/operation/get_more/command.rb +3 -3
- data/lib/mongo/operation/get_more/legacy.rb +2 -2
- data/lib/mongo/operation/get_more/op_msg.rb +2 -9
- data/lib/mongo/operation/get_more/result.rb +1 -1
- data/lib/mongo/operation/indexes.rb +1 -1
- data/lib/mongo/operation/indexes/command.rb +3 -3
- data/lib/mongo/operation/indexes/legacy.rb +4 -4
- data/lib/mongo/operation/indexes/op_msg.rb +1 -1
- data/lib/mongo/operation/indexes/result.rb +1 -1
- data/lib/mongo/operation/insert.rb +3 -2
- data/lib/mongo/operation/insert/bulk_result.rb +6 -2
- data/lib/mongo/operation/insert/command.rb +8 -7
- data/lib/mongo/operation/insert/legacy.rb +10 -5
- data/lib/mongo/operation/insert/op_msg.rb +7 -7
- data/lib/mongo/operation/insert/result.rb +7 -4
- data/lib/mongo/operation/kill_cursors.rb +1 -1
- data/lib/mongo/operation/kill_cursors/command.rb +3 -3
- data/lib/mongo/operation/kill_cursors/legacy.rb +2 -2
- data/lib/mongo/operation/kill_cursors/op_msg.rb +1 -1
- data/lib/mongo/operation/list_collections.rb +1 -1
- data/lib/mongo/operation/list_collections/command.rb +4 -4
- data/lib/mongo/operation/list_collections/op_msg.rb +2 -2
- data/lib/mongo/operation/list_collections/result.rb +1 -1
- data/lib/mongo/operation/map_reduce.rb +1 -1
- data/lib/mongo/operation/map_reduce/command.rb +3 -3
- data/lib/mongo/operation/map_reduce/op_msg.rb +1 -1
- data/lib/mongo/operation/map_reduce/result.rb +1 -1
- data/lib/mongo/operation/op_msg_base.rb +3 -3
- data/lib/mongo/operation/parallel_scan.rb +1 -1
- data/lib/mongo/operation/parallel_scan/command.rb +5 -5
- data/lib/mongo/operation/parallel_scan/op_msg.rb +2 -2
- data/lib/mongo/operation/parallel_scan/result.rb +1 -1
- data/lib/mongo/operation/remove_user.rb +1 -1
- data/lib/mongo/operation/remove_user/command.rb +4 -4
- data/lib/mongo/operation/remove_user/op_msg.rb +2 -2
- data/lib/mongo/operation/result.rb +64 -31
- data/lib/mongo/operation/shared/bypass_document_validation.rb +10 -4
- data/lib/mongo/operation/shared/causal_consistency_supported.rb +3 -3
- data/lib/mongo/operation/shared/collections_info_or_list_collections.rb +56 -0
- data/lib/mongo/operation/shared/executable.rb +47 -27
- data/lib/mongo/operation/shared/executable_no_validate.rb +3 -3
- data/lib/mongo/operation/shared/executable_transaction_label.rb +1 -1
- data/lib/mongo/operation/shared/idable.rb +1 -1
- data/lib/mongo/operation/shared/limited.rb +10 -2
- data/lib/mongo/operation/shared/object_id_generator.rb +1 -1
- data/lib/mongo/operation/shared/op_msg_or_command.rb +8 -6
- data/lib/mongo/operation/shared/op_msg_or_find_command.rb +9 -7
- data/lib/mongo/operation/shared/op_msg_or_list_indexes_command.rb +9 -7
- data/lib/mongo/operation/shared/polymorphic_lookup.rb +1 -1
- data/lib/mongo/operation/shared/polymorphic_result.rb +1 -1
- data/lib/mongo/operation/shared/read_preference_supported.rb +74 -22
- data/lib/mongo/operation/shared/response_handling.rb +84 -9
- data/lib/mongo/operation/shared/result/aggregatable.rb +1 -1
- data/lib/mongo/operation/shared/result/use_legacy_error_parser.rb +1 -1
- data/lib/mongo/operation/shared/sessions_supported.rb +86 -22
- data/lib/mongo/operation/shared/specifiable.rb +32 -20
- data/lib/mongo/operation/shared/write.rb +33 -20
- data/lib/mongo/operation/shared/write_concern_supported.rb +6 -6
- data/lib/mongo/operation/update.rb +1 -1
- data/lib/mongo/operation/update/bulk_result.rb +1 -1
- data/lib/mongo/operation/update/command.rb +4 -4
- data/lib/mongo/operation/update/legacy.rb +2 -2
- data/lib/mongo/operation/update/legacy/result.rb +1 -1
- data/lib/mongo/operation/update/op_msg.rb +5 -5
- data/lib/mongo/operation/update/result.rb +2 -2
- data/lib/mongo/operation/update_user.rb +1 -1
- data/lib/mongo/operation/update_user/command.rb +4 -4
- data/lib/mongo/operation/update_user/op_msg.rb +2 -2
- data/lib/mongo/operation/users_info.rb +1 -1
- data/lib/mongo/operation/users_info/command.rb +4 -4
- data/lib/mongo/operation/users_info/op_msg.rb +2 -2
- data/lib/mongo/operation/users_info/result.rb +1 -1
- data/lib/mongo/options.rb +1 -1
- data/lib/mongo/options/mapper.rb +1 -1
- data/lib/mongo/options/redacted.rb +1 -1
- data/lib/mongo/protocol/bit_vector.rb +3 -2
- data/lib/mongo/protocol/compressed.rb +7 -6
- data/lib/mongo/protocol/delete.rb +1 -1
- data/lib/mongo/protocol/get_more.rb +1 -1
- data/lib/mongo/protocol/insert.rb +4 -2
- data/lib/mongo/protocol/kill_cursors.rb +1 -1
- data/lib/mongo/protocol/message.rb +95 -16
- data/lib/mongo/protocol/msg.rb +189 -38
- data/lib/mongo/protocol/query.rb +8 -10
- data/lib/mongo/protocol/registry.rb +1 -1
- data/lib/mongo/protocol/reply.rb +1 -1
- data/lib/mongo/protocol/serializers.rb +51 -16
- data/lib/mongo/protocol/update.rb +1 -1
- data/lib/mongo/retryable.rb +24 -11
- data/lib/mongo/semaphore.rb +1 -1
- data/lib/mongo/server.rb +42 -11
- data/lib/mongo/server/app_metadata.rb +17 -4
- data/lib/mongo/server/connection.rb +40 -126
- data/lib/mongo/server/connection_base.rb +106 -19
- data/lib/mongo/server/connection_common.rb +135 -0
- data/lib/mongo/server/connection_pool.rb +57 -2
- data/lib/mongo/server/connection_pool/populator.rb +2 -2
- data/lib/mongo/server/context.rb +1 -1
- data/lib/mongo/server/description.rb +53 -13
- data/lib/mongo/server/description/features.rb +12 -3
- data/lib/mongo/server/monitor.rb +118 -72
- data/lib/mongo/server/monitor/app_metadata.rb +1 -1
- data/lib/mongo/server/monitor/connection.rb +62 -96
- data/lib/mongo/server/pending_connection.rb +204 -1
- data/lib/mongo/server/round_trip_time_averager.rb +12 -3
- data/lib/mongo/server_selector.rb +2 -1
- data/lib/mongo/server_selector/base.rb +40 -0
- data/lib/mongo/server_selector/nearest.rb +25 -15
- data/lib/mongo/server_selector/primary.rb +23 -22
- data/lib/mongo/server_selector/primary_preferred.rb +25 -15
- data/lib/mongo/server_selector/secondary.rb +25 -15
- data/lib/mongo/server_selector/secondary_preferred.rb +28 -27
- data/lib/mongo/server_selector/selectable.rb +30 -15
- data/lib/mongo/session.rb +15 -4
- data/lib/mongo/session/server_session.rb +1 -1
- data/lib/mongo/session/session_pool.rb +9 -4
- data/lib/mongo/socket.rb +120 -30
- data/lib/mongo/socket/ssl.rb +110 -32
- data/lib/mongo/socket/tcp.rb +41 -24
- data/lib/mongo/socket/unix.rb +14 -6
- data/lib/mongo/srv.rb +1 -1
- data/lib/mongo/srv/monitor.rb +74 -43
- data/lib/mongo/srv/resolver.rb +1 -1
- data/lib/mongo/srv/result.rb +1 -2
- data/lib/mongo/timeout.rb +49 -0
- data/lib/mongo/topology_version.rb +80 -0
- data/lib/mongo/uri.rb +84 -41
- data/lib/mongo/uri/srv_protocol.rb +10 -2
- data/lib/mongo/version.rb +2 -2
- data/lib/mongo/write_concern.rb +1 -1
- data/lib/mongo/write_concern/acknowledged.rb +1 -1
- data/lib/mongo/write_concern/base.rb +1 -1
- data/lib/mongo/write_concern/unacknowledged.rb +1 -1
- data/mongo.gemspec +2 -4
- data/spec/NOTES.aws-auth.md +291 -0
- data/spec/README.aws-auth.md +318 -0
- data/spec/README.md +282 -14
- data/spec/integration/auth_spec.rb +74 -1
- 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 +34 -0
- data/spec/integration/change_stream_spec.rb +123 -51
- data/spec/integration/{client_options_spec.rb → client_authentication_options_spec.rb} +15 -15
- data/spec/integration/client_construction_aws_auth_spec.rb +191 -0
- data/spec/integration/client_construction_spec.rb +101 -2
- data/spec/integration/client_side_encryption/auto_encryption_bulk_writes_spec.rb +353 -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_update_spec.rb +154 -0
- data/spec/integration/collection_indexes_prose_spec.rb +55 -0
- data/spec/integration/command_monitoring_spec.rb +33 -7
- data/spec/integration/command_spec.rb +55 -19
- data/spec/integration/connect_single_rs_name_spec.rb +5 -3
- data/spec/integration/connection_spec.rb +115 -9
- data/spec/integration/crud_spec.rb +162 -0
- data/spec/integration/cursor_reaping_spec.rb +16 -11
- data/spec/integration/fork_reconnect_spec.rb +143 -0
- data/spec/integration/get_more_spec.rb +10 -3
- data/spec/integration/heartbeat_events_spec.rb +1 -1
- data/spec/integration/read_preference_spec.rb +67 -11
- data/spec/integration/reconnect_spec.rb +7 -7
- data/spec/integration/retryable_errors_spec.rb +35 -16
- data/spec/integration/{retryable_writes_spec.rb → retryable_writes/retryable_writes_36_and_older_spec.rb} +55 -51
- data/spec/integration/retryable_writes/retryable_writes_40_and_newer_spec.rb +401 -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 +215 -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/sdam_error_handling_spec.rb +116 -18
- data/spec/integration/sdam_events_spec.rb +1 -0
- data/spec/integration/server_spec.rb +42 -26
- data/spec/integration/size_limit_spec.rb +94 -0
- data/spec/integration/srv_monitoring_spec.rb +16 -8
- data/spec/integration/step_down_spec.rb +15 -15
- data/spec/integration/transactions_api_examples_spec.rb +59 -0
- data/spec/integration/transactions_examples_spec.rb +5 -2
- data/spec/integration/x509_auth_spec.rb +109 -0
- data/spec/kerberos/kerberos_spec.rb +91 -0
- data/spec/lite_spec_helper.rb +41 -33
- data/spec/mongo/address/ipv4_spec.rb +1 -1
- data/spec/mongo/address_spec.rb +20 -14
- data/spec/mongo/auth/cr_spec.rb +15 -7
- data/spec/mongo/auth/gssapi/conversation_spec.rb +121 -0
- data/spec/mongo/auth/invalid_mechanism_spec.rb +1 -1
- data/spec/mongo/auth/ldap/conversation_spec.rb +1 -1
- data/spec/mongo/auth/ldap_spec.rb +8 -4
- data/spec/mongo/auth/scram/conversation_spec.rb +120 -334
- data/spec/mongo/auth/scram256/conversation_spec.rb +171 -0
- data/spec/mongo/auth/{scram/negotiation_spec.rb → scram_negotiation_spec.rb} +79 -75
- data/spec/mongo/auth/scram_spec.rb +55 -85
- data/spec/mongo/auth/user/view_spec.rb +39 -7
- data/spec/mongo/auth/user_spec.rb +13 -1
- data/spec/mongo/auth/x509/conversation_spec.rb +1 -1
- data/spec/mongo/auth/x509_spec.rb +13 -9
- data/spec/mongo/auth_spec.rb +4 -4
- data/spec/mongo/bulk_write/result_spec.rb +11 -7
- data/spec/mongo/bulk_write_spec.rb +208 -4
- data/spec/mongo/client_construction_spec.rb +496 -88
- data/spec/mongo/client_encryption_spec.rb +405 -0
- data/spec/mongo/client_spec.rb +21 -2
- data/spec/mongo/cluster/cursor_reaper_spec.rb +12 -8
- data/spec/mongo/cluster/socket_reaper_spec.rb +14 -3
- data/spec/mongo/cluster_spec.rb +23 -2
- data/spec/mongo/collection/view/aggregation_spec.rb +6 -4
- data/spec/mongo/collection/view/builder/find_command_spec.rb +17 -6
- data/spec/mongo/collection/view/change_stream_resume_spec.rb +392 -0
- data/spec/mongo/collection/view/change_stream_spec.rb +3 -321
- data/spec/mongo/collection/view/iterable_spec.rb +38 -0
- data/spec/mongo/collection/view/map_reduce_spec.rb +9 -5
- data/spec/mongo/collection/view/readable_spec.rb +15 -1
- data/spec/mongo/collection/view/writable_spec.rb +208 -1
- data/spec/mongo/collection/view_spec.rb +1 -1
- data/spec/mongo/collection_spec.rb +35 -52
- 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 +115 -0
- data/spec/mongo/crypt/binding/binary_spec.rb +56 -0
- data/spec/mongo/crypt/binding/context_spec.rb +257 -0
- data/spec/mongo/crypt/binding/helpers_spec.rb +46 -0
- data/spec/mongo/crypt/binding/mongocrypt_spec.rb +144 -0
- data/spec/mongo/crypt/binding/status_spec.rb +99 -0
- data/spec/mongo/crypt/binding/version_spec.rb +22 -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 +152 -0
- data/spec/mongo/cursor/builder/get_more_command_spec.rb +6 -1
- data/spec/mongo/cursor/builder/op_get_more_spec.rb +6 -1
- data/spec/mongo/cursor/builder/op_kill_cursors_spec.rb +61 -0
- data/spec/mongo/cursor_spec.rb +33 -5
- data/spec/mongo/database_spec.rb +26 -2
- 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 +11 -1
- 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 +130 -72
- data/spec/mongo/error/unsupported_option_spec.rb +54 -0
- data/spec/mongo/grid/fs_bucket_spec.rb +18 -0
- data/spec/mongo/grid/stream/write_spec.rb +32 -0
- data/spec/mongo/index/view_spec.rb +166 -0
- data/spec/mongo/operation/aggregate/result_spec.rb +6 -1
- data/spec/mongo/operation/aggregate_spec.rb +1 -1
- data/spec/mongo/operation/collections_info_spec.rb +1 -1
- data/spec/mongo/operation/command_spec.rb +3 -3
- data/spec/mongo/operation/create_index_spec.rb +3 -3
- data/spec/mongo/operation/create_user_spec.rb +3 -3
- data/spec/mongo/operation/delete/bulk_spec.rb +18 -6
- data/spec/mongo/operation/delete/op_msg_spec.rb +23 -20
- data/spec/mongo/operation/delete_spec.rb +7 -7
- data/spec/mongo/operation/drop_index_spec.rb +2 -2
- data/spec/mongo/operation/find/legacy_spec.rb +27 -6
- data/spec/mongo/operation/get_more_spec.rb +6 -1
- data/spec/mongo/operation/indexes_spec.rb +1 -1
- data/spec/mongo/operation/insert/bulk_spec.rb +21 -7
- data/spec/mongo/operation/insert/command_spec.rb +4 -0
- data/spec/mongo/operation/insert/op_msg_spec.rb +25 -20
- data/spec/mongo/operation/insert_spec.rb +12 -12
- data/spec/mongo/operation/limited_spec.rb +5 -3
- data/spec/mongo/operation/map_reduce_spec.rb +2 -2
- 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 +3 -3
- data/spec/mongo/operation/result_spec.rb +6 -1
- data/spec/mongo/operation/update/bulk_spec.rb +18 -6
- data/spec/mongo/operation/update/command_spec.rb +4 -0
- data/spec/mongo/operation/update/op_msg_spec.rb +25 -20
- data/spec/mongo/operation/update_spec.rb +7 -7
- data/spec/mongo/operation/update_user_spec.rb +1 -1
- data/spec/mongo/protocol/compressed_spec.rb +2 -3
- data/spec/mongo/protocol/delete_spec.rb +9 -8
- data/spec/mongo/protocol/get_more_spec.rb +9 -8
- data/spec/mongo/protocol/insert_spec.rb +9 -8
- data/spec/mongo/protocol/kill_cursors_spec.rb +6 -5
- data/spec/mongo/protocol/msg_spec.rb +57 -53
- data/spec/mongo/protocol/query_spec.rb +12 -12
- data/spec/mongo/protocol/registry_spec.rb +1 -1
- data/spec/mongo/protocol/reply_spec.rb +1 -1
- data/spec/mongo/protocol/update_spec.rb +10 -9
- data/spec/mongo/retryable_spec.rb +71 -70
- data/spec/mongo/server/app_metadata_shared.rb +56 -0
- data/spec/mongo/server/app_metadata_spec.rb +8 -1
- data/spec/mongo/server/connection_auth_spec.rb +31 -12
- data/spec/mongo/server/connection_pool_spec.rb +1 -32
- data/spec/mongo/server/connection_spec.rb +143 -74
- data/spec/mongo/server/monitor/app_metadata_spec.rb +8 -1
- data/spec/mongo/server/monitor/connection_spec.rb +7 -81
- data/spec/mongo/server/monitor_spec.rb +76 -17
- data/spec/mongo/server/round_trip_time_averager_spec.rb +5 -3
- data/spec/mongo/server_selector/nearest_spec.rb +1 -0
- data/spec/mongo/server_selector/primary_preferred_spec.rb +1 -0
- data/spec/mongo/server_selector/primary_spec.rb +18 -0
- data/spec/mongo/server_selector/secondary_preferred_spec.rb +18 -1
- data/spec/mongo/server_selector/secondary_spec.rb +1 -0
- data/spec/mongo/server_selector_spec.rb +0 -1
- data/spec/mongo/session/session_pool_spec.rb +7 -3
- data/spec/mongo/socket/ssl_spec.rb +134 -100
- data/spec/mongo/socket/tcp_spec.rb +3 -11
- data/spec/mongo/socket/unix_spec.rb +2 -2
- data/spec/mongo/socket_spec.rb +9 -9
- data/spec/mongo/srv/monitor_spec.rb +88 -69
- data/spec/mongo/timeout_spec.rb +39 -0
- data/spec/mongo/uri/srv_protocol_spec.rb +2 -2
- data/spec/mongo/uri_spec.rb +74 -12
- data/spec/mongo/write_concern_spec.rb +13 -1
- data/spec/{support → runners}/auth.rb +19 -7
- 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/{support → runners}/cmap.rb +1 -1
- data/spec/{support → runners}/cmap/verifier.rb +1 -1
- data/spec/{support → runners}/command_monitoring.rb +2 -2
- data/spec/runners/connection_string.rb +359 -4
- data/spec/{support → runners}/crud.rb +11 -11
- data/spec/{support → runners}/crud/context.rb +1 -1
- data/spec/{support → runners}/crud/operation.rb +127 -33
- data/spec/{support → runners}/crud/outcome.rb +1 -1
- data/spec/{support → runners}/crud/requirement.rb +1 -1
- data/spec/{support → runners}/crud/spec.rb +13 -1
- data/spec/{support → runners}/crud/test.rb +8 -26
- data/spec/runners/crud/test_base.rb +69 -0
- data/spec/{support → runners}/crud/verifier.rb +29 -13
- data/spec/{support → runners}/gridfs.rb +1 -1
- data/spec/{support/server_discovery_and_monitoring.rb → runners/sdam.rb} +41 -22
- data/spec/runners/sdam/verifier.rb +26 -8
- data/spec/{support → runners}/sdam_monitoring.rb +1 -1
- data/spec/{support → runners}/server_selection.rb +0 -0
- data/spec/{support → runners}/server_selection_rtt.rb +0 -0
- data/spec/{support → runners}/transactions.rb +10 -13
- data/spec/{support → runners}/transactions/context.rb +1 -1
- data/spec/{support → runners}/transactions/operation.rb +5 -1
- data/spec/{support → runners}/transactions/spec.rb +1 -1
- data/spec/{support → runners}/transactions/test.rb +82 -56
- data/spec/spec_helper.rb +0 -5
- data/spec/spec_tests/auth_spec.rb +5 -3
- data/spec/spec_tests/change_streams_spec.rb +39 -4
- data/spec/spec_tests/client_side_encryption_spec.rb +11 -0
- data/spec/spec_tests/cmap_spec.rb +5 -0
- data/spec/spec_tests/command_monitoring_spec.rb +3 -0
- data/spec/spec_tests/connection_string_spec.rb +3 -1
- data/spec/spec_tests/crud_spec.rb +2 -0
- data/spec/spec_tests/data/auth/connection-string.yml +69 -0
- data/spec/spec_tests/data/change_streams/change-streams-errors.yml +30 -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 +1107 -0
- data/spec/spec_tests/data/change_streams/change-streams.yml +5 -4
- 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/crud_v2/aggregate-merge.yml +1 -1
- data/spec/spec_tests/data/crud_v2/bulkWrite-arrayFilters.yml +33 -11
- 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/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 +65 -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/read_write_concern/connection-string/write-concern.yml +1 -4
- 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_writes/bulkWrite-errorLabels.yml +77 -0
- data/spec/spec_tests/data/retryable_writes/bulkWrite-serverErrors.yml +37 -0
- data/spec/spec_tests/data/retryable_writes/deleteOne-errorLabels.yml +48 -0
- data/spec/spec_tests/data/retryable_writes/deleteOne-serverErrors.yml +22 -0
- data/spec/spec_tests/data/retryable_writes/findOneAndDelete-errorLabels.yml +49 -0
- data/spec/spec_tests/data/retryable_writes/findOneAndDelete-serverErrors.yml +23 -0
- data/spec/spec_tests/data/retryable_writes/findOneAndReplace-errorLabels.yml +52 -0
- data/spec/spec_tests/data/retryable_writes/findOneAndReplace-serverErrors.yml +25 -0
- data/spec/spec_tests/data/retryable_writes/findOneAndUpdate-errorLabels.yml +52 -0
- data/spec/spec_tests/data/retryable_writes/findOneAndUpdate-serverErrors.yml +24 -0
- data/spec/spec_tests/data/retryable_writes/insertMany-errorLabels.yml +54 -0
- data/spec/spec_tests/data/retryable_writes/insertMany-serverErrors.yml +24 -0
- data/spec/spec_tests/data/retryable_writes/insertOne-errorLabels.yml +44 -0
- data/spec/spec_tests/data/retryable_writes/insertOne-serverErrors.yml +90 -0
- data/spec/spec_tests/data/retryable_writes/replaceOne-errorLabels.yml +53 -0
- data/spec/spec_tests/data/retryable_writes/replaceOne-serverErrors.yml +23 -0
- data/spec/spec_tests/data/retryable_writes/updateOne-errorLabels.yml +53 -0
- data/spec/spec_tests/data/retryable_writes/updateOne-serverErrors.yml +23 -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 +2 -0
- data/spec/spec_tests/data/sdam/rs/compatible_unknown.yml +2 -0
- data/spec/spec_tests/data/sdam/rs/discover_arbiters.yml +2 -2
- 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/{ghost_discovered.yml → discover_ghost_replicaset.yml} +1 -1
- 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 +2 -2
- data/spec/spec_tests/data/sdam/rs/discover_passives_replicaset.yml +81 -0
- data/spec/spec_tests/data/sdam/rs/discover_primary.yml +2 -2
- 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/{rsother_discovered.yml → discover_rsother_replicaset.yml} +1 -1
- data/spec/spec_tests/data/sdam/rs/discover_secondary.yml +2 -2
- data/spec/spec_tests/data/sdam/rs/discover_secondary_replicaset.yml +43 -0
- data/spec/spec_tests/data/sdam/rs/incompatible_arbiter.yml +2 -0
- data/spec/spec_tests/data/sdam/rs/incompatible_ghost.yml +4 -4
- data/spec/spec_tests/data/sdam/rs/incompatible_other.yml +3 -1
- data/spec/spec_tests/data/sdam/rs/primary_mismatched_me.yml +23 -27
- data/spec/spec_tests/data/sdam/rs/primary_mismatched_me_not_removed.yml +73 -0
- data/spec/spec_tests/data/sdam/rs/primary_to_no_primary_mismatched_me.yml +79 -56
- 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/{primary_address_change.yml → ruby_primary_address_change.yml} +2 -0
- data/spec/spec_tests/data/sdam/rs/{secondary_wrong_set_name_with_primary_second.yml → ruby_secondary_wrong_set_name_with_primary_second.yml} +0 -0
- data/spec/spec_tests/data/sdam/rs/secondary_mismatched_me.yml +3 -2
- data/spec/spec_tests/data/sdam/rs/too_new.yml +2 -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/sharded/discover_single_mongos.yml +23 -0
- data/spec/spec_tests/data/sdam/sharded/{primary_address_change.yml → ruby_primary_different_address.yml} +1 -1
- data/spec/spec_tests/data/sdam/sharded/{primary_mismatched_me.yml → ruby_primary_mismatched_me.yml} +1 -1
- data/spec/spec_tests/data/sdam/single/direct_connection_external_ip.yml +1 -1
- data/spec/spec_tests/data/sdam/single/direct_connection_mongos.yml +2 -2
- data/spec/spec_tests/data/sdam/single/direct_connection_replicaset.yml +22 -0
- data/spec/spec_tests/data/sdam/single/direct_connection_rsarbiter.yml +2 -2
- data/spec/spec_tests/data/sdam/single/direct_connection_rsprimary.yml +2 -2
- data/spec/spec_tests/data/sdam/single/direct_connection_rssecondary.yml +2 -2
- data/spec/spec_tests/data/sdam/single/direct_connection_slave.yml +1 -1
- data/spec/spec_tests/data/sdam/single/direct_connection_standalone.yml +2 -2
- data/spec/spec_tests/data/sdam/single/{unavailable_seed.yml → direct_connection_unavailable_seed.yml} +2 -2
- data/spec/spec_tests/data/sdam/single/direct_connection_wrong_set_name.yml +38 -0
- data/spec/spec_tests/data/sdam/{sharded/single_mongos.yml → single/discover_standalone.yml} +7 -6
- data/spec/spec_tests/data/sdam/single/discover_unavailable_seed.yml +28 -0
- data/spec/spec_tests/data/sdam/single/{primary_address_change.yml → ruby_primary_different_address.yml} +1 -1
- data/spec/spec_tests/data/sdam/single/{primary_mismatched_me.yml → ruby_primary_mismatched_me.yml} +1 -1
- data/spec/spec_tests/data/sdam/single/too_old_then_upgraded.yml +46 -0
- data/spec/spec_tests/data/sdam_monitoring/{replica_set_with_primary_change.yml → replica_set_primary_address_change.yml} +27 -5
- data/spec/spec_tests/data/sdam_monitoring/replica_set_with_me_mismatch.yml +26 -74
- data/spec/spec_tests/data/sdam_monitoring/replica_set_with_removal.yml +20 -16
- data/spec/spec_tests/data/sdam_monitoring/standalone_suppress_equal_description_changes.yml +73 -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/error-labels.yml +87 -21
- data/spec/spec_tests/data/transactions/mongos-recovery-token.yml +1 -0
- data/spec/spec_tests/data/transactions/pin-mongos.yml +2 -3
- data/spec/spec_tests/data/transactions/retryable-abort-errorLabels.yml +124 -0
- data/spec/spec_tests/data/transactions/retryable-abort.yml +17 -2
- data/spec/spec_tests/data/transactions/retryable-commit-errorLabels.yml +132 -0
- data/spec/spec_tests/data/transactions/retryable-commit.yml +24 -9
- data/spec/spec_tests/data/uri_options/auth-options.yml +10 -0
- data/spec/spec_tests/data/uri_options/connection-options.yml +43 -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 +57 -0
- data/spec/spec_tests/data/uri_options/tls-options.yml +75 -4
- data/spec/spec_tests/dns_seedlist_discovery_spec.rb +3 -1
- data/spec/spec_tests/gridfs_spec.rb +2 -0
- data/spec/spec_tests/max_staleness_spec.rb +3 -1
- data/spec/spec_tests/read_write_concern_connection_string_spec.rb +3 -1
- data/spec/spec_tests/read_write_concern_operaton_spec.rb +10 -0
- data/spec/spec_tests/retryable_reads_spec.rb +2 -0
- data/spec/spec_tests/retryable_writes_spec.rb +8 -1
- data/spec/spec_tests/sdam_monitoring_spec.rb +3 -1
- data/spec/spec_tests/sdam_spec.rb +70 -1
- data/spec/spec_tests/server_selection_rtt_spec.rb +2 -0
- data/spec/spec_tests/server_selection_spec.rb +2 -0
- data/spec/spec_tests/transactions_api_spec.rb +5 -0
- data/spec/spec_tests/transactions_spec.rb +5 -0
- data/spec/spec_tests/uri_options_spec.rb +8 -8
- data/spec/stress/cleanup_spec.rb +43 -0
- data/spec/stress/connection_pool_stress_spec.rb +1 -5
- data/spec/stress/connection_pool_timing_spec.rb +9 -9
- data/spec/stress/fork_reconnect_stress_spec.rb +109 -0
- data/spec/support/authorization.rb +1 -11
- data/spec/support/aws_utils.rb +62 -0
- 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/background_thread_registry.rb +6 -2
- data/spec/support/certificates/README.md +4 -0
- data/spec/support/certificates/server-second-level-bundle.pem +77 -77
- data/spec/support/certificates/server-second-level.crt +52 -52
- data/spec/support/certificates/server-second-level.key +25 -25
- data/spec/support/certificates/server-second-level.pem +77 -77
- data/spec/support/client_registry.rb +24 -27
- data/spec/support/cluster_config.rb +10 -1
- data/spec/support/cluster_tools.rb +11 -4
- data/spec/support/common_shortcuts.rb +55 -0
- data/spec/support/constraints.rb +43 -7
- data/spec/support/crypt.rb +154 -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/event_subscriber.rb +94 -84
- data/spec/support/lite_constraints.rb +74 -1
- data/spec/support/matchers.rb +19 -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 +81 -1
- data/spec/support/shared/session.rb +29 -21
- data/spec/support/spec_config.rb +92 -22
- data/spec/support/spec_setup.rb +8 -4
- data/spec/support/utils.rb +263 -32
- metadata +1285 -682
- metadata.gz.sig +0 -0
- data/lib/mongo/cluster/srv_monitor.rb +0 -127
- data/lib/mongo/server/connectable.rb +0 -107
- data/lib/mongo/srv/warning_result.rb +0 -35
- data/spec/enterprise_auth/kerberos_spec.rb +0 -58
- data/spec/mongo/cluster/srv_monitor_spec.rb +0 -214
- data/spec/mongo/operation/read_preference_spec.rb +0 -245
- data/spec/support/change_streams.rb +0 -262
- data/spec/support/change_streams/operation.rb +0 -89
- data/spec/support/connection_string.rb +0 -354
- data/spec/support/crud/test_base.rb +0 -22
@@ -1,6 +1,6 @@
|
|
1
|
-
require '
|
1
|
+
require 'lite_spec_helper'
|
2
2
|
|
3
|
-
describe 'Client options' do
|
3
|
+
describe 'Client authentication options' do
|
4
4
|
let(:uri) { "mongodb://#{credentials}127.0.0.1:27017/#{options}" }
|
5
5
|
|
6
6
|
let(:credentials) { nil }
|
@@ -38,7 +38,7 @@ describe 'Client options' do
|
|
38
38
|
end
|
39
39
|
end
|
40
40
|
|
41
|
-
shared_examples_for 'auth mechanism that uses database or default auth source' do |default_auth_source
|
41
|
+
shared_examples_for 'auth mechanism that uses database or default auth source' do |default_auth_source|
|
42
42
|
context 'where no database is provided' do
|
43
43
|
context 'with URI options' do
|
44
44
|
let(:credentials) { "#{user}:#{pwd}@" }
|
@@ -198,7 +198,7 @@ describe 'Client options' do
|
|
198
198
|
let(:auth_mech_sym) { :mongodb_cr }
|
199
199
|
|
200
200
|
it_behaves_like 'a supported auth mechanism'
|
201
|
-
it_behaves_like 'auth mechanism that uses database or default auth source',
|
201
|
+
it_behaves_like 'auth mechanism that uses database or default auth source', 'admin'
|
202
202
|
it_behaves_like 'an auth mechanism that doesn\'t support auth_mech_properties'
|
203
203
|
end
|
204
204
|
|
@@ -207,7 +207,7 @@ describe 'Client options' do
|
|
207
207
|
let(:auth_mech_sym) { :scram }
|
208
208
|
|
209
209
|
it_behaves_like 'a supported auth mechanism'
|
210
|
-
it_behaves_like 'auth mechanism that uses database or default auth source',
|
210
|
+
it_behaves_like 'auth mechanism that uses database or default auth source', 'admin'
|
211
211
|
it_behaves_like 'an auth mechanism that doesn\'t support auth_mech_properties'
|
212
212
|
end
|
213
213
|
|
@@ -216,7 +216,7 @@ describe 'Client options' do
|
|
216
216
|
let(:auth_mech_sym) { :scram256 }
|
217
217
|
|
218
218
|
it_behaves_like 'a supported auth mechanism'
|
219
|
-
it_behaves_like 'auth mechanism that uses database or default auth source',
|
219
|
+
it_behaves_like 'auth mechanism that uses database or default auth source', 'admin'
|
220
220
|
it_behaves_like 'an auth mechanism that doesn\'t support auth_mech_properties'
|
221
221
|
end
|
222
222
|
|
@@ -263,7 +263,7 @@ describe 'Client options' do
|
|
263
263
|
let(:auth_mech_sym) { :plain }
|
264
264
|
|
265
265
|
it_behaves_like 'a supported auth mechanism'
|
266
|
-
it_behaves_like 'auth mechanism that uses database or default auth source',
|
266
|
+
it_behaves_like 'auth mechanism that uses database or default auth source', '$external'
|
267
267
|
it_behaves_like 'an auth mechanism with ssl'
|
268
268
|
it_behaves_like 'an auth mechanism that doesn\'t support auth_mech_properties'
|
269
269
|
end
|
@@ -299,9 +299,9 @@ describe 'Client options' do
|
|
299
299
|
let(:credentials) { "#{user}:password@" }
|
300
300
|
|
301
301
|
it 'raises an exception on client creation' do
|
302
|
-
expect
|
302
|
+
expect do
|
303
303
|
client
|
304
|
-
|
304
|
+
end.to raise_error(Mongo::Auth::InvalidConfiguration, /Password is not supported/)
|
305
305
|
end
|
306
306
|
end
|
307
307
|
end
|
@@ -325,9 +325,9 @@ describe 'Client options' do
|
|
325
325
|
let(:client_opts) { { auth_mech: :mongodb_x509, user: user, password: 'password' } }
|
326
326
|
|
327
327
|
it 'raises an exception on client creation' do
|
328
|
-
expect
|
328
|
+
expect do
|
329
329
|
client
|
330
|
-
|
330
|
+
end.to raise_error(Mongo::Auth::InvalidConfiguration, /Password is not supported/)
|
331
331
|
end
|
332
332
|
end
|
333
333
|
end
|
@@ -346,9 +346,9 @@ describe 'Client options' do
|
|
346
346
|
let(:credentials) { '@' }
|
347
347
|
|
348
348
|
it 'raises an exception' do
|
349
|
-
expect
|
349
|
+
expect do
|
350
350
|
client
|
351
|
-
|
351
|
+
end.to raise_error(Mongo::Auth::InvalidConfiguration, /Empty username is not supported/)
|
352
352
|
end
|
353
353
|
end
|
354
354
|
end
|
@@ -365,9 +365,9 @@ describe 'Client options' do
|
|
365
365
|
let(:client_opts) { { user: '', password: '' } }
|
366
366
|
|
367
367
|
it 'raises an exception' do
|
368
|
-
expect
|
368
|
+
expect do
|
369
369
|
client
|
370
|
-
|
370
|
+
end.to raise_error(Mongo::Auth::InvalidConfiguration, /Empty username is not supported/)
|
371
371
|
end
|
372
372
|
end
|
373
373
|
end
|
@@ -0,0 +1,191 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe 'Client construction with AWS auth' do
|
4
|
+
require_aws_auth
|
5
|
+
|
6
|
+
let(:client) do
|
7
|
+
new_local_client(SpecConfig.instance.addresses,
|
8
|
+
SpecConfig.instance.ssl_options.merge(
|
9
|
+
auth_mech: :aws,
|
10
|
+
connect_timeout: 3.44, socket_timeout: 3.45,
|
11
|
+
server_selection_timeout: 3.46))
|
12
|
+
end
|
13
|
+
|
14
|
+
let(:authenticated_user_info) do
|
15
|
+
# https://stackoverflow.com/questions/21414608/mongodb-show-current-user
|
16
|
+
info = client.database.command(connectionStatus: 1).documents.first
|
17
|
+
info[:authInfo][:authenticatedUsers].first
|
18
|
+
end
|
19
|
+
|
20
|
+
let(:authenticated_user_name) { authenticated_user_info[:user] }
|
21
|
+
|
22
|
+
shared_examples_for 'connects successfully' do
|
23
|
+
it 'connects successfully' do
|
24
|
+
client['foo'].insert_one(test: true)
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
context 'credentials specified explicitly' do
|
29
|
+
|
30
|
+
let(:username) { ENV.fetch('MONGO_RUBY_DRIVER_AWS_AUTH_ACCESS_KEY_ID') }
|
31
|
+
let(:password) { ENV.fetch('MONGO_RUBY_DRIVER_AWS_AUTH_SECRET_ACCESS_KEY') }
|
32
|
+
let(:session_token) { ENV.fetch('MONGO_RUBY_DRIVER_AWS_AUTH_SESSION_TOKEN') }
|
33
|
+
let(:address_strs) { SpecConfig.instance.addresses.join(',') }
|
34
|
+
|
35
|
+
context 'regular credentials' do
|
36
|
+
require_auth 'aws-regular'
|
37
|
+
|
38
|
+
context 'via Ruby options' do
|
39
|
+
let(:client) do
|
40
|
+
new_local_client(SpecConfig.instance.addresses,
|
41
|
+
SpecConfig.instance.ssl_options.merge(
|
42
|
+
auth_mech: :aws,
|
43
|
+
user: username,
|
44
|
+
password: password,
|
45
|
+
connect_timeout: 3.34, socket_timeout: 3.35,
|
46
|
+
server_selection_timeout: 3.36))
|
47
|
+
end
|
48
|
+
|
49
|
+
it_behaves_like 'connects successfully'
|
50
|
+
|
51
|
+
it 'uses the expected user' do
|
52
|
+
puts "Authenticated as #{authenticated_user_name}"
|
53
|
+
authenticated_user_name.should =~ /^arn:aws:iam:/
|
54
|
+
end
|
55
|
+
end
|
56
|
+
|
57
|
+
context 'via URI' do
|
58
|
+
let(:client) do
|
59
|
+
new_local_client("mongodb://#{CGI.escape(username)}:#{CGI.escape(password)}@#{address_strs}/test?authMechanism=MONGODB-AWS&serverSelectionTimeoutMS=3.26")
|
60
|
+
end
|
61
|
+
|
62
|
+
it_behaves_like 'connects successfully'
|
63
|
+
|
64
|
+
it 'uses the expected user' do
|
65
|
+
puts "Authenticated as #{authenticated_user_name}"
|
66
|
+
authenticated_user_name.should =~ /^arn:aws:iam:/
|
67
|
+
end
|
68
|
+
end
|
69
|
+
end
|
70
|
+
|
71
|
+
context 'temporary credentials' do
|
72
|
+
require_auth 'aws-assume-role'
|
73
|
+
|
74
|
+
context 'via Ruby options' do
|
75
|
+
let(:client) do
|
76
|
+
new_local_client(SpecConfig.instance.addresses,
|
77
|
+
SpecConfig.instance.ssl_options.merge(
|
78
|
+
auth_mech: :aws,
|
79
|
+
user: username,
|
80
|
+
password: password,
|
81
|
+
auth_mech_properties: {
|
82
|
+
aws_session_token: session_token,
|
83
|
+
},
|
84
|
+
connect_timeout: 3.34, socket_timeout: 3.35,
|
85
|
+
server_selection_timeout: 3.36))
|
86
|
+
end
|
87
|
+
|
88
|
+
it_behaves_like 'connects successfully'
|
89
|
+
|
90
|
+
it 'uses the expected user' do
|
91
|
+
puts "Authenticated as #{authenticated_user_name}"
|
92
|
+
authenticated_user_name.should =~ /^arn:aws:sts:/
|
93
|
+
end
|
94
|
+
end
|
95
|
+
|
96
|
+
context 'via URI' do
|
97
|
+
let(:client) do
|
98
|
+
new_local_client("mongodb://#{CGI.escape(username)}:#{CGI.escape(password)}@#{address_strs}/test?authMechanism=MONGODB-AWS&serverSelectionTimeoutMS=3.26&authMechanismProperties=AWS_SESSION_TOKEN:#{CGI.escape(session_token)}")
|
99
|
+
end
|
100
|
+
|
101
|
+
it_behaves_like 'connects successfully'
|
102
|
+
|
103
|
+
it 'uses the expected user' do
|
104
|
+
puts "Authenticated as #{authenticated_user_name}"
|
105
|
+
authenticated_user_name.should =~ /^arn:aws:sts:/
|
106
|
+
end
|
107
|
+
end
|
108
|
+
end
|
109
|
+
end
|
110
|
+
|
111
|
+
context 'credentials specified via environment' do
|
112
|
+
require_auth 'aws-regular', 'aws-assume-role'
|
113
|
+
|
114
|
+
context 'no credentials given explicitly to Client constructor' do
|
115
|
+
context 'credentials not provided in environment' do
|
116
|
+
local_env(
|
117
|
+
'AWS_ACCESS_KEY_ID' => nil,
|
118
|
+
'AWS_SECRET_ACCESS_KEY' => nil,
|
119
|
+
'AWS_SESSION_TOKEN' => nil,
|
120
|
+
)
|
121
|
+
|
122
|
+
it 'does not connect' do
|
123
|
+
lambda do
|
124
|
+
client['foo'].insert_one(test: true)
|
125
|
+
end.should raise_error(Mongo::Auth::InvalidConfiguration, /Could not locate AWS credentials/)
|
126
|
+
end
|
127
|
+
end
|
128
|
+
|
129
|
+
context 'credentials provided in environment' do
|
130
|
+
local_env do
|
131
|
+
{
|
132
|
+
'AWS_ACCESS_KEY_ID' => ENV.fetch('MONGO_RUBY_DRIVER_AWS_AUTH_ACCESS_KEY_ID'),
|
133
|
+
'AWS_SECRET_ACCESS_KEY' => ENV.fetch('MONGO_RUBY_DRIVER_AWS_AUTH_SECRET_ACCESS_KEY'),
|
134
|
+
'AWS_SESSION_TOKEN' => ENV['MONGO_RUBY_DRIVER_AWS_AUTH_SESSION_TOKEN'],
|
135
|
+
}
|
136
|
+
end
|
137
|
+
|
138
|
+
it_behaves_like 'connects successfully'
|
139
|
+
|
140
|
+
context 'when using regular credentials' do
|
141
|
+
require_auth 'aws-regular'
|
142
|
+
|
143
|
+
it 'uses the expected user' do
|
144
|
+
puts "Authenticated as #{authenticated_user_name}"
|
145
|
+
authenticated_user_name.should =~ /^arn:/
|
146
|
+
authenticated_user_name.should_not =~ /^arn:.*assumed-role/
|
147
|
+
end
|
148
|
+
end
|
149
|
+
|
150
|
+
context 'when using assume role credentials' do
|
151
|
+
require_auth 'aws-assume-role'
|
152
|
+
|
153
|
+
it 'uses the expected user' do
|
154
|
+
puts "Authenticated as #{authenticated_user_name}"
|
155
|
+
authenticated_user_name.should =~ /^arn:.*assumed-role/
|
156
|
+
end
|
157
|
+
end
|
158
|
+
end
|
159
|
+
end
|
160
|
+
end
|
161
|
+
|
162
|
+
context 'credentials specified via instance/task metadata' do
|
163
|
+
require_auth 'aws-ec2', 'aws-ecs'
|
164
|
+
|
165
|
+
before(:all) do
|
166
|
+
# No explicit credentials are expected in the tested configurations
|
167
|
+
ENV['AWS_ACCESS_KEY_ID'].should be_nil
|
168
|
+
end
|
169
|
+
|
170
|
+
it_behaves_like 'connects successfully'
|
171
|
+
|
172
|
+
context 'when using ec2 instance role' do
|
173
|
+
require_auth 'aws-ec2'
|
174
|
+
|
175
|
+
it 'uses the expected user' do
|
176
|
+
puts "Authenticated as #{authenticated_user_name}"
|
177
|
+
authenticated_user_name.should =~ /^arn:aws:sts:.*assumed-role.*instance_profile_role/
|
178
|
+
end
|
179
|
+
end
|
180
|
+
|
181
|
+
context 'when using ecs task role' do
|
182
|
+
require_auth 'aws-ecs'
|
183
|
+
|
184
|
+
it 'uses the expected user' do
|
185
|
+
puts "Authenticated as #{authenticated_user_name}"
|
186
|
+
authenticated_user_name.should =~ /^arn:aws:sts:.*assumed-role.*ecstaskexecutionrole/i
|
187
|
+
end
|
188
|
+
end
|
189
|
+
end
|
190
|
+
|
191
|
+
end
|
@@ -7,7 +7,7 @@ describe 'Client construction' do
|
|
7
7
|
SpecConfig.instance.test_options.merge(
|
8
8
|
server_selection_timeout: 5,
|
9
9
|
database: SpecConfig.instance.test_db,
|
10
|
-
).merge(SpecConfig.instance.
|
10
|
+
).merge(SpecConfig.instance.credentials_or_external_user(
|
11
11
|
user: SpecConfig.instance.test_user.name,
|
12
12
|
password: SpecConfig.instance.test_user.password,
|
13
13
|
))
|
@@ -36,7 +36,7 @@ describe 'Client construction' do
|
|
36
36
|
|
37
37
|
it 'creates connection pool and keeps it populated' do
|
38
38
|
client = ClientRegistry.instance.new_local_client([SpecConfig.instance.addresses.first],
|
39
|
-
base_options.merge(min_pool_size: 1))
|
39
|
+
base_options.merge(min_pool_size: 1, max_pool_size: 1))
|
40
40
|
# allow connection pool to populate
|
41
41
|
sleep 0.1
|
42
42
|
|
@@ -133,4 +133,103 @@ describe 'Client construction' do
|
|
133
133
|
expect(client.cluster.topology).not_to be_a(Mongo::Cluster::Topology::Unknown)
|
134
134
|
end
|
135
135
|
end
|
136
|
+
|
137
|
+
context 'with auto encryption options'do
|
138
|
+
require_libmongocrypt
|
139
|
+
require_enterprise
|
140
|
+
min_server_fcv '4.2'
|
141
|
+
|
142
|
+
# Diagnostics of leaked background threads only, these tests do not
|
143
|
+
# actually require a clean slate. https://jira.mongodb.org/browse/RUBY-2138
|
144
|
+
clean_slate
|
145
|
+
|
146
|
+
include_context 'define shared FLE helpers'
|
147
|
+
include_context 'with local kms_providers'
|
148
|
+
|
149
|
+
let(:options) { { auto_encryption_options: auto_encryption_options } }
|
150
|
+
|
151
|
+
let(:auto_encryption_options) do
|
152
|
+
{
|
153
|
+
key_vault_client: key_vault_client,
|
154
|
+
key_vault_namespace: key_vault_namespace,
|
155
|
+
kms_providers: kms_providers,
|
156
|
+
# Spawn mongocryptd on non-default port for sharded cluster tests
|
157
|
+
extra_options: extra_options,
|
158
|
+
}
|
159
|
+
end
|
160
|
+
|
161
|
+
let(:client) do
|
162
|
+
ClientRegistry.instance.new_local_client([SpecConfig.instance.addresses.first], options)
|
163
|
+
end
|
164
|
+
|
165
|
+
context 'with AWS kms providers with empty string credentials' do
|
166
|
+
let(:auto_encryption_options) do
|
167
|
+
{
|
168
|
+
key_vault_namespace: key_vault_namespace,
|
169
|
+
kms_providers: {
|
170
|
+
aws: {
|
171
|
+
access_key_id: '',
|
172
|
+
secret_access_key: '',
|
173
|
+
}
|
174
|
+
},
|
175
|
+
# Spawn mongocryptd on non-default port for sharded cluster tests
|
176
|
+
extra_options: extra_options,
|
177
|
+
}
|
178
|
+
end
|
179
|
+
|
180
|
+
it 'raises an exception' do
|
181
|
+
expect do
|
182
|
+
client
|
183
|
+
end.to raise_error(ArgumentError, /The aws access_key_id option must be a String with at least one character; it is currently an empty string/)
|
184
|
+
end
|
185
|
+
end
|
186
|
+
|
187
|
+
context 'with default key vault client' do
|
188
|
+
let(:key_vault_client) { nil }
|
189
|
+
|
190
|
+
it 'creates a working key vault client' do
|
191
|
+
key_vault_client = client.encrypter.key_vault_client
|
192
|
+
|
193
|
+
result = key_vault_client[:test].insert_one(test: 1)
|
194
|
+
expect(result).to be_ok
|
195
|
+
end
|
196
|
+
|
197
|
+
it 'creates a key vault client with the same cluster as the existing client' do
|
198
|
+
key_vault_client = client.encrypter.key_vault_client
|
199
|
+
expect(key_vault_client.cluster).to eq(client.cluster)
|
200
|
+
end
|
201
|
+
end
|
202
|
+
end
|
203
|
+
|
204
|
+
context 'when seed addresses are repeated in host list' do
|
205
|
+
require_topology :single
|
206
|
+
|
207
|
+
let(:primary_address) do
|
208
|
+
ClusterConfig.instance.primary_address_host
|
209
|
+
end
|
210
|
+
|
211
|
+
let(:client) do
|
212
|
+
new_local_client([primary_address, primary_address], SpecConfig.instance.test_options)
|
213
|
+
end
|
214
|
+
|
215
|
+
it 'deduplicates the addresses' do
|
216
|
+
expect(client.cluster.addresses).to eq([Mongo::Address.new(primary_address)])
|
217
|
+
end
|
218
|
+
end
|
219
|
+
|
220
|
+
context 'when seed addresses are repeated in URI' do
|
221
|
+
require_topology :single
|
222
|
+
|
223
|
+
let(:primary_address) do
|
224
|
+
ClusterConfig.instance.primary_address_host
|
225
|
+
end
|
226
|
+
|
227
|
+
let(:client) do
|
228
|
+
new_local_client("mongodb://#{primary_address},#{primary_address}", SpecConfig.instance.test_options)
|
229
|
+
end
|
230
|
+
|
231
|
+
it 'deduplicates the addresses' do
|
232
|
+
expect(client.cluster.addresses).to eq([Mongo::Address.new(primary_address)])
|
233
|
+
end
|
234
|
+
end
|
136
235
|
end
|
@@ -0,0 +1,353 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe 'Bulk writes with auto-encryption enabled' do
|
4
|
+
require_libmongocrypt
|
5
|
+
require_enterprise
|
6
|
+
min_server_fcv '4.2'
|
7
|
+
|
8
|
+
include_context 'define shared FLE helpers'
|
9
|
+
include_context 'with local kms_providers'
|
10
|
+
|
11
|
+
let(:subscriber) { EventSubscriber.new }
|
12
|
+
|
13
|
+
let(:client) do
|
14
|
+
new_local_client(
|
15
|
+
SpecConfig.instance.addresses,
|
16
|
+
SpecConfig.instance.test_options.merge(
|
17
|
+
auto_encryption_options: {
|
18
|
+
kms_providers: kms_providers,
|
19
|
+
key_vault_namespace: key_vault_namespace,
|
20
|
+
schema_map: { "auto_encryption.users" => schema_map },
|
21
|
+
# Spawn mongocryptd on non-default port for sharded cluster tests
|
22
|
+
extra_options: extra_options,
|
23
|
+
},
|
24
|
+
database: 'auto_encryption'
|
25
|
+
),
|
26
|
+
).tap do |client|
|
27
|
+
client.subscribe(Mongo::Monitoring::COMMAND, subscriber)
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
31
|
+
let(:size_limit) { Mongo::Server::ConnectionBase::REDUCED_MAX_BSON_SIZE }
|
32
|
+
|
33
|
+
before do
|
34
|
+
authorized_client.use('auto_encryption')['users'].drop
|
35
|
+
|
36
|
+
key_vault_collection.drop
|
37
|
+
key_vault_collection.insert_one(data_key)
|
38
|
+
end
|
39
|
+
|
40
|
+
let(:command_succeeded_events) do
|
41
|
+
subscriber.succeeded_events.select do |event|
|
42
|
+
event.command_name == command_name
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
shared_examples 'a functioning encrypted bulk write' do |options={}|
|
47
|
+
num_writes = options[:num_writes]
|
48
|
+
|
49
|
+
before do
|
50
|
+
perform_bulk_write
|
51
|
+
end
|
52
|
+
|
53
|
+
it 'executes an encrypted bulk write' do
|
54
|
+
documents = authorized_client.use('auto_encryption')['users'].find
|
55
|
+
ssns = documents.map { |doc| doc['ssn'] }
|
56
|
+
expect(ssns).to all(be_ciphertext)
|
57
|
+
end
|
58
|
+
|
59
|
+
it 'executes the correct number of writes' do
|
60
|
+
expect(command_succeeded_events.length).to eq(num_writes)
|
61
|
+
end
|
62
|
+
end
|
63
|
+
|
64
|
+
context 'using BulkWrite' do
|
65
|
+
let(:collection) { client['users'] }
|
66
|
+
let(:bulk_write) { Mongo::BulkWrite.new(collection, requests, {}) }
|
67
|
+
let(:perform_bulk_write) { bulk_write.execute }
|
68
|
+
|
69
|
+
context 'with insert operations' do
|
70
|
+
let(:command_name) { 'insert' }
|
71
|
+
|
72
|
+
context 'when total request size does not exceed 2MiB' do
|
73
|
+
let(:requests) do
|
74
|
+
[
|
75
|
+
{ insert_one: { ssn: 'a' * (size_limit/2) } },
|
76
|
+
{ insert_one: { ssn: 'a' * (size_limit/2) } }
|
77
|
+
]
|
78
|
+
end
|
79
|
+
|
80
|
+
it_behaves_like 'a functioning encrypted bulk write', num_writes: 1
|
81
|
+
end
|
82
|
+
|
83
|
+
context 'when each operation is smaller than 2MiB, but the total request size is greater than 2MiB' do
|
84
|
+
let(:requests) do
|
85
|
+
[
|
86
|
+
{ insert_one: { ssn: 'a' * (size_limit - 2000) } },
|
87
|
+
{ insert_one: { ssn: 'a' * (size_limit - 2000) } }
|
88
|
+
]
|
89
|
+
end
|
90
|
+
|
91
|
+
it_behaves_like 'a functioning encrypted bulk write', num_writes: 2
|
92
|
+
end
|
93
|
+
|
94
|
+
context 'when each operation is larger than 2MiB' do
|
95
|
+
let(:requests) do
|
96
|
+
[
|
97
|
+
{ insert_one: { ssn: 'a' * (size_limit * 2) } },
|
98
|
+
{ insert_one: { ssn: 'a' * (size_limit * 2) } }
|
99
|
+
]
|
100
|
+
end
|
101
|
+
|
102
|
+
it_behaves_like 'a functioning encrypted bulk write', num_writes: 2
|
103
|
+
end
|
104
|
+
|
105
|
+
context 'when one operation is larger than 16MiB' do
|
106
|
+
let(:requests) do
|
107
|
+
[
|
108
|
+
{ insert_one: { ssn: 'a' * (Mongo::Server::ConnectionBase::DEFAULT_MAX_BSON_OBJECT_SIZE + 1000) } },
|
109
|
+
{ insert_one: { ssn: 'a' * size_limit } }
|
110
|
+
]
|
111
|
+
end
|
112
|
+
|
113
|
+
it 'raises an exception' do
|
114
|
+
expect do
|
115
|
+
bulk_write.execute
|
116
|
+
end.to raise_error(Mongo::Error::MaxBSONSize, /maximum allowed size: 16777216 bytes/)
|
117
|
+
end
|
118
|
+
end
|
119
|
+
end
|
120
|
+
|
121
|
+
context 'with update operations' do
|
122
|
+
let(:command_name) { 'update' }
|
123
|
+
|
124
|
+
before do
|
125
|
+
client['users'].insert_one(_id: 1)
|
126
|
+
client['users'].insert_one(_id: 2)
|
127
|
+
end
|
128
|
+
|
129
|
+
context 'when total request size does not exceed 2MiB' do
|
130
|
+
let(:requests) do
|
131
|
+
[
|
132
|
+
{ update_one: { filter: { _id: 1 }, update: { ssn: 'a' * (size_limit/2) } } },
|
133
|
+
{ update_one: { filter: { _id: 2 }, update: { ssn: 'a' * (size_limit/2) } } },
|
134
|
+
]
|
135
|
+
end
|
136
|
+
|
137
|
+
it_behaves_like 'a functioning encrypted bulk write', num_writes: 1
|
138
|
+
end
|
139
|
+
|
140
|
+
context 'when each operation is smaller than 2MiB, but the total request size is greater than 2MiB' do
|
141
|
+
let(:requests) do
|
142
|
+
[
|
143
|
+
{ update_one: { filter: { _id: 1 }, update: { ssn: 'a' * (size_limit - 2000) } } },
|
144
|
+
{ update_one: { filter: { _id: 2 }, update: { ssn: 'a' * (size_limit - 2000) } } },
|
145
|
+
]
|
146
|
+
end
|
147
|
+
|
148
|
+
it_behaves_like 'a functioning encrypted bulk write', num_writes: 2
|
149
|
+
end
|
150
|
+
|
151
|
+
context 'when each operation is larger than 2MiB' do
|
152
|
+
let(:requests) do
|
153
|
+
[
|
154
|
+
{ update_one: { filter: { _id: 1 }, update: { ssn: 'a' * (size_limit * 2) } } },
|
155
|
+
{ update_one: { filter: { _id: 2 }, update: { ssn: 'a' * (size_limit * 2) } } },
|
156
|
+
]
|
157
|
+
end
|
158
|
+
|
159
|
+
it_behaves_like 'a functioning encrypted bulk write', num_writes: 2
|
160
|
+
end
|
161
|
+
|
162
|
+
context 'when one operation is larger than 16MiB' do
|
163
|
+
let(:requests) do
|
164
|
+
[
|
165
|
+
{ update_one: { filter: { _id: 1 }, update: { ssn: 'a' * (Mongo::Server::ConnectionBase::DEFAULT_MAX_BSON_OBJECT_SIZE - 100) } } },
|
166
|
+
{ update_one: { filter: { _id: 2 }, update: { ssn: 'a' * size_limit } } },
|
167
|
+
]
|
168
|
+
end
|
169
|
+
|
170
|
+
it 'raises an exception' do
|
171
|
+
expect do
|
172
|
+
bulk_write.execute
|
173
|
+
end.to raise_error(Mongo::Error::MaxBSONSize, /maximum allowed size: 16777216 bytes/)
|
174
|
+
end
|
175
|
+
end
|
176
|
+
end
|
177
|
+
|
178
|
+
context 'with delete operations' do
|
179
|
+
let(:command_name) { 'delete' }
|
180
|
+
|
181
|
+
context 'when total request size does not exceed 2MiB' do
|
182
|
+
before do
|
183
|
+
client['users'].insert_one(ssn: 'a' * (size_limit/2))
|
184
|
+
client['users'].insert_one(ssn: 'b' * (size_limit/2))
|
185
|
+
end
|
186
|
+
|
187
|
+
let(:requests) do
|
188
|
+
[
|
189
|
+
{ delete_one: { filter: { ssn: 'a' * (size_limit/2) } } },
|
190
|
+
{ delete_one: { filter: { ssn: 'b' * (size_limit/2) } } }
|
191
|
+
]
|
192
|
+
end
|
193
|
+
|
194
|
+
it 'performs one delete' do
|
195
|
+
bulk_write.execute
|
196
|
+
|
197
|
+
documents = authorized_client.use('auto_encryption')['users'].find.to_a
|
198
|
+
expect(documents.length).to eq(0)
|
199
|
+
expect(command_succeeded_events.length).to eq(1)
|
200
|
+
end
|
201
|
+
end
|
202
|
+
|
203
|
+
context 'when each operation is smaller than 2MiB, but the total request size is greater than 2MiB' do
|
204
|
+
before do
|
205
|
+
client['users'].insert_one(ssn: 'a' * (size_limit - 2000))
|
206
|
+
client['users'].insert_one(ssn: 'b' * (size_limit - 2000))
|
207
|
+
end
|
208
|
+
|
209
|
+
let(:requests) do
|
210
|
+
[
|
211
|
+
{ delete_one: { filter: { ssn: 'a' * (size_limit - 2000) } } },
|
212
|
+
{ delete_one: { filter: { ssn: 'b' * (size_limit - 2000) } } }
|
213
|
+
]
|
214
|
+
end
|
215
|
+
|
216
|
+
it 'performs two deletes' do
|
217
|
+
bulk_write.execute
|
218
|
+
|
219
|
+
documents = authorized_client.use('auto_encryption')['users'].find.to_a
|
220
|
+
expect(documents.length).to eq(0)
|
221
|
+
expect(command_succeeded_events.length).to eq(2)
|
222
|
+
end
|
223
|
+
end
|
224
|
+
|
225
|
+
context 'when each operation is larger than 2MiB' do
|
226
|
+
before do
|
227
|
+
client['users'].insert_one(ssn: 'a' * (size_limit * 2))
|
228
|
+
client['users'].insert_one(ssn: 'b' * (size_limit * 2))
|
229
|
+
end
|
230
|
+
|
231
|
+
let(:requests) do
|
232
|
+
[
|
233
|
+
{ delete_one: { filter: { ssn: 'a' * (size_limit * 2) } } },
|
234
|
+
{ delete_one: { filter: { ssn: 'b' * (size_limit * 2) } } }
|
235
|
+
]
|
236
|
+
end
|
237
|
+
|
238
|
+
it 'performs two deletes' do
|
239
|
+
bulk_write.execute
|
240
|
+
|
241
|
+
documents = authorized_client.use('auto_encryption')['users'].find.to_a
|
242
|
+
expect(documents.length).to eq(0)
|
243
|
+
expect(command_succeeded_events.length).to eq(2)
|
244
|
+
end
|
245
|
+
end
|
246
|
+
|
247
|
+
context 'when one operation is larger than 16MiB' do
|
248
|
+
let(:requests) do
|
249
|
+
[
|
250
|
+
{ delete_one: { filter: { ssn: 'a' * (Mongo::Server::ConnectionBase::DEFAULT_MAX_BSON_OBJECT_SIZE + 1000) } } },
|
251
|
+
{ delete_one: { filter: { ssn: 'b' * (size_limit * 2) } } }
|
252
|
+
]
|
253
|
+
end
|
254
|
+
|
255
|
+
it 'raises an exception' do
|
256
|
+
expect do
|
257
|
+
bulk_write.execute
|
258
|
+
end.to raise_error(Mongo::Error::MaxBSONSize, /maximum allowed size: 16777216 bytes/)
|
259
|
+
end
|
260
|
+
end
|
261
|
+
end
|
262
|
+
|
263
|
+
context 'with insert, update, and delete operations' do
|
264
|
+
context 'when total request size does not exceed 2MiB' do
|
265
|
+
let(:requests) do
|
266
|
+
[
|
267
|
+
{ insert_one: { _id: 1, ssn: 'a' * (size_limit/3) } },
|
268
|
+
{ update_one: { filter: { _id: 1 }, update: { ssn: 'b' * (size_limit/3) } } },
|
269
|
+
{ delete_one: { filter: { ssn: 'b' * (size_limit/3) } } }
|
270
|
+
]
|
271
|
+
end
|
272
|
+
|
273
|
+
it 'successfully performs the bulk write' do
|
274
|
+
bulk_write.execute
|
275
|
+
|
276
|
+
documents = authorized_client.use('auto_encryption')['users'].find.to_a
|
277
|
+
expect(documents.length).to eq(0)
|
278
|
+
end
|
279
|
+
|
280
|
+
# Bulk writes with different types of operations should
|
281
|
+
it 'performs 1 insert, 1 update, and 1 delete' do
|
282
|
+
bulk_write.execute
|
283
|
+
|
284
|
+
command_succeeded_events = subscriber.succeeded_events
|
285
|
+
|
286
|
+
inserts = command_succeeded_events.select { |event| event.command_name == 'insert' }
|
287
|
+
updates = command_succeeded_events.select { |event| event.command_name == 'update' }
|
288
|
+
deletes = command_succeeded_events.select { |event| event.command_name == 'delete' }
|
289
|
+
|
290
|
+
expect(inserts.length).to eq(1)
|
291
|
+
expect(updates.length).to eq(1)
|
292
|
+
expect(deletes.length).to eq(1)
|
293
|
+
end
|
294
|
+
end
|
295
|
+
end
|
296
|
+
end
|
297
|
+
|
298
|
+
context '#insert_many' do
|
299
|
+
let(:perform_bulk_write) do
|
300
|
+
client['users'].insert_many(documents)
|
301
|
+
end
|
302
|
+
|
303
|
+
let(:command_name) { 'insert' }
|
304
|
+
|
305
|
+
context 'when total request size does not exceed 2MiB' do
|
306
|
+
let(:documents) do
|
307
|
+
[
|
308
|
+
{ ssn: 'a' * (size_limit/2) },
|
309
|
+
{ ssn: 'a' * (size_limit/2) },
|
310
|
+
]
|
311
|
+
end
|
312
|
+
|
313
|
+
it_behaves_like 'a functioning encrypted bulk write', num_writes: 1
|
314
|
+
end
|
315
|
+
|
316
|
+
context 'when each operation is smaller than 2MiB, but the total request size is greater than 2MiB' do
|
317
|
+
let(:documents) do
|
318
|
+
[
|
319
|
+
{ ssn: 'a' * (size_limit - 2000) },
|
320
|
+
{ ssn: 'a' * (size_limit - 2000) },
|
321
|
+
]
|
322
|
+
end
|
323
|
+
|
324
|
+
it_behaves_like 'a functioning encrypted bulk write', num_writes: 2
|
325
|
+
end
|
326
|
+
|
327
|
+
context 'when each operation is larger than 2MiB' do
|
328
|
+
let(:documents) do
|
329
|
+
[
|
330
|
+
{ ssn: 'a' * (size_limit * 2) },
|
331
|
+
{ ssn: 'a' * (size_limit * 2) },
|
332
|
+
]
|
333
|
+
end
|
334
|
+
|
335
|
+
it_behaves_like 'a functioning encrypted bulk write', num_writes: 2
|
336
|
+
end
|
337
|
+
|
338
|
+
context 'when one operation is larger than 16MiB' do
|
339
|
+
let(:documents) do
|
340
|
+
[
|
341
|
+
{ ssn: 'a' * (Mongo::Server::ConnectionBase::DEFAULT_MAX_BSON_OBJECT_SIZE + 1000) },
|
342
|
+
{ ssn: 'a' * size_limit },
|
343
|
+
]
|
344
|
+
end
|
345
|
+
|
346
|
+
it 'raises an exception' do
|
347
|
+
expect do
|
348
|
+
perform_bulk_write
|
349
|
+
end.to raise_error(Mongo::Error::MaxBSONSize, /maximum allowed size: 16777216 bytes/)
|
350
|
+
end
|
351
|
+
end
|
352
|
+
end
|
353
|
+
end
|