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
@@ -1,7 +1,11 @@
|
|
1
1
|
require 'spec_helper'
|
2
2
|
|
3
|
+
require 'runners/crud'
|
4
|
+
require 'runners/change_streams/spec'
|
5
|
+
|
3
6
|
describe 'ChangeStreams' do
|
4
7
|
require_wired_tiger
|
8
|
+
require_no_multi_shard
|
5
9
|
|
6
10
|
CHANGE_STREAMS_TESTS.each do |file|
|
7
11
|
|
@@ -14,7 +18,7 @@ describe 'ChangeStreams' do
|
|
14
18
|
context(test.description) do
|
15
19
|
require_topology *test.topologies
|
16
20
|
|
17
|
-
before
|
21
|
+
before do
|
18
22
|
unless test.server_version_satisfied?(authorized_client)
|
19
23
|
skip 'Version requirements not satisfied'
|
20
24
|
end
|
@@ -22,14 +26,45 @@ describe 'ChangeStreams' do
|
|
22
26
|
test.setup_test
|
23
27
|
end
|
24
28
|
|
29
|
+
after do
|
30
|
+
test.teardown_test
|
31
|
+
end
|
32
|
+
|
25
33
|
let(:result) do
|
26
34
|
test.run
|
27
35
|
end
|
28
36
|
|
29
37
|
let(:verifier) { Mongo::CRUD::Verifier.new(test) }
|
30
38
|
|
31
|
-
|
32
|
-
|
39
|
+
if test.outcome.error?
|
40
|
+
let(:actual_error) { result[:result][:error] }
|
41
|
+
|
42
|
+
it 'fails' do
|
43
|
+
actual_error[:code].should == test.outcome.error.fetch('code')
|
44
|
+
end
|
45
|
+
|
46
|
+
if test.outcome.error['errorLabels']
|
47
|
+
it 'has correct error labels' do
|
48
|
+
actual_error[:labels].should == test.outcome.error.fetch('errorLabels')
|
49
|
+
end
|
50
|
+
end
|
51
|
+
else
|
52
|
+
let(:actual_documents) do
|
53
|
+
result[:result]['success'].map do |document|
|
54
|
+
document = document.dup
|
55
|
+
fd = document['fullDocument']
|
56
|
+
if fd
|
57
|
+
fd = fd.dup
|
58
|
+
fd.delete('_id')
|
59
|
+
document['fullDocument'] = fd
|
60
|
+
end
|
61
|
+
document
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
65
|
+
it 'has the correct documents' do
|
66
|
+
verifier.verify_operation_result(test.result['success'], actual_documents)
|
67
|
+
end
|
33
68
|
end
|
34
69
|
|
35
70
|
if test.expectations
|
@@ -38,7 +73,7 @@ describe 'ChangeStreams' do
|
|
38
73
|
end
|
39
74
|
|
40
75
|
it 'has the correct number of command_started events' do
|
41
|
-
verifier.
|
76
|
+
verifier.verify_command_started_event_min_count(test.expectations, actual_events)
|
42
77
|
end
|
43
78
|
|
44
79
|
test.expectations.each_with_index do |expectation, i|
|
@@ -1,5 +1,7 @@
|
|
1
1
|
require 'spec_helper'
|
2
2
|
|
3
|
+
require 'runners/cmap'
|
4
|
+
|
3
5
|
# Temporary scopes in all of the tests are needed to exclude endSessions
|
4
6
|
# commands being sent during cleanup from interfering with assertions.
|
5
7
|
|
@@ -20,9 +22,13 @@ describe 'Cmap' do
|
|
20
22
|
end
|
21
23
|
|
22
24
|
let(:options) do
|
23
|
-
|
24
|
-
|
25
|
-
|
25
|
+
Mongo::Utils.shallow_symbolize_keys(Mongo::Client.canonicalize_ruby_options(
|
26
|
+
SpecConfig.instance.all_test_options,
|
27
|
+
)).update(monitoring_io: false).tap do |options|
|
28
|
+
# We have a wait queue timeout set in the test suite options, but having
|
29
|
+
# this option set interferes with assertions in the cmap spec tests.
|
30
|
+
options.delete(:wait_queue_timeout)
|
31
|
+
end
|
26
32
|
end
|
27
33
|
|
28
34
|
CMAP_TESTS.each do |file|
|
@@ -62,6 +68,9 @@ describe 'Cmap' do
|
|
62
68
|
let!(:result) do
|
63
69
|
socket = double('fake socket')
|
64
70
|
allow(socket).to receive(:close)
|
71
|
+
# When linting, connection pool ensures the connection returned
|
72
|
+
# is connected.
|
73
|
+
allow(socket).to receive(:alive?).and_return(true)
|
65
74
|
|
66
75
|
allow_any_instance_of(Mongo::Server::Connection).to receive(:do_connect).and_return(socket)
|
67
76
|
spec.run
|
@@ -1,5 +1,8 @@
|
|
1
1
|
require 'spec_helper'
|
2
2
|
|
3
|
+
require 'runners/crud'
|
4
|
+
require 'runners/command_monitoring'
|
5
|
+
|
3
6
|
describe 'Command Monitoring Events' do
|
4
7
|
|
5
8
|
COMMAND_MONITORING_TESTS.each do |file|
|
@@ -17,7 +20,7 @@ describe 'Command Monitoring Events' do
|
|
17
20
|
end
|
18
21
|
|
19
22
|
let(:subscriber) do
|
20
|
-
|
23
|
+
EventSubscriber.new
|
21
24
|
end
|
22
25
|
|
23
26
|
let(:monitoring) do
|
@@ -29,25 +32,35 @@ describe 'Command Monitoring Events' do
|
|
29
32
|
authorized_client.subscribe(Mongo::Monitoring::COMMAND, subscriber)
|
30
33
|
end
|
31
34
|
|
32
|
-
|
33
|
-
monitoring.subscribers[Mongo::Monitoring::COMMAND].delete(subscriber)
|
34
|
-
authorized_collection.find.delete_many
|
35
|
-
end
|
36
|
-
|
37
|
-
test.expectations.each do |expectation|
|
35
|
+
test.expectations.each_with_index do |expectation, index|
|
38
36
|
|
39
37
|
it "generates a #{expectation.event_name} for #{expectation.command_name}" do
|
40
38
|
begin
|
41
|
-
test.run(authorized_collection)
|
42
|
-
|
43
|
-
expect(event).to send(expectation.matcher, expectation)
|
39
|
+
test.run(authorized_collection, subscriber)
|
40
|
+
check_event(subscriber, index, expectation)
|
44
41
|
rescue Mongo::Error::OperationFailure, Mongo::Error::BulkWriteError
|
45
|
-
|
46
|
-
expect(event).to send(expectation.matcher, expectation)
|
42
|
+
check_event(subscriber, index, expectation)
|
47
43
|
end
|
48
44
|
end
|
49
45
|
end
|
50
46
|
end
|
51
47
|
end
|
52
48
|
end
|
49
|
+
|
50
|
+
def check_event(subscriber, index, expectation)
|
51
|
+
subscriber.all_events.length.should > index
|
52
|
+
# TODO move this filtering into EventSubscriber
|
53
|
+
events = subscriber.all_events.reject do |event|
|
54
|
+
(
|
55
|
+
event.is_a?(Mongo::Monitoring::Event::CommandStarted) ||
|
56
|
+
event.is_a?(Mongo::Monitoring::Event::CommandSucceeded) ||
|
57
|
+
event.is_a?(Mongo::Monitoring::Event::CommandFailed)
|
58
|
+
) &&
|
59
|
+
%w(authenticate getnonce saslStart saslContinue).include?(event.command_name)
|
60
|
+
end
|
61
|
+
actual_event = events[index]
|
62
|
+
expected_event_type = expectation.event_type.sub(/_event$/, '')
|
63
|
+
Utils.underscore(actual_event.class.name.sub(/.*::/, '')).to_s.should == expected_event_type
|
64
|
+
expect(actual_event).to send(expectation.matcher, expectation)
|
65
|
+
end
|
53
66
|
end
|
@@ -1,5 +1,7 @@
|
|
1
1
|
require 'spec_helper'
|
2
2
|
|
3
|
+
require 'runners/crud'
|
4
|
+
|
3
5
|
describe 'CRUD v1 spec tests' do
|
4
6
|
define_crud_spec_tests(CRUD_TESTS) do |spec, req, test|
|
5
7
|
let(:client) { authorized_client }
|
@@ -9,7 +11,7 @@ end
|
|
9
11
|
describe 'CRUD v2 spec tests' do
|
10
12
|
define_crud_spec_tests(CRUD2_TESTS) do |spec, req, test|
|
11
13
|
let(:client) do
|
12
|
-
authorized_client.tap do |client|
|
14
|
+
authorized_client.use(spec.database_name || 'crud-default').tap do |client|
|
13
15
|
client.subscribe(Mongo::Monitoring::COMMAND, event_subscriber)
|
14
16
|
end
|
15
17
|
end
|
@@ -175,6 +175,16 @@ tests:
|
|
175
175
|
source: "$external"
|
176
176
|
mechanism: "MONGODB-X509"
|
177
177
|
mechanism_properties: ~
|
178
|
+
-
|
179
|
+
description: "should recognize the mechanism with no username when auth source is explicitly specified (MONGODB-X509)"
|
180
|
+
uri: "mongodb://localhost/?authMechanism=MONGODB-X509&authSource=$external"
|
181
|
+
valid: true
|
182
|
+
credential:
|
183
|
+
username: ~
|
184
|
+
password: ~
|
185
|
+
source: "$external"
|
186
|
+
mechanism: "MONGODB-X509"
|
187
|
+
mechanism_properties: ~
|
178
188
|
-
|
179
189
|
description: "should throw an exception if supplied a password (MONGODB-X509)"
|
180
190
|
uri: "mongodb://user:password@localhost/?authMechanism=MONGODB-X509"
|
@@ -296,7 +306,7 @@ tests:
|
|
296
306
|
valid: true
|
297
307
|
credential: ~
|
298
308
|
-
|
299
|
-
description: "authSource without username doesn't create credential"
|
309
|
+
description: "authSource without username doesn't create credential (default mechanism)"
|
300
310
|
uri: "mongodb://localhost/?authSource=foo"
|
301
311
|
valid: true
|
302
312
|
credential: ~
|
@@ -308,3 +318,49 @@ tests:
|
|
308
318
|
description: "should throw an exception if no username/password provided (userinfo implies default mechanism)"
|
309
319
|
uri: "mongodb://:@localhost.com/"
|
310
320
|
valid: false
|
321
|
+
-
|
322
|
+
description: "should recognise the mechanism (MONGODB-AWS)"
|
323
|
+
uri: "mongodb://localhost/?authMechanism=MONGODB-AWS"
|
324
|
+
valid: true
|
325
|
+
credential:
|
326
|
+
username: ~
|
327
|
+
password: ~
|
328
|
+
source: "$external"
|
329
|
+
mechanism: "MONGODB-AWS"
|
330
|
+
mechanism_properties: ~
|
331
|
+
-
|
332
|
+
description: "should recognise the mechanism when auth source is explicitly specified (MONGODB-AWS)"
|
333
|
+
uri: "mongodb://localhost/?authMechanism=MONGODB-AWS&authSource=$external"
|
334
|
+
valid: true
|
335
|
+
credential:
|
336
|
+
username: ~
|
337
|
+
password: ~
|
338
|
+
source: "$external"
|
339
|
+
mechanism: "MONGODB-AWS"
|
340
|
+
mechanism_properties: ~
|
341
|
+
-
|
342
|
+
description: "should throw an exception if username and no password (MONGODB-AWS)"
|
343
|
+
uri: "mongodb://user@localhost/?authMechanism=MONGODB-AWS"
|
344
|
+
valid: false
|
345
|
+
credential: ~
|
346
|
+
-
|
347
|
+
description: "should use username and password if specified (MONGODB-AWS)"
|
348
|
+
uri: "mongodb://user%21%40%23%24%25%5E%26%2A%28%29_%2B:pass%21%40%23%24%25%5E%26%2A%28%29_%2B@localhost/?authMechanism=MONGODB-AWS"
|
349
|
+
valid: true
|
350
|
+
credential:
|
351
|
+
username: "user!@#$%^&*()_+"
|
352
|
+
password: "pass!@#$%^&*()_+"
|
353
|
+
source: "$external"
|
354
|
+
mechanism: "MONGODB-AWS"
|
355
|
+
mechanism_properties: ~
|
356
|
+
-
|
357
|
+
description: "should use username, password and session token if specified (MONGODB-AWS)"
|
358
|
+
uri: "mongodb://user:password@localhost/?authMechanism=MONGODB-AWS&authMechanismProperties=AWS_SESSION_TOKEN:token%21%40%23%24%25%5E%26%2A%28%29_%2B"
|
359
|
+
valid: true
|
360
|
+
credential:
|
361
|
+
username: "user"
|
362
|
+
password: "password"
|
363
|
+
source: "$external"
|
364
|
+
mechanism: "MONGODB-AWS"
|
365
|
+
mechanism_properties:
|
366
|
+
AWS_SESSION_TOKEN: "token!@#$%^&*()_+"
|
@@ -12,7 +12,6 @@ tests:
|
|
12
12
|
changeStreamPipeline: []
|
13
13
|
changeStreamOptions: {}
|
14
14
|
operations: []
|
15
|
-
# https://jira.mongodb.org/browse/SPEC-1462
|
16
15
|
expectations: ~
|
17
16
|
result:
|
18
17
|
error:
|
@@ -73,4 +72,30 @@ tests:
|
|
73
72
|
result:
|
74
73
|
error:
|
75
74
|
code: 280
|
76
|
-
|
75
|
+
-
|
76
|
+
description: change stream errors on ElectionInProgress
|
77
|
+
minServerVersion: "4.2"
|
78
|
+
failPoint:
|
79
|
+
configureFailPoint: failCommand
|
80
|
+
mode: { times: 1 }
|
81
|
+
data:
|
82
|
+
failCommands: ["getMore"]
|
83
|
+
errorCode: 216 # An error code that's not on the old blacklist or whitelist
|
84
|
+
closeConnection: false
|
85
|
+
target: collection
|
86
|
+
topology:
|
87
|
+
- replicaset
|
88
|
+
- sharded
|
89
|
+
changeStreamPipeline: []
|
90
|
+
changeStreamOptions: {}
|
91
|
+
operations:
|
92
|
+
-
|
93
|
+
database: *database_name
|
94
|
+
collection: *collection_name
|
95
|
+
name: insertOne
|
96
|
+
arguments:
|
97
|
+
document:
|
98
|
+
z: 3
|
99
|
+
result:
|
100
|
+
error:
|
101
|
+
code: 216
|
@@ -0,0 +1,1105 @@
|
|
1
|
+
# Tests for resume behavior on server versions that support the ResumableChangeStreamError label
|
2
|
+
collection_name: &collection_name "test"
|
3
|
+
database_name: &database_name "change-stream-tests"
|
4
|
+
tests:
|
5
|
+
-
|
6
|
+
description: "change stream resumes after HostUnreachable"
|
7
|
+
minServerVersion: "4.3.1"
|
8
|
+
failPoint:
|
9
|
+
configureFailPoint: failGetMoreAfterCursorCheckout # SERVER-46091 explains why a new failpoint was needed
|
10
|
+
mode: { times: 1 }
|
11
|
+
data:
|
12
|
+
errorCode: 6
|
13
|
+
closeConnection: false
|
14
|
+
target: collection
|
15
|
+
topology:
|
16
|
+
- replicaset
|
17
|
+
- sharded
|
18
|
+
changeStreamPipeline: []
|
19
|
+
changeStreamOptions: {}
|
20
|
+
operations:
|
21
|
+
-
|
22
|
+
database: *database_name
|
23
|
+
collection: *collection_name
|
24
|
+
name: insertOne
|
25
|
+
arguments:
|
26
|
+
document:
|
27
|
+
x: 1
|
28
|
+
expectations:
|
29
|
+
-
|
30
|
+
command_started_event:
|
31
|
+
command:
|
32
|
+
aggregate: *collection_name
|
33
|
+
cursor: {}
|
34
|
+
pipeline:
|
35
|
+
-
|
36
|
+
$changeStream: {}
|
37
|
+
command_name: aggregate
|
38
|
+
database_name: *database_name
|
39
|
+
-
|
40
|
+
command_started_event:
|
41
|
+
command:
|
42
|
+
getMore: 42
|
43
|
+
collection: *collection_name
|
44
|
+
command_name: getMore
|
45
|
+
database_name: *database_name
|
46
|
+
-
|
47
|
+
command_started_event:
|
48
|
+
command:
|
49
|
+
aggregate: *collection_name
|
50
|
+
cursor: {}
|
51
|
+
pipeline:
|
52
|
+
-
|
53
|
+
$changeStream: {}
|
54
|
+
command_name: aggregate
|
55
|
+
database_name: *database_name
|
56
|
+
result:
|
57
|
+
success:
|
58
|
+
-
|
59
|
+
_id: "42"
|
60
|
+
documentKey: "42"
|
61
|
+
operationType: insert
|
62
|
+
ns:
|
63
|
+
db: *database_name
|
64
|
+
coll: *collection_name
|
65
|
+
fullDocument:
|
66
|
+
x:
|
67
|
+
$numberInt: "1"
|
68
|
+
-
|
69
|
+
description: "change stream resumes after HostNotFound"
|
70
|
+
minServerVersion: "4.3.1"
|
71
|
+
failPoint:
|
72
|
+
configureFailPoint: failGetMoreAfterCursorCheckout
|
73
|
+
mode: { times: 1 }
|
74
|
+
data:
|
75
|
+
errorCode: 7
|
76
|
+
closeConnection: false
|
77
|
+
target: collection
|
78
|
+
topology:
|
79
|
+
- replicaset
|
80
|
+
- sharded
|
81
|
+
changeStreamPipeline: []
|
82
|
+
changeStreamOptions: {}
|
83
|
+
operations:
|
84
|
+
-
|
85
|
+
database: *database_name
|
86
|
+
collection: *collection_name
|
87
|
+
name: insertOne
|
88
|
+
arguments:
|
89
|
+
document:
|
90
|
+
x: 1
|
91
|
+
expectations:
|
92
|
+
-
|
93
|
+
command_started_event:
|
94
|
+
command:
|
95
|
+
aggregate: *collection_name
|
96
|
+
cursor: {}
|
97
|
+
pipeline:
|
98
|
+
-
|
99
|
+
$changeStream: {}
|
100
|
+
command_name: aggregate
|
101
|
+
database_name: *database_name
|
102
|
+
-
|
103
|
+
command_started_event:
|
104
|
+
command:
|
105
|
+
getMore: 42
|
106
|
+
collection: *collection_name
|
107
|
+
command_name: getMore
|
108
|
+
database_name: *database_name
|
109
|
+
-
|
110
|
+
command_started_event:
|
111
|
+
command:
|
112
|
+
aggregate: *collection_name
|
113
|
+
cursor: {}
|
114
|
+
pipeline:
|
115
|
+
-
|
116
|
+
$changeStream: {}
|
117
|
+
command_name: aggregate
|
118
|
+
database_name: *database_name
|
119
|
+
result:
|
120
|
+
success:
|
121
|
+
-
|
122
|
+
_id: "42"
|
123
|
+
documentKey: "42"
|
124
|
+
operationType: insert
|
125
|
+
ns:
|
126
|
+
db: *database_name
|
127
|
+
coll: *collection_name
|
128
|
+
fullDocument:
|
129
|
+
x:
|
130
|
+
$numberInt: "1"
|
131
|
+
-
|
132
|
+
description: "change stream resumes after NetworkTimeout"
|
133
|
+
minServerVersion: "4.3.1"
|
134
|
+
failPoint:
|
135
|
+
configureFailPoint: failGetMoreAfterCursorCheckout
|
136
|
+
mode: { times: 1 }
|
137
|
+
data:
|
138
|
+
errorCode: 89
|
139
|
+
closeConnection: false
|
140
|
+
target: collection
|
141
|
+
topology:
|
142
|
+
- replicaset
|
143
|
+
- sharded
|
144
|
+
changeStreamPipeline: []
|
145
|
+
changeStreamOptions: {}
|
146
|
+
operations:
|
147
|
+
-
|
148
|
+
database: *database_name
|
149
|
+
collection: *collection_name
|
150
|
+
name: insertOne
|
151
|
+
arguments:
|
152
|
+
document:
|
153
|
+
x: 1
|
154
|
+
expectations:
|
155
|
+
-
|
156
|
+
command_started_event:
|
157
|
+
command:
|
158
|
+
aggregate: *collection_name
|
159
|
+
cursor: {}
|
160
|
+
pipeline:
|
161
|
+
-
|
162
|
+
$changeStream: {}
|
163
|
+
command_name: aggregate
|
164
|
+
database_name: *database_name
|
165
|
+
-
|
166
|
+
command_started_event:
|
167
|
+
command:
|
168
|
+
getMore: 42
|
169
|
+
collection: *collection_name
|
170
|
+
command_name: getMore
|
171
|
+
database_name: *database_name
|
172
|
+
-
|
173
|
+
command_started_event:
|
174
|
+
command:
|
175
|
+
aggregate: *collection_name
|
176
|
+
cursor: {}
|
177
|
+
pipeline:
|
178
|
+
-
|
179
|
+
$changeStream: {}
|
180
|
+
command_name: aggregate
|
181
|
+
database_name: *database_name
|
182
|
+
result:
|
183
|
+
success:
|
184
|
+
-
|
185
|
+
_id: "42"
|
186
|
+
documentKey: "42"
|
187
|
+
operationType: insert
|
188
|
+
ns:
|
189
|
+
db: *database_name
|
190
|
+
coll: *collection_name
|
191
|
+
fullDocument:
|
192
|
+
x:
|
193
|
+
$numberInt: "1"
|
194
|
+
-
|
195
|
+
description: "change stream resumes after ShutdownInProgress"
|
196
|
+
minServerVersion: "4.3.1"
|
197
|
+
failPoint:
|
198
|
+
configureFailPoint: failGetMoreAfterCursorCheckout
|
199
|
+
mode: { times: 1 }
|
200
|
+
data:
|
201
|
+
errorCode: 91
|
202
|
+
closeConnection: false
|
203
|
+
target: collection
|
204
|
+
topology:
|
205
|
+
- replicaset
|
206
|
+
- sharded
|
207
|
+
changeStreamPipeline: []
|
208
|
+
changeStreamOptions: {}
|
209
|
+
operations:
|
210
|
+
-
|
211
|
+
database: *database_name
|
212
|
+
collection: *collection_name
|
213
|
+
name: insertOne
|
214
|
+
arguments:
|
215
|
+
document:
|
216
|
+
x: 1
|
217
|
+
expectations:
|
218
|
+
-
|
219
|
+
command_started_event:
|
220
|
+
command:
|
221
|
+
aggregate: *collection_name
|
222
|
+
cursor: {}
|
223
|
+
pipeline:
|
224
|
+
-
|
225
|
+
$changeStream: {}
|
226
|
+
command_name: aggregate
|
227
|
+
database_name: *database_name
|
228
|
+
-
|
229
|
+
command_started_event:
|
230
|
+
command:
|
231
|
+
getMore: 42
|
232
|
+
collection: *collection_name
|
233
|
+
command_name: getMore
|
234
|
+
database_name: *database_name
|
235
|
+
-
|
236
|
+
command_started_event:
|
237
|
+
command:
|
238
|
+
aggregate: *collection_name
|
239
|
+
cursor: {}
|
240
|
+
pipeline:
|
241
|
+
-
|
242
|
+
$changeStream: {}
|
243
|
+
command_name: aggregate
|
244
|
+
database_name: *database_name
|
245
|
+
result:
|
246
|
+
success:
|
247
|
+
-
|
248
|
+
_id: "42"
|
249
|
+
documentKey: "42"
|
250
|
+
operationType: insert
|
251
|
+
ns:
|
252
|
+
db: *database_name
|
253
|
+
coll: *collection_name
|
254
|
+
fullDocument:
|
255
|
+
x:
|
256
|
+
$numberInt: "1"
|
257
|
+
-
|
258
|
+
description: "change stream resumes after PrimarySteppedDown"
|
259
|
+
minServerVersion: "4.3.1"
|
260
|
+
failPoint:
|
261
|
+
configureFailPoint: failGetMoreAfterCursorCheckout
|
262
|
+
mode: { times: 1 }
|
263
|
+
data:
|
264
|
+
errorCode: 189
|
265
|
+
closeConnection: false
|
266
|
+
target: collection
|
267
|
+
topology:
|
268
|
+
- replicaset
|
269
|
+
- sharded
|
270
|
+
changeStreamPipeline: []
|
271
|
+
changeStreamOptions: {}
|
272
|
+
operations:
|
273
|
+
-
|
274
|
+
database: *database_name
|
275
|
+
collection: *collection_name
|
276
|
+
name: insertOne
|
277
|
+
arguments:
|
278
|
+
document:
|
279
|
+
x: 1
|
280
|
+
expectations:
|
281
|
+
-
|
282
|
+
command_started_event:
|
283
|
+
command:
|
284
|
+
aggregate: *collection_name
|
285
|
+
cursor: {}
|
286
|
+
pipeline:
|
287
|
+
-
|
288
|
+
$changeStream: {}
|
289
|
+
command_name: aggregate
|
290
|
+
database_name: *database_name
|
291
|
+
-
|
292
|
+
command_started_event:
|
293
|
+
command:
|
294
|
+
getMore: 42
|
295
|
+
collection: *collection_name
|
296
|
+
command_name: getMore
|
297
|
+
database_name: *database_name
|
298
|
+
-
|
299
|
+
command_started_event:
|
300
|
+
command:
|
301
|
+
aggregate: *collection_name
|
302
|
+
cursor: {}
|
303
|
+
pipeline:
|
304
|
+
-
|
305
|
+
$changeStream: {}
|
306
|
+
command_name: aggregate
|
307
|
+
database_name: *database_name
|
308
|
+
result:
|
309
|
+
success:
|
310
|
+
-
|
311
|
+
_id: "42"
|
312
|
+
documentKey: "42"
|
313
|
+
operationType: insert
|
314
|
+
ns:
|
315
|
+
db: *database_name
|
316
|
+
coll: *collection_name
|
317
|
+
fullDocument:
|
318
|
+
x:
|
319
|
+
$numberInt: "1"
|
320
|
+
-
|
321
|
+
description: "change stream resumes after ExceededTimeLimit"
|
322
|
+
minServerVersion: "4.3.1"
|
323
|
+
failPoint:
|
324
|
+
configureFailPoint: failGetMoreAfterCursorCheckout
|
325
|
+
mode: { times: 1 }
|
326
|
+
data:
|
327
|
+
errorCode: 262
|
328
|
+
closeConnection: false
|
329
|
+
target: collection
|
330
|
+
topology:
|
331
|
+
- replicaset
|
332
|
+
- sharded
|
333
|
+
changeStreamPipeline: []
|
334
|
+
changeStreamOptions: {}
|
335
|
+
operations:
|
336
|
+
-
|
337
|
+
database: *database_name
|
338
|
+
collection: *collection_name
|
339
|
+
name: insertOne
|
340
|
+
arguments:
|
341
|
+
document:
|
342
|
+
x: 1
|
343
|
+
expectations:
|
344
|
+
-
|
345
|
+
command_started_event:
|
346
|
+
command:
|
347
|
+
aggregate: *collection_name
|
348
|
+
cursor: {}
|
349
|
+
pipeline:
|
350
|
+
-
|
351
|
+
$changeStream: {}
|
352
|
+
command_name: aggregate
|
353
|
+
database_name: *database_name
|
354
|
+
-
|
355
|
+
command_started_event:
|
356
|
+
command:
|
357
|
+
getMore: 42
|
358
|
+
collection: *collection_name
|
359
|
+
command_name: getMore
|
360
|
+
database_name: *database_name
|
361
|
+
-
|
362
|
+
command_started_event:
|
363
|
+
command:
|
364
|
+
aggregate: *collection_name
|
365
|
+
cursor: {}
|
366
|
+
pipeline:
|
367
|
+
-
|
368
|
+
$changeStream: {}
|
369
|
+
command_name: aggregate
|
370
|
+
database_name: *database_name
|
371
|
+
result:
|
372
|
+
success:
|
373
|
+
-
|
374
|
+
_id: "42"
|
375
|
+
documentKey: "42"
|
376
|
+
operationType: insert
|
377
|
+
ns:
|
378
|
+
db: *database_name
|
379
|
+
coll: *collection_name
|
380
|
+
fullDocument:
|
381
|
+
x:
|
382
|
+
$numberInt: "1"
|
383
|
+
-
|
384
|
+
description: "change stream resumes after SocketException"
|
385
|
+
minServerVersion: "4.3.1"
|
386
|
+
failPoint:
|
387
|
+
configureFailPoint: failGetMoreAfterCursorCheckout
|
388
|
+
mode: { times: 1 }
|
389
|
+
data:
|
390
|
+
errorCode: 9001
|
391
|
+
closeConnection: false
|
392
|
+
target: collection
|
393
|
+
topology:
|
394
|
+
- replicaset
|
395
|
+
- sharded
|
396
|
+
changeStreamPipeline: []
|
397
|
+
changeStreamOptions: {}
|
398
|
+
operations:
|
399
|
+
-
|
400
|
+
database: *database_name
|
401
|
+
collection: *collection_name
|
402
|
+
name: insertOne
|
403
|
+
arguments:
|
404
|
+
document:
|
405
|
+
x: 1
|
406
|
+
expectations:
|
407
|
+
-
|
408
|
+
command_started_event:
|
409
|
+
command:
|
410
|
+
aggregate: *collection_name
|
411
|
+
cursor: {}
|
412
|
+
pipeline:
|
413
|
+
-
|
414
|
+
$changeStream: {}
|
415
|
+
command_name: aggregate
|
416
|
+
database_name: *database_name
|
417
|
+
-
|
418
|
+
command_started_event:
|
419
|
+
command:
|
420
|
+
getMore: 42
|
421
|
+
collection: *collection_name
|
422
|
+
command_name: getMore
|
423
|
+
database_name: *database_name
|
424
|
+
-
|
425
|
+
command_started_event:
|
426
|
+
command:
|
427
|
+
aggregate: *collection_name
|
428
|
+
cursor: {}
|
429
|
+
pipeline:
|
430
|
+
-
|
431
|
+
$changeStream: {}
|
432
|
+
command_name: aggregate
|
433
|
+
database_name: *database_name
|
434
|
+
result:
|
435
|
+
success:
|
436
|
+
-
|
437
|
+
_id: "42"
|
438
|
+
documentKey: "42"
|
439
|
+
operationType: insert
|
440
|
+
ns:
|
441
|
+
db: *database_name
|
442
|
+
coll: *collection_name
|
443
|
+
fullDocument:
|
444
|
+
x:
|
445
|
+
$numberInt: "1"
|
446
|
+
-
|
447
|
+
description: "change stream resumes after NotMaster"
|
448
|
+
minServerVersion: "4.3.1"
|
449
|
+
failPoint:
|
450
|
+
configureFailPoint: failGetMoreAfterCursorCheckout
|
451
|
+
mode: { times: 1 }
|
452
|
+
data:
|
453
|
+
errorCode: 10107
|
454
|
+
closeConnection: false
|
455
|
+
target: collection
|
456
|
+
topology:
|
457
|
+
- replicaset
|
458
|
+
- sharded
|
459
|
+
changeStreamPipeline: []
|
460
|
+
changeStreamOptions: {}
|
461
|
+
operations:
|
462
|
+
-
|
463
|
+
database: *database_name
|
464
|
+
collection: *collection_name
|
465
|
+
name: insertOne
|
466
|
+
arguments:
|
467
|
+
document:
|
468
|
+
x: 1
|
469
|
+
expectations:
|
470
|
+
-
|
471
|
+
command_started_event:
|
472
|
+
command:
|
473
|
+
aggregate: *collection_name
|
474
|
+
cursor: {}
|
475
|
+
pipeline:
|
476
|
+
-
|
477
|
+
$changeStream: {}
|
478
|
+
command_name: aggregate
|
479
|
+
database_name: *database_name
|
480
|
+
-
|
481
|
+
command_started_event:
|
482
|
+
command:
|
483
|
+
getMore: 42
|
484
|
+
collection: *collection_name
|
485
|
+
command_name: getMore
|
486
|
+
database_name: *database_name
|
487
|
+
-
|
488
|
+
command_started_event:
|
489
|
+
command:
|
490
|
+
aggregate: *collection_name
|
491
|
+
cursor: {}
|
492
|
+
pipeline:
|
493
|
+
-
|
494
|
+
$changeStream: {}
|
495
|
+
command_name: aggregate
|
496
|
+
database_name: *database_name
|
497
|
+
result:
|
498
|
+
success:
|
499
|
+
-
|
500
|
+
_id: "42"
|
501
|
+
documentKey: "42"
|
502
|
+
operationType: insert
|
503
|
+
ns:
|
504
|
+
db: *database_name
|
505
|
+
coll: *collection_name
|
506
|
+
fullDocument:
|
507
|
+
x:
|
508
|
+
$numberInt: "1"
|
509
|
+
-
|
510
|
+
description: "change stream resumes after InterruptedAtShutdown"
|
511
|
+
minServerVersion: "4.3.1"
|
512
|
+
failPoint:
|
513
|
+
configureFailPoint: failGetMoreAfterCursorCheckout
|
514
|
+
mode: { times: 1 }
|
515
|
+
data:
|
516
|
+
errorCode: 11600
|
517
|
+
closeConnection: false
|
518
|
+
target: collection
|
519
|
+
topology:
|
520
|
+
- replicaset
|
521
|
+
- sharded
|
522
|
+
changeStreamPipeline: []
|
523
|
+
changeStreamOptions: {}
|
524
|
+
operations:
|
525
|
+
-
|
526
|
+
database: *database_name
|
527
|
+
collection: *collection_name
|
528
|
+
name: insertOne
|
529
|
+
arguments:
|
530
|
+
document:
|
531
|
+
x: 1
|
532
|
+
expectations:
|
533
|
+
-
|
534
|
+
command_started_event:
|
535
|
+
command:
|
536
|
+
aggregate: *collection_name
|
537
|
+
cursor: {}
|
538
|
+
pipeline:
|
539
|
+
-
|
540
|
+
$changeStream: {}
|
541
|
+
command_name: aggregate
|
542
|
+
database_name: *database_name
|
543
|
+
-
|
544
|
+
command_started_event:
|
545
|
+
command:
|
546
|
+
getMore: 42
|
547
|
+
collection: *collection_name
|
548
|
+
command_name: getMore
|
549
|
+
database_name: *database_name
|
550
|
+
-
|
551
|
+
command_started_event:
|
552
|
+
command:
|
553
|
+
aggregate: *collection_name
|
554
|
+
cursor: {}
|
555
|
+
pipeline:
|
556
|
+
-
|
557
|
+
$changeStream: {}
|
558
|
+
command_name: aggregate
|
559
|
+
database_name: *database_name
|
560
|
+
result:
|
561
|
+
success:
|
562
|
+
-
|
563
|
+
_id: "42"
|
564
|
+
documentKey: "42"
|
565
|
+
operationType: insert
|
566
|
+
ns:
|
567
|
+
db: *database_name
|
568
|
+
coll: *collection_name
|
569
|
+
fullDocument:
|
570
|
+
x:
|
571
|
+
$numberInt: "1"
|
572
|
+
-
|
573
|
+
description: "change stream resumes after InterruptedDueToReplStateChange"
|
574
|
+
minServerVersion: "4.3.1"
|
575
|
+
failPoint:
|
576
|
+
configureFailPoint: failGetMoreAfterCursorCheckout
|
577
|
+
mode: { times: 1 }
|
578
|
+
data:
|
579
|
+
errorCode: 11602
|
580
|
+
closeConnection: false
|
581
|
+
target: collection
|
582
|
+
topology:
|
583
|
+
- replicaset
|
584
|
+
- sharded
|
585
|
+
changeStreamPipeline: []
|
586
|
+
changeStreamOptions: {}
|
587
|
+
operations:
|
588
|
+
-
|
589
|
+
database: *database_name
|
590
|
+
collection: *collection_name
|
591
|
+
name: insertOne
|
592
|
+
arguments:
|
593
|
+
document:
|
594
|
+
x: 1
|
595
|
+
expectations:
|
596
|
+
-
|
597
|
+
command_started_event:
|
598
|
+
command:
|
599
|
+
aggregate: *collection_name
|
600
|
+
cursor: {}
|
601
|
+
pipeline:
|
602
|
+
-
|
603
|
+
$changeStream: {}
|
604
|
+
command_name: aggregate
|
605
|
+
database_name: *database_name
|
606
|
+
-
|
607
|
+
command_started_event:
|
608
|
+
command:
|
609
|
+
getMore: 42
|
610
|
+
collection: *collection_name
|
611
|
+
command_name: getMore
|
612
|
+
database_name: *database_name
|
613
|
+
-
|
614
|
+
command_started_event:
|
615
|
+
command:
|
616
|
+
aggregate: *collection_name
|
617
|
+
cursor: {}
|
618
|
+
pipeline:
|
619
|
+
-
|
620
|
+
$changeStream: {}
|
621
|
+
command_name: aggregate
|
622
|
+
database_name: *database_name
|
623
|
+
result:
|
624
|
+
success:
|
625
|
+
-
|
626
|
+
_id: "42"
|
627
|
+
documentKey: "42"
|
628
|
+
operationType: insert
|
629
|
+
ns:
|
630
|
+
db: *database_name
|
631
|
+
coll: *collection_name
|
632
|
+
fullDocument:
|
633
|
+
x:
|
634
|
+
$numberInt: "1"
|
635
|
+
-
|
636
|
+
description: "change stream resumes after NotMasterNoSlaveOk"
|
637
|
+
minServerVersion: "4.3.1"
|
638
|
+
failPoint:
|
639
|
+
configureFailPoint: failGetMoreAfterCursorCheckout
|
640
|
+
mode: { times: 1 }
|
641
|
+
data:
|
642
|
+
errorCode: 13435
|
643
|
+
closeConnection: false
|
644
|
+
target: collection
|
645
|
+
topology:
|
646
|
+
- replicaset
|
647
|
+
- sharded
|
648
|
+
changeStreamPipeline: []
|
649
|
+
changeStreamOptions: {}
|
650
|
+
operations:
|
651
|
+
-
|
652
|
+
database: *database_name
|
653
|
+
collection: *collection_name
|
654
|
+
name: insertOne
|
655
|
+
arguments:
|
656
|
+
document:
|
657
|
+
x: 1
|
658
|
+
expectations:
|
659
|
+
-
|
660
|
+
command_started_event:
|
661
|
+
command:
|
662
|
+
aggregate: *collection_name
|
663
|
+
cursor: {}
|
664
|
+
pipeline:
|
665
|
+
-
|
666
|
+
$changeStream: {}
|
667
|
+
command_name: aggregate
|
668
|
+
database_name: *database_name
|
669
|
+
-
|
670
|
+
command_started_event:
|
671
|
+
command:
|
672
|
+
getMore: 42
|
673
|
+
collection: *collection_name
|
674
|
+
command_name: getMore
|
675
|
+
database_name: *database_name
|
676
|
+
-
|
677
|
+
command_started_event:
|
678
|
+
command:
|
679
|
+
aggregate: *collection_name
|
680
|
+
cursor: {}
|
681
|
+
pipeline:
|
682
|
+
-
|
683
|
+
$changeStream: {}
|
684
|
+
command_name: aggregate
|
685
|
+
database_name: *database_name
|
686
|
+
result:
|
687
|
+
success:
|
688
|
+
-
|
689
|
+
_id: "42"
|
690
|
+
documentKey: "42"
|
691
|
+
operationType: insert
|
692
|
+
ns:
|
693
|
+
db: *database_name
|
694
|
+
coll: *collection_name
|
695
|
+
fullDocument:
|
696
|
+
x:
|
697
|
+
$numberInt: "1"
|
698
|
+
-
|
699
|
+
description: "change stream resumes after NotMasterOrSecondary"
|
700
|
+
minServerVersion: "4.3.1"
|
701
|
+
failPoint:
|
702
|
+
configureFailPoint: failGetMoreAfterCursorCheckout
|
703
|
+
mode: { times: 1 }
|
704
|
+
data:
|
705
|
+
errorCode: 13436
|
706
|
+
closeConnection: false
|
707
|
+
target: collection
|
708
|
+
topology:
|
709
|
+
- replicaset
|
710
|
+
- sharded
|
711
|
+
changeStreamPipeline: []
|
712
|
+
changeStreamOptions: {}
|
713
|
+
operations:
|
714
|
+
-
|
715
|
+
database: *database_name
|
716
|
+
collection: *collection_name
|
717
|
+
name: insertOne
|
718
|
+
arguments:
|
719
|
+
document:
|
720
|
+
x: 1
|
721
|
+
expectations:
|
722
|
+
-
|
723
|
+
command_started_event:
|
724
|
+
command:
|
725
|
+
aggregate: *collection_name
|
726
|
+
cursor: {}
|
727
|
+
pipeline:
|
728
|
+
-
|
729
|
+
$changeStream: {}
|
730
|
+
command_name: aggregate
|
731
|
+
database_name: *database_name
|
732
|
+
-
|
733
|
+
command_started_event:
|
734
|
+
command:
|
735
|
+
getMore: 42
|
736
|
+
collection: *collection_name
|
737
|
+
command_name: getMore
|
738
|
+
database_name: *database_name
|
739
|
+
-
|
740
|
+
command_started_event:
|
741
|
+
command:
|
742
|
+
aggregate: *collection_name
|
743
|
+
cursor: {}
|
744
|
+
pipeline:
|
745
|
+
-
|
746
|
+
$changeStream: {}
|
747
|
+
command_name: aggregate
|
748
|
+
database_name: *database_name
|
749
|
+
result:
|
750
|
+
success:
|
751
|
+
-
|
752
|
+
_id: "42"
|
753
|
+
documentKey: "42"
|
754
|
+
operationType: insert
|
755
|
+
ns:
|
756
|
+
db: *database_name
|
757
|
+
coll: *collection_name
|
758
|
+
fullDocument:
|
759
|
+
x:
|
760
|
+
$numberInt: "1"
|
761
|
+
-
|
762
|
+
description: "change stream resumes after StaleShardVersion"
|
763
|
+
minServerVersion: "4.3.1"
|
764
|
+
failPoint:
|
765
|
+
configureFailPoint: failGetMoreAfterCursorCheckout
|
766
|
+
mode: { times: 1 }
|
767
|
+
data:
|
768
|
+
errorCode: 63
|
769
|
+
closeConnection: false
|
770
|
+
target: collection
|
771
|
+
topology:
|
772
|
+
- replicaset
|
773
|
+
- sharded
|
774
|
+
changeStreamPipeline: []
|
775
|
+
changeStreamOptions: {}
|
776
|
+
operations:
|
777
|
+
-
|
778
|
+
database: *database_name
|
779
|
+
collection: *collection_name
|
780
|
+
name: insertOne
|
781
|
+
arguments:
|
782
|
+
document:
|
783
|
+
x: 1
|
784
|
+
expectations:
|
785
|
+
-
|
786
|
+
command_started_event:
|
787
|
+
command:
|
788
|
+
aggregate: *collection_name
|
789
|
+
cursor: {}
|
790
|
+
pipeline:
|
791
|
+
-
|
792
|
+
$changeStream: {}
|
793
|
+
command_name: aggregate
|
794
|
+
database_name: *database_name
|
795
|
+
-
|
796
|
+
command_started_event:
|
797
|
+
command:
|
798
|
+
getMore: 42
|
799
|
+
collection: *collection_name
|
800
|
+
command_name: getMore
|
801
|
+
database_name: *database_name
|
802
|
+
-
|
803
|
+
command_started_event:
|
804
|
+
command:
|
805
|
+
aggregate: *collection_name
|
806
|
+
cursor: {}
|
807
|
+
pipeline:
|
808
|
+
-
|
809
|
+
$changeStream: {}
|
810
|
+
command_name: aggregate
|
811
|
+
database_name: *database_name
|
812
|
+
result:
|
813
|
+
success:
|
814
|
+
-
|
815
|
+
_id: "42"
|
816
|
+
documentKey: "42"
|
817
|
+
operationType: insert
|
818
|
+
ns:
|
819
|
+
db: *database_name
|
820
|
+
coll: *collection_name
|
821
|
+
fullDocument:
|
822
|
+
x:
|
823
|
+
$numberInt: "1"
|
824
|
+
-
|
825
|
+
description: "change stream resumes after StaleEpoch"
|
826
|
+
minServerVersion: "4.3.1"
|
827
|
+
failPoint:
|
828
|
+
configureFailPoint: failGetMoreAfterCursorCheckout
|
829
|
+
mode: { times: 1 }
|
830
|
+
data:
|
831
|
+
errorCode: 150
|
832
|
+
closeConnection: false
|
833
|
+
target: collection
|
834
|
+
topology:
|
835
|
+
- replicaset
|
836
|
+
- sharded
|
837
|
+
changeStreamPipeline: []
|
838
|
+
changeStreamOptions: {}
|
839
|
+
operations:
|
840
|
+
-
|
841
|
+
database: *database_name
|
842
|
+
collection: *collection_name
|
843
|
+
name: insertOne
|
844
|
+
arguments:
|
845
|
+
document:
|
846
|
+
x: 1
|
847
|
+
expectations:
|
848
|
+
-
|
849
|
+
command_started_event:
|
850
|
+
command:
|
851
|
+
aggregate: *collection_name
|
852
|
+
cursor: {}
|
853
|
+
pipeline:
|
854
|
+
-
|
855
|
+
$changeStream: {}
|
856
|
+
command_name: aggregate
|
857
|
+
database_name: *database_name
|
858
|
+
-
|
859
|
+
command_started_event:
|
860
|
+
command:
|
861
|
+
getMore: 42
|
862
|
+
collection: *collection_name
|
863
|
+
command_name: getMore
|
864
|
+
database_name: *database_name
|
865
|
+
-
|
866
|
+
command_started_event:
|
867
|
+
command:
|
868
|
+
aggregate: *collection_name
|
869
|
+
cursor: {}
|
870
|
+
pipeline:
|
871
|
+
-
|
872
|
+
$changeStream: {}
|
873
|
+
command_name: aggregate
|
874
|
+
database_name: *database_name
|
875
|
+
result:
|
876
|
+
success:
|
877
|
+
-
|
878
|
+
_id: "42"
|
879
|
+
documentKey: "42"
|
880
|
+
operationType: insert
|
881
|
+
ns:
|
882
|
+
db: *database_name
|
883
|
+
coll: *collection_name
|
884
|
+
fullDocument:
|
885
|
+
x:
|
886
|
+
$numberInt: "1"
|
887
|
+
-
|
888
|
+
description: "change stream resumes after RetryChangeStream"
|
889
|
+
minServerVersion: "4.3.1"
|
890
|
+
failPoint:
|
891
|
+
configureFailPoint: failGetMoreAfterCursorCheckout
|
892
|
+
mode: { times: 1 }
|
893
|
+
data:
|
894
|
+
errorCode: 234
|
895
|
+
closeConnection: false
|
896
|
+
target: collection
|
897
|
+
topology:
|
898
|
+
- replicaset
|
899
|
+
- sharded
|
900
|
+
changeStreamPipeline: []
|
901
|
+
changeStreamOptions: {}
|
902
|
+
operations:
|
903
|
+
-
|
904
|
+
database: *database_name
|
905
|
+
collection: *collection_name
|
906
|
+
name: insertOne
|
907
|
+
arguments:
|
908
|
+
document:
|
909
|
+
x: 1
|
910
|
+
expectations:
|
911
|
+
-
|
912
|
+
command_started_event:
|
913
|
+
command:
|
914
|
+
aggregate: *collection_name
|
915
|
+
cursor: {}
|
916
|
+
pipeline:
|
917
|
+
-
|
918
|
+
$changeStream: {}
|
919
|
+
command_name: aggregate
|
920
|
+
database_name: *database_name
|
921
|
+
-
|
922
|
+
command_started_event:
|
923
|
+
command:
|
924
|
+
getMore: 42
|
925
|
+
collection: *collection_name
|
926
|
+
command_name: getMore
|
927
|
+
database_name: *database_name
|
928
|
+
-
|
929
|
+
command_started_event:
|
930
|
+
command:
|
931
|
+
aggregate: *collection_name
|
932
|
+
cursor: {}
|
933
|
+
pipeline:
|
934
|
+
-
|
935
|
+
$changeStream: {}
|
936
|
+
command_name: aggregate
|
937
|
+
database_name: *database_name
|
938
|
+
result:
|
939
|
+
success:
|
940
|
+
-
|
941
|
+
_id: "42"
|
942
|
+
documentKey: "42"
|
943
|
+
operationType: insert
|
944
|
+
ns:
|
945
|
+
db: *database_name
|
946
|
+
coll: *collection_name
|
947
|
+
fullDocument:
|
948
|
+
x:
|
949
|
+
$numberInt: "1"
|
950
|
+
-
|
951
|
+
description: "change stream resumes after FailedToSatisfyReadPreference"
|
952
|
+
minServerVersion: "4.3.1"
|
953
|
+
failPoint:
|
954
|
+
configureFailPoint: failGetMoreAfterCursorCheckout
|
955
|
+
mode: { times: 1 }
|
956
|
+
data:
|
957
|
+
errorCode: 133
|
958
|
+
closeConnection: false
|
959
|
+
target: collection
|
960
|
+
topology:
|
961
|
+
- replicaset
|
962
|
+
- sharded
|
963
|
+
changeStreamPipeline: []
|
964
|
+
changeStreamOptions: {}
|
965
|
+
operations:
|
966
|
+
-
|
967
|
+
database: *database_name
|
968
|
+
collection: *collection_name
|
969
|
+
name: insertOne
|
970
|
+
arguments:
|
971
|
+
document:
|
972
|
+
x: 1
|
973
|
+
expectations:
|
974
|
+
-
|
975
|
+
command_started_event:
|
976
|
+
command:
|
977
|
+
aggregate: *collection_name
|
978
|
+
cursor: {}
|
979
|
+
pipeline:
|
980
|
+
-
|
981
|
+
$changeStream: {}
|
982
|
+
command_name: aggregate
|
983
|
+
database_name: *database_name
|
984
|
+
-
|
985
|
+
command_started_event:
|
986
|
+
command:
|
987
|
+
getMore: 42
|
988
|
+
collection: *collection_name
|
989
|
+
command_name: getMore
|
990
|
+
database_name: *database_name
|
991
|
+
-
|
992
|
+
command_started_event:
|
993
|
+
command:
|
994
|
+
aggregate: *collection_name
|
995
|
+
cursor: {}
|
996
|
+
pipeline:
|
997
|
+
-
|
998
|
+
$changeStream: {}
|
999
|
+
command_name: aggregate
|
1000
|
+
database_name: *database_name
|
1001
|
+
result:
|
1002
|
+
success:
|
1003
|
+
-
|
1004
|
+
_id: "42"
|
1005
|
+
documentKey: "42"
|
1006
|
+
operationType: insert
|
1007
|
+
ns:
|
1008
|
+
db: *database_name
|
1009
|
+
coll: *collection_name
|
1010
|
+
fullDocument:
|
1011
|
+
x:
|
1012
|
+
$numberInt: "1"
|
1013
|
+
# The next two tests ensure that the driver only uses the error label, not the whitelist.
|
1014
|
+
-
|
1015
|
+
description: "change stream resumes if error contains ResumableChangeStreamError"
|
1016
|
+
minServerVersion: "4.3.1"
|
1017
|
+
failPoint:
|
1018
|
+
configureFailPoint: failCommand
|
1019
|
+
mode: { times: 1 }
|
1020
|
+
data:
|
1021
|
+
failCommands: ["getMore"]
|
1022
|
+
errorCode: 50 # Use an error code that does not have the whitelist label by default
|
1023
|
+
closeConnection: false
|
1024
|
+
errorLabels: ["ResumableChangeStreamError"]
|
1025
|
+
target: collection
|
1026
|
+
topology:
|
1027
|
+
- replicaset
|
1028
|
+
- sharded
|
1029
|
+
changeStreamPipeline: []
|
1030
|
+
changeStreamOptions: {}
|
1031
|
+
operations:
|
1032
|
+
-
|
1033
|
+
database: *database_name
|
1034
|
+
collection: *collection_name
|
1035
|
+
name: insertOne
|
1036
|
+
arguments:
|
1037
|
+
document:
|
1038
|
+
x: 1
|
1039
|
+
expectations:
|
1040
|
+
-
|
1041
|
+
command_started_event:
|
1042
|
+
command:
|
1043
|
+
aggregate: *collection_name
|
1044
|
+
cursor: {}
|
1045
|
+
pipeline:
|
1046
|
+
-
|
1047
|
+
$changeStream: {}
|
1048
|
+
command_name: aggregate
|
1049
|
+
database_name: *database_name
|
1050
|
+
-
|
1051
|
+
command_started_event:
|
1052
|
+
command:
|
1053
|
+
getMore: 42
|
1054
|
+
collection: *collection_name
|
1055
|
+
command_name: getMore
|
1056
|
+
database_name: *database_name
|
1057
|
+
-
|
1058
|
+
command_started_event:
|
1059
|
+
command:
|
1060
|
+
aggregate: *collection_name
|
1061
|
+
cursor: {}
|
1062
|
+
pipeline:
|
1063
|
+
-
|
1064
|
+
$changeStream: {}
|
1065
|
+
command_name: aggregate
|
1066
|
+
database_name: *database_name
|
1067
|
+
result:
|
1068
|
+
success:
|
1069
|
+
-
|
1070
|
+
_id: "42"
|
1071
|
+
documentKey: "42"
|
1072
|
+
operationType: insert
|
1073
|
+
ns:
|
1074
|
+
db: *database_name
|
1075
|
+
coll: *collection_name
|
1076
|
+
fullDocument:
|
1077
|
+
x:
|
1078
|
+
$numberInt: "1"
|
1079
|
+
-
|
1080
|
+
description: "change stream does not resume if error does not contain ResumableChangeStreamError"
|
1081
|
+
minServerVersion: "4.3.1"
|
1082
|
+
failPoint:
|
1083
|
+
configureFailPoint: failCommand # failCommand will not add the whitelist error label
|
1084
|
+
mode: { times: 1 }
|
1085
|
+
data:
|
1086
|
+
failCommands: ["getMore"]
|
1087
|
+
errorCode: 6 # Use an error code that is on the whitelist
|
1088
|
+
closeConnection: false
|
1089
|
+
target: collection
|
1090
|
+
topology:
|
1091
|
+
- replicaset
|
1092
|
+
- sharded
|
1093
|
+
changeStreamPipeline: []
|
1094
|
+
changeStreamOptions: {}
|
1095
|
+
operations:
|
1096
|
+
-
|
1097
|
+
database: *database_name
|
1098
|
+
collection: *collection_name
|
1099
|
+
name: insertOne
|
1100
|
+
arguments:
|
1101
|
+
document:
|
1102
|
+
x: 1
|
1103
|
+
result:
|
1104
|
+
error:
|
1105
|
+
code: 6
|