mongo 2.12.4 → 2.14.0.rc1
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 -54
- data/Rakefile +16 -10
- data/lib/mongo.rb +17 -3
- data/lib/mongo/active_support.rb +1 -1
- data/lib/mongo/address.rb +40 -13
- 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 +36 -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 +283 -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 +1 -1
- 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 -506
- 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 +2 -2
- data/lib/mongo/auth/user/view.rb +1 -1
- data/lib/mongo/auth/x509.rb +14 -32
- data/lib/mongo/auth/x509/conversation.rb +15 -42
- data/lib/mongo/background_thread.rb +11 -2
- data/lib/mongo/bson.rb +1 -1
- data/lib/mongo/bulk_write.rb +79 -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/caching_cursor.rb +74 -0
- data/lib/mongo/client.rb +261 -39
- data/lib/mongo/client_encryption.rb +1 -1
- data/lib/mongo/cluster.rb +180 -72
- data/lib/mongo/cluster/periodic_executor.rb +1 -1
- data/lib/mongo/cluster/reapers/cursor_reaper.rb +1 -1
- data/lib/mongo/cluster/reapers/socket_reaper.rb +1 -1
- data/lib/mongo/cluster/sdam_flow.rb +36 -17
- 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 +4 -3
- data/lib/mongo/cluster/topology/replica_set_with_primary.rb +1 -1
- data/lib/mongo/cluster/topology/sharded.rb +2 -2
- data/lib/mongo/cluster/topology/single.rb +3 -3
- data/lib/mongo/cluster/topology/unknown.rb +1 -1
- data/lib/mongo/cluster_time.rb +1 -1
- data/lib/mongo/collection.rb +77 -24
- data/lib/mongo/collection/view.rb +30 -22
- data/lib/mongo/collection/view/aggregation.rb +31 -7
- 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 +47 -19
- 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 +3 -6
- data/lib/mongo/collection/view/change_stream/retryable.rb +1 -1
- data/lib/mongo/collection/view/explainable.rb +28 -9
- data/lib/mongo/collection/view/immutable.rb +1 -1
- data/lib/mongo/collection/view/iterable.rb +80 -14
- data/lib/mongo/collection/view/map_reduce.rb +7 -4
- data/lib/mongo/collection/view/readable.rb +22 -4
- data/lib/mongo/collection/view/writable.rb +107 -13
- data/lib/mongo/crypt.rb +1 -1
- data/lib/mongo/crypt/auto_decryption_context.rb +1 -1
- data/lib/mongo/crypt/auto_encrypter.rb +1 -1
- data/lib/mongo/crypt/auto_encryption_context.rb +1 -1
- data/lib/mongo/crypt/binary.rb +1 -1
- data/lib/mongo/crypt/binding.rb +1 -1
- data/lib/mongo/crypt/context.rb +1 -1
- data/lib/mongo/crypt/data_key_context.rb +1 -1
- data/lib/mongo/crypt/encryption_io.rb +45 -28
- data/lib/mongo/crypt/explicit_decryption_context.rb +1 -1
- data/lib/mongo/crypt/explicit_encrypter.rb +1 -1
- data/lib/mongo/crypt/explicit_encryption_context.rb +1 -1
- data/lib/mongo/crypt/handle.rb +1 -1
- data/lib/mongo/crypt/hooks.rb +1 -1
- data/lib/mongo/crypt/kms_context.rb +1 -1
- data/lib/mongo/crypt/status.rb +1 -1
- data/lib/mongo/cursor.rb +4 -3
- 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 +1 -1
- data/lib/mongo/cursor/builder/op_get_more.rb +1 -1
- data/lib/mongo/cursor/builder/op_kill_cursors.rb +1 -1
- data/lib/mongo/database.rb +41 -5
- data/lib/mongo/database/view.rb +21 -6
- data/lib/mongo/dbref.rb +1 -1
- data/lib/mongo/distinguishing_semaphore.rb +55 -0
- data/lib/mongo/error.rb +30 -2
- data/lib/mongo/error/auth_error.rb +1 -1
- data/lib/mongo/error/bulk_write_error.rb +1 -1
- 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/extra_file_chunk.rb +1 -1
- 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 +1 -1
- 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_concern.rb +28 -0
- 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_host.rb +22 -0
- 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 +3 -2
- 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/lint_error.rb +1 -1
- data/lib/mongo/error/max_bson_size.rb +1 -1
- 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/multi_index_drop.rb +1 -1
- data/lib/mongo/error/need_primary_server.rb +1 -1
- data/lib/mongo/error/no_server_available.rb +1 -1
- data/lib/mongo/error/no_srv_records.rb +1 -1
- data/lib/mongo/error/notable.rb +18 -3
- data/lib/mongo/error/operation_failure.rb +63 -44
- data/lib/mongo/error/parser.rb +16 -5
- data/lib/mongo/error/pool_closed_error.rb +1 -1
- data/lib/mongo/error/raise_original_error.rb +29 -0
- data/lib/mongo/error/server_certificate_revoked.rb +22 -0
- data/lib/mongo/error/session_ended.rb +1 -1
- data/lib/mongo/error/sessions_not_supported.rb +35 -0
- 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 +101 -0
- data/lib/mongo/error/write_retryable.rb +1 -1
- data/lib/mongo/event.rb +1 -1
- data/lib/mongo/event/base.rb +7 -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 +1 -1
- data/lib/mongo/grid/fs_bucket.rb +9 -4
- 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 -11
- data/lib/mongo/lint.rb +11 -0
- data/lib/mongo/loggable.rb +1 -1
- data/lib/mongo/logger.rb +4 -4
- data/lib/mongo/monitoring.rb +39 -1
- data/lib/mongo/monitoring/cmap_log_subscriber.rb +1 -1
- data/lib/mongo/monitoring/command_log_subscriber.rb +20 -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 +1 -1
- 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 +12 -1
- data/lib/mongo/monitoring/event/command_started.rb +44 -3
- data/lib/mongo/monitoring/event/command_succeeded.rb +12 -1
- data/lib/mongo/monitoring/event/secure.rb +8 -2
- data/lib/mongo/monitoring/event/server_closed.rb +2 -2
- data/lib/mongo/monitoring/event/server_description_changed.rb +28 -5
- data/lib/mongo/monitoring/event/server_heartbeat_failed.rb +10 -3
- data/lib/mongo/monitoring/event/server_heartbeat_started.rb +10 -3
- data/lib/mongo/monitoring/event/server_heartbeat_succeeded.rb +10 -3
- data/lib/mongo/monitoring/event/server_opening.rb +2 -2
- data/lib/mongo/monitoring/event/topology_changed.rb +2 -2
- data/lib/mongo/monitoring/event/topology_closed.rb +2 -2
- data/lib/mongo/monitoring/event/topology_opening.rb +2 -2
- data/lib/mongo/monitoring/publishable.rb +9 -9
- 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 +2 -2
- 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 +3 -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 +10 -9
- data/lib/mongo/operation/collections_info.rb +3 -36
- data/lib/mongo/operation/collections_info/command.rb +40 -0
- data/lib/mongo/operation/collections_info/result.rb +3 -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 +3 -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 +4 -4
- data/lib/mongo/operation/delete/result.rb +5 -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 +7 -3
- data/lib/mongo/operation/explain/legacy.rb +7 -3
- data/lib/mongo/operation/explain/op_msg.rb +7 -1
- data/lib/mongo/operation/explain/result.rb +4 -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 +3 -1
- data/lib/mongo/operation/find/op_msg.rb +2 -12
- data/lib/mongo/operation/find/result.rb +4 -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 -12
- data/lib/mongo/operation/get_more/result.rb +4 -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 +6 -1
- data/lib/mongo/operation/insert.rb +3 -2
- data/lib/mongo/operation/insert/bulk_result.rb +11 -2
- data/lib/mongo/operation/insert/command.rb +7 -7
- data/lib/mongo/operation/insert/legacy.rb +9 -5
- data/lib/mongo/operation/insert/op_msg.rb +6 -6
- data/lib/mongo/operation/insert/result.rb +12 -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 +6 -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 +11 -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 +5 -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 +63 -10
- data/lib/mongo/operation/shared/bypass_document_validation.rb +11 -4
- data/lib/mongo/operation/shared/causal_consistency_supported.rb +4 -3
- data/lib/mongo/operation/shared/collections_info_or_list_collections.rb +58 -0
- data/lib/mongo/operation/shared/executable.rb +47 -28
- 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 +3 -2
- data/lib/mongo/operation/shared/limited.rb +11 -2
- data/lib/mongo/operation/shared/object_id_generator.rb +2 -1
- data/lib/mongo/operation/shared/op_msg_or_command.rb +7 -5
- data/lib/mongo/operation/shared/op_msg_or_find_command.rb +8 -6
- data/lib/mongo/operation/shared/op_msg_or_list_indexes_command.rb +8 -6
- 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 +19 -16
- data/lib/mongo/operation/shared/response_handling.rb +83 -8
- data/lib/mongo/operation/shared/result/aggregatable.rb +2 -1
- data/lib/mongo/operation/shared/result/use_legacy_error_parser.rb +1 -1
- data/lib/mongo/operation/shared/sessions_supported.rb +51 -27
- data/lib/mongo/operation/shared/specifiable.rb +33 -20
- data/lib/mongo/operation/shared/write.rb +26 -19
- data/lib/mongo/operation/shared/write_concern_supported.rb +7 -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 +8 -1
- data/lib/mongo/operation/update/op_msg.rb +4 -4
- data/lib/mongo/operation/update/result.rb +10 -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 +4 -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 +1 -1
- data/lib/mongo/protocol/compressed.rb +1 -1
- data/lib/mongo/protocol/delete.rb +1 -1
- data/lib/mongo/protocol/get_more.rb +1 -1
- data/lib/mongo/protocol/insert.rb +1 -1
- data/lib/mongo/protocol/kill_cursors.rb +1 -1
- data/lib/mongo/protocol/message.rb +35 -7
- data/lib/mongo/protocol/msg.rb +18 -4
- data/lib/mongo/protocol/query.rb +1 -1
- data/lib/mongo/protocol/registry.rb +1 -1
- data/lib/mongo/protocol/reply.rb +1 -1
- data/lib/mongo/protocol/serializers.rb +1 -1
- data/lib/mongo/protocol/update.rb +1 -1
- data/lib/mongo/query_cache.rb +242 -0
- data/lib/mongo/retryable.rb +31 -11
- data/lib/mongo/semaphore.rb +1 -1
- data/lib/mongo/server.rb +45 -9
- data/lib/mongo/server/app_metadata.rb +44 -7
- data/lib/mongo/server/connection.rb +37 -133
- data/lib/mongo/server/connection_base.rb +22 -7
- data/lib/mongo/server/connection_common.rb +75 -1
- data/lib/mongo/server/connection_pool.rb +23 -1
- data/lib/mongo/server/connection_pool/populator.rb +1 -1
- data/lib/mongo/server/context.rb +1 -1
- data/lib/mongo/server/description.rb +49 -2
- data/lib/mongo/server/description/features.rb +12 -3
- data/lib/mongo/server/monitor.rb +145 -69
- data/lib/mongo/server/monitor/app_metadata.rb +1 -1
- data/lib/mongo/server/monitor/connection.rb +110 -80
- data/lib/mongo/server/pending_connection.rb +215 -3
- data/lib/mongo/server/push_monitor.rb +173 -0
- data/{spec/runners/transactions/context.rb → lib/mongo/server/push_monitor/connection.rb} +9 -14
- data/lib/mongo/server/round_trip_time_averager.rb +12 -3
- data/lib/mongo/server_selector.rb +2 -2
- data/lib/mongo/server_selector/{selectable.rb → base.rb} +164 -87
- data/lib/mongo/server_selector/nearest.rb +26 -21
- data/lib/mongo/server_selector/primary.rb +24 -28
- data/lib/mongo/server_selector/primary_preferred.rb +32 -25
- data/lib/mongo/server_selector/secondary.rb +26 -21
- data/lib/mongo/server_selector/secondary_preferred.rb +29 -34
- data/lib/mongo/session.rb +17 -1
- data/lib/mongo/session/server_session.rb +1 -1
- data/lib/mongo/session/session_pool.rb +1 -1
- data/lib/mongo/socket.rb +127 -45
- data/lib/mongo/socket/ocsp_cache.rb +97 -0
- data/lib/mongo/socket/ocsp_verifier.rb +368 -0
- data/lib/mongo/socket/ssl.rb +141 -57
- data/lib/mongo/socket/tcp.rb +39 -31
- data/lib/mongo/socket/unix.rb +14 -6
- data/lib/mongo/srv.rb +1 -1
- data/lib/mongo/srv/monitor.rb +8 -14
- data/lib/mongo/srv/resolver.rb +15 -11
- data/lib/mongo/srv/result.rb +1 -1
- data/lib/mongo/timeout.rb +11 -9
- data/lib/mongo/topology_version.rb +89 -0
- data/lib/mongo/uri.rb +52 -407
- data/lib/mongo/uri/options_mapper.rb +582 -0
- data/lib/mongo/uri/srv_protocol.rb +12 -3
- data/lib/mongo/utils.rb +73 -0
- 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 +1 -1
- data/spec/NOTES.aws-auth.md +296 -0
- data/spec/README.aws-auth.md +318 -0
- data/spec/README.md +120 -18
- data/spec/integration/auth_spec.rb +29 -9
- 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/bulk_write_spec.rb +48 -0
- data/spec/integration/change_stream_examples_spec.rb +6 -2
- data/spec/integration/change_stream_spec.rb +123 -51
- data/spec/integration/check_clean_slate_spec.rb +16 -0
- data/spec/integration/client_authentication_options_spec.rb +55 -28
- data/spec/integration/client_construction_aws_auth_spec.rb +191 -0
- data/spec/integration/client_construction_spec.rb +2 -1
- data/spec/integration/collection_indexes_prose_spec.rb +55 -0
- data/spec/integration/command_monitoring_spec.rb +30 -6
- data/spec/integration/command_spec.rb +11 -9
- data/spec/integration/connect_single_rs_name_spec.rb +10 -5
- data/spec/integration/connection_pool_populator_spec.rb +3 -1
- data/spec/integration/connection_spec.rb +7 -3
- data/spec/integration/crud_spec.rb +32 -4
- data/spec/integration/cursor_reaping_spec.rb +67 -27
- data/spec/integration/docs_examples_spec.rb +6 -0
- 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 +5 -24
- 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/query_cache_spec.rb +1045 -0
- data/spec/integration/query_cache_transactions_spec.rb +179 -0
- data/spec/integration/read_concern_spec.rb +1 -1
- data/spec/integration/read_preference_spec.rb +41 -11
- data/spec/integration/reconnect_spec.rb +2 -3
- data/spec/integration/retryable_errors_spec.rb +33 -14
- 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 +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/sdam_error_handling_spec.rb +210 -22
- data/spec/integration/sdam_events_spec.rb +77 -5
- data/spec/integration/sdam_prose_spec.rb +64 -0
- data/spec/integration/server_monitor_spec.rb +25 -1
- data/spec/integration/server_selection_spec.rb +36 -0
- data/spec/integration/server_spec.rb +42 -26
- data/spec/integration/size_limit_spec.rb +3 -3
- data/spec/integration/srv_monitoring_spec.rb +38 -3
- data/spec/integration/srv_spec.rb +56 -0
- data/spec/integration/ssl_uri_options_spec.rb +2 -2
- 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 +10 -6
- data/spec/lite_spec_helper.rb +34 -23
- data/spec/mongo/address/ipv4_spec.rb +1 -1
- data/spec/mongo/address_spec.rb +3 -3
- 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 +7 -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 +3 -3
- data/spec/mongo/auth/scram/conversation_spec.rb +119 -334
- data/spec/mongo/auth/scram256/conversation_spec.rb +171 -0
- data/spec/mongo/auth/{scram/negotiation_spec.rb → scram_negotiation_spec.rb} +13 -8
- data/spec/mongo/auth/scram_spec.rb +29 -69
- data/spec/mongo/auth/user_spec.rb +1 -1
- data/spec/mongo/auth/x509/conversation_spec.rb +1 -1
- data/spec/mongo/auth/x509_spec.rb +8 -8
- data/spec/mongo/auth_spec.rb +4 -4
- data/spec/mongo/bulk_write_spec.rb +206 -2
- data/spec/mongo/caching_cursor_spec.rb +70 -0
- data/spec/mongo/client_construction_spec.rb +674 -87
- data/spec/mongo/client_spec.rb +99 -5
- data/spec/mongo/cluster/topology/replica_set_spec.rb +52 -9
- data/spec/mongo/cluster/topology/single_spec.rb +18 -7
- data/spec/mongo/cluster_spec.rb +40 -36
- data/spec/mongo/collection/view/aggregation_spec.rb +6 -2
- 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 +0 -318
- data/spec/mongo/collection/view/explainable_spec.rb +87 -4
- data/spec/mongo/collection/view/iterable_spec.rb +38 -0
- data/spec/mongo/collection/view/map_reduce_spec.rb +8 -2
- data/spec/mongo/collection/view/readable_spec.rb +15 -1
- data/spec/mongo/collection/view/writable_spec.rb +208 -1
- data/spec/mongo/collection_spec.rb +567 -43
- data/spec/mongo/crypt/auto_decryption_context_spec.rb +1 -1
- data/spec/mongo/crypt/auto_encryption_context_spec.rb +1 -1
- data/spec/mongo/crypt/explicit_decryption_context_spec.rb +1 -1
- data/spec/mongo/crypt/explicit_encryption_context_spec.rb +1 -1
- 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 +6 -1
- data/spec/mongo/cursor_spec.rb +9 -1
- data/spec/mongo/database_spec.rb +295 -10
- data/spec/mongo/distinguishing_semaphore_spec.rb +63 -0
- data/spec/mongo/error/no_server_available_spec.rb +1 -1
- data/spec/mongo/error/operation_failure_heavy_spec.rb +58 -0
- data/spec/mongo/error/operation_failure_spec.rb +167 -69
- 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 +312 -0
- data/spec/mongo/logger_spec.rb +13 -11
- data/spec/mongo/monitoring/event/server_description_changed_spec.rb +1 -4
- data/spec/mongo/operation/aggregate/result_spec.rb +6 -1
- data/spec/mongo/operation/delete/bulk_spec.rb +18 -6
- data/spec/mongo/operation/delete/op_msg_spec.rb +22 -14
- data/spec/mongo/operation/find/legacy_spec.rb +27 -7
- data/spec/mongo/operation/get_more_spec.rb +6 -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 +22 -14
- data/spec/mongo/operation/limited_spec.rb +5 -3
- data/spec/mongo/operation/read_preference_legacy_spec.rb +16 -4
- data/spec/mongo/operation/read_preference_op_msg_spec.rb +115 -5
- 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 +22 -14
- data/spec/mongo/protocol/msg_spec.rb +10 -0
- data/spec/mongo/query_cache_spec.rb +279 -0
- data/spec/mongo/retryable_spec.rb +71 -70
- 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 +8 -1
- data/spec/mongo/server/connection_auth_spec.rb +33 -14
- data/spec/mongo/server/connection_pool_spec.rb +7 -34
- data/spec/mongo/server/connection_spec.rb +131 -77
- data/spec/mongo/server/monitor/app_metadata_spec.rb +8 -1
- data/spec/mongo/server/monitor/connection_spec.rb +1 -82
- 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 +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 +4 -5
- data/spec/mongo/session/session_pool_spec.rb +7 -3
- data/spec/mongo/session_spec.rb +35 -0
- data/spec/mongo/socket/ssl_spec.rb +3 -3
- data/spec/mongo/socket/tcp_spec.rb +2 -2
- data/spec/mongo/socket/unix_spec.rb +2 -2
- data/spec/mongo/socket_spec.rb +10 -10
- data/spec/mongo/timeout_spec.rb +22 -68
- data/spec/mongo/uri/srv_protocol_spec.rb +64 -33
- data/spec/mongo/uri_option_parsing_spec.rb +11 -11
- data/spec/mongo/uri_spec.rb +85 -43
- data/spec/mongo/utils_spec.rb +39 -0
- data/spec/runners/auth.rb +8 -6
- 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.rb +1 -1
- data/spec/runners/cmap/verifier.rb +1 -1
- data/spec/runners/command_monitoring.rb +4 -35
- data/spec/runners/connection_string.rb +36 -124
- data/spec/runners/crud.rb +2 -2
- data/spec/runners/crud/context.rb +10 -6
- data/spec/runners/crud/operation.rb +177 -55
- data/spec/runners/crud/outcome.rb +1 -1
- data/spec/runners/crud/spec.rb +0 -7
- data/spec/runners/crud/test.rb +8 -26
- data/spec/runners/crud/test_base.rb +47 -0
- data/spec/runners/crud/verifier.rb +21 -3
- data/spec/runners/gridfs.rb +1 -1
- data/spec/runners/{server_discovery_and_monitoring.rb → sdam.rb} +41 -22
- data/spec/runners/sdam/verifier.rb +26 -8
- data/spec/runners/server_selection.rb +242 -28
- data/spec/runners/transactions.rb +13 -14
- data/spec/runners/transactions/operation.rb +155 -25
- data/spec/runners/transactions/spec.rb +1 -1
- data/spec/runners/transactions/test.rb +103 -65
- data/spec/spec_tests/auth_spec.rb +2 -0
- data/spec/spec_tests/change_streams_spec.rb +39 -4
- data/spec/spec_tests/client_side_encryption_spec.rb +3 -0
- data/spec/spec_tests/cmap_spec.rb +12 -3
- data/spec/spec_tests/command_monitoring_spec.rb +25 -12
- data/spec/spec_tests/connection_string_spec.rb +2 -0
- data/spec/spec_tests/crud_spec.rb +3 -1
- data/spec/spec_tests/data/auth/connection-string.yml +57 -1
- data/spec/spec_tests/data/change_streams/change-streams-errors.yml +27 -2
- 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 +5 -5
- data/spec/spec_tests/data/cmap/pool-checkout-connection.yml +6 -2
- data/spec/spec_tests/data/cmap/pool-create-min-size.yml +3 -0
- data/spec/spec_tests/data/connection_string/valid-warnings.yml +24 -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/max_staleness/ReplicaSetNoPrimary/MaxStalenessTooSmall.yml +15 -0
- data/spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/NoKnownServers.yml +4 -3
- data/spec/spec_tests/data/max_staleness/Unknown/SmallMaxStaleness.yml +1 -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_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 +69 -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 +2 -0
- data/spec/spec_tests/data/sdam/rs/incompatible_other.yml +2 -0
- data/spec/spec_tests/data/sdam/rs/primary_mismatched_me.yml +23 -27
- data/spec/spec_tests/data/sdam/rs/primary_to_no_primary_mismatched_me.yml +79 -55
- data/spec/spec_tests/data/sdam/rs/replicaset_rsnp.yml +20 -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/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/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/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 +1 -3
- data/spec/spec_tests/data/sdam_monitoring/standalone.yml +2 -2
- data/spec/spec_tests/data/sdam_monitoring/standalone_repeated.yml +2 -2
- data/spec/spec_tests/data/sdam_monitoring/standalone_suppress_equal_description_changes.yml +2 -2
- data/spec/spec_tests/data/sdam_monitoring/standalone_to_rs_with_me_mismatch.yml +2 -2
- 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/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 +25 -0
- data/spec/spec_tests/data/uri_options/compression-options.yml +6 -3
- data/spec/spec_tests/data/uri_options/connection-options.yml +43 -0
- data/spec/spec_tests/data/uri_options/read-preference-options.yml +24 -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 +160 -4
- data/spec/spec_tests/dns_seedlist_discovery_spec.rb +12 -2
- data/spec/spec_tests/gridfs_spec.rb +2 -0
- data/spec/spec_tests/max_staleness_spec.rb +5 -141
- data/spec/spec_tests/read_write_concern_connection_string_spec.rb +2 -0
- data/spec/spec_tests/read_write_concern_operaton_spec.rb +10 -0
- data/spec/spec_tests/retryable_reads_spec.rb +4 -2
- data/spec/spec_tests/retryable_writes_spec.rb +8 -1
- data/spec/spec_tests/sdam_integration_spec.rb +13 -0
- data/spec/spec_tests/sdam_monitoring_spec.rb +3 -2
- 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 +5 -115
- 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 +33 -33
- data/spec/stress/cleanup_spec.rb +58 -0
- data/spec/stress/connection_pool_stress_spec.rb +11 -13
- data/spec/stress/connection_pool_timing_spec.rb +3 -6
- 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/atlas-ocsp-ca.crt +28 -0
- data/spec/support/certificates/atlas-ocsp.crt +41 -0
- data/spec/support/child_process_helper.rb +78 -0
- data/spec/support/client_registry.rb +6 -24
- data/spec/support/client_registry_macros.rb +11 -2
- data/spec/support/cluster_config.rb +5 -0
- data/spec/support/common_shortcuts.rb +88 -0
- data/spec/support/constraints.rb +50 -7
- data/spec/support/crypt.rb +1 -1
- data/spec/support/event_subscriber.rb +184 -84
- data/spec/support/keyword_struct.rb +26 -0
- data/spec/support/lite_constraints.rb +71 -0
- data/spec/support/matchers.rb +16 -0
- data/spec/support/ocsp +1 -0
- data/spec/support/session_registry.rb +52 -0
- data/spec/support/shared/scram_conversation.rb +100 -0
- data/spec/support/shared/server_selector.rb +93 -1
- data/spec/support/shared/session.rb +29 -21
- data/spec/support/spec_config.rb +98 -21
- data/spec/support/spec_organizer.rb +129 -0
- data/spec/support/spec_setup.rb +9 -5
- data/spec/support/utils.rb +180 -25
- metadata +1221 -745
- metadata.gz.sig +0 -0
- data/lib/mongo/server/connectable.rb +0 -107
- data/spec/runners/change_streams.rb +0 -262
- data/spec/runners/change_streams/operation.rb +0 -89
- data/spec/runners/sdam_monitoring.rb +0 -89
- data/spec/spec_tests/data/sdam/sharded/ruby_discovered_single_mongos.yml +0 -27
@@ -239,12 +239,16 @@ describe Mongo::Collection::View::MapReduce do
|
|
239
239
|
Mongo::Collection::View.new(client[TEST_COLL], selector, view_options)
|
240
240
|
end
|
241
241
|
|
242
|
+
let(:subscriber) { EventSubscriber.new }
|
243
|
+
|
242
244
|
let(:client) do
|
243
|
-
|
245
|
+
authorized_client.tap do |client|
|
246
|
+
client.subscribe(Mongo::Monitoring::COMMAND, subscriber)
|
247
|
+
end
|
244
248
|
end
|
245
249
|
|
246
250
|
let(:find_command) do
|
247
|
-
|
251
|
+
subscriber.started_events[-1].command
|
248
252
|
end
|
249
253
|
|
250
254
|
before do
|
@@ -577,6 +581,7 @@ describe Mongo::Collection::View::MapReduce do
|
|
577
581
|
|
578
582
|
context 'when the server is not valid for writing' do
|
579
583
|
clean_slate
|
584
|
+
require_warning_clean
|
580
585
|
|
581
586
|
before do
|
582
587
|
stop_monitoring(authorized_client)
|
@@ -657,6 +662,7 @@ describe Mongo::Collection::View::MapReduce do
|
|
657
662
|
|
658
663
|
context 'when the server is a valid for writing' do
|
659
664
|
clean_slate
|
665
|
+
require_warning_clean
|
660
666
|
|
661
667
|
before do
|
662
668
|
stop_monitoring(authorized_client)
|
@@ -68,6 +68,20 @@ describe Mongo::Collection::View::Readable do
|
|
68
68
|
end
|
69
69
|
end
|
70
70
|
|
71
|
+
describe '#allow_disk_use' do
|
72
|
+
let(:new_view) do
|
73
|
+
view.allow_disk_use
|
74
|
+
end
|
75
|
+
|
76
|
+
it 'sets the flag' do
|
77
|
+
expect(new_view.options[:allow_disk_use]).to be true
|
78
|
+
end
|
79
|
+
|
80
|
+
it 'returns the new View' do
|
81
|
+
expect(new_view).not_to be(view)
|
82
|
+
end
|
83
|
+
end
|
84
|
+
|
71
85
|
describe '#aggregate' do
|
72
86
|
|
73
87
|
let(:documents) do
|
@@ -192,7 +206,7 @@ describe Mongo::Collection::View::Readable do
|
|
192
206
|
|
193
207
|
let(:command) do
|
194
208
|
operation
|
195
|
-
|
209
|
+
subscriber.started_events.find { |cmd| cmd.command_name == 'mapReduce' }.command
|
196
210
|
end
|
197
211
|
|
198
212
|
it_behaves_like 'an operation supporting causally consistent reads'
|
@@ -10,8 +10,12 @@ describe Mongo::Collection::View::Writable do
|
|
10
10
|
{}
|
11
11
|
end
|
12
12
|
|
13
|
+
let(:view_collection) do
|
14
|
+
authorized_collection
|
15
|
+
end
|
16
|
+
|
13
17
|
let(:view) do
|
14
|
-
Mongo::Collection::View.new(
|
18
|
+
Mongo::Collection::View.new(view_collection, selector, options)
|
15
19
|
end
|
16
20
|
|
17
21
|
before do
|
@@ -24,6 +28,32 @@ describe Mongo::Collection::View::Writable do
|
|
24
28
|
authorized_collection.insert_many([{ field: 'test1' }])
|
25
29
|
end
|
26
30
|
|
31
|
+
context 'when hint option is provided' do
|
32
|
+
# Functionality on more recent servers is sufficiently covered by spec tests.
|
33
|
+
context 'on server versions < 4.2' do
|
34
|
+
max_server_fcv '4.0'
|
35
|
+
|
36
|
+
it 'raises a client-side exception' do
|
37
|
+
expect do
|
38
|
+
view.find_one_and_delete(hint: '_id_')
|
39
|
+
end.to raise_error(Mongo::Error::UnsupportedOption, /The MongoDB server handling this request does not support the hint option on this command./)
|
40
|
+
end
|
41
|
+
end
|
42
|
+
|
43
|
+
context 'when the write concern is unacknowledged' do
|
44
|
+
let(:view_collection) do
|
45
|
+
client = authorized_client.with(write_concern: { w: 0 })
|
46
|
+
client[authorized_collection.name]
|
47
|
+
end
|
48
|
+
|
49
|
+
it 'raises a client-side error' do
|
50
|
+
expect do
|
51
|
+
view.find_one_and_delete(hint: '_id_')
|
52
|
+
end.to raise_error(Mongo::Error::UnsupportedOption, /The hint option cannot be specified on an unacknowledged write operation/)
|
53
|
+
end
|
54
|
+
end
|
55
|
+
end
|
56
|
+
|
27
57
|
context 'when a matching document is found' do
|
28
58
|
|
29
59
|
let(:selector) do
|
@@ -218,6 +248,32 @@ describe Mongo::Collection::View::Writable do
|
|
218
248
|
authorized_collection.insert_many([{ field: 'test1', other: 'sth' }])
|
219
249
|
end
|
220
250
|
|
251
|
+
context 'when hint option is provided' do
|
252
|
+
# Functionality on more recent servers is sufficiently covered by spec tests.
|
253
|
+
context 'on server versions < 4.2' do
|
254
|
+
max_server_fcv '4.0'
|
255
|
+
|
256
|
+
it 'raises a client-side exception' do
|
257
|
+
expect do
|
258
|
+
view.find_one_and_replace({ field: 'testing' }, { hint: '_id_' })
|
259
|
+
end.to raise_error(Mongo::Error::UnsupportedOption, /The MongoDB server handling this request does not support the hint option on this command./)
|
260
|
+
end
|
261
|
+
end
|
262
|
+
|
263
|
+
context 'when the write concern is unacknowledged' do
|
264
|
+
let(:view_collection) do
|
265
|
+
client = authorized_client.with(write_concern: { w: 0 })
|
266
|
+
client[authorized_collection.name]
|
267
|
+
end
|
268
|
+
|
269
|
+
it 'raises a client-side error' do
|
270
|
+
expect do
|
271
|
+
view.find_one_and_replace({ field: 'testing' }, { hint: '_id_' })
|
272
|
+
end.to raise_error(Mongo::Error::UnsupportedOption, /The hint option cannot be specified on an unacknowledged write operation/)
|
273
|
+
end
|
274
|
+
end
|
275
|
+
end
|
276
|
+
|
221
277
|
context 'when a matching document is found' do
|
222
278
|
|
223
279
|
let(:selector) do
|
@@ -435,6 +491,32 @@ describe Mongo::Collection::View::Writable do
|
|
435
491
|
authorized_collection.insert_many([{ field: 'test1' }])
|
436
492
|
end
|
437
493
|
|
494
|
+
context 'when hint option is provided' do
|
495
|
+
# Functionality on more recent servers is sufficiently covered by spec tests.
|
496
|
+
context 'on server versions < 4.2' do
|
497
|
+
max_server_fcv '4.0'
|
498
|
+
|
499
|
+
it 'raises a client-side exception' do
|
500
|
+
expect do
|
501
|
+
view.find_one_and_update({ '$set' => { field: 'testing' } }, { hint: '_id_' })
|
502
|
+
end.to raise_error(Mongo::Error::UnsupportedOption, /The MongoDB server handling this request does not support the hint option on this command./)
|
503
|
+
end
|
504
|
+
end
|
505
|
+
|
506
|
+
context 'when the write concern is unacknowledged' do
|
507
|
+
let(:view_collection) do
|
508
|
+
client = authorized_client.with(write_concern: { w: 0 })
|
509
|
+
client[authorized_collection.name]
|
510
|
+
end
|
511
|
+
|
512
|
+
it 'raises a client-side error' do
|
513
|
+
expect do
|
514
|
+
view.find_one_and_update({ '$set' => { field: 'testing' } }, { hint: '_id_' })
|
515
|
+
end.to raise_error(Mongo::Error::UnsupportedOption, /The hint option cannot be specified on an unacknowledged write operation/)
|
516
|
+
end
|
517
|
+
end
|
518
|
+
end
|
519
|
+
|
438
520
|
context 'when a matching document is found' do
|
439
521
|
|
440
522
|
let(:selector) do
|
@@ -625,6 +707,31 @@ describe Mongo::Collection::View::Writable do
|
|
625
707
|
end
|
626
708
|
|
627
709
|
describe '#delete_many' do
|
710
|
+
context 'when a hint option is provided' do
|
711
|
+
# Functionality on more recent servers is sufficiently covered by spec tests.
|
712
|
+
context 'on server versions < 3.4' do
|
713
|
+
max_server_fcv '3.2'
|
714
|
+
|
715
|
+
it 'raises a client-side exception' do
|
716
|
+
expect do
|
717
|
+
view.delete_many(hint: '_id_')
|
718
|
+
end.to raise_error(Mongo::Error::UnsupportedOption, /The MongoDB server handling this request does not support the hint option on this command./)
|
719
|
+
end
|
720
|
+
end
|
721
|
+
|
722
|
+
context 'when the write concern is unacknowledged' do
|
723
|
+
let(:view_collection) do
|
724
|
+
client = authorized_client.with(write_concern: { w: 0 })
|
725
|
+
client[authorized_collection.name]
|
726
|
+
end
|
727
|
+
|
728
|
+
it 'raises a client-side error' do
|
729
|
+
expect do
|
730
|
+
view.delete_many(hint: '_id_')
|
731
|
+
end.to raise_error(Mongo::Error::UnsupportedOption, /The hint option cannot be specified on an unacknowledged write operation/)
|
732
|
+
end
|
733
|
+
end
|
734
|
+
end
|
628
735
|
|
629
736
|
context 'when a selector was provided' do
|
630
737
|
|
@@ -787,6 +894,31 @@ describe Mongo::Collection::View::Writable do
|
|
787
894
|
end
|
788
895
|
|
789
896
|
describe '#delete_one' do
|
897
|
+
context 'when a hint option is provided' do
|
898
|
+
# Functionality on more recent servers is sufficiently covered by spec tests.
|
899
|
+
context 'on server versions < 3.4' do
|
900
|
+
max_server_fcv '3.2'
|
901
|
+
|
902
|
+
it 'raises a client-side exception' do
|
903
|
+
expect do
|
904
|
+
view.delete_one(hint: '_id_')
|
905
|
+
end.to raise_error(Mongo::Error::UnsupportedOption, /The MongoDB server handling this request does not support the hint option on this command./)
|
906
|
+
end
|
907
|
+
end
|
908
|
+
|
909
|
+
context 'when the write concern is unacknowledged' do
|
910
|
+
let(:view_collection) do
|
911
|
+
client = authorized_client.with(write_concern: { w: 0 })
|
912
|
+
client[authorized_collection.name]
|
913
|
+
end
|
914
|
+
|
915
|
+
it 'raises a client-side error' do
|
916
|
+
expect do
|
917
|
+
view.delete_many(hint: '_id_')
|
918
|
+
end.to raise_error(Mongo::Error::UnsupportedOption, /The hint option cannot be specified on an unacknowledged write operation/)
|
919
|
+
end
|
920
|
+
end
|
921
|
+
end
|
790
922
|
|
791
923
|
context 'when a selector was provided' do
|
792
924
|
|
@@ -950,6 +1082,31 @@ describe Mongo::Collection::View::Writable do
|
|
950
1082
|
end
|
951
1083
|
|
952
1084
|
describe '#replace_one' do
|
1085
|
+
context 'when a hint option is provided' do
|
1086
|
+
# Functionality on more recent servers is sufficiently covered by spec tests.
|
1087
|
+
context 'on server versions < 3.4' do
|
1088
|
+
max_server_fcv '3.2'
|
1089
|
+
|
1090
|
+
it 'raises a client-side exception' do
|
1091
|
+
expect do
|
1092
|
+
view.replace_one({ field: 'testing' }, { hint: '_id_' })
|
1093
|
+
end.to raise_error(Mongo::Error::UnsupportedOption, /The MongoDB server handling this request does not support the hint option on this command./)
|
1094
|
+
end
|
1095
|
+
end
|
1096
|
+
|
1097
|
+
context 'when the write concern is unacknowledged' do
|
1098
|
+
let(:view_collection) do
|
1099
|
+
client = authorized_client.with(write_concern: { w: 0 })
|
1100
|
+
client[authorized_collection.name]
|
1101
|
+
end
|
1102
|
+
|
1103
|
+
it 'raises a client-side error' do
|
1104
|
+
expect do
|
1105
|
+
view.delete_many(hint: '_id_')
|
1106
|
+
end.to raise_error(Mongo::Error::UnsupportedOption, /The hint option cannot be specified on an unacknowledged write operation/)
|
1107
|
+
end
|
1108
|
+
end
|
1109
|
+
end
|
953
1110
|
|
954
1111
|
context 'when a selector was provided' do
|
955
1112
|
|
@@ -1182,6 +1339,31 @@ describe Mongo::Collection::View::Writable do
|
|
1182
1339
|
end
|
1183
1340
|
|
1184
1341
|
describe '#update_many' do
|
1342
|
+
context 'when a hint option is provided' do
|
1343
|
+
# Functionality on more recent servers is sufficiently covered by spec tests.
|
1344
|
+
context 'on server versions < 3.4' do
|
1345
|
+
max_server_fcv '3.2'
|
1346
|
+
|
1347
|
+
it 'raises a client-side exception' do
|
1348
|
+
expect do
|
1349
|
+
view.update_many({ '$set' => { field: 'testing' } }, { hint: '_id_' })
|
1350
|
+
end.to raise_error(Mongo::Error::UnsupportedOption, /The MongoDB server handling this request does not support the hint option on this command./)
|
1351
|
+
end
|
1352
|
+
end
|
1353
|
+
|
1354
|
+
context 'when the write concern is unacknowledged' do
|
1355
|
+
let(:view_collection) do
|
1356
|
+
client = authorized_client.with(write_concern: { w: 0 })
|
1357
|
+
client[authorized_collection.name]
|
1358
|
+
end
|
1359
|
+
|
1360
|
+
it 'raises a client-side error' do
|
1361
|
+
expect do
|
1362
|
+
view.delete_many(hint: '_id_')
|
1363
|
+
end.to raise_error(Mongo::Error::UnsupportedOption, /The hint option cannot be specified on an unacknowledged write operation/)
|
1364
|
+
end
|
1365
|
+
end
|
1366
|
+
end
|
1185
1367
|
|
1186
1368
|
context 'when a selector was provided' do
|
1187
1369
|
|
@@ -1420,6 +1602,31 @@ describe Mongo::Collection::View::Writable do
|
|
1420
1602
|
end
|
1421
1603
|
|
1422
1604
|
describe '#update_one' do
|
1605
|
+
context 'when a hint option is provided' do
|
1606
|
+
# Functionality on more recent servers is sufficiently covered by spec tests.
|
1607
|
+
context 'on server versions < 3.4' do
|
1608
|
+
max_server_fcv '3.2'
|
1609
|
+
|
1610
|
+
it 'raises a client-side exception' do
|
1611
|
+
expect do
|
1612
|
+
view.update_one({ '$set' => { field: 'testing' } }, { hint: '_id_' })
|
1613
|
+
end.to raise_error(Mongo::Error::UnsupportedOption, /The MongoDB server handling this request does not support the hint option on this command./)
|
1614
|
+
end
|
1615
|
+
end
|
1616
|
+
|
1617
|
+
context 'when the write concern is unacknowledged' do
|
1618
|
+
let(:view_collection) do
|
1619
|
+
client = authorized_client.with(write_concern: { w: 0 })
|
1620
|
+
client[authorized_collection.name]
|
1621
|
+
end
|
1622
|
+
|
1623
|
+
it 'raises a client-side error' do
|
1624
|
+
expect do
|
1625
|
+
view.update_one({ '$set' => { field: 'testing' } }, { hint: '_id_' })
|
1626
|
+
end.to raise_error(Mongo::Error::UnsupportedOption, /The hint option cannot be specified on an unacknowledged write operation/)
|
1627
|
+
end
|
1628
|
+
end
|
1629
|
+
end
|
1423
1630
|
|
1424
1631
|
context 'when a selector was provided' do
|
1425
1632
|
|
@@ -2,8 +2,18 @@ require 'spec_helper'
|
|
2
2
|
|
3
3
|
describe Mongo::Collection do
|
4
4
|
|
5
|
+
let(:subscriber) { EventSubscriber.new }
|
6
|
+
|
7
|
+
let(:client) do
|
8
|
+
authorized_client.tap do |client|
|
9
|
+
client.subscribe(Mongo::Monitoring::COMMAND, subscriber)
|
10
|
+
end
|
11
|
+
end
|
12
|
+
|
13
|
+
let(:authorized_collection) { client['collection_spec'] }
|
14
|
+
|
5
15
|
before do
|
6
|
-
|
16
|
+
authorized_client['collection_spec'].drop
|
7
17
|
end
|
8
18
|
|
9
19
|
let(:collection_invalid_write_concern) do
|
@@ -14,10 +24,6 @@ describe Mongo::Collection do
|
|
14
24
|
authorized_client[:validating]
|
15
25
|
end
|
16
26
|
|
17
|
-
let(:client) do
|
18
|
-
authorized_client
|
19
|
-
end
|
20
|
-
|
21
27
|
describe '#==' do
|
22
28
|
|
23
29
|
let(:database) do
|
@@ -246,6 +252,7 @@ describe Mongo::Collection do
|
|
246
252
|
authorized_client.with(client_options).tap do |client|
|
247
253
|
expect(client.options[:read]).to eq(Mongo::Options::Redacted.new(
|
248
254
|
mode: :primary_preferred))
|
255
|
+
client.subscribe(Mongo::Monitoring::COMMAND, subscriber)
|
249
256
|
end
|
250
257
|
end
|
251
258
|
|
@@ -278,12 +285,6 @@ describe Mongo::Collection do
|
|
278
285
|
{read: { mode: :primary_preferred }}
|
279
286
|
end
|
280
287
|
|
281
|
-
let(:subscriber) { EventSubscriber.new }
|
282
|
-
|
283
|
-
before do
|
284
|
-
client.subscribe(Mongo::Monitoring::COMMAND, subscriber)
|
285
|
-
end
|
286
|
-
|
287
288
|
shared_examples_for "uses collection's read preference when reading" do
|
288
289
|
it "uses collection's read preference when reading" do
|
289
290
|
expect do
|
@@ -820,6 +821,38 @@ describe Mongo::Collection do
|
|
820
821
|
end
|
821
822
|
end
|
822
823
|
|
824
|
+
context 'when write concern passed in as an option' do
|
825
|
+
min_server_fcv '3.4'
|
826
|
+
require_topology :replica_set
|
827
|
+
|
828
|
+
before do
|
829
|
+
database['collection_spec'].drop
|
830
|
+
end
|
831
|
+
|
832
|
+
let(:events) do
|
833
|
+
subscriber.command_started_events('create')
|
834
|
+
end
|
835
|
+
|
836
|
+
let(:options) do
|
837
|
+
{ write_concern: {w: 1} }
|
838
|
+
end
|
839
|
+
|
840
|
+
let!(:collection) do
|
841
|
+
authorized_collection.with(options)
|
842
|
+
end
|
843
|
+
|
844
|
+
let!(:command) do
|
845
|
+
Utils.get_command_event(authorized_client, 'create') do |client|
|
846
|
+
collection.create({ write_concern: {w: 2} })
|
847
|
+
end.command
|
848
|
+
end
|
849
|
+
|
850
|
+
it 'applies the write concern passed in as an option' do
|
851
|
+
expect(events.length).to eq(1)
|
852
|
+
expect(command[:writeConcern][:w]).to eq(2)
|
853
|
+
end
|
854
|
+
end
|
855
|
+
|
823
856
|
context 'when the server does not support write concern on the create command' do
|
824
857
|
max_server_version '3.2'
|
825
858
|
|
@@ -1058,6 +1091,34 @@ describe Mongo::Collection do
|
|
1058
1091
|
end
|
1059
1092
|
end
|
1060
1093
|
|
1094
|
+
context 'when write concern passed in as an option' do
|
1095
|
+
min_server_fcv '3.4'
|
1096
|
+
require_set_write_concern
|
1097
|
+
|
1098
|
+
let(:events) do
|
1099
|
+
subscriber.command_started_events('drop')
|
1100
|
+
end
|
1101
|
+
|
1102
|
+
let(:options) do
|
1103
|
+
{ write_concern: {w: 1} }
|
1104
|
+
end
|
1105
|
+
|
1106
|
+
let!(:collection) do
|
1107
|
+
authorized_collection.with(options)
|
1108
|
+
end
|
1109
|
+
|
1110
|
+
let!(:command) do
|
1111
|
+
Utils.get_command_event(authorized_client, 'drop') do |client|
|
1112
|
+
collection.drop({ write_concern: {w: 0} })
|
1113
|
+
end.command
|
1114
|
+
end
|
1115
|
+
|
1116
|
+
it 'applies the write concern passed in as an option' do
|
1117
|
+
expect(events.length).to eq(1)
|
1118
|
+
expect(command[:writeConcern][:w]).to eq(0)
|
1119
|
+
end
|
1120
|
+
end
|
1121
|
+
|
1061
1122
|
context 'when the server does not support write concern on the drop command' do
|
1062
1123
|
max_server_version '3.2'
|
1063
1124
|
|
@@ -1230,10 +1291,6 @@ describe Mongo::Collection do
|
|
1230
1291
|
{ session: session }
|
1231
1292
|
end
|
1232
1293
|
|
1233
|
-
let(:client) do
|
1234
|
-
subscribed_client
|
1235
|
-
end
|
1236
|
-
|
1237
1294
|
let(:session) do
|
1238
1295
|
client.start_session
|
1239
1296
|
end
|
@@ -1244,7 +1301,7 @@ describe Mongo::Collection do
|
|
1244
1301
|
|
1245
1302
|
let(:command) do
|
1246
1303
|
client[TEST_COLL].find({}, session: session).explain
|
1247
|
-
|
1304
|
+
subscriber.started_events.find { |c| c.command_name == 'explain' }.command
|
1248
1305
|
end
|
1249
1306
|
|
1250
1307
|
it 'sends the session id' do
|
@@ -1261,7 +1318,7 @@ describe Mongo::Collection do
|
|
1261
1318
|
|
1262
1319
|
let(:command) do
|
1263
1320
|
operation
|
1264
|
-
|
1321
|
+
subscriber.started_events.find { |cmd| cmd.command_name == 'find' }.command
|
1265
1322
|
end
|
1266
1323
|
|
1267
1324
|
it_behaves_like 'an operation supporting causally consistent reads'
|
@@ -1461,7 +1518,7 @@ describe Mongo::Collection do
|
|
1461
1518
|
context 'when unacknowledged writes is used with an implicit session' do
|
1462
1519
|
|
1463
1520
|
let(:collection_with_unacknowledged_write_concern) do
|
1464
|
-
|
1521
|
+
client.with(write: { w: 0 })[TEST_COLL]
|
1465
1522
|
end
|
1466
1523
|
|
1467
1524
|
let(:operation) do
|
@@ -1543,20 +1600,16 @@ describe Mongo::Collection do
|
|
1543
1600
|
context 'when the documents are sent with OP_MSG' do
|
1544
1601
|
min_server_fcv '3.6'
|
1545
1602
|
|
1546
|
-
let(:client) do
|
1547
|
-
subscribed_client
|
1548
|
-
end
|
1549
|
-
|
1550
1603
|
let(:documents) do
|
1551
1604
|
[{ '_id' => 1, 'name' => '1'*16777191 }, { '_id' => 'y' }]
|
1552
1605
|
end
|
1553
1606
|
|
1554
1607
|
before do
|
1555
|
-
|
1608
|
+
authorized_collection.insert_many(documents)
|
1556
1609
|
end
|
1557
1610
|
|
1558
1611
|
let(:insert_events) do
|
1559
|
-
|
1612
|
+
subscriber.started_events.select { |e| e.command_name == 'insert' }
|
1560
1613
|
end
|
1561
1614
|
|
1562
1615
|
it 'sends the documents in one OP_MSG' do
|
@@ -1632,6 +1685,40 @@ describe Mongo::Collection do
|
|
1632
1685
|
expect(result.inserted_count).to be(0)
|
1633
1686
|
end
|
1634
1687
|
end
|
1688
|
+
|
1689
|
+
context 'when various options passed in' do
|
1690
|
+
# w: 2 requires a replica set
|
1691
|
+
require_topology :replica_set
|
1692
|
+
|
1693
|
+
# https://jira.mongodb.org/browse/RUBY-2306
|
1694
|
+
min_server_fcv '3.6'
|
1695
|
+
|
1696
|
+
let(:session) do
|
1697
|
+
authorized_client.start_session
|
1698
|
+
end
|
1699
|
+
|
1700
|
+
let(:events) do
|
1701
|
+
subscriber.command_started_events('insert')
|
1702
|
+
end
|
1703
|
+
|
1704
|
+
let(:collection) do
|
1705
|
+
authorized_collection.with(write_concern: {w: 2})
|
1706
|
+
end
|
1707
|
+
|
1708
|
+
let!(:command) do
|
1709
|
+
Utils.get_command_event(authorized_client, 'insert') do |client|
|
1710
|
+
collection.insert_many([{ name: 'test1' }, { name: 'test2' }], session: session,
|
1711
|
+
write_concern: {w: 1}, bypass_document_validation: true)
|
1712
|
+
end.command
|
1713
|
+
end
|
1714
|
+
|
1715
|
+
it 'inserts many successfully with correct options sent to server' do
|
1716
|
+
expect(events.length).to eq(1)
|
1717
|
+
expect(command[:writeConcern]).to_not be_nil
|
1718
|
+
expect(command[:writeConcern][:w]).to eq(1)
|
1719
|
+
expect(command[:bypassDocumentValidation]).to be(true)
|
1720
|
+
end
|
1721
|
+
end
|
1635
1722
|
end
|
1636
1723
|
|
1637
1724
|
describe '#insert_one' do
|
@@ -1704,7 +1791,7 @@ describe Mongo::Collection do
|
|
1704
1791
|
context 'when unacknowledged writes is used with an implicit session' do
|
1705
1792
|
|
1706
1793
|
let(:collection_with_unacknowledged_write_concern) do
|
1707
|
-
|
1794
|
+
client.with(write: { w: 0 })[TEST_COLL]
|
1708
1795
|
end
|
1709
1796
|
|
1710
1797
|
let(:operation) do
|
@@ -1714,6 +1801,37 @@ describe Mongo::Collection do
|
|
1714
1801
|
it_behaves_like 'an implicit session with an unacknowledged write'
|
1715
1802
|
end
|
1716
1803
|
|
1804
|
+
context 'when various options passed in' do
|
1805
|
+
# https://jira.mongodb.org/browse/RUBY-2306
|
1806
|
+
min_server_fcv '3.6'
|
1807
|
+
|
1808
|
+
let(:session) do
|
1809
|
+
authorized_client.start_session
|
1810
|
+
end
|
1811
|
+
|
1812
|
+
let(:events) do
|
1813
|
+
subscriber.command_started_events('insert')
|
1814
|
+
end
|
1815
|
+
|
1816
|
+
let(:collection) do
|
1817
|
+
authorized_collection.with(write_concern: {w: 3})
|
1818
|
+
end
|
1819
|
+
|
1820
|
+
let!(:command) do
|
1821
|
+
Utils.get_command_event(authorized_client, 'insert') do |client|
|
1822
|
+
collection.insert_one({name: 'test1'}, session: session, write_concern: {w: 1},
|
1823
|
+
bypass_document_validation: true)
|
1824
|
+
end.command
|
1825
|
+
end
|
1826
|
+
|
1827
|
+
it 'inserts one successfully with correct options sent to server' do
|
1828
|
+
expect(events.length).to eq(1)
|
1829
|
+
expect(command[:writeConcern]).to_not be_nil
|
1830
|
+
expect(command[:writeConcern][:w]).to eq(1)
|
1831
|
+
expect(command[:bypassDocumentValidation]).to be(true)
|
1832
|
+
end
|
1833
|
+
end
|
1834
|
+
|
1717
1835
|
context 'when the document contains invalid keys' do
|
1718
1836
|
|
1719
1837
|
let(:doc) do
|
@@ -1822,6 +1940,52 @@ describe Mongo::Collection do
|
|
1822
1940
|
end
|
1823
1941
|
end
|
1824
1942
|
|
1943
|
+
describe '#bulk_write' do
|
1944
|
+
|
1945
|
+
context 'when various options passed in' do
|
1946
|
+
min_server_fcv '3.2'
|
1947
|
+
require_topology :replica_set
|
1948
|
+
|
1949
|
+
# https://jira.mongodb.org/browse/RUBY-2306
|
1950
|
+
min_server_fcv '3.6'
|
1951
|
+
|
1952
|
+
let(:requests) do
|
1953
|
+
[
|
1954
|
+
{ insert_one: { name: "anne" }},
|
1955
|
+
{ insert_one: { name: "bob" }},
|
1956
|
+
{ insert_one: { name: "charlie" }}
|
1957
|
+
]
|
1958
|
+
end
|
1959
|
+
|
1960
|
+
let(:session) do
|
1961
|
+
authorized_client.start_session
|
1962
|
+
end
|
1963
|
+
|
1964
|
+
let!(:command) do
|
1965
|
+
Utils.get_command_event(authorized_client, 'insert') do |client|
|
1966
|
+
collection.bulk_write(requests, session: session, write_concern: {w: 1},
|
1967
|
+
bypass_document_validation: true)
|
1968
|
+
end.command
|
1969
|
+
end
|
1970
|
+
|
1971
|
+
let(:events) do
|
1972
|
+
subscriber.command_started_events('insert')
|
1973
|
+
end
|
1974
|
+
|
1975
|
+
let(:collection) do
|
1976
|
+
authorized_collection.with(write_concern: {w: 2})
|
1977
|
+
end
|
1978
|
+
|
1979
|
+
it 'inserts successfully with correct options sent to server' do
|
1980
|
+
expect(collection.count).to eq(3)
|
1981
|
+
expect(events.length).to eq(1)
|
1982
|
+
expect(command[:writeConcern]).to_not be_nil
|
1983
|
+
expect(command[:writeConcern][:w]).to eq(1)
|
1984
|
+
expect(command[:bypassDocumentValidation]).to eq(true)
|
1985
|
+
end
|
1986
|
+
end
|
1987
|
+
end
|
1988
|
+
|
1825
1989
|
describe '#inspect' do
|
1826
1990
|
|
1827
1991
|
it 'includes the object id' do
|
@@ -1914,7 +2078,7 @@ describe Mongo::Collection do
|
|
1914
2078
|
|
1915
2079
|
let(:command) do
|
1916
2080
|
operation
|
1917
|
-
|
2081
|
+
subscriber.started_events.find { |cmd| cmd.command_name == 'aggregate' }.command
|
1918
2082
|
end
|
1919
2083
|
|
1920
2084
|
it_behaves_like 'an operation supporting causally consistent reads'
|
@@ -2031,6 +2195,39 @@ describe Mongo::Collection do
|
|
2031
2195
|
end
|
2032
2196
|
|
2033
2197
|
describe '#count_documents' do
|
2198
|
+
|
2199
|
+
before do
|
2200
|
+
authorized_collection.delete_many
|
2201
|
+
end
|
2202
|
+
|
2203
|
+
context 'no argument provided' do
|
2204
|
+
|
2205
|
+
context 'when collection is empty' do
|
2206
|
+
it 'returns 0 matching documents' do
|
2207
|
+
expect(authorized_collection.count_documents).to eq(0)
|
2208
|
+
end
|
2209
|
+
end
|
2210
|
+
|
2211
|
+
context 'when collection is not empty' do
|
2212
|
+
|
2213
|
+
let(:documents) do
|
2214
|
+
documents = []
|
2215
|
+
1.upto(10) do |index|
|
2216
|
+
documents << { key: 'a', _id: "in#{index}" }
|
2217
|
+
end
|
2218
|
+
documents
|
2219
|
+
end
|
2220
|
+
|
2221
|
+
before do
|
2222
|
+
authorized_collection.insert_many(documents)
|
2223
|
+
end
|
2224
|
+
|
2225
|
+
it 'returns 10 matching documents' do
|
2226
|
+
expect(authorized_collection.count_documents).to eq(10)
|
2227
|
+
end
|
2228
|
+
end
|
2229
|
+
end
|
2230
|
+
|
2034
2231
|
context 'when transactions are enabled' do
|
2035
2232
|
require_wired_tiger
|
2036
2233
|
require_transaction_support
|
@@ -2119,7 +2316,7 @@ describe Mongo::Collection do
|
|
2119
2316
|
|
2120
2317
|
let(:command) do
|
2121
2318
|
operation
|
2122
|
-
|
2319
|
+
subscriber.started_events.find { |cmd| cmd.command_name == 'count' }.command
|
2123
2320
|
end
|
2124
2321
|
|
2125
2322
|
it_behaves_like 'an operation supporting causally consistent reads'
|
@@ -2237,7 +2434,7 @@ describe Mongo::Collection do
|
|
2237
2434
|
|
2238
2435
|
let(:command) do
|
2239
2436
|
operation
|
2240
|
-
|
2437
|
+
subscriber.started_events.find { |cmd| cmd.command_name == 'distinct' }.command
|
2241
2438
|
end
|
2242
2439
|
|
2243
2440
|
it_behaves_like 'an operation supporting causally consistent reads'
|
@@ -2399,7 +2596,7 @@ describe Mongo::Collection do
|
|
2399
2596
|
context 'when unacknowledged writes is used with an implicit session' do
|
2400
2597
|
|
2401
2598
|
let(:collection_with_unacknowledged_write_concern) do
|
2402
|
-
|
2599
|
+
client.with(write: { w: 0 })[TEST_COLL]
|
2403
2600
|
end
|
2404
2601
|
|
2405
2602
|
let(:operation) do
|
@@ -2509,6 +2706,48 @@ describe Mongo::Collection do
|
|
2509
2706
|
expect(authorized_collection.find(name: 'bang').count).to eq(1)
|
2510
2707
|
end
|
2511
2708
|
end
|
2709
|
+
|
2710
|
+
context 'when various options passed in' do
|
2711
|
+
# w: 2 requires a replica set
|
2712
|
+
require_topology :replica_set
|
2713
|
+
|
2714
|
+
# https://jira.mongodb.org/browse/RUBY-2306
|
2715
|
+
min_server_fcv '3.6'
|
2716
|
+
|
2717
|
+
before do
|
2718
|
+
authorized_collection.insert_many([{ name: 'test1' }, { name: 'test2' }])
|
2719
|
+
end
|
2720
|
+
|
2721
|
+
let(:selector) do
|
2722
|
+
{name: 'test2'}
|
2723
|
+
end
|
2724
|
+
|
2725
|
+
let(:session) do
|
2726
|
+
authorized_client.start_session
|
2727
|
+
end
|
2728
|
+
|
2729
|
+
let(:events) do
|
2730
|
+
subscriber.command_started_events('delete')
|
2731
|
+
end
|
2732
|
+
|
2733
|
+
let(:collection) do
|
2734
|
+
authorized_collection.with(write_concern: {w: 2})
|
2735
|
+
end
|
2736
|
+
|
2737
|
+
let!(:command) do
|
2738
|
+
Utils.get_command_event(authorized_client, 'delete') do |client|
|
2739
|
+
collection.delete_one(selector, session: session, write_concern: {w: 1},
|
2740
|
+
bypass_document_validation: true)
|
2741
|
+
end.command
|
2742
|
+
end
|
2743
|
+
|
2744
|
+
it 'deletes one successfully with correct options sent to server' do
|
2745
|
+
expect(events.length).to eq(1)
|
2746
|
+
expect(command[:writeConcern]).to_not be_nil
|
2747
|
+
expect(command[:writeConcern][:w]).to eq(1)
|
2748
|
+
expect(command[:bypassDocumentValidation]).to eq(true)
|
2749
|
+
end
|
2750
|
+
end
|
2512
2751
|
end
|
2513
2752
|
|
2514
2753
|
describe '#delete_many' do
|
@@ -2571,7 +2810,7 @@ describe Mongo::Collection do
|
|
2571
2810
|
it_behaves_like 'a failed operation using a session'
|
2572
2811
|
end
|
2573
2812
|
|
2574
|
-
context 'when unacknowledged writes
|
2813
|
+
context 'when unacknowledged writes are used with an explicit session' do
|
2575
2814
|
|
2576
2815
|
let(:collection_with_unacknowledged_write_concern) do
|
2577
2816
|
authorized_collection.with(write: { w: 0 })
|
@@ -2584,10 +2823,10 @@ describe Mongo::Collection do
|
|
2584
2823
|
it_behaves_like 'an explicit session with an unacknowledged write'
|
2585
2824
|
end
|
2586
2825
|
|
2587
|
-
context 'when unacknowledged writes
|
2826
|
+
context 'when unacknowledged writes are used with an implicit session' do
|
2588
2827
|
|
2589
2828
|
let(:collection_with_unacknowledged_write_concern) do
|
2590
|
-
|
2829
|
+
client.with(write: { w: 0 })[TEST_COLL]
|
2591
2830
|
end
|
2592
2831
|
|
2593
2832
|
let(:operation) do
|
@@ -2699,6 +2938,48 @@ describe Mongo::Collection do
|
|
2699
2938
|
expect(authorized_collection.find(name: 'bang').count).to eq(2)
|
2700
2939
|
end
|
2701
2940
|
end
|
2941
|
+
|
2942
|
+
context 'when various options passed in' do
|
2943
|
+
# w: 2 requires a replica set
|
2944
|
+
require_topology :replica_set
|
2945
|
+
|
2946
|
+
# https://jira.mongodb.org/browse/RUBY-2306
|
2947
|
+
min_server_fcv '3.6'
|
2948
|
+
|
2949
|
+
before do
|
2950
|
+
collection.insert_many([{ name: 'test1' }, { name: 'test2' }, { name: 'test3'}])
|
2951
|
+
end
|
2952
|
+
|
2953
|
+
let(:selector) do
|
2954
|
+
{name: 'test1'}
|
2955
|
+
end
|
2956
|
+
|
2957
|
+
let(:session) do
|
2958
|
+
authorized_client.start_session
|
2959
|
+
end
|
2960
|
+
|
2961
|
+
let(:events) do
|
2962
|
+
subscriber.command_started_events('delete')
|
2963
|
+
end
|
2964
|
+
|
2965
|
+
let(:collection) do
|
2966
|
+
authorized_collection.with(write_concern: {w: 1})
|
2967
|
+
end
|
2968
|
+
|
2969
|
+
let!(:command) do
|
2970
|
+
Utils.get_command_event(authorized_client, 'delete') do |client|
|
2971
|
+
collection.delete_many(selector, session: session, write_concern: {w: 2},
|
2972
|
+
bypass_document_validation: true)
|
2973
|
+
end.command
|
2974
|
+
end
|
2975
|
+
|
2976
|
+
it 'deletes many successfully with correct options sent to server' do
|
2977
|
+
expect(events.length).to eq(1)
|
2978
|
+
expect(command[:writeConcern]).to_not be_nil
|
2979
|
+
expect(command[:writeConcern][:w]).to eq(2)
|
2980
|
+
expect(command[:bypassDocumentValidation]).to be(true)
|
2981
|
+
end
|
2982
|
+
end
|
2702
2983
|
end
|
2703
2984
|
|
2704
2985
|
describe '#parallel_scan' do
|
@@ -2755,7 +3036,6 @@ describe Mongo::Collection do
|
|
2755
3036
|
end
|
2756
3037
|
|
2757
3038
|
context 'when a session is not provided' do
|
2758
|
-
let(:client) { subscribed_client }
|
2759
3039
|
let(:collection) { client['test'] }
|
2760
3040
|
|
2761
3041
|
let(:cursors) do
|
@@ -2772,7 +3052,7 @@ describe Mongo::Collection do
|
|
2772
3052
|
|
2773
3053
|
let(:command) do
|
2774
3054
|
operation
|
2775
|
-
event =
|
3055
|
+
event = subscriber.started_events.find { |cmd| cmd.command_name == 'parallelCollectionScan' }
|
2776
3056
|
expect(event).not_to be_nil
|
2777
3057
|
event.command
|
2778
3058
|
end
|
@@ -2794,7 +3074,7 @@ describe Mongo::Collection do
|
|
2794
3074
|
|
2795
3075
|
let(:command) do
|
2796
3076
|
operation
|
2797
|
-
event =
|
3077
|
+
event = subscriber.started_events.find { |cmd| cmd.command_name == 'parallelCollectionScan' }
|
2798
3078
|
expect(event).not_to be_nil
|
2799
3079
|
event.command
|
2800
3080
|
end
|
@@ -3197,7 +3477,7 @@ describe Mongo::Collection do
|
|
3197
3477
|
context 'when unacknowledged writes is used with an implicit session' do
|
3198
3478
|
|
3199
3479
|
let(:collection_with_unacknowledged_write_concern) do
|
3200
|
-
|
3480
|
+
client.with(write: { w: 0 })[TEST_COLL]
|
3201
3481
|
end
|
3202
3482
|
|
3203
3483
|
let(:operation) do
|
@@ -3206,6 +3486,51 @@ describe Mongo::Collection do
|
|
3206
3486
|
|
3207
3487
|
it_behaves_like 'an implicit session with an unacknowledged write'
|
3208
3488
|
end
|
3489
|
+
|
3490
|
+
context 'when various options passed in' do
|
3491
|
+
# w: 2 requires a replica set
|
3492
|
+
require_topology :replica_set
|
3493
|
+
|
3494
|
+
# https://jira.mongodb.org/browse/RUBY-2306
|
3495
|
+
min_server_fcv '3.6'
|
3496
|
+
|
3497
|
+
before do
|
3498
|
+
authorized_collection.insert_one({field: 'test1'})
|
3499
|
+
end
|
3500
|
+
|
3501
|
+
let(:session) do
|
3502
|
+
authorized_client.start_session
|
3503
|
+
end
|
3504
|
+
|
3505
|
+
let(:events) do
|
3506
|
+
subscriber.command_started_events('update')
|
3507
|
+
end
|
3508
|
+
|
3509
|
+
let(:collection) do
|
3510
|
+
authorized_collection.with(write_concern: {w: 3})
|
3511
|
+
end
|
3512
|
+
|
3513
|
+
let(:updated) do
|
3514
|
+
collection.find(field: 'test4').first
|
3515
|
+
end
|
3516
|
+
|
3517
|
+
let!(:command) do
|
3518
|
+
Utils.get_command_event(authorized_client, 'update') do |client|
|
3519
|
+
collection.replace_one(selector, { field: 'test4'},
|
3520
|
+
session: session, :return_document => :after, write_concern: {w: 2},
|
3521
|
+
upsert: true, bypass_document_validation: true)
|
3522
|
+
end.command
|
3523
|
+
end
|
3524
|
+
|
3525
|
+
it 'replaced one successfully with correct options sent to server' do
|
3526
|
+
expect(updated[:field]).to eq('test4')
|
3527
|
+
expect(events.length).to eq(1)
|
3528
|
+
expect(command[:writeConcern]).to_not be_nil
|
3529
|
+
expect(command[:writeConcern][:w]).to eq(2)
|
3530
|
+
expect(command[:bypassDocumentValidation]).to be(true)
|
3531
|
+
expect(command[:updates][0][:upsert]).to be(true)
|
3532
|
+
end
|
3533
|
+
end
|
3209
3534
|
end
|
3210
3535
|
|
3211
3536
|
describe '#update_many' do
|
@@ -3619,7 +3944,7 @@ describe Mongo::Collection do
|
|
3619
3944
|
context 'when unacknowledged writes is used with an implicit session' do
|
3620
3945
|
|
3621
3946
|
let(:collection_with_unacknowledged_write_concern) do
|
3622
|
-
|
3947
|
+
client.with(write: { w: 0 })[TEST_COLL]
|
3623
3948
|
end
|
3624
3949
|
|
3625
3950
|
let(:operation) do
|
@@ -3628,6 +3953,45 @@ describe Mongo::Collection do
|
|
3628
3953
|
|
3629
3954
|
it_behaves_like 'an implicit session with an unacknowledged write'
|
3630
3955
|
end
|
3956
|
+
|
3957
|
+
context 'when various options passed in' do
|
3958
|
+
# w: 2 requires a replica set
|
3959
|
+
require_topology :replica_set
|
3960
|
+
|
3961
|
+
# https://jira.mongodb.org/browse/RUBY-2306
|
3962
|
+
min_server_fcv '3.6'
|
3963
|
+
|
3964
|
+
before do
|
3965
|
+
collection.insert_many([{ field: 'test' }, { field: 'test2' }], session: session)
|
3966
|
+
end
|
3967
|
+
|
3968
|
+
let(:session) do
|
3969
|
+
authorized_client.start_session
|
3970
|
+
end
|
3971
|
+
|
3972
|
+
let(:collection) do
|
3973
|
+
authorized_collection.with(write_concern: {w: 1})
|
3974
|
+
end
|
3975
|
+
|
3976
|
+
let(:events) do
|
3977
|
+
subscriber.command_started_events('update')
|
3978
|
+
end
|
3979
|
+
|
3980
|
+
let!(:command) do
|
3981
|
+
Utils.get_command_event(authorized_client, 'update') do |client|
|
3982
|
+
collection.update_many(selector, {'$set'=> { field: 'testing' }}, session: session,
|
3983
|
+
write_concern: {w: 2}, bypass_document_validation: true, upsert: true)
|
3984
|
+
end.command
|
3985
|
+
end
|
3986
|
+
|
3987
|
+
it 'updates many successfully with correct options sent to server' do
|
3988
|
+
expect(events.length).to eq(1)
|
3989
|
+
expect(collection.options[:write_concern]).to eq(w: 1)
|
3990
|
+
expect(command[:writeConcern][:w]).to eq(2)
|
3991
|
+
expect(command[:bypassDocumentValidation]).to be(true)
|
3992
|
+
expect(command[:updates][0][:upsert]).to be(true)
|
3993
|
+
end
|
3994
|
+
end
|
3631
3995
|
end
|
3632
3996
|
|
3633
3997
|
describe '#update_one' do
|
@@ -3977,10 +4341,6 @@ describe Mongo::Collection do
|
|
3977
4341
|
context 'when the documents are sent with OP_MSG' do
|
3978
4342
|
min_server_fcv '3.6'
|
3979
4343
|
|
3980
|
-
let(:client) do
|
3981
|
-
subscribed_client
|
3982
|
-
end
|
3983
|
-
|
3984
4344
|
let(:documents) do
|
3985
4345
|
[{ '_id' => 1, 'name' => '1'*16777191 }, { '_id' => 'y' }]
|
3986
4346
|
end
|
@@ -3991,7 +4351,7 @@ describe Mongo::Collection do
|
|
3991
4351
|
end
|
3992
4352
|
|
3993
4353
|
let(:update_events) do
|
3994
|
-
|
4354
|
+
subscriber.started_events.select { |e| e.command_name == 'update' }
|
3995
4355
|
end
|
3996
4356
|
|
3997
4357
|
it 'sends the documents in one OP_MSG' do
|
@@ -4041,7 +4401,7 @@ describe Mongo::Collection do
|
|
4041
4401
|
context 'when unacknowledged writes is used with an implicit session' do
|
4042
4402
|
|
4043
4403
|
let(:collection_with_unacknowledged_write_concern) do
|
4044
|
-
|
4404
|
+
client.with(write: { w: 0 })[TEST_COLL]
|
4045
4405
|
end
|
4046
4406
|
|
4047
4407
|
let(:operation) do
|
@@ -4050,6 +4410,47 @@ describe Mongo::Collection do
|
|
4050
4410
|
|
4051
4411
|
it_behaves_like 'an implicit session with an unacknowledged write'
|
4052
4412
|
end
|
4413
|
+
|
4414
|
+
context 'when various options passed in' do
|
4415
|
+
# w: 2 requires a replica set
|
4416
|
+
require_topology :replica_set
|
4417
|
+
|
4418
|
+
# https://jira.mongodb.org/browse/RUBY-2306
|
4419
|
+
min_server_fcv '3.6'
|
4420
|
+
|
4421
|
+
before do
|
4422
|
+
collection.insert_many([{ field: 'test1' }, { field: 'test2' }], session: session)
|
4423
|
+
end
|
4424
|
+
|
4425
|
+
let(:session) do
|
4426
|
+
authorized_client.start_session
|
4427
|
+
end
|
4428
|
+
|
4429
|
+
let(:collection) do
|
4430
|
+
authorized_collection.with(write_concern: {w: 1})
|
4431
|
+
end
|
4432
|
+
|
4433
|
+
let(:events) do
|
4434
|
+
subscriber.command_started_events('update')
|
4435
|
+
end
|
4436
|
+
|
4437
|
+
let!(:command) do
|
4438
|
+
Utils.get_command_event(authorized_client, 'update') do |client|
|
4439
|
+
collection.update_one(selector, { '$set'=> { field: 'testing' } }, session: session,
|
4440
|
+
write_concern: {w: 2}, bypass_document_validation: true, :return_document => :after,
|
4441
|
+
upsert: true)
|
4442
|
+
end.command
|
4443
|
+
end
|
4444
|
+
|
4445
|
+
it 'updates one successfully with correct options sent to server' do
|
4446
|
+
expect(events.length).to eq(1)
|
4447
|
+
expect(command[:writeConcern]).to_not be_nil
|
4448
|
+
expect(command[:writeConcern][:w]).to eq(2)
|
4449
|
+
expect(collection.options[:write_concern]).to eq(w:1)
|
4450
|
+
expect(command[:bypassDocumentValidation]).to be(true)
|
4451
|
+
expect(command[:updates][0][:upsert]).to be(true)
|
4452
|
+
end
|
4453
|
+
end
|
4053
4454
|
end
|
4054
4455
|
|
4055
4456
|
describe '#find_one_and_delete' do
|
@@ -4267,6 +4668,46 @@ describe Mongo::Collection do
|
|
4267
4668
|
expect(result).to be_nil
|
4268
4669
|
end
|
4269
4670
|
end
|
4671
|
+
|
4672
|
+
context 'when various options passed in' do
|
4673
|
+
# w: 2 requires a replica set
|
4674
|
+
require_topology :replica_set
|
4675
|
+
|
4676
|
+
# https://jira.mongodb.org/browse/RUBY-2306
|
4677
|
+
min_server_fcv '3.6'
|
4678
|
+
|
4679
|
+
before do
|
4680
|
+
authorized_collection.delete_many
|
4681
|
+
authorized_collection.insert_many([{ name: 'test1' }, { name: 'test2' }])
|
4682
|
+
end
|
4683
|
+
|
4684
|
+
let(:collection) do
|
4685
|
+
authorized_collection.with(write_concern: {w: 2})
|
4686
|
+
end
|
4687
|
+
|
4688
|
+
let(:session) do
|
4689
|
+
authorized_client.start_session
|
4690
|
+
end
|
4691
|
+
|
4692
|
+
let!(:command) do
|
4693
|
+
Utils.get_command_event(authorized_client, 'findAndModify') do |client|
|
4694
|
+
collection.find_one_and_delete(selector, session: session, write_concern: {w: 2},
|
4695
|
+
bypass_document_validation: true, max_time_ms: 300)
|
4696
|
+
end.command
|
4697
|
+
end
|
4698
|
+
|
4699
|
+
let(:events) do
|
4700
|
+
subscriber.command_started_events('findAndModify')
|
4701
|
+
end
|
4702
|
+
|
4703
|
+
it 'finds and deletes successfully with correct options sent to server' do
|
4704
|
+
expect(events.length).to eq(1)
|
4705
|
+
expect(command[:writeConcern]).to_not be_nil
|
4706
|
+
expect(command[:writeConcern][:w]).to eq(2)
|
4707
|
+
expect(command[:bypassDocumentValidation]).to eq(true)
|
4708
|
+
expect(command[:maxTimeMS]).to eq(300)
|
4709
|
+
end
|
4710
|
+
end
|
4270
4711
|
end
|
4271
4712
|
|
4272
4713
|
describe '#find_one_and_update' do
|
@@ -4688,6 +5129,51 @@ describe Mongo::Collection do
|
|
4688
5129
|
end
|
4689
5130
|
end
|
4690
5131
|
end
|
5132
|
+
|
5133
|
+
context 'when various options passed in' do
|
5134
|
+
# w: 2 requires a replica set
|
5135
|
+
require_topology :replica_set
|
5136
|
+
|
5137
|
+
# https://jira.mongodb.org/browse/RUBY-2306
|
5138
|
+
min_server_fcv '3.6'
|
5139
|
+
|
5140
|
+
let(:session) do
|
5141
|
+
authorized_client.start_session
|
5142
|
+
end
|
5143
|
+
|
5144
|
+
let(:events) do
|
5145
|
+
subscriber.command_started_events('findAndModify')
|
5146
|
+
end
|
5147
|
+
|
5148
|
+
let(:collection) do
|
5149
|
+
authorized_collection.with(write_concern: {w: 2})
|
5150
|
+
end
|
5151
|
+
|
5152
|
+
let(:selector) do
|
5153
|
+
{field: 'test1'}
|
5154
|
+
end
|
5155
|
+
|
5156
|
+
before do
|
5157
|
+
collection.insert_one({field: 'test1'}, session: session)
|
5158
|
+
end
|
5159
|
+
|
5160
|
+
let!(:command) do
|
5161
|
+
Utils.get_command_event(authorized_client, 'findAndModify') do |client|
|
5162
|
+
collection.find_one_and_update(selector, { '$set' => {field: 'testing'}},
|
5163
|
+
:return_document => :after, write_concern: {w: 1}, upsert: true,
|
5164
|
+
bypass_document_validation: true, max_time_ms: 100, session: session)
|
5165
|
+
end.command
|
5166
|
+
end
|
5167
|
+
|
5168
|
+
it 'find and updates successfully with correct options sent to server' do
|
5169
|
+
expect(events.length).to eq(1)
|
5170
|
+
expect(command[:writeConcern]).to_not be_nil
|
5171
|
+
expect(command[:writeConcern][:w]).to eq(1)
|
5172
|
+
expect(command[:upsert]).to eq(true)
|
5173
|
+
expect(command[:bypassDocumentValidation]).to be(true)
|
5174
|
+
expect(command[:maxTimeMS]).to eq(100)
|
5175
|
+
end
|
5176
|
+
end
|
4691
5177
|
end
|
4692
5178
|
|
4693
5179
|
describe '#find_one_and_replace' do
|
@@ -5001,6 +5487,44 @@ describe Mongo::Collection do
|
|
5001
5487
|
expect(result).to be_nil
|
5002
5488
|
end
|
5003
5489
|
end
|
5490
|
+
|
5491
|
+
context 'when various options passed in' do
|
5492
|
+
# https://jira.mongodb.org/browse/RUBY-2306
|
5493
|
+
min_server_fcv '3.6'
|
5494
|
+
|
5495
|
+
before do
|
5496
|
+
authorized_collection.insert_one({field: 'test1'})
|
5497
|
+
end
|
5498
|
+
|
5499
|
+
let(:session) do
|
5500
|
+
authorized_client.start_session
|
5501
|
+
end
|
5502
|
+
|
5503
|
+
let(:events) do
|
5504
|
+
subscriber.command_started_events('findAndModify')
|
5505
|
+
end
|
5506
|
+
|
5507
|
+
let(:collection) do
|
5508
|
+
authorized_collection.with(write_concern: { w: 2 })
|
5509
|
+
end
|
5510
|
+
|
5511
|
+
let!(:command) do
|
5512
|
+
Utils.get_command_event(authorized_client, 'findAndModify') do |client|
|
5513
|
+
collection.find_one_and_replace(selector, { '$set' => {field: 'test5'}},
|
5514
|
+
:return_document => :after, write_concern: {w: 1}, session: session,
|
5515
|
+
upsert: true, bypass_document_validation: false, max_time_ms: 200)
|
5516
|
+
end.command
|
5517
|
+
end
|
5518
|
+
|
5519
|
+
it 'find and replaces successfully with correct options sent to server' do
|
5520
|
+
expect(events.length).to eq(1)
|
5521
|
+
expect(command[:writeConcern]).to_not be_nil
|
5522
|
+
expect(command[:writeConcern][:w]).to eq(1)
|
5523
|
+
expect(command[:upsert]).to be(true)
|
5524
|
+
expect(command[:bypassDocumentValidation]).to be_nil
|
5525
|
+
expect(command[:maxTimeMS]).to eq(200)
|
5526
|
+
end
|
5527
|
+
end
|
5004
5528
|
end
|
5005
5529
|
|
5006
5530
|
describe '#watch' do
|