mongo 2.10.5 → 2.15.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data/CONTRIBUTING.md +8 -36
- data/LICENSE +1 -1
- data/README.md +57 -53
- data/Rakefile +76 -16
- data/lib/mongo/active_support.rb +4 -1
- data/lib/mongo/address/ipv4.rb +35 -5
- data/lib/mongo/address/ipv6.rb +35 -5
- data/lib/mongo/address/unix.rb +6 -3
- data/lib/mongo/address/validator.rb +102 -0
- data/lib/mongo/address.rb +121 -46
- data/lib/mongo/auth/aws/conversation.rb +128 -0
- data/lib/mongo/auth/aws/credentials_retriever.rb +222 -0
- data/lib/mongo/auth/aws/request.rb +286 -0
- data/lib/mongo/auth/aws.rb +40 -0
- data/lib/mongo/auth/base.rb +138 -0
- data/lib/mongo/auth/conversation_base.rb +87 -0
- data/lib/mongo/auth/cr/conversation.rb +24 -89
- data/lib/mongo/auth/cr.rb +13 -36
- data/lib/mongo/auth/credential_cache.rb +54 -0
- data/lib/mongo/auth/gssapi/conversation.rb +100 -0
- data/lib/mongo/auth/gssapi.rb +41 -0
- data/lib/mongo/auth/ldap/conversation.rb +12 -63
- data/lib/mongo/auth/ldap.rb +13 -34
- data/lib/mongo/auth/roles.rb +4 -1
- data/lib/mongo/auth/sasl_conversation_base.rb +102 -0
- data/lib/mongo/auth/scram/conversation.rb +16 -491
- data/lib/mongo/auth/scram.rb +43 -51
- data/lib/mongo/auth/scram256/conversation.rb +66 -0
- data/lib/mongo/auth/scram256.rb +34 -0
- data/lib/mongo/auth/scram_conversation_base.rb +378 -0
- data/lib/mongo/auth/stringprep/profiles/sasl.rb +5 -1
- data/lib/mongo/auth/stringprep/tables.rb +5 -1
- data/lib/mongo/auth/stringprep/unicode_normalize/normalize.rb +3 -2
- data/lib/mongo/auth/stringprep/unicode_normalize/tables.rb +2 -1
- data/lib/mongo/auth/stringprep.rb +9 -5
- data/lib/mongo/auth/user/view.rb +30 -14
- data/lib/mongo/auth/user.rb +17 -8
- data/lib/mongo/auth/x509/conversation.rb +26 -62
- data/lib/mongo/auth/x509.rb +29 -33
- data/lib/mongo/auth.rb +84 -23
- data/lib/mongo/background_thread.rb +173 -0
- data/lib/mongo/bson.rb +4 -1
- data/lib/mongo/bulk_write/combineable.rb +23 -8
- data/lib/mongo/bulk_write/ordered_combiner.rb +4 -1
- data/lib/mongo/bulk_write/result.rb +4 -1
- data/lib/mongo/bulk_write/result_combiner.rb +4 -1
- data/lib/mongo/bulk_write/transformable.rb +12 -10
- data/lib/mongo/bulk_write/unordered_combiner.rb +4 -1
- data/lib/mongo/bulk_write/validatable.rb +8 -1
- data/lib/mongo/bulk_write.rb +85 -26
- data/lib/mongo/caching_cursor.rb +77 -0
- data/lib/mongo/client.rb +584 -66
- data/lib/mongo/client_encryption.rb +106 -0
- data/lib/mongo/cluster/periodic_executor.rb +35 -44
- data/lib/mongo/cluster/reapers/cursor_reaper.rb +26 -7
- data/lib/mongo/cluster/reapers/socket_reaper.rb +4 -1
- data/lib/mongo/cluster/sdam_flow.rb +165 -26
- data/lib/mongo/cluster/topology/base.rb +4 -1
- data/lib/mongo/cluster/topology/no_replica_set_options.rb +4 -1
- data/lib/mongo/cluster/topology/replica_set_no_primary.rb +7 -3
- data/lib/mongo/cluster/topology/replica_set_with_primary.rb +4 -1
- data/lib/mongo/cluster/topology/sharded.rb +5 -2
- data/lib/mongo/cluster/topology/single.rb +6 -3
- data/lib/mongo/cluster/topology/unknown.rb +4 -1
- data/lib/mongo/cluster/topology.rb +22 -2
- data/lib/mongo/cluster.rb +426 -150
- data/lib/mongo/cluster_time.rb +4 -1
- data/lib/mongo/collection/view/aggregation.rb +35 -8
- data/lib/mongo/collection/view/builder/aggregation.rb +4 -1
- data/lib/mongo/collection/view/builder/find_command.rb +50 -19
- data/lib/mongo/collection/view/builder/flags.rb +4 -1
- data/lib/mongo/collection/view/builder/map_reduce.rb +4 -1
- data/lib/mongo/collection/view/builder/modifiers.rb +4 -1
- data/lib/mongo/collection/view/builder/op_query.rb +4 -1
- data/lib/mongo/collection/view/builder.rb +4 -1
- data/lib/mongo/collection/view/change_stream/retryable.rb +4 -1
- data/lib/mongo/collection/view/change_stream.rb +23 -10
- data/lib/mongo/collection/view/explainable.rb +31 -9
- data/lib/mongo/collection/view/immutable.rb +4 -1
- data/lib/mongo/collection/view/iterable.rb +106 -18
- data/lib/mongo/collection/view/map_reduce.rb +12 -6
- data/lib/mongo/collection/view/readable.rb +81 -25
- data/lib/mongo/collection/view/writable.rb +127 -28
- data/lib/mongo/collection/view.rb +33 -22
- data/lib/mongo/collection.rb +129 -41
- data/lib/mongo/crypt/auto_decryption_context.rb +43 -0
- data/lib/mongo/crypt/auto_encrypter.rb +182 -0
- data/lib/mongo/crypt/auto_encryption_context.rb +47 -0
- data/lib/mongo/crypt/binary.rb +158 -0
- data/lib/mongo/crypt/binding.rb +1232 -0
- data/lib/mongo/crypt/context.rb +138 -0
- data/lib/mongo/crypt/data_key_context.rb +165 -0
- data/lib/mongo/crypt/encryption_io.rb +309 -0
- data/lib/mongo/crypt/explicit_decryption_context.rb +43 -0
- data/lib/mongo/crypt/explicit_encrypter.rb +120 -0
- data/lib/mongo/crypt/explicit_encryption_context.rb +92 -0
- data/lib/mongo/crypt/handle.rb +318 -0
- data/lib/mongo/crypt/hooks.rb +93 -0
- data/lib/mongo/crypt/kms_context.rb +70 -0
- data/lib/mongo/crypt/status.rb +134 -0
- data/lib/mongo/crypt.rb +36 -0
- data/lib/mongo/cursor/builder/get_more_command.rb +4 -1
- data/lib/mongo/cursor/builder/kill_cursors_command.rb +4 -1
- data/lib/mongo/cursor/builder/op_get_more.rb +4 -1
- data/lib/mongo/cursor/builder/op_kill_cursors.rb +4 -1
- data/lib/mongo/cursor/builder.rb +4 -1
- data/lib/mongo/cursor.rb +97 -38
- data/lib/mongo/database/view.rb +34 -7
- data/lib/mongo/database.rb +87 -14
- data/lib/mongo/dbref.rb +13 -3
- data/lib/mongo/distinguishing_semaphore.rb +58 -0
- data/lib/mongo/error/auth_error.rb +5 -2
- data/lib/mongo/error/bulk_write_error.rb +34 -15
- data/lib/mongo/error/change_stream_resumable.rb +4 -1
- data/lib/mongo/error/closed_stream.rb +4 -1
- data/lib/mongo/error/connection_check_out_timeout.rb +11 -9
- data/lib/mongo/error/connection_perished.rb +26 -0
- data/lib/mongo/error/credential_check_error.rb +29 -0
- data/lib/mongo/error/crypt_error.rb +34 -0
- data/lib/mongo/error/extra_file_chunk.rb +4 -1
- data/lib/mongo/error/{failed_stringprep_validation.rb → failed_string_prep_validation.rb} +3 -0
- data/lib/mongo/error/file_not_found.rb +4 -1
- data/lib/mongo/error/handshake_error.rb +4 -1
- data/lib/mongo/error/insufficient_iteration_count.rb +4 -1
- data/lib/mongo/error/internal_driver_error.rb +25 -0
- data/lib/mongo/error/invalid_address.rb +27 -0
- data/lib/mongo/error/invalid_application_name.rb +4 -1
- data/lib/mongo/error/invalid_bulk_operation.rb +4 -1
- data/lib/mongo/error/invalid_bulk_operation_type.rb +4 -1
- data/lib/mongo/error/invalid_collection_name.rb +4 -1
- data/lib/mongo/error/invalid_cursor_operation.rb +30 -0
- data/lib/mongo/error/invalid_database_name.rb +4 -1
- data/lib/mongo/error/invalid_document.rb +4 -1
- data/lib/mongo/error/invalid_file.rb +4 -1
- data/lib/mongo/error/invalid_file_revision.rb +4 -1
- data/lib/mongo/error/invalid_min_pool_size.rb +4 -1
- data/lib/mongo/error/invalid_nonce.rb +5 -2
- data/lib/mongo/error/invalid_read_concern.rb +31 -0
- data/lib/mongo/error/invalid_read_option.rb +4 -1
- data/lib/mongo/error/invalid_replacement_document.rb +4 -1
- data/lib/mongo/error/invalid_server_auth_host.rb +25 -0
- data/lib/mongo/error/invalid_server_auth_response.rb +26 -0
- data/lib/mongo/error/invalid_server_preference.rb +9 -1
- data/lib/mongo/error/invalid_session.rb +6 -2
- data/lib/mongo/error/invalid_signature.rb +4 -1
- data/lib/mongo/error/invalid_transaction_operation.rb +4 -1
- data/lib/mongo/error/invalid_txt_record.rb +4 -1
- data/lib/mongo/error/invalid_update_document.rb +4 -1
- data/lib/mongo/error/invalid_uri.rb +4 -1
- data/lib/mongo/error/invalid_write_concern.rb +4 -1
- data/{spec/support/crud/context.rb → lib/mongo/error/kms_error.rb} +8 -6
- data/lib/mongo/error/lint_error.rb +4 -1
- data/lib/mongo/error/max_bson_size.rb +18 -4
- data/lib/mongo/error/max_message_size.rb +4 -1
- data/lib/mongo/error/mismatched_domain.rb +4 -1
- data/lib/mongo/error/missing_file_chunk.rb +4 -1
- data/lib/mongo/error/missing_password.rb +4 -1
- data/lib/mongo/error/missing_resume_token.rb +4 -1
- data/lib/mongo/error/missing_scram_server_signature.rb +30 -0
- data/lib/mongo/error/mongocryptd_spawn_error.rb +25 -0
- data/lib/mongo/error/multi_index_drop.rb +4 -1
- data/lib/mongo/error/need_primary_server.rb +4 -1
- data/lib/mongo/error/no_server_available.rb +12 -4
- data/lib/mongo/error/no_srv_records.rb +4 -1
- data/lib/mongo/error/notable.rb +22 -19
- data/lib/mongo/error/operation_failure.rb +92 -50
- data/lib/mongo/error/parser.rb +85 -18
- data/lib/mongo/error/pool_closed_error.rb +15 -5
- data/lib/mongo/error/raise_original_error.rb +32 -0
- data/lib/mongo/error/sdam_error_detection.rb +16 -5
- data/lib/mongo/error/server_api_conflict.rb +26 -0
- data/lib/mongo/error/server_api_not_supported.rb +27 -0
- data/lib/mongo/error/server_certificate_revoked.rb +25 -0
- data/lib/mongo/error/session_ended.rb +4 -1
- data/lib/mongo/error/sessions_not_supported.rb +38 -0
- data/lib/mongo/error/socket_error.rb +4 -1
- data/lib/mongo/error/socket_timeout_error.rb +4 -1
- data/lib/mongo/error/unchangeable_collection_option.rb +4 -1
- data/lib/mongo/error/unexpected_chunk_length.rb +4 -1
- data/lib/mongo/error/unexpected_response.rb +4 -1
- data/lib/mongo/error/unknown_payload_type.rb +4 -1
- data/lib/mongo/error/unmet_dependency.rb +24 -0
- data/lib/mongo/error/unsupported_array_filters.rb +10 -2
- data/lib/mongo/error/unsupported_collation.rb +10 -2
- data/lib/mongo/error/unsupported_features.rb +4 -1
- data/lib/mongo/error/unsupported_message_type.rb +4 -1
- data/lib/mongo/error/unsupported_option.rb +104 -0
- data/lib/mongo/error/write_retryable.rb +4 -1
- data/lib/mongo/error.rb +48 -4
- data/lib/mongo/event/base.rb +10 -1
- data/lib/mongo/event/listeners.rb +4 -1
- data/lib/mongo/event/publisher.rb +4 -1
- data/lib/mongo/event/subscriber.rb +4 -1
- data/lib/mongo/event.rb +5 -2
- data/lib/mongo/grid/file/chunk.rb +5 -2
- data/lib/mongo/grid/file/info.rb +7 -3
- data/lib/mongo/grid/file.rb +4 -1
- data/lib/mongo/grid/fs_bucket.rb +74 -48
- data/lib/mongo/grid/stream/read.rb +23 -8
- data/lib/mongo/grid/stream/write.rb +4 -1
- data/lib/mongo/grid/stream.rb +4 -1
- data/lib/mongo/grid.rb +4 -1
- data/lib/mongo/id.rb +4 -1
- data/lib/mongo/index/view.rb +78 -15
- data/lib/mongo/index.rb +5 -1
- data/lib/mongo/lint.rb +14 -0
- data/lib/mongo/loggable.rb +9 -2
- data/lib/mongo/logger.rb +7 -4
- data/lib/mongo/monitoring/cmap_log_subscriber.rb +4 -1
- data/lib/mongo/monitoring/command_log_subscriber.rb +24 -4
- data/lib/mongo/monitoring/event/cmap/base.rb +4 -1
- data/lib/mongo/monitoring/event/cmap/connection_check_out_failed.rb +12 -2
- data/lib/mongo/monitoring/event/cmap/connection_check_out_started.rb +4 -1
- data/lib/mongo/monitoring/event/cmap/connection_checked_in.rb +15 -4
- data/lib/mongo/monitoring/event/cmap/connection_checked_out.rb +15 -4
- data/lib/mongo/monitoring/event/cmap/connection_closed.rb +4 -1
- data/lib/mongo/monitoring/event/cmap/connection_created.rb +4 -1
- data/lib/mongo/monitoring/event/cmap/connection_ready.rb +4 -1
- data/lib/mongo/monitoring/event/cmap/pool_cleared.rb +4 -1
- data/lib/mongo/monitoring/event/cmap/pool_closed.rb +15 -4
- data/lib/mongo/monitoring/event/cmap/pool_created.rb +16 -4
- data/lib/mongo/monitoring/event/cmap.rb +4 -1
- data/lib/mongo/monitoring/event/command_failed.rb +44 -6
- data/lib/mongo/monitoring/event/command_started.rb +79 -5
- data/lib/mongo/monitoring/event/command_succeeded.rb +41 -4
- data/lib/mongo/monitoring/event/secure.rb +44 -4
- data/lib/mongo/monitoring/event/server_closed.rb +5 -2
- data/lib/mongo/monitoring/event/server_description_changed.rb +31 -5
- data/lib/mongo/monitoring/event/server_heartbeat_failed.rb +39 -18
- data/lib/mongo/monitoring/event/server_heartbeat_started.rb +13 -3
- data/lib/mongo/monitoring/event/server_heartbeat_succeeded.rb +34 -13
- data/lib/mongo/monitoring/event/server_opening.rb +5 -2
- data/lib/mongo/monitoring/event/topology_changed.rb +5 -2
- data/lib/mongo/monitoring/event/topology_closed.rb +5 -2
- data/lib/mongo/monitoring/event/topology_opening.rb +5 -2
- data/lib/mongo/monitoring/event.rb +4 -1
- data/lib/mongo/monitoring/publishable.rb +41 -17
- data/lib/mongo/monitoring/sdam_log_subscriber.rb +4 -1
- data/lib/mongo/monitoring/server_closed_log_subscriber.rb +4 -1
- data/lib/mongo/monitoring/server_description_changed_log_subscriber.rb +13 -2
- data/lib/mongo/monitoring/server_opening_log_subscriber.rb +4 -1
- data/lib/mongo/monitoring/topology_changed_log_subscriber.rb +5 -2
- data/lib/mongo/monitoring/topology_closed_log_subscriber.rb +4 -1
- data/lib/mongo/monitoring/topology_opening_log_subscriber.rb +4 -1
- data/lib/mongo/monitoring/unified_sdam_log_subscriber.rb +65 -0
- data/lib/mongo/monitoring.rb +52 -1
- data/lib/mongo/operation/aggregate/command.rb +8 -5
- data/lib/mongo/operation/aggregate/op_msg.rb +4 -1
- data/lib/mongo/operation/aggregate/result.rb +13 -9
- data/lib/mongo/operation/aggregate.rb +4 -1
- data/lib/mongo/operation/collections_info/command.rb +48 -0
- data/lib/mongo/operation/collections_info/result.rb +22 -2
- data/lib/mongo/operation/collections_info.rb +18 -28
- data/lib/mongo/operation/command/command.rb +6 -3
- data/lib/mongo/operation/command/op_msg.rb +4 -1
- data/lib/mongo/operation/command.rb +4 -1
- data/lib/mongo/operation/context.rb +102 -0
- data/lib/mongo/operation/count/command.rb +6 -3
- data/lib/mongo/operation/count/op_msg.rb +4 -1
- data/lib/mongo/operation/count.rb +4 -1
- data/lib/mongo/operation/create/command.rb +6 -3
- data/lib/mongo/operation/create/op_msg.rb +4 -1
- data/lib/mongo/operation/create.rb +4 -1
- data/lib/mongo/operation/create_index/command.rb +7 -4
- data/lib/mongo/operation/create_index/op_msg.rb +9 -3
- data/lib/mongo/operation/create_index.rb +4 -1
- data/lib/mongo/operation/create_user/command.rb +8 -4
- data/lib/mongo/operation/create_user/op_msg.rb +5 -2
- data/lib/mongo/operation/create_user.rb +4 -1
- data/lib/mongo/operation/delete/bulk_result.rb +6 -1
- data/lib/mongo/operation/delete/command.rb +7 -4
- data/lib/mongo/operation/delete/legacy.rb +5 -2
- data/lib/mongo/operation/delete/op_msg.rb +8 -5
- data/lib/mongo/operation/delete/result.rb +8 -2
- data/lib/mongo/operation/delete.rb +4 -1
- data/lib/mongo/operation/distinct/command.rb +6 -3
- data/lib/mongo/operation/distinct/op_msg.rb +4 -1
- data/lib/mongo/operation/distinct.rb +4 -1
- data/lib/mongo/operation/drop/command.rb +6 -3
- data/lib/mongo/operation/drop/op_msg.rb +4 -1
- data/lib/mongo/operation/drop.rb +4 -1
- data/lib/mongo/operation/drop_database/command.rb +6 -3
- data/lib/mongo/operation/drop_database/op_msg.rb +4 -1
- data/lib/mongo/operation/drop_database.rb +4 -1
- data/lib/mongo/operation/drop_index/command.rb +7 -4
- data/lib/mongo/operation/drop_index/op_msg.rb +5 -2
- data/lib/mongo/operation/drop_index.rb +4 -1
- data/lib/mongo/operation/explain/command.rb +10 -3
- data/lib/mongo/operation/explain/legacy.rb +10 -3
- data/lib/mongo/operation/explain/op_msg.rb +10 -1
- data/lib/mongo/operation/explain/result.rb +7 -1
- data/lib/mongo/operation/explain.rb +4 -1
- data/lib/mongo/operation/find/command.rb +6 -3
- data/lib/mongo/operation/find/legacy/result.rb +6 -1
- data/lib/mongo/operation/find/legacy.rb +6 -3
- data/lib/mongo/operation/find/op_msg.rb +5 -9
- data/lib/mongo/operation/find/result.rb +17 -1
- data/lib/mongo/operation/find.rb +4 -1
- data/lib/mongo/operation/get_more/command.rb +6 -3
- data/lib/mongo/operation/get_more/legacy.rb +5 -2
- data/lib/mongo/operation/get_more/op_msg.rb +5 -9
- data/lib/mongo/operation/get_more/result.rb +7 -1
- data/lib/mongo/operation/get_more.rb +4 -1
- data/lib/mongo/operation/indexes/command.rb +6 -3
- data/lib/mongo/operation/indexes/legacy.rb +7 -4
- data/lib/mongo/operation/indexes/op_msg.rb +4 -1
- data/lib/mongo/operation/indexes/result.rb +9 -1
- data/lib/mongo/operation/indexes.rb +19 -2
- data/lib/mongo/operation/insert/bulk_result.rb +14 -2
- data/lib/mongo/operation/insert/command.rb +11 -7
- data/lib/mongo/operation/insert/legacy.rb +13 -5
- data/lib/mongo/operation/insert/op_msg.rb +10 -7
- data/lib/mongo/operation/insert/result.rb +15 -4
- data/lib/mongo/operation/insert.rb +6 -2
- data/lib/mongo/operation/kill_cursors/command.rb +6 -3
- data/lib/mongo/operation/kill_cursors/legacy.rb +5 -2
- data/lib/mongo/operation/kill_cursors/op_msg.rb +4 -1
- data/lib/mongo/operation/kill_cursors.rb +4 -1
- data/lib/mongo/operation/list_collections/command.rb +7 -4
- data/lib/mongo/operation/list_collections/op_msg.rb +5 -2
- data/lib/mongo/operation/list_collections/result.rb +13 -2
- data/lib/mongo/operation/list_collections.rb +4 -1
- data/lib/mongo/operation/map_reduce/command.rb +6 -3
- data/lib/mongo/operation/map_reduce/op_msg.rb +4 -1
- data/lib/mongo/operation/map_reduce/result.rb +14 -1
- data/lib/mongo/operation/map_reduce.rb +4 -1
- data/lib/mongo/operation/op_msg_base.rb +6 -3
- data/lib/mongo/operation/parallel_scan/command.rb +8 -6
- data/lib/mongo/operation/parallel_scan/op_msg.rb +5 -2
- data/lib/mongo/operation/parallel_scan/result.rb +8 -1
- data/lib/mongo/operation/parallel_scan.rb +4 -1
- data/lib/mongo/operation/remove_user/command.rb +8 -4
- data/lib/mongo/operation/remove_user/op_msg.rb +5 -2
- data/lib/mongo/operation/remove_user.rb +4 -1
- data/lib/mongo/operation/result.rb +104 -37
- data/lib/mongo/operation/shared/bypass_document_validation.rb +14 -4
- data/lib/mongo/operation/shared/causal_consistency_supported.rb +7 -3
- data/lib/mongo/operation/shared/executable.rb +60 -34
- data/lib/mongo/operation/shared/executable_no_validate.rb +6 -3
- data/lib/mongo/operation/shared/executable_transaction_label.rb +4 -1
- data/lib/mongo/operation/shared/idable.rb +6 -2
- data/lib/mongo/operation/shared/limited.rb +14 -2
- data/lib/mongo/operation/shared/object_id_generator.rb +5 -1
- data/lib/mongo/operation/shared/op_msg_or_command.rb +7 -8
- data/lib/mongo/operation/shared/op_msg_or_find_command.rb +8 -9
- data/lib/mongo/operation/shared/polymorphic_lookup.rb +4 -1
- data/lib/mongo/operation/shared/polymorphic_operation.rb +42 -0
- data/lib/mongo/operation/shared/polymorphic_result.rb +4 -1
- data/lib/mongo/operation/shared/read_preference_supported.rb +80 -23
- data/lib/mongo/operation/shared/response_handling.rb +91 -13
- data/lib/mongo/operation/shared/result/aggregatable.rb +5 -1
- data/lib/mongo/operation/shared/result/use_legacy_error_parser.rb +4 -1
- data/lib/mongo/operation/shared/sessions_supported.rb +104 -28
- data/lib/mongo/operation/shared/specifiable.rb +36 -20
- data/lib/mongo/operation/shared/write.rb +31 -24
- data/lib/mongo/operation/shared/write_concern_supported.rb +10 -6
- data/lib/mongo/operation/update/bulk_result.rb +4 -1
- data/lib/mongo/operation/update/command.rb +7 -4
- data/lib/mongo/operation/update/legacy/result.rb +11 -1
- data/lib/mongo/operation/update/legacy.rb +5 -2
- data/lib/mongo/operation/update/op_msg.rb +8 -5
- data/lib/mongo/operation/update/result.rb +13 -2
- data/lib/mongo/operation/update.rb +4 -1
- data/lib/mongo/operation/update_user/command.rb +8 -4
- data/lib/mongo/operation/update_user/op_msg.rb +5 -2
- data/lib/mongo/operation/update_user.rb +4 -1
- data/lib/mongo/operation/users_info/command.rb +7 -4
- data/lib/mongo/operation/users_info/op_msg.rb +5 -2
- data/lib/mongo/operation/users_info/result.rb +7 -1
- data/lib/mongo/operation/users_info.rb +4 -1
- data/lib/mongo/operation.rb +7 -1
- data/lib/mongo/options/mapper.rb +4 -1
- data/lib/mongo/options/redacted.rb +4 -1
- data/lib/mongo/options.rb +4 -1
- data/lib/mongo/protocol/bit_vector.rb +6 -2
- data/lib/mongo/protocol/compressed.rb +61 -11
- data/lib/mongo/protocol/delete.rb +4 -1
- data/lib/mongo/protocol/get_more.rb +4 -1
- data/lib/mongo/protocol/insert.rb +7 -2
- data/lib/mongo/protocol/kill_cursors.rb +4 -1
- data/lib/mongo/protocol/message.rb +158 -21
- data/lib/mongo/protocol/msg.rb +248 -41
- data/lib/mongo/protocol/query.rb +62 -24
- data/lib/mongo/protocol/registry.rb +4 -1
- data/lib/mongo/protocol/reply.rb +4 -1
- data/lib/mongo/protocol/serializers.rb +47 -16
- data/lib/mongo/protocol/update.rb +4 -1
- data/lib/mongo/protocol.rb +3 -0
- data/lib/mongo/query_cache.rb +275 -0
- data/lib/mongo/retryable.rb +36 -13
- data/lib/mongo/semaphore.rb +5 -2
- data/lib/mongo/server/app_metadata.rb +128 -35
- data/lib/mongo/server/connection.rb +52 -111
- data/lib/mongo/server/connection_base.rb +167 -35
- data/lib/mongo/server/connection_common.rb +168 -0
- data/lib/mongo/server/connection_pool/populator.rb +61 -0
- data/lib/mongo/server/connection_pool.rb +315 -42
- data/lib/mongo/server/context.rb +4 -1
- data/lib/mongo/server/description/features.rb +23 -10
- data/lib/mongo/server/description.rb +135 -46
- data/lib/mongo/server/monitor/app_metadata.rb +5 -2
- data/lib/mongo/server/monitor/connection.rb +142 -116
- data/lib/mongo/server/monitor.rb +197 -131
- data/lib/mongo/server/pending_connection.rb +237 -1
- data/lib/mongo/server/push_monitor/connection.rb +31 -0
- data/lib/mongo/server/push_monitor.rb +194 -0
- data/lib/mongo/server/round_trip_time_averager.rb +18 -6
- data/lib/mongo/server.rb +197 -68
- data/lib/mongo/server_selector/{selectable.rb → base.rb} +183 -95
- data/lib/mongo/server_selector/nearest.rb +32 -25
- data/lib/mongo/server_selector/primary.rb +30 -32
- data/lib/mongo/server_selector/primary_preferred.rb +38 -29
- data/lib/mongo/server_selector/secondary.rb +32 -25
- data/lib/mongo/server_selector/secondary_preferred.rb +30 -38
- data/lib/mongo/server_selector.rb +5 -2
- data/lib/mongo/session/server_session.rb +4 -1
- data/lib/mongo/session/session_pool.rb +14 -4
- data/lib/mongo/session.rb +48 -37
- data/lib/mongo/socket/ocsp_cache.rb +100 -0
- data/lib/mongo/socket/ocsp_verifier.rb +376 -0
- data/lib/mongo/socket/ssl.rb +165 -55
- data/lib/mongo/socket/tcp.rb +45 -25
- data/lib/mongo/socket/unix.rb +17 -6
- data/lib/mongo/socket.rb +176 -42
- data/lib/mongo/srv/monitor.rb +113 -0
- data/lib/mongo/srv/resolver.rb +137 -0
- data/lib/mongo/srv/result.rb +128 -0
- data/lib/mongo/srv.rb +20 -0
- data/lib/mongo/timeout.rb +54 -0
- data/lib/mongo/topology_version.rb +92 -0
- data/lib/mongo/uri/options_mapper.rb +623 -0
- data/lib/mongo/uri/srv_protocol.rb +105 -46
- data/lib/mongo/uri.rb +102 -471
- data/lib/mongo/utils.rb +118 -0
- data/lib/mongo/version.rb +5 -2
- data/lib/mongo/write_concern/acknowledged.rb +4 -1
- data/lib/mongo/write_concern/base.rb +4 -1
- data/lib/mongo/write_concern/unacknowledged.rb +4 -1
- data/lib/mongo/write_concern.rb +4 -1
- data/lib/mongo.rb +47 -2
- data/mongo.gemspec +14 -8
- data/spec/NOTES.aws-auth.md +296 -0
- data/spec/README.aws-auth.md +318 -0
- data/spec/README.md +491 -24
- data/spec/USERS.md +72 -0
- data/spec/atlas/atlas_connectivity_spec.rb +3 -0
- data/spec/atlas/operations_spec.rb +3 -0
- data/spec/integration/auth_spec.rb +135 -16
- data/spec/integration/awaited_ismaster_spec.rb +31 -0
- data/spec/integration/aws_auth_request_spec.rb +77 -0
- data/spec/integration/aws_credentials_retriever_spec.rb +106 -0
- data/spec/integration/bson_symbol_spec.rb +8 -3
- data/spec/integration/bulk_insert_spec.rb +3 -0
- data/spec/integration/bulk_write_error_message_spec.rb +41 -0
- data/spec/integration/bulk_write_spec.rb +70 -0
- data/spec/integration/change_stream_examples_spec.rb +9 -6
- data/spec/integration/change_stream_spec.rb +128 -53
- data/spec/integration/check_clean_slate_spec.rb +19 -0
- data/spec/integration/client_authentication_options_spec.rb +514 -0
- data/spec/integration/client_connectivity_spec.rb +4 -1
- data/spec/integration/client_construction_aws_auth_spec.rb +194 -0
- data/spec/integration/client_construction_spec.rb +134 -3
- data/spec/integration/client_side_encryption/auto_encryption_bulk_writes_spec.rb +360 -0
- data/spec/integration/client_side_encryption/auto_encryption_command_monitoring_spec.rb +306 -0
- data/spec/integration/client_side_encryption/auto_encryption_mongocryptd_spawn_spec.rb +75 -0
- data/spec/integration/client_side_encryption/auto_encryption_old_wire_version_spec.rb +82 -0
- data/spec/integration/client_side_encryption/auto_encryption_reconnect_spec.rb +224 -0
- data/spec/integration/client_side_encryption/auto_encryption_spec.rb +604 -0
- data/spec/integration/client_side_encryption/bson_size_limit_spec.rb +190 -0
- data/spec/integration/client_side_encryption/bypass_mongocryptd_spawn_spec.rb +81 -0
- data/spec/integration/client_side_encryption/client_close_spec.rb +66 -0
- data/spec/integration/client_side_encryption/corpus_spec.rb +236 -0
- data/spec/integration/client_side_encryption/custom_endpoint_spec.rb +135 -0
- data/spec/integration/client_side_encryption/data_key_spec.rb +168 -0
- data/spec/integration/client_side_encryption/explicit_encryption_spec.rb +117 -0
- data/spec/integration/client_side_encryption/external_key_vault_spec.rb +144 -0
- data/spec/integration/client_side_encryption/views_spec.rb +47 -0
- data/spec/integration/client_spec.rb +5 -2
- data/spec/integration/client_update_spec.rb +157 -0
- data/spec/integration/collection_indexes_prose_spec.rb +58 -0
- data/spec/integration/command_monitoring_spec.rb +97 -30
- data/spec/integration/command_spec.rb +58 -19
- data/spec/integration/connect_single_rs_name_spec.rb +17 -9
- data/spec/integration/connection_pool_populator_spec.rb +305 -0
- data/spec/integration/connection_spec.rb +159 -34
- data/spec/integration/crud_spec.rb +152 -4
- data/spec/integration/cursor_reaping_spec.rb +71 -28
- data/spec/integration/docs_examples_spec.rb +13 -1
- data/spec/integration/error_detection_spec.rb +3 -0
- data/spec/integration/fork_reconnect_spec.rb +204 -0
- data/spec/integration/get_more_spec.rb +13 -3
- data/spec/integration/grid_fs_bucket_spec.rb +4 -1
- data/spec/integration/heartbeat_events_spec.rb +27 -41
- data/spec/integration/mmapv1_spec.rb +3 -0
- data/spec/integration/mongos_pinning_spec.rb +3 -0
- data/spec/integration/ocsp_connectivity_spec.rb +29 -0
- data/spec/integration/ocsp_verifier_cache_spec.rb +191 -0
- data/spec/integration/ocsp_verifier_spec.rb +355 -0
- data/spec/integration/operation_failure_code_spec.rb +4 -1
- data/spec/integration/operation_failure_message_spec.rb +90 -0
- data/spec/integration/query_cache_spec.rb +1093 -0
- data/spec/integration/query_cache_transactions_spec.rb +193 -0
- data/spec/integration/read_concern_spec.rb +4 -1
- data/spec/integration/read_preference_spec.rb +70 -11
- data/spec/integration/reconnect_spec.rb +147 -1
- data/spec/integration/retryable_errors_spec.rb +38 -17
- data/spec/integration/{retryable_writes_spec.rb → retryable_writes/retryable_writes_36_and_older_spec.rb} +58 -51
- data/spec/integration/retryable_writes/retryable_writes_40_and_newer_spec.rb +405 -0
- data/spec/integration/retryable_writes/shared/adds_diagnostics.rb +18 -0
- data/spec/integration/retryable_writes/shared/does_not_support_retries.rb +27 -0
- data/spec/integration/retryable_writes/shared/only_supports_legacy_retries.rb +28 -0
- data/spec/integration/retryable_writes/shared/performs_legacy_retries.rb +220 -0
- data/spec/integration/retryable_writes/shared/performs_modern_retries.rb +235 -0
- data/spec/integration/retryable_writes/shared/performs_no_retries.rb +113 -0
- data/spec/integration/retryable_writes/shared/supports_legacy_retries.rb +22 -0
- data/spec/integration/retryable_writes/shared/supports_modern_retries.rb +28 -0
- data/spec/integration/retryable_writes/shared/supports_retries.rb +19 -0
- data/spec/integration/retryable_writes_errors_spec.rb +14 -14
- data/spec/integration/sdam_error_handling_spec.rb +257 -43
- data/spec/integration/sdam_events_spec.rb +88 -13
- data/spec/integration/sdam_prose_spec.rb +67 -0
- data/spec/integration/secondary_reads_spec.rb +102 -0
- data/spec/integration/server_description_spec.rb +3 -0
- data/spec/integration/server_monitor_spec.rb +55 -0
- data/spec/integration/server_selection_spec.rb +39 -0
- data/spec/integration/server_selector_spec.rb +10 -5
- data/spec/integration/server_spec.rb +45 -26
- data/spec/integration/shell_examples_spec.rb +3 -0
- data/spec/integration/{size_limit_spec.rb~12e1e9c4f... RUBY-2242 Fix zlib compression (#2021) → size_limit_spec.rb} +26 -9
- data/spec/integration/snappy_compression_spec.rb +28 -0
- data/spec/integration/srv_monitoring_spec.rb +406 -0
- data/spec/integration/srv_spec.rb +59 -0
- data/spec/integration/ssl_uri_options_spec.rb +5 -2
- data/spec/integration/step_down_spec.rb +19 -18
- data/spec/integration/time_zone_querying_spec.rb +3 -0
- data/spec/integration/transactions_api_examples_spec.rb +62 -0
- data/spec/integration/transactions_examples_spec.rb +31 -9
- data/spec/integration/truncated_utf8_spec.rb +26 -0
- data/spec/integration/versioned_api_examples_spec.rb +69 -0
- data/spec/integration/x509_auth_spec.rb +112 -0
- data/spec/integration/zlib_compression_spec.rb +28 -0
- data/spec/integration/zstd_compression_spec.rb +29 -0
- data/spec/kerberos/kerberos_spec.rb +94 -0
- data/spec/lite_spec_helper.rb +85 -33
- data/spec/mongo/address/ipv4_spec.rb +4 -1
- data/spec/mongo/address/ipv6_spec.rb +3 -0
- data/spec/mongo/address/unix_spec.rb +3 -0
- data/spec/mongo/address/validator_spec.rb +54 -0
- data/spec/mongo/address_spec.rb +37 -24
- data/spec/mongo/auth/aws/request_region_spec.rb +45 -0
- data/spec/mongo/auth/aws/request_spec.rb +79 -0
- data/spec/mongo/auth/cr_spec.rb +19 -36
- data/spec/mongo/auth/gssapi/conversation_spec.rb +124 -0
- data/spec/mongo/auth/invalid_mechanism_spec.rb +4 -1
- data/spec/mongo/auth/ldap/conversation_spec.rb +6 -3
- data/spec/mongo/auth/ldap_spec.rb +17 -34
- data/spec/mongo/auth/scram/conversation_spec.rb +124 -328
- data/spec/mongo/auth/scram256/conversation_spec.rb +174 -0
- data/spec/mongo/auth/{scram/negotiation_spec.rb → scram_negotiation_spec.rb} +83 -76
- data/spec/mongo/auth/scram_spec.rb +56 -110
- data/spec/mongo/auth/stringprep/profiles/sasl_spec.rb +3 -0
- data/spec/mongo/auth/stringprep_spec.rb +3 -0
- data/spec/mongo/auth/user/view_spec.rb +108 -7
- data/spec/mongo/auth/user_spec.rb +61 -17
- data/spec/mongo/auth/x509/conversation_spec.rb +8 -5
- data/spec/mongo/auth/x509_spec.rb +42 -33
- data/spec/mongo/auth_spec.rb +7 -4
- data/spec/mongo/bson_spec.rb +3 -0
- data/spec/mongo/bulk_write/ordered_combiner_spec.rb +3 -0
- data/spec/mongo/bulk_write/result_spec.rb +14 -7
- data/spec/mongo/bulk_write/unordered_combiner_spec.rb +3 -0
- data/spec/mongo/bulk_write_spec.rb +209 -2
- data/spec/mongo/caching_cursor_spec.rb +73 -0
- data/spec/mongo/client_construction_spec.rb +1296 -305
- data/spec/mongo/client_encryption_spec.rb +414 -0
- data/spec/mongo/client_spec.rb +157 -32
- data/spec/mongo/cluster/cursor_reaper_spec.rb +15 -8
- data/spec/mongo/cluster/periodic_executor_spec.rb +19 -0
- data/spec/mongo/cluster/socket_reaper_spec.rb +17 -3
- data/spec/mongo/cluster/topology/replica_set_spec.rb +81 -30
- data/spec/mongo/cluster/topology/sharded_spec.rb +18 -12
- data/spec/mongo/cluster/topology/single_spec.rb +44 -21
- data/spec/mongo/cluster/topology/unknown_spec.rb +4 -1
- data/spec/mongo/cluster/topology_spec.rb +4 -1
- data/spec/mongo/cluster_spec.rb +114 -48
- data/spec/mongo/cluster_time_spec.rb +3 -0
- data/spec/mongo/collection/view/aggregation_spec.rb +9 -4
- data/spec/mongo/collection/view/builder/find_command_spec.rb +20 -6
- data/spec/mongo/collection/view/builder/flags_spec.rb +3 -0
- data/spec/mongo/collection/view/builder/modifiers_spec.rb +3 -0
- data/spec/mongo/collection/view/builder/op_query_spec.rb +3 -0
- data/spec/mongo/collection/view/change_stream_resume_spec.rb +397 -0
- data/spec/mongo/collection/view/change_stream_spec.rb +21 -323
- data/spec/mongo/collection/view/explainable_spec.rb +90 -4
- data/spec/mongo/collection/view/immutable_spec.rb +3 -0
- data/spec/mongo/collection/view/iterable_spec.rb +41 -0
- data/spec/mongo/collection/view/map_reduce_spec.rb +29 -15
- data/spec/mongo/collection/view/readable_spec.rb +92 -21
- data/spec/mongo/collection/view/writable_spec.rb +211 -1
- data/spec/mongo/collection/view_spec.rb +4 -1
- data/spec/mongo/collection_crud_spec.rb +4360 -0
- data/spec/mongo/collection_ddl_spec.rb +537 -0
- data/spec/mongo/collection_spec.rb +21 -4361
- data/spec/mongo/crypt/auto_decryption_context_spec.rb +93 -0
- data/spec/mongo/crypt/auto_encrypter_spec.rb +190 -0
- data/spec/mongo/crypt/auto_encryption_context_spec.rb +110 -0
- data/spec/mongo/crypt/binary_spec.rb +113 -0
- data/spec/mongo/crypt/binding/binary_spec.rb +54 -0
- data/spec/mongo/crypt/binding/context_spec.rb +255 -0
- data/spec/mongo/crypt/binding/helpers_spec.rb +44 -0
- data/spec/mongo/crypt/binding/mongocrypt_spec.rb +142 -0
- data/spec/mongo/crypt/binding/status_spec.rb +97 -0
- data/spec/mongo/crypt/binding/version_spec.rb +20 -0
- data/spec/mongo/crypt/binding_unloaded_spec.rb +23 -0
- data/spec/mongo/crypt/data_key_context_spec.rb +216 -0
- data/spec/mongo/crypt/encryption_io_spec.rb +139 -0
- data/spec/mongo/crypt/explicit_decryption_context_spec.rb +75 -0
- data/spec/mongo/crypt/explicit_encryption_context_spec.rb +173 -0
- data/spec/mongo/crypt/handle_spec.rb +235 -0
- data/spec/mongo/crypt/helpers/mongo_crypt_spec_helper.rb +111 -0
- data/spec/mongo/crypt/status_spec.rb +150 -0
- data/spec/mongo/cursor/builder/get_more_command_spec.rb +11 -1
- data/spec/mongo/cursor/builder/op_get_more_spec.rb +11 -1
- data/spec/mongo/cursor/builder/op_kill_cursors_spec.rb +11 -1
- data/spec/mongo/cursor_spec.rb +130 -15
- data/spec/mongo/database_spec.rb +451 -17
- data/spec/mongo/dbref_spec.rb +3 -0
- data/spec/mongo/distinguishing_semaphore_spec.rb +66 -0
- data/spec/mongo/error/bulk_write_error_spec.rb +52 -0
- data/spec/mongo/error/crypt_error_spec.rb +29 -0
- data/spec/mongo/error/max_bson_size_spec.rb +38 -0
- data/spec/mongo/error/no_server_available_spec.rb +15 -2
- data/spec/mongo/error/notable_spec.rb +62 -0
- data/spec/mongo/error/operation_failure_heavy_spec.rb +61 -0
- data/spec/mongo/error/operation_failure_spec.rb +231 -70
- data/spec/mongo/error/parser_spec.rb +40 -6
- data/spec/mongo/error/unsupported_option_spec.rb +57 -0
- data/spec/mongo/event/publisher_spec.rb +3 -0
- data/spec/mongo/event/subscriber_spec.rb +3 -0
- data/spec/mongo/grid/file/chunk_spec.rb +7 -4
- data/spec/mongo/grid/file/info_spec.rb +3 -0
- data/spec/mongo/grid/file_spec.rb +4 -1
- data/spec/mongo/grid/fs_bucket_spec.rb +40 -5
- data/spec/mongo/grid/stream/read_spec.rb +33 -10
- data/spec/mongo/grid/stream/write_spec.rb +35 -0
- data/spec/mongo/grid/stream_spec.rb +3 -0
- data/spec/mongo/id_spec.rb +3 -0
- data/spec/mongo/index/view_spec.rb +321 -0
- data/spec/mongo/lint_spec.rb +3 -0
- data/spec/mongo/logger_spec.rb +16 -11
- data/spec/mongo/monitoring/command_log_subscriber_spec.rb +3 -0
- data/spec/mongo/monitoring/event/cmap/connection_check_out_failed_spec.rb +3 -0
- data/spec/mongo/monitoring/event/cmap/connection_check_out_started_spec.rb +3 -0
- data/spec/mongo/monitoring/event/cmap/connection_checked_in_spec.rb +13 -3
- data/spec/mongo/monitoring/event/cmap/connection_checked_out_spec.rb +13 -3
- data/spec/mongo/monitoring/event/cmap/connection_closed_spec.rb +3 -0
- data/spec/mongo/monitoring/event/cmap/connection_created_spec.rb +3 -0
- data/spec/mongo/monitoring/event/cmap/connection_ready_spec.rb +3 -0
- data/spec/mongo/monitoring/event/cmap/pool_cleared_spec.rb +3 -0
- data/spec/mongo/monitoring/event/cmap/pool_closed_spec.rb +13 -3
- data/spec/mongo/monitoring/event/cmap/pool_created_spec.rb +13 -3
- data/spec/mongo/monitoring/event/command_failed_spec.rb +59 -2
- data/spec/mongo/monitoring/event/command_started_spec.rb +3 -0
- data/spec/mongo/monitoring/event/command_succeeded_spec.rb +46 -6
- data/spec/mongo/monitoring/event/secure_spec.rb +28 -4
- data/spec/mongo/monitoring/event/server_closed_spec.rb +4 -1
- data/spec/mongo/monitoring/event/server_description_changed_spec.rb +4 -4
- data/spec/mongo/monitoring/event/server_heartbeat_failed_spec.rb +4 -1
- data/spec/mongo/monitoring/event/server_heartbeat_started_spec.rb +3 -0
- data/spec/mongo/monitoring/event/server_heartbeat_succeeded_spec.rb +4 -1
- data/spec/mongo/monitoring/event/server_opening_spec.rb +4 -1
- data/spec/mongo/monitoring/event/topology_changed_spec.rb +4 -1
- data/spec/mongo/monitoring/event/topology_closed_spec.rb +4 -1
- data/spec/mongo/monitoring/event/topology_opening_spec.rb +4 -1
- data/spec/mongo/monitoring_spec.rb +3 -0
- data/spec/mongo/operation/aggregate/result_spec.rb +11 -1
- data/spec/mongo/operation/aggregate_spec.rb +5 -1
- data/spec/mongo/operation/collections_info_spec.rb +7 -1
- data/spec/mongo/operation/command_spec.rb +11 -5
- data/spec/mongo/operation/create_index_spec.rb +9 -3
- data/spec/mongo/operation/create_user_spec.rb +9 -3
- data/spec/mongo/operation/delete/bulk_spec.rb +24 -6
- data/spec/mongo/operation/delete/command_spec.rb +3 -0
- data/spec/mongo/operation/delete/op_msg_spec.rb +36 -21
- data/spec/mongo/operation/delete_spec.rb +14 -7
- data/spec/mongo/operation/drop_index_spec.rb +9 -2
- data/spec/mongo/operation/find/legacy_spec.rb +33 -7
- data/spec/mongo/operation/get_more_spec.rb +11 -1
- data/spec/mongo/operation/indexes_spec.rb +8 -1
- data/spec/mongo/operation/insert/bulk_spec.rb +27 -7
- data/spec/mongo/operation/insert/command_spec.rb +7 -0
- data/spec/mongo/operation/insert/op_msg_spec.rb +67 -44
- data/spec/mongo/operation/insert_spec.rb +18 -12
- data/spec/mongo/operation/kill_cursors_spec.rb +3 -0
- data/spec/mongo/operation/limited_spec.rb +8 -3
- data/spec/mongo/operation/map_reduce_spec.rb +8 -2
- data/spec/mongo/operation/read_preference_legacy_spec.rb +356 -0
- data/spec/mongo/operation/read_preference_op_msg_spec.rb +307 -0
- data/spec/mongo/operation/remove_user_spec.rb +9 -3
- data/spec/mongo/operation/result_spec.rb +14 -4
- data/spec/mongo/operation/specifiable_spec.rb +3 -0
- data/spec/mongo/operation/update/bulk_spec.rb +24 -6
- data/spec/mongo/operation/update/command_spec.rb +7 -0
- data/spec/mongo/operation/update/op_msg_spec.rb +35 -20
- data/spec/mongo/operation/update_spec.rb +13 -7
- data/spec/mongo/operation/update_user_spec.rb +7 -1
- data/spec/mongo/options/redacted_spec.rb +3 -0
- data/spec/mongo/protocol/compressed_spec.rb +29 -13
- data/spec/mongo/protocol/delete_spec.rb +12 -8
- data/spec/mongo/protocol/get_more_spec.rb +12 -8
- data/spec/mongo/protocol/insert_spec.rb +12 -8
- data/spec/mongo/protocol/kill_cursors_spec.rb +9 -5
- data/spec/mongo/protocol/msg_spec.rb +70 -53
- data/spec/mongo/protocol/query_spec.rb +18 -15
- data/spec/mongo/protocol/registry_spec.rb +4 -1
- data/spec/mongo/protocol/reply_spec.rb +4 -1
- data/spec/mongo/protocol/update_spec.rb +13 -9
- data/spec/mongo/query_cache_middleware_spec.rb +55 -0
- data/spec/mongo/query_cache_spec.rb +283 -0
- data/spec/mongo/retryable_spec.rb +77 -72
- data/spec/mongo/semaphore_spec.rb +54 -0
- data/spec/mongo/server/app_metadata_spec.rb +53 -29
- data/spec/mongo/server/connection_auth_spec.rb +45 -23
- data/spec/mongo/server/connection_common_spec.rb +24 -0
- data/spec/mongo/server/connection_pool/populator_spec.rb +106 -0
- data/spec/mongo/server/connection_pool_spec.rb +259 -130
- data/spec/mongo/server/connection_spec.rb +277 -121
- data/spec/mongo/server/description/features_spec.rb +3 -0
- data/spec/mongo/server/description_query_methods_spec.rb +4 -1
- data/spec/mongo/server/description_spec.rb +630 -561
- data/spec/mongo/server/monitor/app_metadata_spec.rb +10 -1
- data/spec/mongo/server/monitor/connection_spec.rb +66 -79
- data/spec/mongo/server/monitor_spec.rb +173 -126
- data/spec/mongo/server/round_trip_time_averager_spec.rb +8 -3
- data/spec/mongo/server_selector/nearest_spec.rb +32 -25
- data/spec/mongo/server_selector/primary_preferred_spec.rb +35 -28
- data/spec/mongo/server_selector/primary_spec.rb +35 -11
- data/spec/mongo/server_selector/secondary_preferred_spec.rb +52 -29
- data/spec/mongo/server_selector/secondary_spec.rb +27 -20
- data/spec/mongo/server_selector_spec.rb +11 -8
- data/spec/mongo/server_spec.rb +100 -62
- data/spec/mongo/session/server_session_spec.rb +3 -0
- data/spec/mongo/session/session_pool_spec.rb +11 -8
- data/spec/mongo/session_spec.rb +38 -4
- data/spec/mongo/session_transaction_spec.rb +7 -12
- data/spec/mongo/socket/ssl_spec.rb +180 -103
- data/spec/mongo/socket/tcp_spec.rb +6 -11
- data/spec/mongo/socket/unix_spec.rb +5 -2
- data/spec/mongo/socket_spec.rb +14 -11
- data/spec/mongo/srv/monitor_spec.rb +233 -0
- data/spec/mongo/srv/result_spec.rb +57 -0
- data/spec/mongo/timeout_spec.rb +42 -0
- data/spec/mongo/tls_context_hooks_spec.rb +40 -0
- data/spec/mongo/uri/srv_protocol_spec.rb +95 -58
- data/spec/mongo/uri_option_parsing_spec.rb +14 -19
- data/spec/mongo/uri_spec.rb +253 -54
- data/spec/mongo/utils_spec.rb +56 -0
- data/spec/mongo/write_concern/acknowledged_spec.rb +3 -0
- data/spec/mongo/write_concern/unacknowledged_spec.rb +3 -0
- data/spec/mongo/write_concern_spec.rb +16 -1
- data/spec/runners/auth.rb +140 -0
- data/spec/runners/change_streams/outcome.rb +45 -0
- data/spec/runners/change_streams/spec.rb +60 -0
- data/spec/runners/change_streams/test.rb +232 -0
- data/spec/{support → runners}/cmap/verifier.rb +8 -6
- data/spec/{support → runners}/cmap.rb +29 -23
- data/spec/{support → runners}/command_monitoring.rb +10 -43
- data/spec/runners/connection_string.rb +381 -0
- data/spec/{support/transactions → runners/crud}/context.rb +12 -15
- data/spec/{support → runners}/crud/operation.rb +187 -58
- data/spec/{support → runners}/crud/outcome.rb +4 -1
- data/spec/runners/crud/requirement.rb +133 -0
- data/spec/{support → runners}/crud/spec.rb +20 -16
- data/spec/{support → runners}/crud/test.rb +11 -26
- data/spec/runners/crud/test_base.rb +53 -0
- data/spec/{support → runners}/crud/verifier.rb +40 -13
- data/spec/{support → runners}/crud.rb +33 -11
- data/spec/{support → runners}/gridfs.rb +8 -8
- data/spec/runners/read_write_concern_document.rb +70 -0
- data/spec/runners/sdam/verifier.rb +35 -11
- data/spec/{support/server_discovery_and_monitoring.rb → runners/sdam.rb} +51 -32
- data/spec/runners/server_selection.rb +365 -0
- data/spec/{support → runners}/server_selection_rtt.rb +8 -8
- data/spec/runners/transactions/operation.rb +328 -0
- data/spec/{support → runners}/transactions/spec.rb +4 -1
- data/spec/runners/transactions/test.rb +326 -0
- data/spec/{support → runners}/transactions.rb +19 -19
- data/spec/runners/unified/assertions.rb +282 -0
- data/spec/runners/unified/change_stream_operations.rb +29 -0
- data/spec/runners/unified/crud_operations.rb +206 -0
- data/spec/runners/unified/ddl_operations.rb +106 -0
- data/spec/runners/unified/entity_map.rb +42 -0
- data/spec/runners/unified/error.rb +28 -0
- data/spec/runners/unified/event_subscriber.rb +104 -0
- data/spec/runners/unified/exceptions.rb +24 -0
- data/spec/runners/unified/grid_fs_operations.rb +58 -0
- data/spec/runners/unified/support_operations.rb +253 -0
- data/spec/runners/unified/test.rb +423 -0
- data/spec/runners/unified/test_group.rb +31 -0
- data/spec/runners/unified/using_hash.rb +34 -0
- data/spec/runners/unified.rb +99 -0
- data/spec/shared/LICENSE +20 -0
- data/spec/shared/bin/get-mongodb-download-url +17 -0
- data/spec/shared/bin/s3-copy +45 -0
- data/spec/shared/bin/s3-upload +69 -0
- data/spec/shared/lib/mrss/child_process_helper.rb +80 -0
- data/spec/shared/lib/mrss/cluster_config.rb +226 -0
- data/spec/shared/lib/mrss/constraints.rb +379 -0
- data/spec/shared/lib/mrss/docker_runner.rb +271 -0
- data/spec/shared/lib/mrss/lite_constraints.rb +191 -0
- data/spec/shared/lib/mrss/server_version_registry.rb +115 -0
- data/spec/shared/lib/mrss/spec_organizer.rb +179 -0
- data/spec/shared/lib/mrss/utils.rb +15 -0
- data/spec/shared/share/Dockerfile.erb +322 -0
- data/spec/shared/share/haproxy-1.conf +16 -0
- data/spec/shared/share/haproxy-2.conf +17 -0
- data/spec/shared/shlib/distro.sh +73 -0
- data/spec/shared/shlib/server.sh +317 -0
- data/spec/shared/shlib/set_env.sh +131 -0
- data/spec/solo/clean_exit_spec.rb +24 -0
- data/spec/spec_helper.rb +15 -7
- data/spec/spec_tests/auth_spec.rb +58 -0
- data/spec/spec_tests/change_streams_spec.rb +58 -5
- data/spec/spec_tests/change_streams_unified_spec.rb +13 -0
- data/spec/spec_tests/client_side_encryption_spec.rb +14 -0
- data/spec/spec_tests/cmap_spec.rb +67 -8
- data/spec/spec_tests/collection_management_spec.rb +13 -0
- data/spec/spec_tests/command_monitoring_spec.rb +51 -33
- data/spec/spec_tests/command_monitoring_unified_spec.rb +13 -0
- data/spec/spec_tests/connection_string_spec.rb +6 -83
- data/spec/spec_tests/crud_spec.rb +6 -1
- data/spec/spec_tests/crud_unified_spec.rb +13 -0
- data/spec/spec_tests/data/auth/connection-string.yml +366 -0
- data/spec/spec_tests/data/change_streams/change-streams-errors.yml +30 -5
- data/spec/spec_tests/data/change_streams/change-streams-resume-allowlist.yml +1173 -0
- data/spec/spec_tests/data/change_streams/change-streams-resume-errorLabels.yml +1105 -0
- data/spec/spec_tests/data/change_streams/change-streams.yml +83 -16
- data/spec/spec_tests/data/change_streams_unified/change-streams.yml +72 -0
- data/spec/spec_tests/data/client_side_encryption/aggregate.yml +134 -0
- data/spec/spec_tests/data/client_side_encryption/badQueries.yml +526 -0
- data/spec/spec_tests/data/client_side_encryption/badSchema.yml +73 -0
- data/spec/spec_tests/data/client_side_encryption/basic.yml +116 -0
- data/spec/spec_tests/data/client_side_encryption/bulk.yml +88 -0
- data/spec/spec_tests/data/client_side_encryption/bypassAutoEncryption.yml +100 -0
- data/spec/spec_tests/data/client_side_encryption/bypassedCommand.yml +42 -0
- data/spec/spec_tests/data/client_side_encryption/count.yml +61 -0
- data/spec/spec_tests/data/client_side_encryption/countDocuments.yml +59 -0
- data/spec/spec_tests/data/client_side_encryption/delete.yml +105 -0
- data/spec/spec_tests/data/client_side_encryption/distinct.yml +73 -0
- data/spec/spec_tests/data/client_side_encryption/explain.yml +64 -0
- data/spec/spec_tests/data/client_side_encryption/find.yml +119 -0
- data/spec/spec_tests/data/client_side_encryption/findOneAndDelete.yml +57 -0
- data/spec/spec_tests/data/client_side_encryption/findOneAndReplace.yml +57 -0
- data/spec/spec_tests/data/client_side_encryption/findOneAndUpdate.yml +57 -0
- data/spec/spec_tests/data/client_side_encryption/getMore.yml +68 -0
- data/spec/spec_tests/data/client_side_encryption/insert.yml +102 -0
- data/spec/spec_tests/data/client_side_encryption/keyAltName.yml +71 -0
- data/spec/spec_tests/data/client_side_encryption/localKMS.yml +54 -0
- data/spec/spec_tests/data/client_side_encryption/localSchema.yml +72 -0
- data/spec/spec_tests/data/client_side_encryption/malformedCiphertext.yml +69 -0
- data/spec/spec_tests/data/client_side_encryption/maxWireVersion.yml +20 -0
- data/spec/spec_tests/data/client_side_encryption/missingKey.yml +49 -0
- data/spec/spec_tests/data/client_side_encryption/replaceOne.yml +64 -0
- data/spec/spec_tests/data/client_side_encryption/types.yml +527 -0
- data/spec/spec_tests/data/client_side_encryption/unsupportedCommand.yml +25 -0
- data/spec/spec_tests/data/client_side_encryption/updateMany.yml +77 -0
- data/spec/spec_tests/data/client_side_encryption/updateOne.yml +171 -0
- data/spec/spec_tests/data/cmap/connection-must-have-id.yml +6 -0
- data/spec/spec_tests/data/cmap/connection-must-order-ids.yml +6 -0
- data/spec/spec_tests/data/cmap/pool-checkin-destroy-closed.yml +3 -0
- data/spec/spec_tests/data/cmap/pool-checkin-destroy-stale.yml +3 -0
- data/spec/spec_tests/data/cmap/pool-checkin-make-available.yml +3 -0
- data/spec/spec_tests/data/cmap/pool-checkin.yml +1 -0
- data/spec/spec_tests/data/cmap/pool-checkout-connection.yml +8 -2
- data/spec/spec_tests/data/cmap/pool-checkout-error-closed.yml +9 -1
- data/spec/spec_tests/data/cmap/pool-checkout-multiple.yml +3 -0
- data/spec/spec_tests/data/cmap/pool-checkout-no-idle.yml +4 -0
- data/spec/spec_tests/data/cmap/pool-checkout-no-stale.yml +4 -0
- data/spec/spec_tests/data/cmap/pool-close-destroy-conns.yml +2 -0
- data/spec/spec_tests/data/cmap/pool-create-max-size.yml +15 -0
- data/spec/spec_tests/data/cmap/pool-create-min-size.yml +7 -0
- data/spec/spec_tests/data/cmap/pool-create-with-options.yml +1 -0
- data/spec/spec_tests/data/cmap/wait-queue-fairness.yml +31 -1
- data/spec/spec_tests/data/cmap/wait-queue-timeout.yml +5 -0
- data/spec/spec_tests/data/collection_management/timeseries-collection.yml +129 -0
- data/spec/spec_tests/data/command_monitoring/insertMany.yml +1 -1
- data/spec/spec_tests/data/command_monitoring_unified/redacted-commands.yml +340 -0
- data/spec/spec_tests/data/connection_string/invalid-uris.yml +20 -0
- data/spec/spec_tests/data/connection_string/valid-auth.yml +16 -0
- data/spec/spec_tests/data/connection_string/valid-warnings.yml +50 -30
- data/spec/spec_tests/data/crud/write/bulkWrite.yml +26 -22
- data/spec/spec_tests/data/crud/write/insertMany.yml +26 -22
- data/spec/spec_tests/data/crud_unified/estimatedDocumentCount.yml +267 -0
- data/spec/spec_tests/data/crud_unified/updateWithPipelines.yml +305 -0
- data/spec/spec_tests/data/crud_v2/aggregate-merge.yml +1 -1
- data/spec/spec_tests/data/crud_v2/aggregate-out-readConcern.yml +1 -0
- 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/db-aggregate.yml +1 -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/connection-string/read-concern.yml +32 -0
- data/spec/spec_tests/data/read_write_concern/connection-string/write-concern.yml +79 -0
- data/spec/spec_tests/data/read_write_concern/document/read-concern.yml +37 -0
- data/spec/spec_tests/data/read_write_concern/document/write-concern.yml +100 -0
- data/spec/spec_tests/data/read_write_concern/operation/default-write-concern-2.6.yml +215 -0
- data/spec/spec_tests/data/read_write_concern/operation/default-write-concern-3.2.yml +58 -0
- data/spec/spec_tests/data/read_write_concern/operation/default-write-concern-3.4.yml +95 -0
- data/spec/spec_tests/data/read_write_concern/operation/default-write-concern-4.2.yml +36 -0
- data/spec/spec_tests/data/retryable_reads/aggregate-merge.yml +39 -0
- data/spec/spec_tests/data/retryable_reads/aggregate-serverErrors.yml +2 -2
- data/spec/spec_tests/data/retryable_reads/changeStreams-client.watch-serverErrors.yml +8 -7
- data/spec/spec_tests/data/retryable_reads/changeStreams-client.watch.yml +2 -1
- data/spec/spec_tests/data/retryable_reads/changeStreams-db.coll.watch-serverErrors.yml +8 -7
- data/spec/spec_tests/data/retryable_reads/changeStreams-db.coll.watch.yml +2 -1
- data/spec/spec_tests/data/retryable_reads/changeStreams-db.watch-serverErrors.yml +8 -7
- data/spec/spec_tests/data/retryable_reads/changeStreams-db.watch.yml +2 -1
- data/spec/spec_tests/data/retryable_reads/count-serverErrors.yml +2 -2
- data/spec/spec_tests/data/retryable_reads/countDocuments-serverErrors.yml +2 -2
- data/spec/spec_tests/data/retryable_reads/distinct-serverErrors.yml +2 -2
- data/spec/spec_tests/data/retryable_reads/estimatedDocumentCount-4.9.yml +60 -0
- data/spec/spec_tests/data/retryable_reads/{estimatedDocumentCount.yml → estimatedDocumentCount-pre4.9.yml} +2 -0
- data/spec/spec_tests/data/retryable_reads/estimatedDocumentCount-serverErrors-4.9.yml +146 -0
- data/spec/spec_tests/data/retryable_reads/{estimatedDocumentCount-serverErrors.yml → estimatedDocumentCount-serverErrors-pre4.9.yml} +4 -2
- data/spec/spec_tests/data/retryable_reads/find-serverErrors.yml +2 -2
- data/spec/spec_tests/data/retryable_reads/findOne-serverErrors.yml +2 -2
- data/spec/spec_tests/data/retryable_reads/gridfs-download-serverErrors.yml +2 -2
- data/spec/spec_tests/data/retryable_reads/gridfs-downloadByName-serverErrors.yml +2 -2
- data/spec/spec_tests/data/retryable_reads/listCollectionNames-serverErrors.yml +2 -2
- data/spec/spec_tests/data/retryable_reads/listCollectionObjects-serverErrors.yml +2 -2
- data/spec/spec_tests/data/retryable_reads/listCollections-serverErrors.yml +2 -2
- data/spec/spec_tests/data/retryable_reads/listDatabaseNames-serverErrors.yml +2 -2
- data/spec/spec_tests/data/retryable_reads/listDatabaseObjects-serverErrors.yml +2 -2
- data/spec/spec_tests/data/retryable_reads/listDatabases-serverErrors.yml +2 -2
- data/spec/spec_tests/data/retryable_reads/listIndexNames-serverErrors.yml +2 -2
- data/spec/spec_tests/data/retryable_reads/listIndexNames.yml +1 -1
- data/spec/spec_tests/data/retryable_reads/listIndexes-serverErrors.yml +2 -2
- 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/bulkWrite.yml +30 -24
- 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 +94 -3
- 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 +55 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-network-error.yml +47 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-network-timeout-error.yml +38 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-InterruptedAtShutdown.yml +61 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-InterruptedDueToReplStateChange.yml +61 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-LegacyNotPrimary.yml +61 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-NotPrimaryNoSecondaryOk.yml +61 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-NotPrimaryOrSecondary.yml +61 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-NotWritablePrimary.yml +61 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-PrimarySteppedDown.yml +61 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-ShutdownInProgress.yml +61 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-InterruptedAtShutdown.yml +52 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-InterruptedDueToReplStateChange.yml +52 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-LegacyNotPrimary.yml +52 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-NotPrimaryNoSecondaryOk.yml +52 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-NotPrimaryOrSecondary.yml +52 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-NotWritablePrimary.yml +52 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-PrimarySteppedDown.yml +52 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-ShutdownInProgress.yml +52 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-InterruptedAtShutdown.yml +61 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-InterruptedDueToReplStateChange.yml +61 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-LegacyNotPrimary.yml +61 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-NotPrimaryNoSecondaryOk.yml +61 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-NotPrimaryOrSecondary.yml +61 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-NotWritablePrimary.yml +61 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-PrimarySteppedDown.yml +61 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-ShutdownInProgress.yml +61 -0
- data/spec/spec_tests/data/sdam/errors/post-42-InterruptedAtShutdown.yml +47 -0
- data/spec/spec_tests/data/sdam/errors/post-42-InterruptedDueToReplStateChange.yml +47 -0
- data/spec/spec_tests/data/sdam/errors/post-42-LegacyNotPrimary.yml +47 -0
- data/spec/spec_tests/data/sdam/errors/post-42-NotPrimaryNoSecondaryOk.yml +47 -0
- data/spec/spec_tests/data/sdam/errors/post-42-NotPrimaryOrSecondary.yml +47 -0
- data/spec/spec_tests/data/sdam/errors/post-42-NotWritablePrimary.yml +47 -0
- data/spec/spec_tests/data/sdam/errors/post-42-PrimarySteppedDown.yml +47 -0
- data/spec/spec_tests/data/sdam/errors/post-42-ShutdownInProgress.yml +47 -0
- data/spec/spec_tests/data/sdam/errors/pre-42-InterruptedAtShutdown.yml +47 -0
- data/spec/spec_tests/data/sdam/errors/pre-42-InterruptedDueToReplStateChange.yml +47 -0
- data/spec/spec_tests/data/sdam/errors/pre-42-LegacyNotPrimary.yml +47 -0
- data/spec/spec_tests/data/sdam/errors/pre-42-NotPrimaryNoSecondaryOk.yml +47 -0
- data/spec/spec_tests/data/sdam/errors/pre-42-NotPrimaryOrSecondary.yml +47 -0
- data/spec/spec_tests/data/sdam/errors/pre-42-NotWritablePrimary.yml +47 -0
- data/spec/spec_tests/data/sdam/errors/pre-42-PrimarySteppedDown.yml +47 -0
- data/spec/spec_tests/data/sdam/errors/pre-42-ShutdownInProgress.yml +47 -0
- data/spec/spec_tests/data/sdam/errors/prefer-error-code.yml +54 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-InterruptedAtShutdown.yml +91 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-InterruptedDueToReplStateChange.yml +91 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-NotPrimaryNoSecondaryOk.yml +91 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-NotPrimaryOrSecondary.yml +91 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-NotWritablePrimary.yml +91 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-PrimarySteppedDown.yml +91 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-ShutdownInProgress.yml +91 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-InterruptedAtShutdown.yml +91 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-InterruptedDueToReplStateChange.yml +91 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-LegacyNotPrimary.yml +91 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-NotPrimaryNoSecondaryOk.yml +91 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-NotPrimaryOrSecondary.yml +91 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-NotWritablePrimary.yml +91 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-PrimarySteppedDown.yml +91 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-ShutdownInProgress.yml +91 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-network.yml +82 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-timeout.yml +82 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-InterruptedAtShutdown.yml +91 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-InterruptedDueToReplStateChange.yml +91 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-LegacyNotPrimary.yml +91 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-NotPrimaryNoSecondaryOk.yml +91 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-NotPrimaryOrSecondary.yml +91 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-NotWritablePrimary.yml +91 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-PrimarySteppedDown.yml +91 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-ShutdownInProgress.yml +91 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-network.yml +82 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-timeout.yml +82 -0
- data/spec/spec_tests/data/sdam/errors/stale-topologyVersion-InterruptedAtShutdown.yml +65 -0
- data/spec/spec_tests/data/sdam/errors/stale-topologyVersion-InterruptedDueToReplStateChange.yml +65 -0
- data/spec/spec_tests/data/sdam/errors/stale-topologyVersion-LegacyNotPrimary.yml +65 -0
- data/spec/spec_tests/data/sdam/errors/stale-topologyVersion-NotPrimaryNoSecondaryOk.yml +65 -0
- data/spec/spec_tests/data/sdam/errors/stale-topologyVersion-NotPrimaryOrSecondary.yml +65 -0
- data/spec/spec_tests/data/sdam/errors/stale-topologyVersion-NotWritablePrimary.yml +65 -0
- data/spec/spec_tests/data/sdam/errors/stale-topologyVersion-PrimarySteppedDown.yml +65 -0
- data/spec/spec_tests/data/sdam/errors/stale-topologyVersion-ShutdownInProgress.yml +65 -0
- data/spec/spec_tests/data/sdam/errors/write_errors_ignored.yml +42 -0
- data/spec/spec_tests/data/sdam/rs/compatible.yml +6 -2
- data/spec/spec_tests/data/sdam/rs/compatible_unknown.yml +4 -1
- data/spec/spec_tests/data/sdam/rs/discover_arbiters.yml +4 -3
- data/spec/spec_tests/data/sdam/rs/discover_arbiters_replicaset.yml +44 -0
- data/spec/spec_tests/data/sdam/rs/discover_ghost.yml +36 -0
- data/spec/spec_tests/data/sdam/rs/{ghost_discovered.yml → discover_ghost_replicaset.yml} +3 -2
- data/spec/spec_tests/data/sdam/rs/discover_hidden.yml +51 -0
- data/spec/spec_tests/data/sdam/rs/discover_hidden_replicaset.yml +51 -0
- data/spec/spec_tests/data/sdam/rs/discover_passives.yml +6 -4
- data/spec/spec_tests/data/sdam/rs/discover_passives_replicaset.yml +83 -0
- data/spec/spec_tests/data/sdam/rs/discover_primary.yml +4 -3
- data/spec/spec_tests/data/sdam/rs/discover_primary_replicaset.yml +43 -0
- data/spec/spec_tests/data/sdam/rs/discover_rsother.yml +50 -0
- data/spec/spec_tests/data/sdam/rs/{rsother_discovered.yml → discover_rsother_replicaset.yml} +5 -3
- data/spec/spec_tests/data/sdam/rs/discover_secondary.yml +4 -3
- data/spec/spec_tests/data/sdam/rs/discover_secondary_replicaset.yml +44 -0
- data/spec/spec_tests/data/sdam/rs/discovery.yml +8 -4
- data/spec/spec_tests/data/sdam/rs/equal_electionids.yml +4 -2
- data/spec/spec_tests/data/sdam/rs/hosts_differ_from_seeds.yml +2 -1
- data/spec/spec_tests/data/sdam/rs/incompatible_arbiter.yml +5 -1
- data/spec/spec_tests/data/sdam/rs/incompatible_ghost.yml +7 -5
- data/spec/spec_tests/data/sdam/rs/incompatible_other.yml +6 -2
- data/spec/spec_tests/data/sdam/rs/ls_timeout.yml +12 -6
- data/spec/spec_tests/data/sdam/rs/member_reconfig.yml +4 -2
- data/spec/spec_tests/data/sdam/rs/member_standalone.yml +4 -2
- data/spec/spec_tests/data/sdam/rs/new_primary.yml +4 -2
- data/spec/spec_tests/data/sdam/rs/new_primary_new_electionid.yml +6 -3
- data/spec/spec_tests/data/sdam/rs/new_primary_new_setversion.yml +6 -3
- data/spec/spec_tests/data/sdam/rs/new_primary_wrong_set_name.yml +4 -2
- data/spec/spec_tests/data/sdam/rs/non_rs_member.yml +1 -0
- data/spec/spec_tests/data/sdam/rs/normalize_case.yml +2 -1
- data/spec/spec_tests/data/sdam/rs/normalize_case_me.yml +4 -2
- data/spec/spec_tests/data/sdam/rs/null_election_id.yml +8 -4
- data/spec/spec_tests/data/sdam/rs/primary_becomes_ghost.yml +4 -2
- data/spec/spec_tests/data/sdam/rs/primary_becomes_mongos.yml +4 -2
- data/spec/spec_tests/data/sdam/rs/primary_becomes_standalone.yml +2 -1
- data/spec/spec_tests/data/sdam/rs/primary_changes_set_name.yml +4 -2
- data/spec/spec_tests/data/sdam/rs/primary_disconnect.yml +2 -1
- data/spec/spec_tests/data/sdam/rs/primary_disconnect_electionid.yml +10 -5
- data/spec/spec_tests/data/sdam/rs/primary_disconnect_setversion.yml +10 -5
- data/spec/spec_tests/data/sdam/rs/primary_hint_from_secondary_with_mismatched_me.yml +4 -2
- data/spec/spec_tests/data/sdam/rs/primary_mismatched_me.yml +2 -1
- data/spec/spec_tests/data/sdam/rs/primary_mismatched_me_not_removed.yml +75 -0
- data/spec/spec_tests/data/sdam/rs/primary_reports_new_member.yml +8 -4
- data/spec/spec_tests/data/sdam/rs/primary_to_no_primary_mismatched_me.yml +4 -2
- data/spec/spec_tests/data/sdam/rs/primary_wrong_set_name.yml +2 -1
- data/spec/spec_tests/data/sdam/rs/repeated.yml +105 -0
- data/spec/spec_tests/data/sdam/rs/replicaset_rsnp.yml +21 -0
- data/spec/spec_tests/data/sdam/rs/response_from_removed.yml +4 -2
- data/spec/spec_tests/data/sdam/rs/ruby_primary_address_change.yml +31 -0
- data/spec/spec_tests/data/sdam/rs/{secondary_wrong_set_name_with_primary_second.yml → ruby_secondary_wrong_set_name_with_primary_second.yml} +0 -0
- data/spec/spec_tests/data/sdam/rs/sec_not_auth.yml +4 -2
- data/spec/spec_tests/data/sdam/rs/secondary_ignore_ok_0.yml +4 -2
- data/spec/spec_tests/data/sdam/rs/secondary_mismatched_me.yml +5 -3
- data/spec/spec_tests/data/sdam/rs/secondary_wrong_set_name.yml +2 -1
- data/spec/spec_tests/data/sdam/rs/secondary_wrong_set_name_with_primary.yml +4 -2
- data/spec/spec_tests/data/sdam/rs/setversion_without_electionid.yml +4 -2
- data/spec/spec_tests/data/sdam/rs/stepdown_change_set_name.yml +4 -2
- data/spec/spec_tests/data/sdam/rs/too_new.yml +6 -2
- data/spec/spec_tests/data/sdam/rs/too_old.yml +4 -2
- data/spec/spec_tests/data/sdam/rs/topology_version_equal.yml +68 -0
- data/spec/spec_tests/data/sdam/rs/topology_version_greater.yml +194 -0
- data/spec/spec_tests/data/sdam/rs/topology_version_less.yml +64 -0
- data/spec/spec_tests/data/sdam/rs/unexpected_mongos.yml +2 -1
- data/spec/spec_tests/data/sdam/rs/use_setversion_without_electionid.yml +6 -3
- data/spec/spec_tests/data/sdam/rs/wrong_set_name.yml +2 -1
- data/spec/spec_tests/data/sdam/sharded/compatible.yml +4 -2
- data/spec/spec_tests/data/sdam/sharded/discover_single_mongos.yml +24 -0
- data/spec/spec_tests/data/sdam/sharded/ls_timeout_mongos.yml +9 -5
- data/spec/spec_tests/data/sdam/sharded/mongos_disconnect.yml +6 -3
- data/spec/spec_tests/data/sdam/sharded/multiple_mongoses.yml +4 -2
- data/spec/spec_tests/data/sdam/sharded/non_mongos_removed.yml +4 -2
- data/spec/spec_tests/data/sdam/sharded/ruby_primary_different_address.yml +21 -0
- data/spec/spec_tests/data/sdam/sharded/ruby_primary_mismatched_me.yml +22 -0
- data/spec/spec_tests/data/sdam/sharded/too_new.yml +4 -2
- data/spec/spec_tests/data/sdam/sharded/too_old.yml +4 -2
- data/spec/spec_tests/data/sdam/single/compatible.yml +2 -1
- data/spec/spec_tests/data/sdam/single/direct_connection_external_ip.yml +3 -2
- data/spec/spec_tests/data/sdam/single/direct_connection_mongos.yml +4 -3
- data/spec/spec_tests/data/sdam/single/direct_connection_replicaset.yml +23 -0
- data/spec/spec_tests/data/sdam/single/direct_connection_rsarbiter.yml +4 -3
- data/spec/spec_tests/data/sdam/single/direct_connection_rsprimary.yml +4 -3
- data/spec/spec_tests/data/sdam/single/direct_connection_rssecondary.yml +4 -3
- data/spec/spec_tests/data/sdam/single/direct_connection_standalone.yml +4 -3
- 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 +40 -0
- data/spec/spec_tests/data/sdam/single/discover_standalone.yml +35 -0
- data/spec/spec_tests/data/sdam/single/discover_unavailable_seed.yml +28 -0
- data/spec/spec_tests/data/sdam/single/ls_timeout_standalone.yml +2 -1
- data/spec/spec_tests/data/sdam/single/not_ok_response.yml +5 -3
- data/spec/spec_tests/data/sdam/single/ruby_primary_different_address.yml +24 -0
- data/spec/spec_tests/data/sdam/single/ruby_primary_mismatched_me.yml +25 -0
- data/spec/spec_tests/data/sdam/single/standalone_removed.yml +2 -1
- data/spec/spec_tests/data/sdam/single/{direct_connection_slave.yml → standalone_using_legacy_hello.yml} +2 -2
- data/spec/spec_tests/data/sdam/single/too_new.yml +2 -1
- data/spec/spec_tests/data/sdam/single/too_old.yml +2 -1
- data/spec/spec_tests/data/sdam/single/too_old_then_upgraded.yml +48 -0
- data/spec/spec_tests/data/sdam_integration/cancel-server-check.yml +96 -0
- data/spec/spec_tests/data/sdam_integration/connectTimeoutMS.yml +88 -0
- data/spec/spec_tests/data/sdam_integration/find-network-error.yml +83 -0
- data/spec/spec_tests/data/sdam_integration/find-shutdown-error.yml +116 -0
- data/spec/spec_tests/data/sdam_integration/hello-command-error.yml +158 -0
- data/spec/spec_tests/data/sdam_integration/hello-network-error.yml +156 -0
- data/spec/spec_tests/data/sdam_integration/hello-timeout.yml +223 -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/rediscover-quickly-after-step-down.yml +98 -0
- data/spec/spec_tests/data/sdam_monitoring/discovered_standalone.yml +2 -4
- data/spec/spec_tests/data/sdam_monitoring/{replica_set_other_seed.yml → replica_set_primary_address_change.yml} +114 -96
- data/spec/spec_tests/data/sdam_monitoring/replica_set_with_me_mismatch.yml +111 -0
- data/spec/spec_tests/data/sdam_monitoring/replica_set_with_no_primary.yml +2 -1
- data/spec/spec_tests/data/sdam_monitoring/replica_set_with_primary.yml +2 -1
- data/spec/spec_tests/data/sdam_monitoring/replica_set_with_primary_removal.yml +22 -18
- data/spec/spec_tests/data/sdam_monitoring/replica_set_with_removal.yml +21 -16
- data/spec/spec_tests/data/sdam_monitoring/required_replica_set.yml +2 -1
- data/spec/spec_tests/data/sdam_monitoring/standalone.yml +3 -3
- 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 +73 -0
- data/spec/spec_tests/data/sdam_monitoring/standalone_to_rs_with_me_mismatch.yml +90 -0
- data/spec/spec_tests/data/transactions/abort.yml +3 -3
- 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 +93 -24
- data/spec/spec_tests/data/transactions/mongos-pin-auto.yml +3 -0
- data/spec/spec_tests/data/transactions/mongos-recovery-token.yml +3 -0
- data/spec/spec_tests/data/transactions/pin-mongos.yml +8 -6
- data/spec/spec_tests/data/transactions/read-concern.yml +6 -6
- 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/transactions/transaction-options-repl.yml +117 -0
- data/spec/spec_tests/data/transactions/transaction-options.yml +14 -121
- data/spec/spec_tests/data/transactions/write-concern.yml +3 -0
- data/spec/spec_tests/data/transactions_api/callback-retry.yml +3 -3
- data/spec/spec_tests/data/transactions_api/transaction-options.yml +11 -12
- data/spec/spec_tests/data/transactions_unified/mongos-unpin.yml +172 -0
- data/spec/spec_tests/data/unified/valid-fail/operation-failure.yml +31 -0
- data/spec/spec_tests/data/unified/valid-pass/poc-change-streams.yml +220 -0
- data/spec/spec_tests/data/unified/valid-pass/poc-command-monitoring.yml +102 -0
- data/spec/spec_tests/data/unified/valid-pass/poc-crud.yml +184 -0
- data/spec/spec_tests/data/unified/valid-pass/poc-gridfs.yml +155 -0
- data/spec/spec_tests/data/unified/valid-pass/poc-retryable-reads.yml +193 -0
- data/spec/spec_tests/data/unified/valid-pass/poc-retryable-writes.yml +210 -0
- data/spec/spec_tests/data/unified/valid-pass/poc-sessions.yml +215 -0
- data/spec/spec_tests/data/unified/valid-pass/poc-transactions-convenient-api.yml +235 -0
- data/spec/spec_tests/data/unified/valid-pass/poc-transactions-mongos-pin-auto.yml +169 -0
- data/spec/spec_tests/data/unified/valid-pass/poc-transactions.yml +170 -0
- data/spec/spec_tests/data/uri_options/auth-options.yml +36 -1
- data/spec/spec_tests/data/uri_options/compression-options.yml +7 -4
- 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 +233 -6
- data/spec/spec_tests/data/versioned_api/crud-api-version-1-strict.yml +417 -0
- data/spec/spec_tests/data/versioned_api/crud-api-version-1.yml +411 -0
- data/spec/spec_tests/data/versioned_api/runcommand-helper-no-api-version-declared.yml +75 -0
- data/spec/spec_tests/data/versioned_api/test-commands-deprecation-errors.yml +47 -0
- data/spec/spec_tests/data/versioned_api/test-commands-strict-mode.yml +46 -0
- data/spec/spec_tests/data/versioned_api/transaction-handling.yml +128 -0
- data/spec/spec_tests/dns_seedlist_discovery_spec.rb +32 -9
- data/spec/spec_tests/gridfs_spec.rb +5 -0
- data/spec/spec_tests/max_staleness_spec.rb +7 -135
- data/spec/spec_tests/read_write_concern_connection_string_spec.rb +13 -0
- data/spec/spec_tests/read_write_concern_document_spec.rb +77 -0
- data/spec/spec_tests/read_write_concern_operaton_spec.rb +13 -0
- data/spec/spec_tests/retryable_reads_spec.rb +7 -2
- data/spec/spec_tests/retryable_writes_spec.rb +11 -1
- data/spec/spec_tests/sdam_integration_spec.rb +16 -0
- data/spec/spec_tests/sdam_monitoring_spec.rb +15 -6
- data/spec/spec_tests/sdam_spec.rb +78 -9
- data/spec/spec_tests/server_selection_rtt_spec.rb +5 -0
- data/spec/spec_tests/server_selection_spec.rb +7 -110
- data/spec/spec_tests/transactions_api_spec.rb +8 -0
- data/spec/spec_tests/transactions_spec.rb +7 -1
- data/spec/spec_tests/transactions_unified_spec.rb +13 -0
- data/spec/spec_tests/unified_spec.rb +18 -0
- data/spec/spec_tests/uri_options_spec.rb +63 -42
- data/spec/spec_tests/versioned_api_spec.rb +13 -0
- data/spec/stress/cleanup_spec.rb +61 -0
- data/spec/stress/connection_pool_stress_spec.rb +204 -0
- data/spec/stress/connection_pool_timing_spec.rb +184 -0
- data/spec/stress/fork_reconnect_stress_spec.rb +112 -0
- data/spec/stress/push_monitor_close_spec.rb +44 -0
- data/spec/support/authorization.rb +4 -11
- data/spec/support/aws_utils/base.rb +137 -0
- data/spec/support/aws_utils/inspector.rb +227 -0
- data/spec/support/aws_utils/orchestrator.rb +373 -0
- data/spec/support/aws_utils/provisioner.rb +363 -0
- data/spec/support/aws_utils.rb +65 -0
- data/spec/support/background_thread_registry.rb +70 -0
- data/spec/support/certificates/README.md +7 -2
- data/spec/support/certificates/atlas-ocsp-ca.crt +118 -0
- data/spec/support/certificates/atlas-ocsp.crt +152 -0
- data/spec/support/certificates/client-x509.crt +78 -0
- data/spec/support/certificates/client-x509.key +27 -0
- data/spec/support/certificates/client-x509.pem +105 -0
- data/spec/support/certificates/server-second-level-bundle.pem +77 -77
- data/spec/support/certificates/server-second-level.crt +52 -52
- data/spec/support/certificates/server-second-level.key +25 -25
- data/spec/support/certificates/server-second-level.pem +77 -77
- data/spec/support/client_registry.rb +65 -37
- data/spec/support/client_registry_macros.rb +17 -5
- data/spec/support/cluster_tools.rb +15 -5
- data/spec/support/common_shortcuts.rb +239 -6
- data/spec/support/constraints.rb +9 -184
- data/spec/support/crypt/corpus/corpus-key-aws.json +33 -0
- data/spec/support/crypt/corpus/corpus-key-local.json +31 -0
- data/spec/support/crypt/corpus/corpus-schema.json +2057 -0
- data/spec/support/crypt/corpus/corpus.json +3657 -0
- data/spec/support/crypt/corpus/corpus_encrypted.json +4152 -0
- data/spec/support/crypt/data_keys/key_document_aws.json +34 -0
- data/spec/support/crypt/data_keys/key_document_local.json +31 -0
- data/spec/support/crypt/external/external-key.json +31 -0
- data/spec/support/crypt/external/external-schema.json +19 -0
- data/spec/support/crypt/limits/limits-doc.json +102 -0
- data/spec/support/crypt/limits/limits-key.json +31 -0
- data/spec/support/crypt/limits/limits-schema.json +1405 -0
- data/spec/support/crypt/schema_maps/schema_map_aws.json +17 -0
- data/spec/support/crypt/schema_maps/schema_map_aws_key_alt_names.json +12 -0
- data/spec/support/crypt/schema_maps/schema_map_local.json +18 -0
- data/spec/support/crypt/schema_maps/schema_map_local_key_alt_names.json +12 -0
- data/spec/support/crypt.rb +157 -0
- data/spec/support/dns.rb +16 -0
- data/spec/support/event_subscriber.rb +193 -84
- data/spec/support/json_ext_formatter.rb +8 -1
- data/spec/support/keyword_struct.rb +29 -0
- data/spec/support/local_resource_registry.rb +37 -0
- data/spec/support/matchers.rb +39 -1
- data/spec/support/monitoring_ext.rb +3 -0
- data/spec/support/ocsp +1 -0
- data/spec/support/primary_socket.rb +3 -0
- data/spec/support/sdam_formatter_integration.rb +3 -0
- data/spec/support/session_registry.rb +55 -0
- data/spec/support/shared/app_metadata.rb +167 -0
- data/spec/support/shared/protocol.rb +5 -0
- data/spec/support/shared/scram_conversation.rb +103 -0
- data/spec/support/shared/server_selector.rb +99 -4
- data/spec/support/shared/session.rb +34 -23
- data/spec/support/spec_config.rb +292 -56
- data/spec/support/spec_setup.rb +58 -36
- data/spec/support/utils.rb +446 -45
- data.tar.gz.sig +0 -0
- metadata +1626 -683
- metadata.gz.sig +0 -0
- data/lib/mongo/event/description_changed.rb +0 -52
- data/lib/mongo/operation/shared/op_msg_or_list_indexes_command.rb +0 -45
- data/lib/mongo/server/connectable.rb +0 -107
- data/spec/enterprise_auth/kerberos_spec.rb +0 -57
- data/spec/mongo/operation/read_preference_spec.rb +0 -245
- data/spec/spec_tests/data/sdam/sharded/single_mongos.yml +0 -33
- data/spec/support/change_streams/operation.rb +0 -89
- data/spec/support/change_streams.rb +0 -265
- data/spec/support/cluster_config.rb +0 -139
- data/spec/support/connection_string.rb +0 -326
- data/spec/support/crud/requirement.rb +0 -69
- data/spec/support/crud/test_base.rb +0 -22
- data/spec/support/lite_constraints.rb +0 -52
- data/spec/support/sdam_monitoring.rb +0 -89
- data/spec/support/server_selection.rb +0 -153
- data/spec/support/transactions/operation.rb +0 -184
- data/spec/support/transactions/test.rb +0 -252
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: mongo
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.
|
|
4
|
+
version: 2.15.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tyler Brock
|
|
@@ -13,8 +13,8 @@ cert_chain:
|
|
|
13
13
|
- |
|
|
14
14
|
-----BEGIN CERTIFICATE-----
|
|
15
15
|
MIIDRDCCAiygAwIBAgIBATANBgkqhkiG9w0BAQsFADAmMSQwIgYDVQQDDBtkcml2
|
|
16
|
-
|
|
17
|
-
|
|
16
|
+
ZXItcnVieS9EQz0xMGdlbi9EQz1jb20wHhcNMjEwMjA5MTQxOTU3WhcNMjIwMjA5
|
|
17
|
+
MTQxOTU3WjAmMSQwIgYDVQQDDBtkcml2ZXItcnVieS9EQz0xMGdlbi9EQz1jb20w
|
|
18
18
|
ggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDRXUgGvH0ZtWwDPc2umdHw
|
|
19
19
|
B+INNm6jNTRp8PMyUKxPzxaxX2OiBQk9gLC3zsK9ZmlZu4lNfpHVSCEPoiP/fhPg
|
|
20
20
|
Kyfq2xld3Qz0Pki5d5i0/r14343MTKiNiFulLlbbdlN0cXeEFNJHUycZnD2LOXwz
|
|
@@ -24,14 +24,14 @@ cert_chain:
|
|
|
24
24
|
AgMBAAGjfTB7MAkGA1UdEwQCMAAwCwYDVR0PBAQDAgSwMB0GA1UdDgQWBBRbd1mx
|
|
25
25
|
fvSaVIwKI+tnEAYDW/B81zAgBgNVHREEGTAXgRVkcml2ZXItcnVieUAxMGdlbi5j
|
|
26
26
|
b20wIAYDVR0SBBkwF4EVZHJpdmVyLXJ1YnlAMTBnZW4uY29tMA0GCSqGSIb3DQEB
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
27
|
+
CwUAA4IBAQCYGRgQbtk+g+Nuwg15p8jb+8bJlwHFHkb8rkLn00OPXLk3uBhImOKZ
|
|
28
|
+
mhwwr/8ZBkeE/PBDxkQjeua+NpqSaPr1lvXQaGpHxJzpR/BmSteeoF49jBu0dHaz
|
|
29
|
+
MRghinst6ROS1qVRae0z+wkbnufpH/NxdCUufb639nAlZguT2rGqvM6VZCC8eSO9
|
|
30
|
+
KfJA7/MEE+qQtiQgJaAUVRaGC8fLtmS555BPjNVITJs+BcGDYWh2clWuqlzjHOp3
|
|
31
|
+
YoFhlyUEi7VLlqNH0H/JFttVZK6+qmLelkVNcIYVLeWOB4Lf4VxEiYGEK1ORxsrY
|
|
32
|
+
iyYKJJALWY1FAInGRIlvkN+B8o3yIhq1
|
|
33
33
|
-----END CERTIFICATE-----
|
|
34
|
-
date:
|
|
34
|
+
date: 2021-09-08 00:00:00.000000000 Z
|
|
35
35
|
dependencies:
|
|
36
36
|
- !ruby/object:Gem::Dependency
|
|
37
37
|
name: bson
|
|
@@ -39,7 +39,7 @@ dependencies:
|
|
|
39
39
|
requirements:
|
|
40
40
|
- - ">="
|
|
41
41
|
- !ruby/object:Gem::Version
|
|
42
|
-
version: 4.
|
|
42
|
+
version: 4.8.2
|
|
43
43
|
- - "<"
|
|
44
44
|
- !ruby/object:Gem::Version
|
|
45
45
|
version: 5.0.0
|
|
@@ -49,12 +49,12 @@ dependencies:
|
|
|
49
49
|
requirements:
|
|
50
50
|
- - ">="
|
|
51
51
|
- !ruby/object:Gem::Version
|
|
52
|
-
version: 4.
|
|
52
|
+
version: 4.8.2
|
|
53
53
|
- - "<"
|
|
54
54
|
- !ruby/object:Gem::Version
|
|
55
55
|
version: 5.0.0
|
|
56
56
|
description: A Ruby driver for MongoDB
|
|
57
|
-
email:
|
|
57
|
+
email:
|
|
58
58
|
executables:
|
|
59
59
|
- mongo_console
|
|
60
60
|
extensions: []
|
|
@@ -71,14 +71,28 @@ files:
|
|
|
71
71
|
- lib/mongo/address/ipv4.rb
|
|
72
72
|
- lib/mongo/address/ipv6.rb
|
|
73
73
|
- lib/mongo/address/unix.rb
|
|
74
|
+
- lib/mongo/address/validator.rb
|
|
74
75
|
- lib/mongo/auth.rb
|
|
76
|
+
- lib/mongo/auth/aws.rb
|
|
77
|
+
- lib/mongo/auth/aws/conversation.rb
|
|
78
|
+
- lib/mongo/auth/aws/credentials_retriever.rb
|
|
79
|
+
- lib/mongo/auth/aws/request.rb
|
|
80
|
+
- lib/mongo/auth/base.rb
|
|
81
|
+
- lib/mongo/auth/conversation_base.rb
|
|
75
82
|
- lib/mongo/auth/cr.rb
|
|
76
83
|
- lib/mongo/auth/cr/conversation.rb
|
|
84
|
+
- lib/mongo/auth/credential_cache.rb
|
|
85
|
+
- lib/mongo/auth/gssapi.rb
|
|
86
|
+
- lib/mongo/auth/gssapi/conversation.rb
|
|
77
87
|
- lib/mongo/auth/ldap.rb
|
|
78
88
|
- lib/mongo/auth/ldap/conversation.rb
|
|
79
89
|
- lib/mongo/auth/roles.rb
|
|
90
|
+
- lib/mongo/auth/sasl_conversation_base.rb
|
|
80
91
|
- lib/mongo/auth/scram.rb
|
|
81
92
|
- lib/mongo/auth/scram/conversation.rb
|
|
93
|
+
- lib/mongo/auth/scram256.rb
|
|
94
|
+
- lib/mongo/auth/scram256/conversation.rb
|
|
95
|
+
- lib/mongo/auth/scram_conversation_base.rb
|
|
82
96
|
- lib/mongo/auth/stringprep.rb
|
|
83
97
|
- lib/mongo/auth/stringprep/profiles/sasl.rb
|
|
84
98
|
- lib/mongo/auth/stringprep/tables.rb
|
|
@@ -88,6 +102,7 @@ files:
|
|
|
88
102
|
- lib/mongo/auth/user/view.rb
|
|
89
103
|
- lib/mongo/auth/x509.rb
|
|
90
104
|
- lib/mongo/auth/x509/conversation.rb
|
|
105
|
+
- lib/mongo/background_thread.rb
|
|
91
106
|
- lib/mongo/bson.rb
|
|
92
107
|
- lib/mongo/bulk_write.rb
|
|
93
108
|
- lib/mongo/bulk_write/combineable.rb
|
|
@@ -97,7 +112,9 @@ files:
|
|
|
97
112
|
- lib/mongo/bulk_write/transformable.rb
|
|
98
113
|
- lib/mongo/bulk_write/unordered_combiner.rb
|
|
99
114
|
- lib/mongo/bulk_write/validatable.rb
|
|
115
|
+
- lib/mongo/caching_cursor.rb
|
|
100
116
|
- lib/mongo/client.rb
|
|
117
|
+
- lib/mongo/client_encryption.rb
|
|
101
118
|
- lib/mongo/cluster.rb
|
|
102
119
|
- lib/mongo/cluster/periodic_executor.rb
|
|
103
120
|
- lib/mongo/cluster/reapers/cursor_reaper.rb
|
|
@@ -130,6 +147,22 @@ files:
|
|
|
130
147
|
- lib/mongo/collection/view/map_reduce.rb
|
|
131
148
|
- lib/mongo/collection/view/readable.rb
|
|
132
149
|
- lib/mongo/collection/view/writable.rb
|
|
150
|
+
- lib/mongo/crypt.rb
|
|
151
|
+
- lib/mongo/crypt/auto_decryption_context.rb
|
|
152
|
+
- lib/mongo/crypt/auto_encrypter.rb
|
|
153
|
+
- lib/mongo/crypt/auto_encryption_context.rb
|
|
154
|
+
- lib/mongo/crypt/binary.rb
|
|
155
|
+
- lib/mongo/crypt/binding.rb
|
|
156
|
+
- lib/mongo/crypt/context.rb
|
|
157
|
+
- lib/mongo/crypt/data_key_context.rb
|
|
158
|
+
- lib/mongo/crypt/encryption_io.rb
|
|
159
|
+
- lib/mongo/crypt/explicit_decryption_context.rb
|
|
160
|
+
- lib/mongo/crypt/explicit_encrypter.rb
|
|
161
|
+
- lib/mongo/crypt/explicit_encryption_context.rb
|
|
162
|
+
- lib/mongo/crypt/handle.rb
|
|
163
|
+
- lib/mongo/crypt/hooks.rb
|
|
164
|
+
- lib/mongo/crypt/kms_context.rb
|
|
165
|
+
- lib/mongo/crypt/status.rb
|
|
133
166
|
- lib/mongo/cursor.rb
|
|
134
167
|
- lib/mongo/cursor/builder.rb
|
|
135
168
|
- lib/mongo/cursor/builder/get_more_command.rb
|
|
@@ -139,29 +172,39 @@ files:
|
|
|
139
172
|
- lib/mongo/database.rb
|
|
140
173
|
- lib/mongo/database/view.rb
|
|
141
174
|
- lib/mongo/dbref.rb
|
|
175
|
+
- lib/mongo/distinguishing_semaphore.rb
|
|
142
176
|
- lib/mongo/error.rb
|
|
143
177
|
- lib/mongo/error/auth_error.rb
|
|
144
178
|
- lib/mongo/error/bulk_write_error.rb
|
|
145
179
|
- lib/mongo/error/change_stream_resumable.rb
|
|
146
180
|
- lib/mongo/error/closed_stream.rb
|
|
147
181
|
- lib/mongo/error/connection_check_out_timeout.rb
|
|
182
|
+
- lib/mongo/error/connection_perished.rb
|
|
183
|
+
- lib/mongo/error/credential_check_error.rb
|
|
184
|
+
- lib/mongo/error/crypt_error.rb
|
|
148
185
|
- lib/mongo/error/extra_file_chunk.rb
|
|
149
|
-
- lib/mongo/error/
|
|
186
|
+
- lib/mongo/error/failed_string_prep_validation.rb
|
|
150
187
|
- lib/mongo/error/file_not_found.rb
|
|
151
188
|
- lib/mongo/error/handshake_error.rb
|
|
152
189
|
- lib/mongo/error/insufficient_iteration_count.rb
|
|
190
|
+
- lib/mongo/error/internal_driver_error.rb
|
|
191
|
+
- lib/mongo/error/invalid_address.rb
|
|
153
192
|
- lib/mongo/error/invalid_application_name.rb
|
|
154
193
|
- lib/mongo/error/invalid_bulk_operation.rb
|
|
155
194
|
- lib/mongo/error/invalid_bulk_operation_type.rb
|
|
156
195
|
- lib/mongo/error/invalid_collection_name.rb
|
|
196
|
+
- lib/mongo/error/invalid_cursor_operation.rb
|
|
157
197
|
- lib/mongo/error/invalid_database_name.rb
|
|
158
198
|
- lib/mongo/error/invalid_document.rb
|
|
159
199
|
- lib/mongo/error/invalid_file.rb
|
|
160
200
|
- lib/mongo/error/invalid_file_revision.rb
|
|
161
201
|
- lib/mongo/error/invalid_min_pool_size.rb
|
|
162
202
|
- lib/mongo/error/invalid_nonce.rb
|
|
203
|
+
- lib/mongo/error/invalid_read_concern.rb
|
|
163
204
|
- lib/mongo/error/invalid_read_option.rb
|
|
164
205
|
- lib/mongo/error/invalid_replacement_document.rb
|
|
206
|
+
- lib/mongo/error/invalid_server_auth_host.rb
|
|
207
|
+
- lib/mongo/error/invalid_server_auth_response.rb
|
|
165
208
|
- lib/mongo/error/invalid_server_preference.rb
|
|
166
209
|
- lib/mongo/error/invalid_session.rb
|
|
167
210
|
- lib/mongo/error/invalid_signature.rb
|
|
@@ -170,6 +213,7 @@ files:
|
|
|
170
213
|
- lib/mongo/error/invalid_update_document.rb
|
|
171
214
|
- lib/mongo/error/invalid_uri.rb
|
|
172
215
|
- lib/mongo/error/invalid_write_concern.rb
|
|
216
|
+
- lib/mongo/error/kms_error.rb
|
|
173
217
|
- lib/mongo/error/lint_error.rb
|
|
174
218
|
- lib/mongo/error/max_bson_size.rb
|
|
175
219
|
- lib/mongo/error/max_message_size.rb
|
|
@@ -177,6 +221,8 @@ files:
|
|
|
177
221
|
- lib/mongo/error/missing_file_chunk.rb
|
|
178
222
|
- lib/mongo/error/missing_password.rb
|
|
179
223
|
- lib/mongo/error/missing_resume_token.rb
|
|
224
|
+
- lib/mongo/error/missing_scram_server_signature.rb
|
|
225
|
+
- lib/mongo/error/mongocryptd_spawn_error.rb
|
|
180
226
|
- lib/mongo/error/multi_index_drop.rb
|
|
181
227
|
- lib/mongo/error/need_primary_server.rb
|
|
182
228
|
- lib/mongo/error/no_server_available.rb
|
|
@@ -185,22 +231,28 @@ files:
|
|
|
185
231
|
- lib/mongo/error/operation_failure.rb
|
|
186
232
|
- lib/mongo/error/parser.rb
|
|
187
233
|
- lib/mongo/error/pool_closed_error.rb
|
|
234
|
+
- lib/mongo/error/raise_original_error.rb
|
|
188
235
|
- lib/mongo/error/sdam_error_detection.rb
|
|
236
|
+
- lib/mongo/error/server_api_conflict.rb
|
|
237
|
+
- lib/mongo/error/server_api_not_supported.rb
|
|
238
|
+
- lib/mongo/error/server_certificate_revoked.rb
|
|
189
239
|
- lib/mongo/error/session_ended.rb
|
|
240
|
+
- lib/mongo/error/sessions_not_supported.rb
|
|
190
241
|
- lib/mongo/error/socket_error.rb
|
|
191
242
|
- lib/mongo/error/socket_timeout_error.rb
|
|
192
243
|
- lib/mongo/error/unchangeable_collection_option.rb
|
|
193
244
|
- lib/mongo/error/unexpected_chunk_length.rb
|
|
194
245
|
- lib/mongo/error/unexpected_response.rb
|
|
195
246
|
- lib/mongo/error/unknown_payload_type.rb
|
|
247
|
+
- lib/mongo/error/unmet_dependency.rb
|
|
196
248
|
- lib/mongo/error/unsupported_array_filters.rb
|
|
197
249
|
- lib/mongo/error/unsupported_collation.rb
|
|
198
250
|
- lib/mongo/error/unsupported_features.rb
|
|
199
251
|
- lib/mongo/error/unsupported_message_type.rb
|
|
252
|
+
- lib/mongo/error/unsupported_option.rb
|
|
200
253
|
- lib/mongo/error/write_retryable.rb
|
|
201
254
|
- lib/mongo/event.rb
|
|
202
255
|
- lib/mongo/event/base.rb
|
|
203
|
-
- lib/mongo/event/description_changed.rb
|
|
204
256
|
- lib/mongo/event/listeners.rb
|
|
205
257
|
- lib/mongo/event/publisher.rb
|
|
206
258
|
- lib/mongo/event/subscriber.rb
|
|
@@ -255,16 +307,19 @@ files:
|
|
|
255
307
|
- lib/mongo/monitoring/topology_changed_log_subscriber.rb
|
|
256
308
|
- lib/mongo/monitoring/topology_closed_log_subscriber.rb
|
|
257
309
|
- lib/mongo/monitoring/topology_opening_log_subscriber.rb
|
|
310
|
+
- lib/mongo/monitoring/unified_sdam_log_subscriber.rb
|
|
258
311
|
- lib/mongo/operation.rb
|
|
259
312
|
- lib/mongo/operation/aggregate.rb
|
|
260
313
|
- lib/mongo/operation/aggregate/command.rb
|
|
261
314
|
- lib/mongo/operation/aggregate/op_msg.rb
|
|
262
315
|
- lib/mongo/operation/aggregate/result.rb
|
|
263
316
|
- lib/mongo/operation/collections_info.rb
|
|
317
|
+
- lib/mongo/operation/collections_info/command.rb
|
|
264
318
|
- lib/mongo/operation/collections_info/result.rb
|
|
265
319
|
- lib/mongo/operation/command.rb
|
|
266
320
|
- lib/mongo/operation/command/command.rb
|
|
267
321
|
- lib/mongo/operation/command/op_msg.rb
|
|
322
|
+
- lib/mongo/operation/context.rb
|
|
268
323
|
- lib/mongo/operation/count.rb
|
|
269
324
|
- lib/mongo/operation/count/command.rb
|
|
270
325
|
- lib/mongo/operation/count/op_msg.rb
|
|
@@ -353,8 +408,8 @@ files:
|
|
|
353
408
|
- lib/mongo/operation/shared/object_id_generator.rb
|
|
354
409
|
- lib/mongo/operation/shared/op_msg_or_command.rb
|
|
355
410
|
- lib/mongo/operation/shared/op_msg_or_find_command.rb
|
|
356
|
-
- lib/mongo/operation/shared/op_msg_or_list_indexes_command.rb
|
|
357
411
|
- lib/mongo/operation/shared/polymorphic_lookup.rb
|
|
412
|
+
- lib/mongo/operation/shared/polymorphic_operation.rb
|
|
358
413
|
- lib/mongo/operation/shared/polymorphic_result.rb
|
|
359
414
|
- lib/mongo/operation/shared/read_preference_supported.rb
|
|
360
415
|
- lib/mongo/operation/shared/response_handling.rb
|
|
@@ -395,14 +450,16 @@ files:
|
|
|
395
450
|
- lib/mongo/protocol/reply.rb
|
|
396
451
|
- lib/mongo/protocol/serializers.rb
|
|
397
452
|
- lib/mongo/protocol/update.rb
|
|
453
|
+
- lib/mongo/query_cache.rb
|
|
398
454
|
- lib/mongo/retryable.rb
|
|
399
455
|
- lib/mongo/semaphore.rb
|
|
400
456
|
- lib/mongo/server.rb
|
|
401
457
|
- lib/mongo/server/app_metadata.rb
|
|
402
|
-
- lib/mongo/server/connectable.rb
|
|
403
458
|
- lib/mongo/server/connection.rb
|
|
404
459
|
- lib/mongo/server/connection_base.rb
|
|
460
|
+
- lib/mongo/server/connection_common.rb
|
|
405
461
|
- lib/mongo/server/connection_pool.rb
|
|
462
|
+
- lib/mongo/server/connection_pool/populator.rb
|
|
406
463
|
- lib/mongo/server/context.rb
|
|
407
464
|
- lib/mongo/server/description.rb
|
|
408
465
|
- lib/mongo/server/description/features.rb
|
|
@@ -410,84 +467,159 @@ files:
|
|
|
410
467
|
- lib/mongo/server/monitor/app_metadata.rb
|
|
411
468
|
- lib/mongo/server/monitor/connection.rb
|
|
412
469
|
- lib/mongo/server/pending_connection.rb
|
|
470
|
+
- lib/mongo/server/push_monitor.rb
|
|
471
|
+
- lib/mongo/server/push_monitor/connection.rb
|
|
413
472
|
- lib/mongo/server/round_trip_time_averager.rb
|
|
414
473
|
- lib/mongo/server_selector.rb
|
|
474
|
+
- lib/mongo/server_selector/base.rb
|
|
415
475
|
- lib/mongo/server_selector/nearest.rb
|
|
416
476
|
- lib/mongo/server_selector/primary.rb
|
|
417
477
|
- lib/mongo/server_selector/primary_preferred.rb
|
|
418
478
|
- lib/mongo/server_selector/secondary.rb
|
|
419
479
|
- lib/mongo/server_selector/secondary_preferred.rb
|
|
420
|
-
- lib/mongo/server_selector/selectable.rb
|
|
421
480
|
- lib/mongo/session.rb
|
|
422
481
|
- lib/mongo/session/server_session.rb
|
|
423
482
|
- lib/mongo/session/session_pool.rb
|
|
424
483
|
- lib/mongo/socket.rb
|
|
484
|
+
- lib/mongo/socket/ocsp_cache.rb
|
|
485
|
+
- lib/mongo/socket/ocsp_verifier.rb
|
|
425
486
|
- lib/mongo/socket/ssl.rb
|
|
426
487
|
- lib/mongo/socket/tcp.rb
|
|
427
488
|
- lib/mongo/socket/unix.rb
|
|
489
|
+
- lib/mongo/srv.rb
|
|
490
|
+
- lib/mongo/srv/monitor.rb
|
|
491
|
+
- lib/mongo/srv/resolver.rb
|
|
492
|
+
- lib/mongo/srv/result.rb
|
|
493
|
+
- lib/mongo/timeout.rb
|
|
494
|
+
- lib/mongo/topology_version.rb
|
|
428
495
|
- lib/mongo/uri.rb
|
|
496
|
+
- lib/mongo/uri/options_mapper.rb
|
|
429
497
|
- lib/mongo/uri/srv_protocol.rb
|
|
498
|
+
- lib/mongo/utils.rb
|
|
430
499
|
- lib/mongo/version.rb
|
|
431
500
|
- lib/mongo/write_concern.rb
|
|
432
501
|
- lib/mongo/write_concern/acknowledged.rb
|
|
433
502
|
- lib/mongo/write_concern/base.rb
|
|
434
503
|
- lib/mongo/write_concern/unacknowledged.rb
|
|
435
504
|
- mongo.gemspec
|
|
505
|
+
- spec/NOTES.aws-auth.md
|
|
506
|
+
- spec/README.aws-auth.md
|
|
436
507
|
- spec/README.md
|
|
508
|
+
- spec/USERS.md
|
|
437
509
|
- spec/atlas/atlas_connectivity_spec.rb
|
|
438
510
|
- spec/atlas/operations_spec.rb
|
|
439
|
-
- spec/enterprise_auth/kerberos_spec.rb
|
|
440
511
|
- spec/integration/auth_spec.rb
|
|
512
|
+
- spec/integration/awaited_ismaster_spec.rb
|
|
513
|
+
- spec/integration/aws_auth_request_spec.rb
|
|
514
|
+
- spec/integration/aws_credentials_retriever_spec.rb
|
|
441
515
|
- spec/integration/bson_symbol_spec.rb
|
|
442
516
|
- spec/integration/bulk_insert_spec.rb
|
|
517
|
+
- spec/integration/bulk_write_error_message_spec.rb
|
|
518
|
+
- spec/integration/bulk_write_spec.rb
|
|
443
519
|
- spec/integration/change_stream_examples_spec.rb
|
|
444
520
|
- spec/integration/change_stream_spec.rb
|
|
521
|
+
- spec/integration/check_clean_slate_spec.rb
|
|
522
|
+
- spec/integration/client_authentication_options_spec.rb
|
|
445
523
|
- spec/integration/client_connectivity_spec.rb
|
|
524
|
+
- spec/integration/client_construction_aws_auth_spec.rb
|
|
446
525
|
- spec/integration/client_construction_spec.rb
|
|
526
|
+
- spec/integration/client_side_encryption/auto_encryption_bulk_writes_spec.rb
|
|
527
|
+
- spec/integration/client_side_encryption/auto_encryption_command_monitoring_spec.rb
|
|
528
|
+
- spec/integration/client_side_encryption/auto_encryption_mongocryptd_spawn_spec.rb
|
|
529
|
+
- spec/integration/client_side_encryption/auto_encryption_old_wire_version_spec.rb
|
|
530
|
+
- spec/integration/client_side_encryption/auto_encryption_reconnect_spec.rb
|
|
531
|
+
- spec/integration/client_side_encryption/auto_encryption_spec.rb
|
|
532
|
+
- spec/integration/client_side_encryption/bson_size_limit_spec.rb
|
|
533
|
+
- spec/integration/client_side_encryption/bypass_mongocryptd_spawn_spec.rb
|
|
534
|
+
- spec/integration/client_side_encryption/client_close_spec.rb
|
|
535
|
+
- spec/integration/client_side_encryption/corpus_spec.rb
|
|
536
|
+
- spec/integration/client_side_encryption/custom_endpoint_spec.rb
|
|
537
|
+
- spec/integration/client_side_encryption/data_key_spec.rb
|
|
538
|
+
- spec/integration/client_side_encryption/explicit_encryption_spec.rb
|
|
539
|
+
- spec/integration/client_side_encryption/external_key_vault_spec.rb
|
|
540
|
+
- spec/integration/client_side_encryption/views_spec.rb
|
|
447
541
|
- spec/integration/client_spec.rb
|
|
542
|
+
- spec/integration/client_update_spec.rb
|
|
543
|
+
- spec/integration/collection_indexes_prose_spec.rb
|
|
448
544
|
- spec/integration/command_monitoring_spec.rb
|
|
449
545
|
- spec/integration/command_spec.rb
|
|
450
546
|
- spec/integration/connect_single_rs_name_spec.rb
|
|
547
|
+
- spec/integration/connection_pool_populator_spec.rb
|
|
451
548
|
- spec/integration/connection_spec.rb
|
|
452
549
|
- spec/integration/crud_spec.rb
|
|
453
550
|
- spec/integration/cursor_reaping_spec.rb
|
|
454
551
|
- spec/integration/docs_examples_spec.rb
|
|
455
552
|
- spec/integration/error_detection_spec.rb
|
|
553
|
+
- spec/integration/fork_reconnect_spec.rb
|
|
456
554
|
- spec/integration/get_more_spec.rb
|
|
457
555
|
- spec/integration/grid_fs_bucket_spec.rb
|
|
458
556
|
- spec/integration/heartbeat_events_spec.rb
|
|
459
557
|
- spec/integration/mmapv1_spec.rb
|
|
460
558
|
- spec/integration/mongos_pinning_spec.rb
|
|
559
|
+
- spec/integration/ocsp_connectivity_spec.rb
|
|
560
|
+
- spec/integration/ocsp_verifier_cache_spec.rb
|
|
561
|
+
- spec/integration/ocsp_verifier_spec.rb
|
|
461
562
|
- spec/integration/operation_failure_code_spec.rb
|
|
563
|
+
- spec/integration/operation_failure_message_spec.rb
|
|
564
|
+
- spec/integration/query_cache_spec.rb
|
|
565
|
+
- spec/integration/query_cache_transactions_spec.rb
|
|
462
566
|
- spec/integration/read_concern_spec.rb
|
|
463
567
|
- spec/integration/read_preference_spec.rb
|
|
464
568
|
- spec/integration/reconnect_spec.rb
|
|
465
569
|
- spec/integration/retryable_errors_spec.rb
|
|
570
|
+
- spec/integration/retryable_writes/retryable_writes_36_and_older_spec.rb
|
|
571
|
+
- spec/integration/retryable_writes/retryable_writes_40_and_newer_spec.rb
|
|
572
|
+
- spec/integration/retryable_writes/shared/adds_diagnostics.rb
|
|
573
|
+
- spec/integration/retryable_writes/shared/does_not_support_retries.rb
|
|
574
|
+
- spec/integration/retryable_writes/shared/only_supports_legacy_retries.rb
|
|
575
|
+
- spec/integration/retryable_writes/shared/performs_legacy_retries.rb
|
|
576
|
+
- spec/integration/retryable_writes/shared/performs_modern_retries.rb
|
|
577
|
+
- spec/integration/retryable_writes/shared/performs_no_retries.rb
|
|
578
|
+
- spec/integration/retryable_writes/shared/supports_legacy_retries.rb
|
|
579
|
+
- spec/integration/retryable_writes/shared/supports_modern_retries.rb
|
|
580
|
+
- spec/integration/retryable_writes/shared/supports_retries.rb
|
|
466
581
|
- spec/integration/retryable_writes_errors_spec.rb
|
|
467
|
-
- spec/integration/retryable_writes_spec.rb
|
|
468
582
|
- spec/integration/sdam_error_handling_spec.rb
|
|
469
583
|
- spec/integration/sdam_events_spec.rb
|
|
584
|
+
- spec/integration/sdam_prose_spec.rb
|
|
585
|
+
- spec/integration/secondary_reads_spec.rb
|
|
470
586
|
- spec/integration/server_description_spec.rb
|
|
587
|
+
- spec/integration/server_monitor_spec.rb
|
|
588
|
+
- spec/integration/server_selection_spec.rb
|
|
471
589
|
- spec/integration/server_selector_spec.rb
|
|
472
590
|
- spec/integration/server_spec.rb
|
|
473
591
|
- spec/integration/shell_examples_spec.rb
|
|
474
|
-
- spec/integration/size_limit_spec.rb
|
|
475
|
-
|
|
592
|
+
- spec/integration/size_limit_spec.rb
|
|
593
|
+
- spec/integration/snappy_compression_spec.rb
|
|
594
|
+
- spec/integration/srv_monitoring_spec.rb
|
|
595
|
+
- spec/integration/srv_spec.rb
|
|
476
596
|
- spec/integration/ssl_uri_options_spec.rb
|
|
477
597
|
- spec/integration/step_down_spec.rb
|
|
478
598
|
- spec/integration/time_zone_querying_spec.rb
|
|
599
|
+
- spec/integration/transactions_api_examples_spec.rb
|
|
479
600
|
- spec/integration/transactions_examples_spec.rb
|
|
601
|
+
- spec/integration/truncated_utf8_spec.rb
|
|
602
|
+
- spec/integration/versioned_api_examples_spec.rb
|
|
603
|
+
- spec/integration/x509_auth_spec.rb
|
|
604
|
+
- spec/integration/zlib_compression_spec.rb
|
|
605
|
+
- spec/integration/zstd_compression_spec.rb
|
|
606
|
+
- spec/kerberos/kerberos_spec.rb
|
|
480
607
|
- spec/lite_spec_helper.rb
|
|
481
608
|
- spec/mongo/address/ipv4_spec.rb
|
|
482
609
|
- spec/mongo/address/ipv6_spec.rb
|
|
483
610
|
- spec/mongo/address/unix_spec.rb
|
|
611
|
+
- spec/mongo/address/validator_spec.rb
|
|
484
612
|
- spec/mongo/address_spec.rb
|
|
613
|
+
- spec/mongo/auth/aws/request_region_spec.rb
|
|
614
|
+
- spec/mongo/auth/aws/request_spec.rb
|
|
485
615
|
- spec/mongo/auth/cr_spec.rb
|
|
616
|
+
- spec/mongo/auth/gssapi/conversation_spec.rb
|
|
486
617
|
- spec/mongo/auth/invalid_mechanism_spec.rb
|
|
487
618
|
- spec/mongo/auth/ldap/conversation_spec.rb
|
|
488
619
|
- spec/mongo/auth/ldap_spec.rb
|
|
489
620
|
- spec/mongo/auth/scram/conversation_spec.rb
|
|
490
|
-
- spec/mongo/auth/
|
|
621
|
+
- spec/mongo/auth/scram256/conversation_spec.rb
|
|
622
|
+
- spec/mongo/auth/scram_negotiation_spec.rb
|
|
491
623
|
- spec/mongo/auth/scram_spec.rb
|
|
492
624
|
- spec/mongo/auth/stringprep/profiles/sasl_spec.rb
|
|
493
625
|
- spec/mongo/auth/stringprep_spec.rb
|
|
@@ -501,9 +633,12 @@ files:
|
|
|
501
633
|
- spec/mongo/bulk_write/result_spec.rb
|
|
502
634
|
- spec/mongo/bulk_write/unordered_combiner_spec.rb
|
|
503
635
|
- spec/mongo/bulk_write_spec.rb
|
|
636
|
+
- spec/mongo/caching_cursor_spec.rb
|
|
504
637
|
- spec/mongo/client_construction_spec.rb
|
|
638
|
+
- spec/mongo/client_encryption_spec.rb
|
|
505
639
|
- spec/mongo/client_spec.rb
|
|
506
640
|
- spec/mongo/cluster/cursor_reaper_spec.rb
|
|
641
|
+
- spec/mongo/cluster/periodic_executor_spec.rb
|
|
507
642
|
- spec/mongo/cluster/socket_reaper_spec.rb
|
|
508
643
|
- spec/mongo/cluster/topology/replica_set_spec.rb
|
|
509
644
|
- spec/mongo/cluster/topology/sharded_spec.rb
|
|
@@ -517,23 +652,52 @@ files:
|
|
|
517
652
|
- spec/mongo/collection/view/builder/flags_spec.rb
|
|
518
653
|
- spec/mongo/collection/view/builder/modifiers_spec.rb
|
|
519
654
|
- spec/mongo/collection/view/builder/op_query_spec.rb
|
|
655
|
+
- spec/mongo/collection/view/change_stream_resume_spec.rb
|
|
520
656
|
- spec/mongo/collection/view/change_stream_spec.rb
|
|
521
657
|
- spec/mongo/collection/view/explainable_spec.rb
|
|
522
658
|
- spec/mongo/collection/view/immutable_spec.rb
|
|
659
|
+
- spec/mongo/collection/view/iterable_spec.rb
|
|
523
660
|
- spec/mongo/collection/view/map_reduce_spec.rb
|
|
524
661
|
- spec/mongo/collection/view/readable_spec.rb
|
|
525
662
|
- spec/mongo/collection/view/writable_spec.rb
|
|
526
663
|
- spec/mongo/collection/view_spec.rb
|
|
664
|
+
- spec/mongo/collection_crud_spec.rb
|
|
665
|
+
- spec/mongo/collection_ddl_spec.rb
|
|
527
666
|
- spec/mongo/collection_spec.rb
|
|
667
|
+
- spec/mongo/crypt/auto_decryption_context_spec.rb
|
|
668
|
+
- spec/mongo/crypt/auto_encrypter_spec.rb
|
|
669
|
+
- spec/mongo/crypt/auto_encryption_context_spec.rb
|
|
670
|
+
- spec/mongo/crypt/binary_spec.rb
|
|
671
|
+
- spec/mongo/crypt/binding/binary_spec.rb
|
|
672
|
+
- spec/mongo/crypt/binding/context_spec.rb
|
|
673
|
+
- spec/mongo/crypt/binding/helpers_spec.rb
|
|
674
|
+
- spec/mongo/crypt/binding/mongocrypt_spec.rb
|
|
675
|
+
- spec/mongo/crypt/binding/status_spec.rb
|
|
676
|
+
- spec/mongo/crypt/binding/version_spec.rb
|
|
677
|
+
- spec/mongo/crypt/binding_unloaded_spec.rb
|
|
678
|
+
- spec/mongo/crypt/data_key_context_spec.rb
|
|
679
|
+
- spec/mongo/crypt/encryption_io_spec.rb
|
|
680
|
+
- spec/mongo/crypt/explicit_decryption_context_spec.rb
|
|
681
|
+
- spec/mongo/crypt/explicit_encryption_context_spec.rb
|
|
682
|
+
- spec/mongo/crypt/handle_spec.rb
|
|
683
|
+
- spec/mongo/crypt/helpers/mongo_crypt_spec_helper.rb
|
|
684
|
+
- spec/mongo/crypt/status_spec.rb
|
|
528
685
|
- spec/mongo/cursor/builder/get_more_command_spec.rb
|
|
529
686
|
- spec/mongo/cursor/builder/op_get_more_spec.rb
|
|
530
687
|
- spec/mongo/cursor/builder/op_kill_cursors_spec.rb
|
|
531
688
|
- spec/mongo/cursor_spec.rb
|
|
532
689
|
- spec/mongo/database_spec.rb
|
|
533
690
|
- spec/mongo/dbref_spec.rb
|
|
691
|
+
- spec/mongo/distinguishing_semaphore_spec.rb
|
|
692
|
+
- spec/mongo/error/bulk_write_error_spec.rb
|
|
693
|
+
- spec/mongo/error/crypt_error_spec.rb
|
|
694
|
+
- spec/mongo/error/max_bson_size_spec.rb
|
|
534
695
|
- spec/mongo/error/no_server_available_spec.rb
|
|
696
|
+
- spec/mongo/error/notable_spec.rb
|
|
697
|
+
- spec/mongo/error/operation_failure_heavy_spec.rb
|
|
535
698
|
- spec/mongo/error/operation_failure_spec.rb
|
|
536
699
|
- spec/mongo/error/parser_spec.rb
|
|
700
|
+
- spec/mongo/error/unsupported_option_spec.rb
|
|
537
701
|
- spec/mongo/event/publisher_spec.rb
|
|
538
702
|
- spec/mongo/event/subscriber_spec.rb
|
|
539
703
|
- spec/mongo/grid/file/chunk_spec.rb
|
|
@@ -593,7 +757,8 @@ files:
|
|
|
593
757
|
- spec/mongo/operation/kill_cursors_spec.rb
|
|
594
758
|
- spec/mongo/operation/limited_spec.rb
|
|
595
759
|
- spec/mongo/operation/map_reduce_spec.rb
|
|
596
|
-
- spec/mongo/operation/
|
|
760
|
+
- spec/mongo/operation/read_preference_legacy_spec.rb
|
|
761
|
+
- spec/mongo/operation/read_preference_op_msg_spec.rb
|
|
597
762
|
- spec/mongo/operation/remove_user_spec.rb
|
|
598
763
|
- spec/mongo/operation/result_spec.rb
|
|
599
764
|
- spec/mongo/operation/specifiable_spec.rb
|
|
@@ -613,9 +778,14 @@ files:
|
|
|
613
778
|
- spec/mongo/protocol/registry_spec.rb
|
|
614
779
|
- spec/mongo/protocol/reply_spec.rb
|
|
615
780
|
- spec/mongo/protocol/update_spec.rb
|
|
781
|
+
- spec/mongo/query_cache_middleware_spec.rb
|
|
782
|
+
- spec/mongo/query_cache_spec.rb
|
|
616
783
|
- spec/mongo/retryable_spec.rb
|
|
784
|
+
- spec/mongo/semaphore_spec.rb
|
|
617
785
|
- spec/mongo/server/app_metadata_spec.rb
|
|
618
786
|
- spec/mongo/server/connection_auth_spec.rb
|
|
787
|
+
- spec/mongo/server/connection_common_spec.rb
|
|
788
|
+
- spec/mongo/server/connection_pool/populator_spec.rb
|
|
619
789
|
- spec/mongo/server/connection_pool_spec.rb
|
|
620
790
|
- spec/mongo/server/connection_spec.rb
|
|
621
791
|
- spec/mongo/server/description/features_spec.rb
|
|
@@ -640,21 +810,124 @@ files:
|
|
|
640
810
|
- spec/mongo/socket/tcp_spec.rb
|
|
641
811
|
- spec/mongo/socket/unix_spec.rb
|
|
642
812
|
- spec/mongo/socket_spec.rb
|
|
813
|
+
- spec/mongo/srv/monitor_spec.rb
|
|
814
|
+
- spec/mongo/srv/result_spec.rb
|
|
815
|
+
- spec/mongo/timeout_spec.rb
|
|
816
|
+
- spec/mongo/tls_context_hooks_spec.rb
|
|
643
817
|
- spec/mongo/uri/srv_protocol_spec.rb
|
|
644
818
|
- spec/mongo/uri_option_parsing_spec.rb
|
|
645
819
|
- spec/mongo/uri_spec.rb
|
|
820
|
+
- spec/mongo/utils_spec.rb
|
|
646
821
|
- spec/mongo/write_concern/acknowledged_spec.rb
|
|
647
822
|
- spec/mongo/write_concern/unacknowledged_spec.rb
|
|
648
823
|
- spec/mongo/write_concern_spec.rb
|
|
824
|
+
- spec/runners/auth.rb
|
|
825
|
+
- spec/runners/change_streams/outcome.rb
|
|
826
|
+
- spec/runners/change_streams/spec.rb
|
|
827
|
+
- spec/runners/change_streams/test.rb
|
|
828
|
+
- spec/runners/cmap.rb
|
|
829
|
+
- spec/runners/cmap/verifier.rb
|
|
830
|
+
- spec/runners/command_monitoring.rb
|
|
831
|
+
- spec/runners/connection_string.rb
|
|
832
|
+
- spec/runners/crud.rb
|
|
833
|
+
- spec/runners/crud/context.rb
|
|
834
|
+
- spec/runners/crud/operation.rb
|
|
835
|
+
- spec/runners/crud/outcome.rb
|
|
836
|
+
- spec/runners/crud/requirement.rb
|
|
837
|
+
- spec/runners/crud/spec.rb
|
|
838
|
+
- spec/runners/crud/test.rb
|
|
839
|
+
- spec/runners/crud/test_base.rb
|
|
840
|
+
- spec/runners/crud/verifier.rb
|
|
841
|
+
- spec/runners/gridfs.rb
|
|
842
|
+
- spec/runners/read_write_concern_document.rb
|
|
843
|
+
- spec/runners/sdam.rb
|
|
649
844
|
- spec/runners/sdam/verifier.rb
|
|
845
|
+
- spec/runners/server_selection.rb
|
|
846
|
+
- spec/runners/server_selection_rtt.rb
|
|
847
|
+
- spec/runners/transactions.rb
|
|
848
|
+
- spec/runners/transactions/operation.rb
|
|
849
|
+
- spec/runners/transactions/spec.rb
|
|
850
|
+
- spec/runners/transactions/test.rb
|
|
851
|
+
- spec/runners/unified.rb
|
|
852
|
+
- spec/runners/unified/assertions.rb
|
|
853
|
+
- spec/runners/unified/change_stream_operations.rb
|
|
854
|
+
- spec/runners/unified/crud_operations.rb
|
|
855
|
+
- spec/runners/unified/ddl_operations.rb
|
|
856
|
+
- spec/runners/unified/entity_map.rb
|
|
857
|
+
- spec/runners/unified/error.rb
|
|
858
|
+
- spec/runners/unified/event_subscriber.rb
|
|
859
|
+
- spec/runners/unified/exceptions.rb
|
|
860
|
+
- spec/runners/unified/grid_fs_operations.rb
|
|
861
|
+
- spec/runners/unified/support_operations.rb
|
|
862
|
+
- spec/runners/unified/test.rb
|
|
863
|
+
- spec/runners/unified/test_group.rb
|
|
864
|
+
- spec/runners/unified/using_hash.rb
|
|
865
|
+
- spec/shared/LICENSE
|
|
866
|
+
- spec/shared/bin/get-mongodb-download-url
|
|
867
|
+
- spec/shared/bin/s3-copy
|
|
868
|
+
- spec/shared/bin/s3-upload
|
|
869
|
+
- spec/shared/lib/mrss/child_process_helper.rb
|
|
870
|
+
- spec/shared/lib/mrss/cluster_config.rb
|
|
871
|
+
- spec/shared/lib/mrss/constraints.rb
|
|
872
|
+
- spec/shared/lib/mrss/docker_runner.rb
|
|
873
|
+
- spec/shared/lib/mrss/lite_constraints.rb
|
|
874
|
+
- spec/shared/lib/mrss/server_version_registry.rb
|
|
875
|
+
- spec/shared/lib/mrss/spec_organizer.rb
|
|
876
|
+
- spec/shared/lib/mrss/utils.rb
|
|
877
|
+
- spec/shared/share/Dockerfile.erb
|
|
878
|
+
- spec/shared/share/haproxy-1.conf
|
|
879
|
+
- spec/shared/share/haproxy-2.conf
|
|
880
|
+
- spec/shared/shlib/distro.sh
|
|
881
|
+
- spec/shared/shlib/server.sh
|
|
882
|
+
- spec/shared/shlib/set_env.sh
|
|
883
|
+
- spec/solo/clean_exit_spec.rb
|
|
650
884
|
- spec/spec_helper.rb
|
|
885
|
+
- spec/spec_tests/auth_spec.rb
|
|
651
886
|
- spec/spec_tests/change_streams_spec.rb
|
|
887
|
+
- spec/spec_tests/change_streams_unified_spec.rb
|
|
888
|
+
- spec/spec_tests/client_side_encryption_spec.rb
|
|
652
889
|
- spec/spec_tests/cmap_spec.rb
|
|
890
|
+
- spec/spec_tests/collection_management_spec.rb
|
|
653
891
|
- spec/spec_tests/command_monitoring_spec.rb
|
|
892
|
+
- spec/spec_tests/command_monitoring_unified_spec.rb
|
|
654
893
|
- spec/spec_tests/connection_string_spec.rb
|
|
655
894
|
- spec/spec_tests/crud_spec.rb
|
|
895
|
+
- spec/spec_tests/crud_unified_spec.rb
|
|
896
|
+
- spec/spec_tests/data/auth/connection-string.yml
|
|
656
897
|
- spec/spec_tests/data/change_streams/change-streams-errors.yml
|
|
898
|
+
- spec/spec_tests/data/change_streams/change-streams-resume-allowlist.yml
|
|
899
|
+
- spec/spec_tests/data/change_streams/change-streams-resume-errorLabels.yml
|
|
657
900
|
- spec/spec_tests/data/change_streams/change-streams.yml
|
|
901
|
+
- spec/spec_tests/data/change_streams_unified/change-streams.yml
|
|
902
|
+
- spec/spec_tests/data/client_side_encryption/aggregate.yml
|
|
903
|
+
- spec/spec_tests/data/client_side_encryption/badQueries.yml
|
|
904
|
+
- spec/spec_tests/data/client_side_encryption/badSchema.yml
|
|
905
|
+
- spec/spec_tests/data/client_side_encryption/basic.yml
|
|
906
|
+
- spec/spec_tests/data/client_side_encryption/bulk.yml
|
|
907
|
+
- spec/spec_tests/data/client_side_encryption/bypassAutoEncryption.yml
|
|
908
|
+
- spec/spec_tests/data/client_side_encryption/bypassedCommand.yml
|
|
909
|
+
- spec/spec_tests/data/client_side_encryption/count.yml
|
|
910
|
+
- spec/spec_tests/data/client_side_encryption/countDocuments.yml
|
|
911
|
+
- spec/spec_tests/data/client_side_encryption/delete.yml
|
|
912
|
+
- spec/spec_tests/data/client_side_encryption/distinct.yml
|
|
913
|
+
- spec/spec_tests/data/client_side_encryption/explain.yml
|
|
914
|
+
- spec/spec_tests/data/client_side_encryption/find.yml
|
|
915
|
+
- spec/spec_tests/data/client_side_encryption/findOneAndDelete.yml
|
|
916
|
+
- spec/spec_tests/data/client_side_encryption/findOneAndReplace.yml
|
|
917
|
+
- spec/spec_tests/data/client_side_encryption/findOneAndUpdate.yml
|
|
918
|
+
- spec/spec_tests/data/client_side_encryption/getMore.yml
|
|
919
|
+
- spec/spec_tests/data/client_side_encryption/insert.yml
|
|
920
|
+
- spec/spec_tests/data/client_side_encryption/keyAltName.yml
|
|
921
|
+
- spec/spec_tests/data/client_side_encryption/localKMS.yml
|
|
922
|
+
- spec/spec_tests/data/client_side_encryption/localSchema.yml
|
|
923
|
+
- spec/spec_tests/data/client_side_encryption/malformedCiphertext.yml
|
|
924
|
+
- spec/spec_tests/data/client_side_encryption/maxWireVersion.yml
|
|
925
|
+
- spec/spec_tests/data/client_side_encryption/missingKey.yml
|
|
926
|
+
- spec/spec_tests/data/client_side_encryption/replaceOne.yml
|
|
927
|
+
- spec/spec_tests/data/client_side_encryption/types.yml
|
|
928
|
+
- spec/spec_tests/data/client_side_encryption/unsupportedCommand.yml
|
|
929
|
+
- spec/spec_tests/data/client_side_encryption/updateMany.yml
|
|
930
|
+
- spec/spec_tests/data/client_side_encryption/updateOne.yml
|
|
658
931
|
- spec/spec_tests/data/cmap/connection-must-have-id.yml
|
|
659
932
|
- spec/spec_tests/data/cmap/connection-must-order-ids.yml
|
|
660
933
|
- spec/spec_tests/data/cmap/pool-checkin-destroy-closed.yml
|
|
@@ -674,6 +947,7 @@ files:
|
|
|
674
947
|
- spec/spec_tests/data/cmap/pool-create.yml
|
|
675
948
|
- spec/spec_tests/data/cmap/wait-queue-fairness.yml
|
|
676
949
|
- spec/spec_tests/data/cmap/wait-queue-timeout.yml
|
|
950
|
+
- spec/spec_tests/data/collection_management/timeseries-collection.yml
|
|
677
951
|
- spec/spec_tests/data/command_monitoring/bulkWrite.yml
|
|
678
952
|
- spec/spec_tests/data/command_monitoring/command.yml
|
|
679
953
|
- spec/spec_tests/data/command_monitoring/deleteMany.yml
|
|
@@ -684,6 +958,7 @@ files:
|
|
|
684
958
|
- spec/spec_tests/data/command_monitoring/unacknowledgedBulkWrite.yml
|
|
685
959
|
- spec/spec_tests/data/command_monitoring/updateMany.yml
|
|
686
960
|
- spec/spec_tests/data/command_monitoring/updateOne.yml
|
|
961
|
+
- spec/spec_tests/data/command_monitoring_unified/redacted-commands.yml
|
|
687
962
|
- spec/spec_tests/data/connection_string/invalid-uris.yml
|
|
688
963
|
- spec/spec_tests/data/connection_string/valid-auth.yml
|
|
689
964
|
- spec/spec_tests/data/connection_string/valid-db-with-dotted-name.yml
|
|
@@ -732,11 +1007,56 @@ files:
|
|
|
732
1007
|
- spec/spec_tests/data/crud/write/updateOne-collation.yml
|
|
733
1008
|
- spec/spec_tests/data/crud/write/updateOne-pre_2.6.yml
|
|
734
1009
|
- spec/spec_tests/data/crud/write/updateOne.yml
|
|
1010
|
+
- spec/spec_tests/data/crud_unified/estimatedDocumentCount.yml
|
|
1011
|
+
- spec/spec_tests/data/crud_unified/updateWithPipelines.yml
|
|
735
1012
|
- spec/spec_tests/data/crud_v2/aggregate-merge.yml
|
|
736
1013
|
- spec/spec_tests/data/crud_v2/aggregate-out-readConcern.yml
|
|
737
1014
|
- spec/spec_tests/data/crud_v2/bulkWrite-arrayFilters.yml
|
|
1015
|
+
- spec/spec_tests/data/crud_v2/bulkWrite-delete-hint-clientError.yml
|
|
1016
|
+
- spec/spec_tests/data/crud_v2/bulkWrite-delete-hint-serverError.yml
|
|
1017
|
+
- spec/spec_tests/data/crud_v2/bulkWrite-delete-hint.yml
|
|
1018
|
+
- spec/spec_tests/data/crud_v2/bulkWrite-update-hint-clientError.yml
|
|
1019
|
+
- spec/spec_tests/data/crud_v2/bulkWrite-update-hint-serverError.yml
|
|
1020
|
+
- spec/spec_tests/data/crud_v2/bulkWrite-update-hint.yml
|
|
738
1021
|
- spec/spec_tests/data/crud_v2/db-aggregate.yml
|
|
1022
|
+
- spec/spec_tests/data/crud_v2/deleteMany-hint-clientError.yml
|
|
1023
|
+
- spec/spec_tests/data/crud_v2/deleteMany-hint-serverError.yml
|
|
1024
|
+
- spec/spec_tests/data/crud_v2/deleteMany-hint.yml
|
|
1025
|
+
- spec/spec_tests/data/crud_v2/deleteOne-hint-clientError.yml
|
|
1026
|
+
- spec/spec_tests/data/crud_v2/deleteOne-hint-serverError.yml
|
|
1027
|
+
- spec/spec_tests/data/crud_v2/deleteOne-hint.yml
|
|
1028
|
+
- spec/spec_tests/data/crud_v2/find-allowdiskuse-clientError.yml
|
|
1029
|
+
- spec/spec_tests/data/crud_v2/find-allowdiskuse-serverError.yml
|
|
1030
|
+
- spec/spec_tests/data/crud_v2/find-allowdiskuse.yml
|
|
1031
|
+
- spec/spec_tests/data/crud_v2/findOneAndDelete-hint-clientError.yml
|
|
1032
|
+
- spec/spec_tests/data/crud_v2/findOneAndDelete-hint-serverError.yml
|
|
1033
|
+
- spec/spec_tests/data/crud_v2/findOneAndDelete-hint.yml
|
|
1034
|
+
- spec/spec_tests/data/crud_v2/findOneAndReplace-hint-clientError.yml
|
|
1035
|
+
- spec/spec_tests/data/crud_v2/findOneAndReplace-hint-serverError.yml
|
|
1036
|
+
- spec/spec_tests/data/crud_v2/findOneAndReplace-hint.yml
|
|
1037
|
+
- spec/spec_tests/data/crud_v2/findOneAndUpdate-hint-clientError.yml
|
|
1038
|
+
- spec/spec_tests/data/crud_v2/findOneAndUpdate-hint-serverError.yml
|
|
1039
|
+
- spec/spec_tests/data/crud_v2/findOneAndUpdate-hint.yml
|
|
1040
|
+
- spec/spec_tests/data/crud_v2/replaceOne-hint.yml
|
|
1041
|
+
- spec/spec_tests/data/crud_v2/unacknowledged-bulkWrite-delete-hint-clientError.yml
|
|
1042
|
+
- spec/spec_tests/data/crud_v2/unacknowledged-bulkWrite-update-hint-clientError.yml
|
|
1043
|
+
- spec/spec_tests/data/crud_v2/unacknowledged-deleteMany-hint-clientError.yml
|
|
1044
|
+
- spec/spec_tests/data/crud_v2/unacknowledged-deleteOne-hint-clientError.yml
|
|
1045
|
+
- spec/spec_tests/data/crud_v2/unacknowledged-findOneAndDelete-hint-clientError.yml
|
|
1046
|
+
- spec/spec_tests/data/crud_v2/unacknowledged-findOneAndReplace-hint-clientError.yml
|
|
1047
|
+
- spec/spec_tests/data/crud_v2/unacknowledged-findOneAndUpdate-hint-clientError.yml
|
|
1048
|
+
- spec/spec_tests/data/crud_v2/unacknowledged-replaceOne-hint-clientError.yml
|
|
1049
|
+
- spec/spec_tests/data/crud_v2/unacknowledged-updateMany-hint-clientError.yml
|
|
1050
|
+
- spec/spec_tests/data/crud_v2/unacknowledged-updateOne-hint-clientError.yml
|
|
1051
|
+
- spec/spec_tests/data/crud_v2/updateMany-hint-clientError.yml
|
|
1052
|
+
- spec/spec_tests/data/crud_v2/updateMany-hint-serverError.yml
|
|
1053
|
+
- spec/spec_tests/data/crud_v2/updateMany-hint.yml
|
|
1054
|
+
- spec/spec_tests/data/crud_v2/updateOne-hint-clientError.yml
|
|
1055
|
+
- spec/spec_tests/data/crud_v2/updateOne-hint-serverError.yml
|
|
1056
|
+
- spec/spec_tests/data/crud_v2/updateOne-hint.yml
|
|
739
1057
|
- spec/spec_tests/data/crud_v2/updateWithPipelines.yml
|
|
1058
|
+
- spec/spec_tests/data/dns_seedlist_discovery/direct-connection-false.yml
|
|
1059
|
+
- spec/spec_tests/data/dns_seedlist_discovery/direct-connection-true.yml
|
|
740
1060
|
- spec/spec_tests/data/dns_seedlist_discovery/longer-parent-in-return.yml
|
|
741
1061
|
- spec/spec_tests/data/dns_seedlist_discovery/misformatted-option.yml
|
|
742
1062
|
- spec/spec_tests/data/dns_seedlist_discovery/no-results.yml
|
|
@@ -767,6 +1087,7 @@ files:
|
|
|
767
1087
|
- spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/DefaultNoMaxStaleness.yml
|
|
768
1088
|
- spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/Incompatible.yml
|
|
769
1089
|
- spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/LastUpdateTime.yml
|
|
1090
|
+
- spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/MaxStalenessTooSmall.yml
|
|
770
1091
|
- spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/Nearest.yml
|
|
771
1092
|
- spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/Nearest2.yml
|
|
772
1093
|
- spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/NoKnownServers.yml
|
|
@@ -799,6 +1120,15 @@ files:
|
|
|
799
1120
|
- spec/spec_tests/data/max_staleness/Single/Incompatible.yml
|
|
800
1121
|
- spec/spec_tests/data/max_staleness/Single/SmallMaxStaleness.yml
|
|
801
1122
|
- spec/spec_tests/data/max_staleness/Unknown/SmallMaxStaleness.yml
|
|
1123
|
+
- spec/spec_tests/data/read_write_concern/connection-string/read-concern.yml
|
|
1124
|
+
- spec/spec_tests/data/read_write_concern/connection-string/write-concern.yml
|
|
1125
|
+
- spec/spec_tests/data/read_write_concern/document/read-concern.yml
|
|
1126
|
+
- spec/spec_tests/data/read_write_concern/document/write-concern.yml
|
|
1127
|
+
- spec/spec_tests/data/read_write_concern/operation/default-write-concern-2.6.yml
|
|
1128
|
+
- spec/spec_tests/data/read_write_concern/operation/default-write-concern-3.2.yml
|
|
1129
|
+
- spec/spec_tests/data/read_write_concern/operation/default-write-concern-3.4.yml
|
|
1130
|
+
- spec/spec_tests/data/read_write_concern/operation/default-write-concern-4.2.yml
|
|
1131
|
+
- spec/spec_tests/data/retryable_reads/aggregate-merge.yml
|
|
802
1132
|
- spec/spec_tests/data/retryable_reads/aggregate-serverErrors.yml
|
|
803
1133
|
- spec/spec_tests/data/retryable_reads/aggregate.yml
|
|
804
1134
|
- spec/spec_tests/data/retryable_reads/changeStreams-client.watch-serverErrors.yml
|
|
@@ -813,8 +1143,10 @@ files:
|
|
|
813
1143
|
- spec/spec_tests/data/retryable_reads/countDocuments.yml
|
|
814
1144
|
- spec/spec_tests/data/retryable_reads/distinct-serverErrors.yml
|
|
815
1145
|
- spec/spec_tests/data/retryable_reads/distinct.yml
|
|
816
|
-
- spec/spec_tests/data/retryable_reads/estimatedDocumentCount-
|
|
817
|
-
- spec/spec_tests/data/retryable_reads/estimatedDocumentCount.yml
|
|
1146
|
+
- spec/spec_tests/data/retryable_reads/estimatedDocumentCount-4.9.yml
|
|
1147
|
+
- spec/spec_tests/data/retryable_reads/estimatedDocumentCount-pre4.9.yml
|
|
1148
|
+
- spec/spec_tests/data/retryable_reads/estimatedDocumentCount-serverErrors-4.9.yml
|
|
1149
|
+
- spec/spec_tests/data/retryable_reads/estimatedDocumentCount-serverErrors-pre4.9.yml
|
|
818
1150
|
- spec/spec_tests/data/retryable_reads/find-serverErrors.yml
|
|
819
1151
|
- spec/spec_tests/data/retryable_reads/find.yml
|
|
820
1152
|
- spec/spec_tests/data/retryable_reads/findOne-serverErrors.yml
|
|
@@ -840,35 +1172,133 @@ files:
|
|
|
840
1172
|
- spec/spec_tests/data/retryable_reads/listIndexes-serverErrors.yml
|
|
841
1173
|
- spec/spec_tests/data/retryable_reads/listIndexes.yml
|
|
842
1174
|
- spec/spec_tests/data/retryable_reads/mapReduce.yml
|
|
1175
|
+
- spec/spec_tests/data/retryable_writes/bulkWrite-errorLabels.yml
|
|
843
1176
|
- spec/spec_tests/data/retryable_writes/bulkWrite-serverErrors.yml
|
|
844
1177
|
- spec/spec_tests/data/retryable_writes/bulkWrite.yml
|
|
845
1178
|
- spec/spec_tests/data/retryable_writes/deleteMany.yml
|
|
1179
|
+
- spec/spec_tests/data/retryable_writes/deleteOne-errorLabels.yml
|
|
846
1180
|
- spec/spec_tests/data/retryable_writes/deleteOne-serverErrors.yml
|
|
847
1181
|
- spec/spec_tests/data/retryable_writes/deleteOne.yml
|
|
1182
|
+
- spec/spec_tests/data/retryable_writes/findOneAndDelete-errorLabels.yml
|
|
848
1183
|
- spec/spec_tests/data/retryable_writes/findOneAndDelete-serverErrors.yml
|
|
849
1184
|
- spec/spec_tests/data/retryable_writes/findOneAndDelete.yml
|
|
1185
|
+
- spec/spec_tests/data/retryable_writes/findOneAndReplace-errorLabels.yml
|
|
850
1186
|
- spec/spec_tests/data/retryable_writes/findOneAndReplace-serverErrors.yml
|
|
851
1187
|
- spec/spec_tests/data/retryable_writes/findOneAndReplace.yml
|
|
1188
|
+
- spec/spec_tests/data/retryable_writes/findOneAndUpdate-errorLabels.yml
|
|
852
1189
|
- spec/spec_tests/data/retryable_writes/findOneAndUpdate-serverErrors.yml
|
|
853
1190
|
- spec/spec_tests/data/retryable_writes/findOneAndUpdate.yml
|
|
1191
|
+
- spec/spec_tests/data/retryable_writes/insertMany-errorLabels.yml
|
|
854
1192
|
- spec/spec_tests/data/retryable_writes/insertMany-serverErrors.yml
|
|
855
1193
|
- spec/spec_tests/data/retryable_writes/insertMany.yml
|
|
1194
|
+
- spec/spec_tests/data/retryable_writes/insertOne-errorLabels.yml
|
|
856
1195
|
- spec/spec_tests/data/retryable_writes/insertOne-serverErrors.yml
|
|
857
1196
|
- spec/spec_tests/data/retryable_writes/insertOne.yml
|
|
1197
|
+
- spec/spec_tests/data/retryable_writes/replaceOne-errorLabels.yml
|
|
858
1198
|
- spec/spec_tests/data/retryable_writes/replaceOne-serverErrors.yml
|
|
859
1199
|
- spec/spec_tests/data/retryable_writes/replaceOne.yml
|
|
860
1200
|
- spec/spec_tests/data/retryable_writes/updateMany.yml
|
|
1201
|
+
- spec/spec_tests/data/retryable_writes/updateOne-errorLabels.yml
|
|
861
1202
|
- spec/spec_tests/data/retryable_writes/updateOne-serverErrors.yml
|
|
862
1203
|
- spec/spec_tests/data/retryable_writes/updateOne.yml
|
|
1204
|
+
- spec/spec_tests/data/sdam/errors/error_handling_handshake.yml
|
|
1205
|
+
- spec/spec_tests/data/sdam/errors/non-stale-network-error.yml
|
|
1206
|
+
- spec/spec_tests/data/sdam/errors/non-stale-network-timeout-error.yml
|
|
1207
|
+
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-InterruptedAtShutdown.yml
|
|
1208
|
+
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-InterruptedDueToReplStateChange.yml
|
|
1209
|
+
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-LegacyNotPrimary.yml
|
|
1210
|
+
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-NotPrimaryNoSecondaryOk.yml
|
|
1211
|
+
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-NotPrimaryOrSecondary.yml
|
|
1212
|
+
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-NotWritablePrimary.yml
|
|
1213
|
+
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-PrimarySteppedDown.yml
|
|
1214
|
+
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-ShutdownInProgress.yml
|
|
1215
|
+
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-InterruptedAtShutdown.yml
|
|
1216
|
+
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-InterruptedDueToReplStateChange.yml
|
|
1217
|
+
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-LegacyNotPrimary.yml
|
|
1218
|
+
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-NotPrimaryNoSecondaryOk.yml
|
|
1219
|
+
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-NotPrimaryOrSecondary.yml
|
|
1220
|
+
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-NotWritablePrimary.yml
|
|
1221
|
+
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-PrimarySteppedDown.yml
|
|
1222
|
+
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-ShutdownInProgress.yml
|
|
1223
|
+
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-InterruptedAtShutdown.yml
|
|
1224
|
+
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-InterruptedDueToReplStateChange.yml
|
|
1225
|
+
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-LegacyNotPrimary.yml
|
|
1226
|
+
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-NotPrimaryNoSecondaryOk.yml
|
|
1227
|
+
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-NotPrimaryOrSecondary.yml
|
|
1228
|
+
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-NotWritablePrimary.yml
|
|
1229
|
+
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-PrimarySteppedDown.yml
|
|
1230
|
+
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-ShutdownInProgress.yml
|
|
1231
|
+
- spec/spec_tests/data/sdam/errors/post-42-InterruptedAtShutdown.yml
|
|
1232
|
+
- spec/spec_tests/data/sdam/errors/post-42-InterruptedDueToReplStateChange.yml
|
|
1233
|
+
- spec/spec_tests/data/sdam/errors/post-42-LegacyNotPrimary.yml
|
|
1234
|
+
- spec/spec_tests/data/sdam/errors/post-42-NotPrimaryNoSecondaryOk.yml
|
|
1235
|
+
- spec/spec_tests/data/sdam/errors/post-42-NotPrimaryOrSecondary.yml
|
|
1236
|
+
- spec/spec_tests/data/sdam/errors/post-42-NotWritablePrimary.yml
|
|
1237
|
+
- spec/spec_tests/data/sdam/errors/post-42-PrimarySteppedDown.yml
|
|
1238
|
+
- spec/spec_tests/data/sdam/errors/post-42-ShutdownInProgress.yml
|
|
1239
|
+
- spec/spec_tests/data/sdam/errors/pre-42-InterruptedAtShutdown.yml
|
|
1240
|
+
- spec/spec_tests/data/sdam/errors/pre-42-InterruptedDueToReplStateChange.yml
|
|
1241
|
+
- spec/spec_tests/data/sdam/errors/pre-42-LegacyNotPrimary.yml
|
|
1242
|
+
- spec/spec_tests/data/sdam/errors/pre-42-NotPrimaryNoSecondaryOk.yml
|
|
1243
|
+
- spec/spec_tests/data/sdam/errors/pre-42-NotPrimaryOrSecondary.yml
|
|
1244
|
+
- spec/spec_tests/data/sdam/errors/pre-42-NotWritablePrimary.yml
|
|
1245
|
+
- spec/spec_tests/data/sdam/errors/pre-42-PrimarySteppedDown.yml
|
|
1246
|
+
- spec/spec_tests/data/sdam/errors/pre-42-ShutdownInProgress.yml
|
|
1247
|
+
- spec/spec_tests/data/sdam/errors/prefer-error-code.yml
|
|
1248
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-InterruptedAtShutdown.yml
|
|
1249
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-InterruptedDueToReplStateChange.yml
|
|
1250
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-NotPrimaryNoSecondaryOk.yml
|
|
1251
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-NotPrimaryOrSecondary.yml
|
|
1252
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-NotWritablePrimary.yml
|
|
1253
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-PrimarySteppedDown.yml
|
|
1254
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-ShutdownInProgress.yml
|
|
1255
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-InterruptedAtShutdown.yml
|
|
1256
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-InterruptedDueToReplStateChange.yml
|
|
1257
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-LegacyNotPrimary.yml
|
|
1258
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-NotPrimaryNoSecondaryOk.yml
|
|
1259
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-NotPrimaryOrSecondary.yml
|
|
1260
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-NotWritablePrimary.yml
|
|
1261
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-PrimarySteppedDown.yml
|
|
1262
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-ShutdownInProgress.yml
|
|
1263
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-network.yml
|
|
1264
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-timeout.yml
|
|
1265
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-InterruptedAtShutdown.yml
|
|
1266
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-InterruptedDueToReplStateChange.yml
|
|
1267
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-LegacyNotPrimary.yml
|
|
1268
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-NotPrimaryNoSecondaryOk.yml
|
|
1269
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-NotPrimaryOrSecondary.yml
|
|
1270
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-NotWritablePrimary.yml
|
|
1271
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-PrimarySteppedDown.yml
|
|
1272
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-ShutdownInProgress.yml
|
|
1273
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-network.yml
|
|
1274
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-timeout.yml
|
|
1275
|
+
- spec/spec_tests/data/sdam/errors/stale-topologyVersion-InterruptedAtShutdown.yml
|
|
1276
|
+
- spec/spec_tests/data/sdam/errors/stale-topologyVersion-InterruptedDueToReplStateChange.yml
|
|
1277
|
+
- spec/spec_tests/data/sdam/errors/stale-topologyVersion-LegacyNotPrimary.yml
|
|
1278
|
+
- spec/spec_tests/data/sdam/errors/stale-topologyVersion-NotPrimaryNoSecondaryOk.yml
|
|
1279
|
+
- spec/spec_tests/data/sdam/errors/stale-topologyVersion-NotPrimaryOrSecondary.yml
|
|
1280
|
+
- spec/spec_tests/data/sdam/errors/stale-topologyVersion-NotWritablePrimary.yml
|
|
1281
|
+
- spec/spec_tests/data/sdam/errors/stale-topologyVersion-PrimarySteppedDown.yml
|
|
1282
|
+
- spec/spec_tests/data/sdam/errors/stale-topologyVersion-ShutdownInProgress.yml
|
|
1283
|
+
- spec/spec_tests/data/sdam/errors/write_errors_ignored.yml
|
|
863
1284
|
- spec/spec_tests/data/sdam/rs/compatible.yml
|
|
864
1285
|
- spec/spec_tests/data/sdam/rs/compatible_unknown.yml
|
|
865
1286
|
- spec/spec_tests/data/sdam/rs/discover_arbiters.yml
|
|
1287
|
+
- spec/spec_tests/data/sdam/rs/discover_arbiters_replicaset.yml
|
|
1288
|
+
- spec/spec_tests/data/sdam/rs/discover_ghost.yml
|
|
1289
|
+
- spec/spec_tests/data/sdam/rs/discover_ghost_replicaset.yml
|
|
1290
|
+
- spec/spec_tests/data/sdam/rs/discover_hidden.yml
|
|
1291
|
+
- spec/spec_tests/data/sdam/rs/discover_hidden_replicaset.yml
|
|
866
1292
|
- spec/spec_tests/data/sdam/rs/discover_passives.yml
|
|
1293
|
+
- spec/spec_tests/data/sdam/rs/discover_passives_replicaset.yml
|
|
867
1294
|
- spec/spec_tests/data/sdam/rs/discover_primary.yml
|
|
1295
|
+
- spec/spec_tests/data/sdam/rs/discover_primary_replicaset.yml
|
|
1296
|
+
- spec/spec_tests/data/sdam/rs/discover_rsother.yml
|
|
1297
|
+
- spec/spec_tests/data/sdam/rs/discover_rsother_replicaset.yml
|
|
868
1298
|
- spec/spec_tests/data/sdam/rs/discover_secondary.yml
|
|
1299
|
+
- spec/spec_tests/data/sdam/rs/discover_secondary_replicaset.yml
|
|
869
1300
|
- spec/spec_tests/data/sdam/rs/discovery.yml
|
|
870
1301
|
- spec/spec_tests/data/sdam/rs/equal_electionids.yml
|
|
871
|
-
- spec/spec_tests/data/sdam/rs/ghost_discovered.yml
|
|
872
1302
|
- spec/spec_tests/data/sdam/rs/hosts_differ_from_seeds.yml
|
|
873
1303
|
- spec/spec_tests/data/sdam/rs/incompatible_arbiter.yml
|
|
874
1304
|
- spec/spec_tests/data/sdam/rs/incompatible_ghost.yml
|
|
@@ -893,51 +1323,77 @@ files:
|
|
|
893
1323
|
- spec/spec_tests/data/sdam/rs/primary_disconnect_setversion.yml
|
|
894
1324
|
- spec/spec_tests/data/sdam/rs/primary_hint_from_secondary_with_mismatched_me.yml
|
|
895
1325
|
- spec/spec_tests/data/sdam/rs/primary_mismatched_me.yml
|
|
1326
|
+
- spec/spec_tests/data/sdam/rs/primary_mismatched_me_not_removed.yml
|
|
896
1327
|
- spec/spec_tests/data/sdam/rs/primary_reports_new_member.yml
|
|
897
1328
|
- spec/spec_tests/data/sdam/rs/primary_to_no_primary_mismatched_me.yml
|
|
898
1329
|
- spec/spec_tests/data/sdam/rs/primary_wrong_set_name.yml
|
|
1330
|
+
- spec/spec_tests/data/sdam/rs/repeated.yml
|
|
1331
|
+
- spec/spec_tests/data/sdam/rs/replicaset_rsnp.yml
|
|
899
1332
|
- spec/spec_tests/data/sdam/rs/response_from_removed.yml
|
|
900
|
-
- spec/spec_tests/data/sdam/rs/
|
|
1333
|
+
- spec/spec_tests/data/sdam/rs/ruby_primary_address_change.yml
|
|
1334
|
+
- spec/spec_tests/data/sdam/rs/ruby_secondary_wrong_set_name_with_primary_second.yml
|
|
901
1335
|
- spec/spec_tests/data/sdam/rs/sec_not_auth.yml
|
|
902
1336
|
- spec/spec_tests/data/sdam/rs/secondary_ignore_ok_0.yml
|
|
903
1337
|
- spec/spec_tests/data/sdam/rs/secondary_mismatched_me.yml
|
|
904
1338
|
- spec/spec_tests/data/sdam/rs/secondary_wrong_set_name.yml
|
|
905
1339
|
- spec/spec_tests/data/sdam/rs/secondary_wrong_set_name_with_primary.yml
|
|
906
|
-
- spec/spec_tests/data/sdam/rs/secondary_wrong_set_name_with_primary_second.yml
|
|
907
1340
|
- spec/spec_tests/data/sdam/rs/setversion_without_electionid.yml
|
|
908
1341
|
- spec/spec_tests/data/sdam/rs/stepdown_change_set_name.yml
|
|
909
1342
|
- spec/spec_tests/data/sdam/rs/too_new.yml
|
|
910
1343
|
- spec/spec_tests/data/sdam/rs/too_old.yml
|
|
1344
|
+
- spec/spec_tests/data/sdam/rs/topology_version_equal.yml
|
|
1345
|
+
- spec/spec_tests/data/sdam/rs/topology_version_greater.yml
|
|
1346
|
+
- spec/spec_tests/data/sdam/rs/topology_version_less.yml
|
|
911
1347
|
- spec/spec_tests/data/sdam/rs/unexpected_mongos.yml
|
|
912
1348
|
- spec/spec_tests/data/sdam/rs/use_setversion_without_electionid.yml
|
|
913
1349
|
- spec/spec_tests/data/sdam/rs/wrong_set_name.yml
|
|
914
1350
|
- spec/spec_tests/data/sdam/sharded/compatible.yml
|
|
1351
|
+
- spec/spec_tests/data/sdam/sharded/discover_single_mongos.yml
|
|
915
1352
|
- spec/spec_tests/data/sdam/sharded/ls_timeout_mongos.yml
|
|
916
1353
|
- spec/spec_tests/data/sdam/sharded/mongos_disconnect.yml
|
|
917
1354
|
- spec/spec_tests/data/sdam/sharded/multiple_mongoses.yml
|
|
918
1355
|
- spec/spec_tests/data/sdam/sharded/non_mongos_removed.yml
|
|
919
1356
|
- spec/spec_tests/data/sdam/sharded/normalize_uri_case.yml
|
|
920
|
-
- spec/spec_tests/data/sdam/sharded/
|
|
1357
|
+
- spec/spec_tests/data/sdam/sharded/ruby_primary_different_address.yml
|
|
1358
|
+
- spec/spec_tests/data/sdam/sharded/ruby_primary_mismatched_me.yml
|
|
921
1359
|
- spec/spec_tests/data/sdam/sharded/too_new.yml
|
|
922
1360
|
- spec/spec_tests/data/sdam/sharded/too_old.yml
|
|
923
1361
|
- spec/spec_tests/data/sdam/single/compatible.yml
|
|
924
1362
|
- spec/spec_tests/data/sdam/single/direct_connection_external_ip.yml
|
|
925
1363
|
- spec/spec_tests/data/sdam/single/direct_connection_mongos.yml
|
|
1364
|
+
- spec/spec_tests/data/sdam/single/direct_connection_replicaset.yml
|
|
926
1365
|
- spec/spec_tests/data/sdam/single/direct_connection_rsarbiter.yml
|
|
927
1366
|
- spec/spec_tests/data/sdam/single/direct_connection_rsprimary.yml
|
|
928
1367
|
- spec/spec_tests/data/sdam/single/direct_connection_rssecondary.yml
|
|
929
|
-
- spec/spec_tests/data/sdam/single/direct_connection_slave.yml
|
|
930
1368
|
- spec/spec_tests/data/sdam/single/direct_connection_standalone.yml
|
|
1369
|
+
- spec/spec_tests/data/sdam/single/direct_connection_unavailable_seed.yml
|
|
1370
|
+
- spec/spec_tests/data/sdam/single/direct_connection_wrong_set_name.yml
|
|
1371
|
+
- spec/spec_tests/data/sdam/single/discover_standalone.yml
|
|
1372
|
+
- spec/spec_tests/data/sdam/single/discover_unavailable_seed.yml
|
|
931
1373
|
- spec/spec_tests/data/sdam/single/ls_timeout_standalone.yml
|
|
932
1374
|
- spec/spec_tests/data/sdam/single/not_ok_response.yml
|
|
1375
|
+
- spec/spec_tests/data/sdam/single/ruby_primary_different_address.yml
|
|
1376
|
+
- spec/spec_tests/data/sdam/single/ruby_primary_mismatched_me.yml
|
|
933
1377
|
- spec/spec_tests/data/sdam/single/standalone_removed.yml
|
|
1378
|
+
- spec/spec_tests/data/sdam/single/standalone_using_legacy_hello.yml
|
|
934
1379
|
- spec/spec_tests/data/sdam/single/too_new.yml
|
|
935
1380
|
- spec/spec_tests/data/sdam/single/too_old.yml
|
|
936
|
-
- spec/spec_tests/data/sdam/single/
|
|
1381
|
+
- spec/spec_tests/data/sdam/single/too_old_then_upgraded.yml
|
|
1382
|
+
- spec/spec_tests/data/sdam_integration/cancel-server-check.yml
|
|
1383
|
+
- spec/spec_tests/data/sdam_integration/connectTimeoutMS.yml
|
|
1384
|
+
- spec/spec_tests/data/sdam_integration/find-network-error.yml
|
|
1385
|
+
- spec/spec_tests/data/sdam_integration/find-shutdown-error.yml
|
|
1386
|
+
- spec/spec_tests/data/sdam_integration/hello-command-error.yml
|
|
1387
|
+
- spec/spec_tests/data/sdam_integration/hello-network-error.yml
|
|
1388
|
+
- spec/spec_tests/data/sdam_integration/hello-timeout.yml
|
|
1389
|
+
- spec/spec_tests/data/sdam_integration/insert-network-error.yml
|
|
1390
|
+
- spec/spec_tests/data/sdam_integration/insert-shutdown-error.yml
|
|
1391
|
+
- spec/spec_tests/data/sdam_integration/rediscover-quickly-after-step-down.yml
|
|
937
1392
|
- spec/spec_tests/data/sdam_monitoring/discovered_standalone.yml
|
|
938
1393
|
- spec/spec_tests/data/sdam_monitoring/replica_set_other_chain.yml
|
|
939
1394
|
- spec/spec_tests/data/sdam_monitoring/replica_set_other_change.yml
|
|
940
|
-
- spec/spec_tests/data/sdam_monitoring/
|
|
1395
|
+
- spec/spec_tests/data/sdam_monitoring/replica_set_primary_address_change.yml
|
|
1396
|
+
- spec/spec_tests/data/sdam_monitoring/replica_set_with_me_mismatch.yml
|
|
941
1397
|
- spec/spec_tests/data/sdam_monitoring/replica_set_with_no_primary.yml
|
|
942
1398
|
- spec/spec_tests/data/sdam_monitoring/replica_set_with_primary.yml
|
|
943
1399
|
- spec/spec_tests/data/sdam_monitoring/replica_set_with_primary_and_secondary.yml
|
|
@@ -947,6 +1403,8 @@ files:
|
|
|
947
1403
|
- spec/spec_tests/data/sdam_monitoring/required_replica_set.yml
|
|
948
1404
|
- spec/spec_tests/data/sdam_monitoring/standalone.yml
|
|
949
1405
|
- spec/spec_tests/data/sdam_monitoring/standalone_repeated.yml
|
|
1406
|
+
- spec/spec_tests/data/sdam_monitoring/standalone_suppress_equal_description_changes.yml
|
|
1407
|
+
- spec/spec_tests/data/sdam_monitoring/standalone_to_rs_with_me_mismatch.yml
|
|
950
1408
|
- spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/Nearest.yml
|
|
951
1409
|
- spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/Nearest_multiple.yml
|
|
952
1410
|
- spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/Nearest_non_matching.yml
|
|
@@ -991,6 +1449,8 @@ files:
|
|
|
991
1449
|
- spec/spec_tests/data/transactions/causal-consistency.yml
|
|
992
1450
|
- spec/spec_tests/data/transactions/commit.yml
|
|
993
1451
|
- spec/spec_tests/data/transactions/count.yml
|
|
1452
|
+
- spec/spec_tests/data/transactions/create-collection.yml
|
|
1453
|
+
- spec/spec_tests/data/transactions/create-index.yml
|
|
994
1454
|
- spec/spec_tests/data/transactions/delete.yml
|
|
995
1455
|
- spec/spec_tests/data/transactions/error-labels.yml
|
|
996
1456
|
- spec/spec_tests/data/transactions/errors-client.yml
|
|
@@ -1006,10 +1466,13 @@ files:
|
|
|
1006
1466
|
- spec/spec_tests/data/transactions/read-concern.yml
|
|
1007
1467
|
- spec/spec_tests/data/transactions/read-pref.yml
|
|
1008
1468
|
- spec/spec_tests/data/transactions/reads.yml
|
|
1469
|
+
- spec/spec_tests/data/transactions/retryable-abort-errorLabels.yml
|
|
1009
1470
|
- spec/spec_tests/data/transactions/retryable-abort.yml
|
|
1471
|
+
- spec/spec_tests/data/transactions/retryable-commit-errorLabels.yml
|
|
1010
1472
|
- spec/spec_tests/data/transactions/retryable-commit.yml
|
|
1011
1473
|
- spec/spec_tests/data/transactions/retryable-writes.yml
|
|
1012
1474
|
- spec/spec_tests/data/transactions/run-command.yml
|
|
1475
|
+
- spec/spec_tests/data/transactions/transaction-options-repl.yml
|
|
1013
1476
|
- spec/spec_tests/data/transactions/transaction-options.yml
|
|
1014
1477
|
- spec/spec_tests/data/transactions/update.yml
|
|
1015
1478
|
- spec/spec_tests/data/transactions/write-concern.yml
|
|
@@ -1022,27 +1485,67 @@ files:
|
|
|
1022
1485
|
- spec/spec_tests/data/transactions_api/commit-writeconcernerror.yml
|
|
1023
1486
|
- spec/spec_tests/data/transactions_api/commit.yml
|
|
1024
1487
|
- spec/spec_tests/data/transactions_api/transaction-options.yml
|
|
1488
|
+
- spec/spec_tests/data/transactions_unified/mongos-unpin.yml
|
|
1489
|
+
- spec/spec_tests/data/unified/valid-fail/operation-failure.yml
|
|
1490
|
+
- spec/spec_tests/data/unified/valid-pass/poc-change-streams.yml
|
|
1491
|
+
- spec/spec_tests/data/unified/valid-pass/poc-command-monitoring.yml
|
|
1492
|
+
- spec/spec_tests/data/unified/valid-pass/poc-crud.yml
|
|
1493
|
+
- spec/spec_tests/data/unified/valid-pass/poc-gridfs.yml
|
|
1494
|
+
- spec/spec_tests/data/unified/valid-pass/poc-retryable-reads.yml
|
|
1495
|
+
- spec/spec_tests/data/unified/valid-pass/poc-retryable-writes.yml
|
|
1496
|
+
- spec/spec_tests/data/unified/valid-pass/poc-sessions.yml
|
|
1497
|
+
- spec/spec_tests/data/unified/valid-pass/poc-transactions-convenient-api.yml
|
|
1498
|
+
- spec/spec_tests/data/unified/valid-pass/poc-transactions-mongos-pin-auto.yml
|
|
1499
|
+
- spec/spec_tests/data/unified/valid-pass/poc-transactions.yml
|
|
1025
1500
|
- spec/spec_tests/data/uri_options/auth-options.yml
|
|
1026
1501
|
- spec/spec_tests/data/uri_options/compression-options.yml
|
|
1027
1502
|
- spec/spec_tests/data/uri_options/concern-options.yml
|
|
1028
1503
|
- spec/spec_tests/data/uri_options/connection-options.yml
|
|
1029
1504
|
- spec/spec_tests/data/uri_options/connection-pool-options.yml
|
|
1030
1505
|
- spec/spec_tests/data/uri_options/read-preference-options.yml
|
|
1506
|
+
- spec/spec_tests/data/uri_options/ruby-auth-options.yml
|
|
1507
|
+
- spec/spec_tests/data/uri_options/ruby-connection-options.yml
|
|
1031
1508
|
- spec/spec_tests/data/uri_options/tls-options.yml
|
|
1509
|
+
- spec/spec_tests/data/versioned_api/crud-api-version-1-strict.yml
|
|
1510
|
+
- spec/spec_tests/data/versioned_api/crud-api-version-1.yml
|
|
1511
|
+
- spec/spec_tests/data/versioned_api/runcommand-helper-no-api-version-declared.yml
|
|
1512
|
+
- spec/spec_tests/data/versioned_api/test-commands-deprecation-errors.yml
|
|
1513
|
+
- spec/spec_tests/data/versioned_api/test-commands-strict-mode.yml
|
|
1514
|
+
- spec/spec_tests/data/versioned_api/transaction-handling.yml
|
|
1032
1515
|
- spec/spec_tests/dns_seedlist_discovery_spec.rb
|
|
1033
1516
|
- spec/spec_tests/gridfs_spec.rb
|
|
1034
1517
|
- spec/spec_tests/max_staleness_spec.rb
|
|
1518
|
+
- spec/spec_tests/read_write_concern_connection_string_spec.rb
|
|
1519
|
+
- spec/spec_tests/read_write_concern_document_spec.rb
|
|
1520
|
+
- spec/spec_tests/read_write_concern_operaton_spec.rb
|
|
1035
1521
|
- spec/spec_tests/retryable_reads_spec.rb
|
|
1036
1522
|
- spec/spec_tests/retryable_writes_spec.rb
|
|
1523
|
+
- spec/spec_tests/sdam_integration_spec.rb
|
|
1037
1524
|
- spec/spec_tests/sdam_monitoring_spec.rb
|
|
1038
1525
|
- spec/spec_tests/sdam_spec.rb
|
|
1039
1526
|
- spec/spec_tests/server_selection_rtt_spec.rb
|
|
1040
1527
|
- spec/spec_tests/server_selection_spec.rb
|
|
1041
1528
|
- spec/spec_tests/transactions_api_spec.rb
|
|
1042
1529
|
- spec/spec_tests/transactions_spec.rb
|
|
1530
|
+
- spec/spec_tests/transactions_unified_spec.rb
|
|
1531
|
+
- spec/spec_tests/unified_spec.rb
|
|
1043
1532
|
- spec/spec_tests/uri_options_spec.rb
|
|
1533
|
+
- spec/spec_tests/versioned_api_spec.rb
|
|
1534
|
+
- spec/stress/cleanup_spec.rb
|
|
1535
|
+
- spec/stress/connection_pool_stress_spec.rb
|
|
1536
|
+
- spec/stress/connection_pool_timing_spec.rb
|
|
1537
|
+
- spec/stress/fork_reconnect_stress_spec.rb
|
|
1538
|
+
- spec/stress/push_monitor_close_spec.rb
|
|
1044
1539
|
- spec/support/authorization.rb
|
|
1540
|
+
- spec/support/aws_utils.rb
|
|
1541
|
+
- spec/support/aws_utils/base.rb
|
|
1542
|
+
- spec/support/aws_utils/inspector.rb
|
|
1543
|
+
- spec/support/aws_utils/orchestrator.rb
|
|
1544
|
+
- spec/support/aws_utils/provisioner.rb
|
|
1545
|
+
- spec/support/background_thread_registry.rb
|
|
1045
1546
|
- spec/support/certificates/README.md
|
|
1547
|
+
- spec/support/certificates/atlas-ocsp-ca.crt
|
|
1548
|
+
- spec/support/certificates/atlas-ocsp.crt
|
|
1046
1549
|
- spec/support/certificates/ca.crt
|
|
1047
1550
|
- spec/support/certificates/client-encrypted.key
|
|
1048
1551
|
- spec/support/certificates/client-int.crt
|
|
@@ -1050,6 +1553,9 @@ files:
|
|
|
1050
1553
|
- spec/support/certificates/client-second-level.crt
|
|
1051
1554
|
- spec/support/certificates/client-second-level.key
|
|
1052
1555
|
- spec/support/certificates/client-second-level.pem
|
|
1556
|
+
- spec/support/certificates/client-x509.crt
|
|
1557
|
+
- spec/support/certificates/client-x509.key
|
|
1558
|
+
- spec/support/certificates/client-x509.pem
|
|
1053
1559
|
- spec/support/certificates/client.crt
|
|
1054
1560
|
- spec/support/certificates/client.key
|
|
1055
1561
|
- spec/support/certificates/client.pem
|
|
@@ -1063,54 +1569,56 @@ files:
|
|
|
1063
1569
|
- spec/support/certificates/server-second-level.key
|
|
1064
1570
|
- spec/support/certificates/server-second-level.pem
|
|
1065
1571
|
- spec/support/certificates/server.pem
|
|
1066
|
-
- spec/support/change_streams.rb
|
|
1067
|
-
- spec/support/change_streams/operation.rb
|
|
1068
1572
|
- spec/support/client_registry.rb
|
|
1069
1573
|
- spec/support/client_registry_macros.rb
|
|
1070
|
-
- spec/support/cluster_config.rb
|
|
1071
1574
|
- spec/support/cluster_tools.rb
|
|
1072
|
-
- spec/support/cmap.rb
|
|
1073
|
-
- spec/support/cmap/verifier.rb
|
|
1074
|
-
- spec/support/command_monitoring.rb
|
|
1075
1575
|
- spec/support/common_shortcuts.rb
|
|
1076
|
-
- spec/support/connection_string.rb
|
|
1077
1576
|
- spec/support/constraints.rb
|
|
1078
|
-
- spec/support/
|
|
1079
|
-
- spec/support/
|
|
1080
|
-
- spec/support/
|
|
1081
|
-
- spec/support/
|
|
1082
|
-
- spec/support/
|
|
1083
|
-
- spec/support/
|
|
1084
|
-
- spec/support/
|
|
1085
|
-
- spec/support/
|
|
1086
|
-
- spec/support/
|
|
1577
|
+
- spec/support/crypt.rb
|
|
1578
|
+
- spec/support/crypt/corpus/corpus-key-aws.json
|
|
1579
|
+
- spec/support/crypt/corpus/corpus-key-local.json
|
|
1580
|
+
- spec/support/crypt/corpus/corpus-schema.json
|
|
1581
|
+
- spec/support/crypt/corpus/corpus.json
|
|
1582
|
+
- spec/support/crypt/corpus/corpus_encrypted.json
|
|
1583
|
+
- spec/support/crypt/data_keys/key_document_aws.json
|
|
1584
|
+
- spec/support/crypt/data_keys/key_document_local.json
|
|
1585
|
+
- spec/support/crypt/external/external-key.json
|
|
1586
|
+
- spec/support/crypt/external/external-schema.json
|
|
1587
|
+
- spec/support/crypt/limits/limits-doc.json
|
|
1588
|
+
- spec/support/crypt/limits/limits-key.json
|
|
1589
|
+
- spec/support/crypt/limits/limits-schema.json
|
|
1590
|
+
- spec/support/crypt/schema_maps/schema_map_aws.json
|
|
1591
|
+
- spec/support/crypt/schema_maps/schema_map_aws_key_alt_names.json
|
|
1592
|
+
- spec/support/crypt/schema_maps/schema_map_local.json
|
|
1593
|
+
- spec/support/crypt/schema_maps/schema_map_local_key_alt_names.json
|
|
1594
|
+
- spec/support/dns.rb
|
|
1087
1595
|
- spec/support/event_subscriber.rb
|
|
1088
|
-
- spec/support/gridfs.rb
|
|
1089
1596
|
- spec/support/json_ext_formatter.rb
|
|
1090
|
-
- spec/support/
|
|
1597
|
+
- spec/support/keyword_struct.rb
|
|
1598
|
+
- spec/support/local_resource_registry.rb
|
|
1091
1599
|
- spec/support/matchers.rb
|
|
1092
1600
|
- spec/support/monitoring_ext.rb
|
|
1601
|
+
- spec/support/ocsp
|
|
1093
1602
|
- spec/support/primary_socket.rb
|
|
1094
1603
|
- spec/support/sdam_formatter_integration.rb
|
|
1095
|
-
- spec/support/
|
|
1096
|
-
- spec/support/
|
|
1097
|
-
- spec/support/server_selection.rb
|
|
1098
|
-
- spec/support/server_selection_rtt.rb
|
|
1604
|
+
- spec/support/session_registry.rb
|
|
1605
|
+
- spec/support/shared/app_metadata.rb
|
|
1099
1606
|
- spec/support/shared/protocol.rb
|
|
1607
|
+
- spec/support/shared/scram_conversation.rb
|
|
1100
1608
|
- spec/support/shared/server_selector.rb
|
|
1101
1609
|
- spec/support/shared/session.rb
|
|
1102
1610
|
- spec/support/spec_config.rb
|
|
1103
1611
|
- spec/support/spec_setup.rb
|
|
1104
|
-
- spec/support/transactions.rb
|
|
1105
|
-
- spec/support/transactions/context.rb
|
|
1106
|
-
- spec/support/transactions/operation.rb
|
|
1107
|
-
- spec/support/transactions/spec.rb
|
|
1108
|
-
- spec/support/transactions/test.rb
|
|
1109
1612
|
- spec/support/utils.rb
|
|
1110
|
-
homepage:
|
|
1613
|
+
homepage: https://docs.mongodb.com/ruby-driver/
|
|
1111
1614
|
licenses:
|
|
1112
1615
|
- Apache-2.0
|
|
1113
|
-
metadata:
|
|
1616
|
+
metadata:
|
|
1617
|
+
bug_tracker_uri: https://jira.mongodb.org/projects/RUBY
|
|
1618
|
+
changelog_uri: https://github.com/mongodb/mongo-ruby-driver/releases
|
|
1619
|
+
documentation_uri: https://docs.mongodb.com/ruby-driver/
|
|
1620
|
+
homepage_uri: https://docs.mongodb.com/ruby-driver/
|
|
1621
|
+
source_code_uri: https://github.com/mongodb/mongo-ruby-driver
|
|
1114
1622
|
post_install_message:
|
|
1115
1623
|
rdoc_options: []
|
|
1116
1624
|
require_paths:
|
|
@@ -1119,689 +1627,1124 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
1119
1627
|
requirements:
|
|
1120
1628
|
- - ">="
|
|
1121
1629
|
- !ruby/object:Gem::Version
|
|
1122
|
-
version: '
|
|
1630
|
+
version: '2.3'
|
|
1123
1631
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
1124
1632
|
requirements:
|
|
1125
1633
|
- - ">="
|
|
1126
1634
|
- !ruby/object:Gem::Version
|
|
1127
1635
|
version: '0'
|
|
1128
1636
|
requirements: []
|
|
1129
|
-
|
|
1637
|
+
rubyforge_project:
|
|
1638
|
+
rubygems_version: 2.7.6.2
|
|
1130
1639
|
signing_key:
|
|
1131
1640
|
specification_version: 4
|
|
1132
1641
|
summary: Ruby driver for MongoDB
|
|
1133
1642
|
test_files:
|
|
1134
|
-
- spec/
|
|
1643
|
+
- spec/NOTES.aws-auth.md
|
|
1644
|
+
- spec/README.aws-auth.md
|
|
1135
1645
|
- spec/README.md
|
|
1136
|
-
- spec/
|
|
1137
|
-
- spec/atlas/operations_spec.rb
|
|
1646
|
+
- spec/USERS.md
|
|
1138
1647
|
- spec/atlas/atlas_connectivity_spec.rb
|
|
1139
|
-
- spec/
|
|
1140
|
-
- spec/
|
|
1141
|
-
- spec/
|
|
1648
|
+
- spec/atlas/operations_spec.rb
|
|
1649
|
+
- spec/integration/auth_spec.rb
|
|
1650
|
+
- spec/integration/awaited_ismaster_spec.rb
|
|
1651
|
+
- spec/integration/aws_auth_request_spec.rb
|
|
1652
|
+
- spec/integration/aws_credentials_retriever_spec.rb
|
|
1653
|
+
- spec/integration/bson_symbol_spec.rb
|
|
1654
|
+
- spec/integration/bulk_insert_spec.rb
|
|
1655
|
+
- spec/integration/bulk_write_error_message_spec.rb
|
|
1656
|
+
- spec/integration/bulk_write_spec.rb
|
|
1657
|
+
- spec/integration/change_stream_examples_spec.rb
|
|
1658
|
+
- spec/integration/change_stream_spec.rb
|
|
1659
|
+
- spec/integration/check_clean_slate_spec.rb
|
|
1660
|
+
- spec/integration/client_authentication_options_spec.rb
|
|
1661
|
+
- spec/integration/client_connectivity_spec.rb
|
|
1662
|
+
- spec/integration/client_construction_aws_auth_spec.rb
|
|
1663
|
+
- spec/integration/client_construction_spec.rb
|
|
1664
|
+
- spec/integration/client_side_encryption/auto_encryption_bulk_writes_spec.rb
|
|
1665
|
+
- spec/integration/client_side_encryption/auto_encryption_command_monitoring_spec.rb
|
|
1666
|
+
- spec/integration/client_side_encryption/auto_encryption_mongocryptd_spawn_spec.rb
|
|
1667
|
+
- spec/integration/client_side_encryption/auto_encryption_old_wire_version_spec.rb
|
|
1668
|
+
- spec/integration/client_side_encryption/auto_encryption_reconnect_spec.rb
|
|
1669
|
+
- spec/integration/client_side_encryption/auto_encryption_spec.rb
|
|
1670
|
+
- spec/integration/client_side_encryption/bson_size_limit_spec.rb
|
|
1671
|
+
- spec/integration/client_side_encryption/bypass_mongocryptd_spawn_spec.rb
|
|
1672
|
+
- spec/integration/client_side_encryption/client_close_spec.rb
|
|
1673
|
+
- spec/integration/client_side_encryption/corpus_spec.rb
|
|
1674
|
+
- spec/integration/client_side_encryption/custom_endpoint_spec.rb
|
|
1675
|
+
- spec/integration/client_side_encryption/data_key_spec.rb
|
|
1676
|
+
- spec/integration/client_side_encryption/explicit_encryption_spec.rb
|
|
1677
|
+
- spec/integration/client_side_encryption/external_key_vault_spec.rb
|
|
1678
|
+
- spec/integration/client_side_encryption/views_spec.rb
|
|
1679
|
+
- spec/integration/client_spec.rb
|
|
1680
|
+
- spec/integration/client_update_spec.rb
|
|
1681
|
+
- spec/integration/collection_indexes_prose_spec.rb
|
|
1682
|
+
- spec/integration/command_monitoring_spec.rb
|
|
1683
|
+
- spec/integration/command_spec.rb
|
|
1684
|
+
- spec/integration/connect_single_rs_name_spec.rb
|
|
1685
|
+
- spec/integration/connection_pool_populator_spec.rb
|
|
1686
|
+
- spec/integration/connection_spec.rb
|
|
1687
|
+
- spec/integration/crud_spec.rb
|
|
1688
|
+
- spec/integration/cursor_reaping_spec.rb
|
|
1689
|
+
- spec/integration/docs_examples_spec.rb
|
|
1690
|
+
- spec/integration/error_detection_spec.rb
|
|
1691
|
+
- spec/integration/fork_reconnect_spec.rb
|
|
1692
|
+
- spec/integration/get_more_spec.rb
|
|
1693
|
+
- spec/integration/grid_fs_bucket_spec.rb
|
|
1694
|
+
- spec/integration/heartbeat_events_spec.rb
|
|
1695
|
+
- spec/integration/mmapv1_spec.rb
|
|
1696
|
+
- spec/integration/mongos_pinning_spec.rb
|
|
1697
|
+
- spec/integration/ocsp_connectivity_spec.rb
|
|
1698
|
+
- spec/integration/ocsp_verifier_cache_spec.rb
|
|
1699
|
+
- spec/integration/ocsp_verifier_spec.rb
|
|
1700
|
+
- spec/integration/operation_failure_code_spec.rb
|
|
1701
|
+
- spec/integration/operation_failure_message_spec.rb
|
|
1702
|
+
- spec/integration/query_cache_spec.rb
|
|
1703
|
+
- spec/integration/query_cache_transactions_spec.rb
|
|
1704
|
+
- spec/integration/read_concern_spec.rb
|
|
1705
|
+
- spec/integration/read_preference_spec.rb
|
|
1706
|
+
- spec/integration/reconnect_spec.rb
|
|
1707
|
+
- spec/integration/retryable_errors_spec.rb
|
|
1708
|
+
- spec/integration/retryable_writes/retryable_writes_36_and_older_spec.rb
|
|
1709
|
+
- spec/integration/retryable_writes/retryable_writes_40_and_newer_spec.rb
|
|
1710
|
+
- spec/integration/retryable_writes/shared/adds_diagnostics.rb
|
|
1711
|
+
- spec/integration/retryable_writes/shared/does_not_support_retries.rb
|
|
1712
|
+
- spec/integration/retryable_writes/shared/only_supports_legacy_retries.rb
|
|
1713
|
+
- spec/integration/retryable_writes/shared/performs_legacy_retries.rb
|
|
1714
|
+
- spec/integration/retryable_writes/shared/performs_modern_retries.rb
|
|
1715
|
+
- spec/integration/retryable_writes/shared/performs_no_retries.rb
|
|
1716
|
+
- spec/integration/retryable_writes/shared/supports_legacy_retries.rb
|
|
1717
|
+
- spec/integration/retryable_writes/shared/supports_modern_retries.rb
|
|
1718
|
+
- spec/integration/retryable_writes/shared/supports_retries.rb
|
|
1719
|
+
- spec/integration/retryable_writes_errors_spec.rb
|
|
1720
|
+
- spec/integration/sdam_error_handling_spec.rb
|
|
1721
|
+
- spec/integration/sdam_events_spec.rb
|
|
1722
|
+
- spec/integration/sdam_prose_spec.rb
|
|
1723
|
+
- spec/integration/secondary_reads_spec.rb
|
|
1724
|
+
- spec/integration/server_description_spec.rb
|
|
1725
|
+
- spec/integration/server_monitor_spec.rb
|
|
1726
|
+
- spec/integration/server_selection_spec.rb
|
|
1727
|
+
- spec/integration/server_selector_spec.rb
|
|
1728
|
+
- spec/integration/server_spec.rb
|
|
1729
|
+
- spec/integration/shell_examples_spec.rb
|
|
1730
|
+
- spec/integration/size_limit_spec.rb
|
|
1731
|
+
- spec/integration/snappy_compression_spec.rb
|
|
1732
|
+
- spec/integration/srv_monitoring_spec.rb
|
|
1733
|
+
- spec/integration/srv_spec.rb
|
|
1734
|
+
- spec/integration/ssl_uri_options_spec.rb
|
|
1735
|
+
- spec/integration/step_down_spec.rb
|
|
1736
|
+
- spec/integration/time_zone_querying_spec.rb
|
|
1737
|
+
- spec/integration/transactions_api_examples_spec.rb
|
|
1738
|
+
- spec/integration/transactions_examples_spec.rb
|
|
1739
|
+
- spec/integration/truncated_utf8_spec.rb
|
|
1740
|
+
- spec/integration/versioned_api_examples_spec.rb
|
|
1741
|
+
- spec/integration/x509_auth_spec.rb
|
|
1742
|
+
- spec/integration/zlib_compression_spec.rb
|
|
1743
|
+
- spec/integration/zstd_compression_spec.rb
|
|
1744
|
+
- spec/kerberos/kerberos_spec.rb
|
|
1745
|
+
- spec/lite_spec_helper.rb
|
|
1746
|
+
- spec/mongo/address/ipv4_spec.rb
|
|
1747
|
+
- spec/mongo/address/ipv6_spec.rb
|
|
1748
|
+
- spec/mongo/address/unix_spec.rb
|
|
1749
|
+
- spec/mongo/address/validator_spec.rb
|
|
1750
|
+
- spec/mongo/address_spec.rb
|
|
1751
|
+
- spec/mongo/auth/aws/request_region_spec.rb
|
|
1752
|
+
- spec/mongo/auth/aws/request_spec.rb
|
|
1753
|
+
- spec/mongo/auth/cr_spec.rb
|
|
1754
|
+
- spec/mongo/auth/gssapi/conversation_spec.rb
|
|
1755
|
+
- spec/mongo/auth/invalid_mechanism_spec.rb
|
|
1756
|
+
- spec/mongo/auth/ldap/conversation_spec.rb
|
|
1757
|
+
- spec/mongo/auth/ldap_spec.rb
|
|
1758
|
+
- spec/mongo/auth/scram/conversation_spec.rb
|
|
1759
|
+
- spec/mongo/auth/scram256/conversation_spec.rb
|
|
1760
|
+
- spec/mongo/auth/scram_negotiation_spec.rb
|
|
1761
|
+
- spec/mongo/auth/scram_spec.rb
|
|
1762
|
+
- spec/mongo/auth/stringprep/profiles/sasl_spec.rb
|
|
1763
|
+
- spec/mongo/auth/stringprep_spec.rb
|
|
1764
|
+
- spec/mongo/auth/user/view_spec.rb
|
|
1765
|
+
- spec/mongo/auth/user_spec.rb
|
|
1766
|
+
- spec/mongo/auth/x509/conversation_spec.rb
|
|
1767
|
+
- spec/mongo/auth/x509_spec.rb
|
|
1768
|
+
- spec/mongo/auth_spec.rb
|
|
1769
|
+
- spec/mongo/bson_spec.rb
|
|
1770
|
+
- spec/mongo/bulk_write/ordered_combiner_spec.rb
|
|
1771
|
+
- spec/mongo/bulk_write/result_spec.rb
|
|
1772
|
+
- spec/mongo/bulk_write/unordered_combiner_spec.rb
|
|
1773
|
+
- spec/mongo/bulk_write_spec.rb
|
|
1774
|
+
- spec/mongo/caching_cursor_spec.rb
|
|
1775
|
+
- spec/mongo/client_construction_spec.rb
|
|
1776
|
+
- spec/mongo/client_encryption_spec.rb
|
|
1777
|
+
- spec/mongo/client_spec.rb
|
|
1778
|
+
- spec/mongo/cluster/cursor_reaper_spec.rb
|
|
1779
|
+
- spec/mongo/cluster/periodic_executor_spec.rb
|
|
1780
|
+
- spec/mongo/cluster/socket_reaper_spec.rb
|
|
1781
|
+
- spec/mongo/cluster/topology/replica_set_spec.rb
|
|
1782
|
+
- spec/mongo/cluster/topology/sharded_spec.rb
|
|
1783
|
+
- spec/mongo/cluster/topology/single_spec.rb
|
|
1784
|
+
- spec/mongo/cluster/topology/unknown_spec.rb
|
|
1785
|
+
- spec/mongo/cluster/topology_spec.rb
|
|
1786
|
+
- spec/mongo/cluster_spec.rb
|
|
1787
|
+
- spec/mongo/cluster_time_spec.rb
|
|
1788
|
+
- spec/mongo/collection/view/aggregation_spec.rb
|
|
1789
|
+
- spec/mongo/collection/view/builder/find_command_spec.rb
|
|
1790
|
+
- spec/mongo/collection/view/builder/flags_spec.rb
|
|
1791
|
+
- spec/mongo/collection/view/builder/modifiers_spec.rb
|
|
1792
|
+
- spec/mongo/collection/view/builder/op_query_spec.rb
|
|
1793
|
+
- spec/mongo/collection/view/change_stream_resume_spec.rb
|
|
1794
|
+
- spec/mongo/collection/view/change_stream_spec.rb
|
|
1795
|
+
- spec/mongo/collection/view/explainable_spec.rb
|
|
1796
|
+
- spec/mongo/collection/view/immutable_spec.rb
|
|
1797
|
+
- spec/mongo/collection/view/iterable_spec.rb
|
|
1798
|
+
- spec/mongo/collection/view/map_reduce_spec.rb
|
|
1799
|
+
- spec/mongo/collection/view/readable_spec.rb
|
|
1800
|
+
- spec/mongo/collection/view/writable_spec.rb
|
|
1801
|
+
- spec/mongo/collection/view_spec.rb
|
|
1802
|
+
- spec/mongo/collection_crud_spec.rb
|
|
1803
|
+
- spec/mongo/collection_ddl_spec.rb
|
|
1804
|
+
- spec/mongo/collection_spec.rb
|
|
1805
|
+
- spec/mongo/crypt/auto_decryption_context_spec.rb
|
|
1806
|
+
- spec/mongo/crypt/auto_encrypter_spec.rb
|
|
1807
|
+
- spec/mongo/crypt/auto_encryption_context_spec.rb
|
|
1808
|
+
- spec/mongo/crypt/binary_spec.rb
|
|
1809
|
+
- spec/mongo/crypt/binding/binary_spec.rb
|
|
1810
|
+
- spec/mongo/crypt/binding/context_spec.rb
|
|
1811
|
+
- spec/mongo/crypt/binding/helpers_spec.rb
|
|
1812
|
+
- spec/mongo/crypt/binding/mongocrypt_spec.rb
|
|
1813
|
+
- spec/mongo/crypt/binding/status_spec.rb
|
|
1814
|
+
- spec/mongo/crypt/binding/version_spec.rb
|
|
1815
|
+
- spec/mongo/crypt/binding_unloaded_spec.rb
|
|
1816
|
+
- spec/mongo/crypt/data_key_context_spec.rb
|
|
1817
|
+
- spec/mongo/crypt/encryption_io_spec.rb
|
|
1818
|
+
- spec/mongo/crypt/explicit_decryption_context_spec.rb
|
|
1819
|
+
- spec/mongo/crypt/explicit_encryption_context_spec.rb
|
|
1820
|
+
- spec/mongo/crypt/handle_spec.rb
|
|
1821
|
+
- spec/mongo/crypt/helpers/mongo_crypt_spec_helper.rb
|
|
1822
|
+
- spec/mongo/crypt/status_spec.rb
|
|
1823
|
+
- spec/mongo/cursor/builder/get_more_command_spec.rb
|
|
1824
|
+
- spec/mongo/cursor/builder/op_get_more_spec.rb
|
|
1825
|
+
- spec/mongo/cursor/builder/op_kill_cursors_spec.rb
|
|
1826
|
+
- spec/mongo/cursor_spec.rb
|
|
1827
|
+
- spec/mongo/database_spec.rb
|
|
1828
|
+
- spec/mongo/dbref_spec.rb
|
|
1829
|
+
- spec/mongo/distinguishing_semaphore_spec.rb
|
|
1830
|
+
- spec/mongo/error/bulk_write_error_spec.rb
|
|
1831
|
+
- spec/mongo/error/crypt_error_spec.rb
|
|
1832
|
+
- spec/mongo/error/max_bson_size_spec.rb
|
|
1833
|
+
- spec/mongo/error/no_server_available_spec.rb
|
|
1834
|
+
- spec/mongo/error/notable_spec.rb
|
|
1835
|
+
- spec/mongo/error/operation_failure_heavy_spec.rb
|
|
1836
|
+
- spec/mongo/error/operation_failure_spec.rb
|
|
1837
|
+
- spec/mongo/error/parser_spec.rb
|
|
1838
|
+
- spec/mongo/error/unsupported_option_spec.rb
|
|
1839
|
+
- spec/mongo/event/publisher_spec.rb
|
|
1840
|
+
- spec/mongo/event/subscriber_spec.rb
|
|
1841
|
+
- spec/mongo/grid/file/chunk_spec.rb
|
|
1842
|
+
- spec/mongo/grid/file/info_spec.rb
|
|
1843
|
+
- spec/mongo/grid/file_spec.rb
|
|
1844
|
+
- spec/mongo/grid/fs_bucket_spec.rb
|
|
1845
|
+
- spec/mongo/grid/stream/read_spec.rb
|
|
1846
|
+
- spec/mongo/grid/stream/write_spec.rb
|
|
1847
|
+
- spec/mongo/grid/stream_spec.rb
|
|
1848
|
+
- spec/mongo/id_spec.rb
|
|
1849
|
+
- spec/mongo/index/view_spec.rb
|
|
1850
|
+
- spec/mongo/lint_spec.rb
|
|
1851
|
+
- spec/mongo/logger_spec.rb
|
|
1852
|
+
- spec/mongo/monitoring/command_log_subscriber_spec.rb
|
|
1853
|
+
- spec/mongo/monitoring/event/cmap/connection_check_out_failed_spec.rb
|
|
1854
|
+
- spec/mongo/monitoring/event/cmap/connection_check_out_started_spec.rb
|
|
1855
|
+
- spec/mongo/monitoring/event/cmap/connection_checked_in_spec.rb
|
|
1856
|
+
- spec/mongo/monitoring/event/cmap/connection_checked_out_spec.rb
|
|
1857
|
+
- spec/mongo/monitoring/event/cmap/connection_closed_spec.rb
|
|
1858
|
+
- spec/mongo/monitoring/event/cmap/connection_created_spec.rb
|
|
1859
|
+
- spec/mongo/monitoring/event/cmap/connection_ready_spec.rb
|
|
1860
|
+
- spec/mongo/monitoring/event/cmap/pool_cleared_spec.rb
|
|
1861
|
+
- spec/mongo/monitoring/event/cmap/pool_closed_spec.rb
|
|
1862
|
+
- spec/mongo/monitoring/event/cmap/pool_created_spec.rb
|
|
1863
|
+
- spec/mongo/monitoring/event/command_failed_spec.rb
|
|
1864
|
+
- spec/mongo/monitoring/event/command_started_spec.rb
|
|
1865
|
+
- spec/mongo/monitoring/event/command_succeeded_spec.rb
|
|
1866
|
+
- spec/mongo/monitoring/event/secure_spec.rb
|
|
1867
|
+
- spec/mongo/monitoring/event/server_closed_spec.rb
|
|
1868
|
+
- spec/mongo/monitoring/event/server_description_changed_spec.rb
|
|
1869
|
+
- spec/mongo/monitoring/event/server_heartbeat_failed_spec.rb
|
|
1870
|
+
- spec/mongo/monitoring/event/server_heartbeat_started_spec.rb
|
|
1871
|
+
- spec/mongo/monitoring/event/server_heartbeat_succeeded_spec.rb
|
|
1872
|
+
- spec/mongo/monitoring/event/server_opening_spec.rb
|
|
1873
|
+
- spec/mongo/monitoring/event/topology_changed_spec.rb
|
|
1874
|
+
- spec/mongo/monitoring/event/topology_closed_spec.rb
|
|
1875
|
+
- spec/mongo/monitoring/event/topology_opening_spec.rb
|
|
1876
|
+
- spec/mongo/monitoring_spec.rb
|
|
1877
|
+
- spec/mongo/operation/aggregate/result_spec.rb
|
|
1878
|
+
- spec/mongo/operation/aggregate_spec.rb
|
|
1879
|
+
- spec/mongo/operation/collections_info_spec.rb
|
|
1880
|
+
- spec/mongo/operation/command_spec.rb
|
|
1881
|
+
- spec/mongo/operation/create_index_spec.rb
|
|
1882
|
+
- spec/mongo/operation/create_user_spec.rb
|
|
1883
|
+
- spec/mongo/operation/delete/bulk_spec.rb
|
|
1884
|
+
- spec/mongo/operation/delete/command_spec.rb
|
|
1885
|
+
- spec/mongo/operation/delete/op_msg_spec.rb
|
|
1886
|
+
- spec/mongo/operation/delete_spec.rb
|
|
1887
|
+
- spec/mongo/operation/drop_index_spec.rb
|
|
1888
|
+
- spec/mongo/operation/find/legacy_spec.rb
|
|
1889
|
+
- spec/mongo/operation/get_more_spec.rb
|
|
1890
|
+
- spec/mongo/operation/indexes_spec.rb
|
|
1891
|
+
- spec/mongo/operation/insert/bulk_spec.rb
|
|
1892
|
+
- spec/mongo/operation/insert/command_spec.rb
|
|
1893
|
+
- spec/mongo/operation/insert/op_msg_spec.rb
|
|
1894
|
+
- spec/mongo/operation/insert_spec.rb
|
|
1895
|
+
- spec/mongo/operation/kill_cursors_spec.rb
|
|
1896
|
+
- spec/mongo/operation/limited_spec.rb
|
|
1897
|
+
- spec/mongo/operation/map_reduce_spec.rb
|
|
1898
|
+
- spec/mongo/operation/read_preference_legacy_spec.rb
|
|
1899
|
+
- spec/mongo/operation/read_preference_op_msg_spec.rb
|
|
1900
|
+
- spec/mongo/operation/remove_user_spec.rb
|
|
1901
|
+
- spec/mongo/operation/result_spec.rb
|
|
1902
|
+
- spec/mongo/operation/specifiable_spec.rb
|
|
1903
|
+
- spec/mongo/operation/update/bulk_spec.rb
|
|
1904
|
+
- spec/mongo/operation/update/command_spec.rb
|
|
1905
|
+
- spec/mongo/operation/update/op_msg_spec.rb
|
|
1906
|
+
- spec/mongo/operation/update_spec.rb
|
|
1907
|
+
- spec/mongo/operation/update_user_spec.rb
|
|
1908
|
+
- spec/mongo/options/redacted_spec.rb
|
|
1909
|
+
- spec/mongo/protocol/compressed_spec.rb
|
|
1910
|
+
- spec/mongo/protocol/delete_spec.rb
|
|
1911
|
+
- spec/mongo/protocol/get_more_spec.rb
|
|
1912
|
+
- spec/mongo/protocol/insert_spec.rb
|
|
1913
|
+
- spec/mongo/protocol/kill_cursors_spec.rb
|
|
1914
|
+
- spec/mongo/protocol/msg_spec.rb
|
|
1915
|
+
- spec/mongo/protocol/query_spec.rb
|
|
1916
|
+
- spec/mongo/protocol/registry_spec.rb
|
|
1917
|
+
- spec/mongo/protocol/reply_spec.rb
|
|
1918
|
+
- spec/mongo/protocol/update_spec.rb
|
|
1919
|
+
- spec/mongo/query_cache_middleware_spec.rb
|
|
1920
|
+
- spec/mongo/query_cache_spec.rb
|
|
1921
|
+
- spec/mongo/retryable_spec.rb
|
|
1922
|
+
- spec/mongo/semaphore_spec.rb
|
|
1923
|
+
- spec/mongo/server/app_metadata_spec.rb
|
|
1924
|
+
- spec/mongo/server/connection_auth_spec.rb
|
|
1925
|
+
- spec/mongo/server/connection_common_spec.rb
|
|
1926
|
+
- spec/mongo/server/connection_pool/populator_spec.rb
|
|
1927
|
+
- spec/mongo/server/connection_pool_spec.rb
|
|
1928
|
+
- spec/mongo/server/connection_spec.rb
|
|
1929
|
+
- spec/mongo/server/description/features_spec.rb
|
|
1930
|
+
- spec/mongo/server/description_query_methods_spec.rb
|
|
1931
|
+
- spec/mongo/server/description_spec.rb
|
|
1932
|
+
- spec/mongo/server/monitor/app_metadata_spec.rb
|
|
1933
|
+
- spec/mongo/server/monitor/connection_spec.rb
|
|
1934
|
+
- spec/mongo/server/monitor_spec.rb
|
|
1935
|
+
- spec/mongo/server/round_trip_time_averager_spec.rb
|
|
1936
|
+
- spec/mongo/server_selector/nearest_spec.rb
|
|
1937
|
+
- spec/mongo/server_selector/primary_preferred_spec.rb
|
|
1938
|
+
- spec/mongo/server_selector/primary_spec.rb
|
|
1939
|
+
- spec/mongo/server_selector/secondary_preferred_spec.rb
|
|
1940
|
+
- spec/mongo/server_selector/secondary_spec.rb
|
|
1941
|
+
- spec/mongo/server_selector_spec.rb
|
|
1942
|
+
- spec/mongo/server_spec.rb
|
|
1943
|
+
- spec/mongo/session/server_session_spec.rb
|
|
1944
|
+
- spec/mongo/session/session_pool_spec.rb
|
|
1945
|
+
- spec/mongo/session_spec.rb
|
|
1946
|
+
- spec/mongo/session_transaction_spec.rb
|
|
1947
|
+
- spec/mongo/socket/ssl_spec.rb
|
|
1948
|
+
- spec/mongo/socket/tcp_spec.rb
|
|
1949
|
+
- spec/mongo/socket/unix_spec.rb
|
|
1950
|
+
- spec/mongo/socket_spec.rb
|
|
1951
|
+
- spec/mongo/srv/monitor_spec.rb
|
|
1952
|
+
- spec/mongo/srv/result_spec.rb
|
|
1953
|
+
- spec/mongo/timeout_spec.rb
|
|
1954
|
+
- spec/mongo/tls_context_hooks_spec.rb
|
|
1955
|
+
- spec/mongo/uri/srv_protocol_spec.rb
|
|
1956
|
+
- spec/mongo/uri_option_parsing_spec.rb
|
|
1957
|
+
- spec/mongo/uri_spec.rb
|
|
1958
|
+
- spec/mongo/utils_spec.rb
|
|
1959
|
+
- spec/mongo/write_concern/acknowledged_spec.rb
|
|
1960
|
+
- spec/mongo/write_concern/unacknowledged_spec.rb
|
|
1961
|
+
- spec/mongo/write_concern_spec.rb
|
|
1962
|
+
- spec/runners/auth.rb
|
|
1963
|
+
- spec/runners/change_streams/outcome.rb
|
|
1964
|
+
- spec/runners/change_streams/spec.rb
|
|
1965
|
+
- spec/runners/change_streams/test.rb
|
|
1966
|
+
- spec/runners/cmap/verifier.rb
|
|
1967
|
+
- spec/runners/cmap.rb
|
|
1968
|
+
- spec/runners/command_monitoring.rb
|
|
1969
|
+
- spec/runners/connection_string.rb
|
|
1970
|
+
- spec/runners/crud/context.rb
|
|
1971
|
+
- spec/runners/crud/operation.rb
|
|
1972
|
+
- spec/runners/crud/outcome.rb
|
|
1973
|
+
- spec/runners/crud/requirement.rb
|
|
1974
|
+
- spec/runners/crud/spec.rb
|
|
1975
|
+
- spec/runners/crud/test.rb
|
|
1976
|
+
- spec/runners/crud/test_base.rb
|
|
1977
|
+
- spec/runners/crud/verifier.rb
|
|
1978
|
+
- spec/runners/crud.rb
|
|
1979
|
+
- spec/runners/gridfs.rb
|
|
1980
|
+
- spec/runners/read_write_concern_document.rb
|
|
1981
|
+
- spec/runners/sdam/verifier.rb
|
|
1982
|
+
- spec/runners/sdam.rb
|
|
1983
|
+
- spec/runners/server_selection.rb
|
|
1984
|
+
- spec/runners/server_selection_rtt.rb
|
|
1985
|
+
- spec/runners/transactions/operation.rb
|
|
1986
|
+
- spec/runners/transactions/spec.rb
|
|
1987
|
+
- spec/runners/transactions/test.rb
|
|
1988
|
+
- spec/runners/transactions.rb
|
|
1989
|
+
- spec/runners/unified/assertions.rb
|
|
1990
|
+
- spec/runners/unified/change_stream_operations.rb
|
|
1991
|
+
- spec/runners/unified/crud_operations.rb
|
|
1992
|
+
- spec/runners/unified/ddl_operations.rb
|
|
1993
|
+
- spec/runners/unified/entity_map.rb
|
|
1994
|
+
- spec/runners/unified/error.rb
|
|
1995
|
+
- spec/runners/unified/event_subscriber.rb
|
|
1996
|
+
- spec/runners/unified/exceptions.rb
|
|
1997
|
+
- spec/runners/unified/grid_fs_operations.rb
|
|
1998
|
+
- spec/runners/unified/support_operations.rb
|
|
1999
|
+
- spec/runners/unified/test.rb
|
|
2000
|
+
- spec/runners/unified/test_group.rb
|
|
2001
|
+
- spec/runners/unified/using_hash.rb
|
|
2002
|
+
- spec/runners/unified.rb
|
|
2003
|
+
- spec/shared/LICENSE
|
|
2004
|
+
- spec/shared/bin/get-mongodb-download-url
|
|
2005
|
+
- spec/shared/bin/s3-copy
|
|
2006
|
+
- spec/shared/bin/s3-upload
|
|
2007
|
+
- spec/shared/lib/mrss/child_process_helper.rb
|
|
2008
|
+
- spec/shared/lib/mrss/cluster_config.rb
|
|
2009
|
+
- spec/shared/lib/mrss/constraints.rb
|
|
2010
|
+
- spec/shared/lib/mrss/docker_runner.rb
|
|
2011
|
+
- spec/shared/lib/mrss/lite_constraints.rb
|
|
2012
|
+
- spec/shared/lib/mrss/server_version_registry.rb
|
|
2013
|
+
- spec/shared/lib/mrss/spec_organizer.rb
|
|
2014
|
+
- spec/shared/lib/mrss/utils.rb
|
|
2015
|
+
- spec/shared/share/Dockerfile.erb
|
|
2016
|
+
- spec/shared/share/haproxy-1.conf
|
|
2017
|
+
- spec/shared/share/haproxy-2.conf
|
|
2018
|
+
- spec/shared/shlib/distro.sh
|
|
2019
|
+
- spec/shared/shlib/server.sh
|
|
2020
|
+
- spec/shared/shlib/set_env.sh
|
|
2021
|
+
- spec/solo/clean_exit_spec.rb
|
|
2022
|
+
- spec/spec_helper.rb
|
|
2023
|
+
- spec/spec_tests/auth_spec.rb
|
|
1142
2024
|
- spec/spec_tests/change_streams_spec.rb
|
|
2025
|
+
- spec/spec_tests/change_streams_unified_spec.rb
|
|
2026
|
+
- spec/spec_tests/client_side_encryption_spec.rb
|
|
2027
|
+
- spec/spec_tests/cmap_spec.rb
|
|
2028
|
+
- spec/spec_tests/collection_management_spec.rb
|
|
1143
2029
|
- spec/spec_tests/command_monitoring_spec.rb
|
|
2030
|
+
- spec/spec_tests/command_monitoring_unified_spec.rb
|
|
1144
2031
|
- spec/spec_tests/connection_string_spec.rb
|
|
1145
|
-
- spec/spec_tests/retryable_reads_spec.rb
|
|
1146
|
-
- spec/spec_tests/server_selection_spec.rb
|
|
1147
|
-
- spec/spec_tests/max_staleness_spec.rb
|
|
1148
|
-
- spec/spec_tests/transactions_spec.rb
|
|
1149
|
-
- spec/spec_tests/dns_seedlist_discovery_spec.rb
|
|
1150
|
-
- spec/spec_tests/transactions_api_spec.rb
|
|
1151
|
-
- spec/spec_tests/sdam_spec.rb
|
|
1152
2032
|
- spec/spec_tests/crud_spec.rb
|
|
1153
|
-
- spec/spec_tests/
|
|
1154
|
-
- spec/spec_tests/
|
|
1155
|
-
- spec/spec_tests/data/
|
|
1156
|
-
- spec/spec_tests/data/
|
|
1157
|
-
- spec/spec_tests/data/
|
|
1158
|
-
- spec/spec_tests/data/
|
|
1159
|
-
- spec/spec_tests/data/
|
|
1160
|
-
- spec/spec_tests/data/
|
|
1161
|
-
- spec/spec_tests/data/
|
|
1162
|
-
- spec/spec_tests/data/
|
|
1163
|
-
- spec/spec_tests/data/
|
|
1164
|
-
- spec/spec_tests/data/
|
|
1165
|
-
- spec/spec_tests/data/
|
|
1166
|
-
- spec/spec_tests/data/
|
|
1167
|
-
- spec/spec_tests/data/
|
|
1168
|
-
- spec/spec_tests/data/
|
|
1169
|
-
- spec/spec_tests/data/
|
|
1170
|
-
- spec/spec_tests/data/
|
|
1171
|
-
- spec/spec_tests/data/
|
|
1172
|
-
- spec/spec_tests/data/
|
|
1173
|
-
- spec/spec_tests/data/
|
|
1174
|
-
- spec/spec_tests/data/
|
|
1175
|
-
- spec/spec_tests/data/
|
|
1176
|
-
- spec/spec_tests/data/
|
|
1177
|
-
- spec/spec_tests/data/
|
|
1178
|
-
- spec/spec_tests/data/
|
|
1179
|
-
- spec/spec_tests/data/
|
|
1180
|
-
- spec/spec_tests/data/
|
|
1181
|
-
- spec/spec_tests/data/
|
|
1182
|
-
- spec/spec_tests/data/
|
|
1183
|
-
- spec/spec_tests/data/
|
|
1184
|
-
- spec/spec_tests/data/
|
|
1185
|
-
- spec/spec_tests/data/
|
|
1186
|
-
- spec/spec_tests/data/
|
|
1187
|
-
- spec/spec_tests/data/
|
|
1188
|
-
- spec/spec_tests/data/
|
|
1189
|
-
- spec/spec_tests/data/
|
|
1190
|
-
- spec/spec_tests/data/
|
|
1191
|
-
- spec/spec_tests/data/
|
|
1192
|
-
- spec/spec_tests/data/
|
|
1193
|
-
- spec/spec_tests/data/
|
|
1194
|
-
- spec/spec_tests/data/
|
|
1195
|
-
- spec/spec_tests/data/
|
|
1196
|
-
- spec/spec_tests/data/
|
|
1197
|
-
- spec/spec_tests/data/
|
|
1198
|
-
- spec/spec_tests/data/
|
|
1199
|
-
- spec/spec_tests/data/
|
|
1200
|
-
- spec/spec_tests/data/
|
|
1201
|
-
- spec/spec_tests/data/
|
|
1202
|
-
- spec/spec_tests/data/
|
|
1203
|
-
- spec/spec_tests/data/
|
|
1204
|
-
- spec/spec_tests/data/
|
|
1205
|
-
- spec/spec_tests/data/
|
|
1206
|
-
- spec/spec_tests/data/
|
|
1207
|
-
- spec/spec_tests/data/
|
|
1208
|
-
- spec/spec_tests/data/
|
|
1209
|
-
- spec/spec_tests/data/
|
|
1210
|
-
- spec/spec_tests/data/
|
|
1211
|
-
- spec/spec_tests/data/
|
|
1212
|
-
- spec/spec_tests/data/
|
|
1213
|
-
- spec/spec_tests/data/
|
|
1214
|
-
- spec/spec_tests/data/
|
|
1215
|
-
- spec/spec_tests/data/
|
|
1216
|
-
- spec/spec_tests/data/
|
|
1217
|
-
- spec/spec_tests/data/
|
|
1218
|
-
- spec/spec_tests/data/
|
|
1219
|
-
- spec/spec_tests/data/
|
|
1220
|
-
- spec/spec_tests/data/
|
|
1221
|
-
- spec/spec_tests/data/
|
|
1222
|
-
- spec/spec_tests/data/
|
|
1223
|
-
- spec/spec_tests/data/
|
|
1224
|
-
- spec/spec_tests/data/
|
|
1225
|
-
- spec/spec_tests/data/
|
|
1226
|
-
- spec/spec_tests/data/
|
|
1227
|
-
- spec/spec_tests/data/
|
|
1228
|
-
- spec/spec_tests/data/
|
|
1229
|
-
- spec/spec_tests/data/
|
|
1230
|
-
- spec/spec_tests/data/
|
|
1231
|
-
- spec/spec_tests/data/
|
|
2033
|
+
- spec/spec_tests/crud_unified_spec.rb
|
|
2034
|
+
- spec/spec_tests/data/auth/connection-string.yml
|
|
2035
|
+
- spec/spec_tests/data/change_streams/change-streams-errors.yml
|
|
2036
|
+
- spec/spec_tests/data/change_streams/change-streams-resume-allowlist.yml
|
|
2037
|
+
- spec/spec_tests/data/change_streams/change-streams-resume-errorLabels.yml
|
|
2038
|
+
- spec/spec_tests/data/change_streams/change-streams.yml
|
|
2039
|
+
- spec/spec_tests/data/change_streams_unified/change-streams.yml
|
|
2040
|
+
- spec/spec_tests/data/client_side_encryption/aggregate.yml
|
|
2041
|
+
- spec/spec_tests/data/client_side_encryption/badQueries.yml
|
|
2042
|
+
- spec/spec_tests/data/client_side_encryption/badSchema.yml
|
|
2043
|
+
- spec/spec_tests/data/client_side_encryption/basic.yml
|
|
2044
|
+
- spec/spec_tests/data/client_side_encryption/bulk.yml
|
|
2045
|
+
- spec/spec_tests/data/client_side_encryption/bypassAutoEncryption.yml
|
|
2046
|
+
- spec/spec_tests/data/client_side_encryption/bypassedCommand.yml
|
|
2047
|
+
- spec/spec_tests/data/client_side_encryption/count.yml
|
|
2048
|
+
- spec/spec_tests/data/client_side_encryption/countDocuments.yml
|
|
2049
|
+
- spec/spec_tests/data/client_side_encryption/delete.yml
|
|
2050
|
+
- spec/spec_tests/data/client_side_encryption/distinct.yml
|
|
2051
|
+
- spec/spec_tests/data/client_side_encryption/explain.yml
|
|
2052
|
+
- spec/spec_tests/data/client_side_encryption/find.yml
|
|
2053
|
+
- spec/spec_tests/data/client_side_encryption/findOneAndDelete.yml
|
|
2054
|
+
- spec/spec_tests/data/client_side_encryption/findOneAndReplace.yml
|
|
2055
|
+
- spec/spec_tests/data/client_side_encryption/findOneAndUpdate.yml
|
|
2056
|
+
- spec/spec_tests/data/client_side_encryption/getMore.yml
|
|
2057
|
+
- spec/spec_tests/data/client_side_encryption/insert.yml
|
|
2058
|
+
- spec/spec_tests/data/client_side_encryption/keyAltName.yml
|
|
2059
|
+
- spec/spec_tests/data/client_side_encryption/localKMS.yml
|
|
2060
|
+
- spec/spec_tests/data/client_side_encryption/localSchema.yml
|
|
2061
|
+
- spec/spec_tests/data/client_side_encryption/malformedCiphertext.yml
|
|
2062
|
+
- spec/spec_tests/data/client_side_encryption/maxWireVersion.yml
|
|
2063
|
+
- spec/spec_tests/data/client_side_encryption/missingKey.yml
|
|
2064
|
+
- spec/spec_tests/data/client_side_encryption/replaceOne.yml
|
|
2065
|
+
- spec/spec_tests/data/client_side_encryption/types.yml
|
|
2066
|
+
- spec/spec_tests/data/client_side_encryption/unsupportedCommand.yml
|
|
2067
|
+
- spec/spec_tests/data/client_side_encryption/updateMany.yml
|
|
2068
|
+
- spec/spec_tests/data/client_side_encryption/updateOne.yml
|
|
2069
|
+
- spec/spec_tests/data/cmap/connection-must-have-id.yml
|
|
2070
|
+
- spec/spec_tests/data/cmap/connection-must-order-ids.yml
|
|
2071
|
+
- spec/spec_tests/data/cmap/pool-checkin-destroy-closed.yml
|
|
2072
|
+
- spec/spec_tests/data/cmap/pool-checkin-destroy-stale.yml
|
|
2073
|
+
- spec/spec_tests/data/cmap/pool-checkin-make-available.yml
|
|
2074
|
+
- spec/spec_tests/data/cmap/pool-checkin.yml
|
|
2075
|
+
- spec/spec_tests/data/cmap/pool-checkout-connection.yml
|
|
2076
|
+
- spec/spec_tests/data/cmap/pool-checkout-error-closed.yml
|
|
2077
|
+
- spec/spec_tests/data/cmap/pool-checkout-multiple.yml
|
|
2078
|
+
- spec/spec_tests/data/cmap/pool-checkout-no-idle.yml
|
|
2079
|
+
- spec/spec_tests/data/cmap/pool-checkout-no-stale.yml
|
|
2080
|
+
- spec/spec_tests/data/cmap/pool-close-destroy-conns.yml
|
|
2081
|
+
- spec/spec_tests/data/cmap/pool-close.yml
|
|
2082
|
+
- spec/spec_tests/data/cmap/pool-create-max-size.yml
|
|
2083
|
+
- spec/spec_tests/data/cmap/pool-create-min-size.yml
|
|
2084
|
+
- spec/spec_tests/data/cmap/pool-create-with-options.yml
|
|
2085
|
+
- spec/spec_tests/data/cmap/pool-create.yml
|
|
2086
|
+
- spec/spec_tests/data/cmap/wait-queue-fairness.yml
|
|
2087
|
+
- spec/spec_tests/data/cmap/wait-queue-timeout.yml
|
|
2088
|
+
- spec/spec_tests/data/collection_management/timeseries-collection.yml
|
|
2089
|
+
- spec/spec_tests/data/command_monitoring/bulkWrite.yml
|
|
2090
|
+
- spec/spec_tests/data/command_monitoring/command.yml
|
|
2091
|
+
- spec/spec_tests/data/command_monitoring/deleteMany.yml
|
|
2092
|
+
- spec/spec_tests/data/command_monitoring/deleteOne.yml
|
|
2093
|
+
- spec/spec_tests/data/command_monitoring/find.yml
|
|
2094
|
+
- spec/spec_tests/data/command_monitoring/insertMany.yml
|
|
2095
|
+
- spec/spec_tests/data/command_monitoring/insertOne.yml
|
|
2096
|
+
- spec/spec_tests/data/command_monitoring/unacknowledgedBulkWrite.yml
|
|
2097
|
+
- spec/spec_tests/data/command_monitoring/updateMany.yml
|
|
2098
|
+
- spec/spec_tests/data/command_monitoring/updateOne.yml
|
|
2099
|
+
- spec/spec_tests/data/command_monitoring_unified/redacted-commands.yml
|
|
2100
|
+
- spec/spec_tests/data/connection_string/invalid-uris.yml
|
|
2101
|
+
- spec/spec_tests/data/connection_string/valid-auth.yml
|
|
2102
|
+
- spec/spec_tests/data/connection_string/valid-db-with-dotted-name.yml
|
|
2103
|
+
- spec/spec_tests/data/connection_string/valid-host_identifiers.yml
|
|
2104
|
+
- spec/spec_tests/data/connection_string/valid-options.yml
|
|
2105
|
+
- spec/spec_tests/data/connection_string/valid-unix_socket-absolute.yml
|
|
2106
|
+
- spec/spec_tests/data/connection_string/valid-unix_socket-relative.yml
|
|
2107
|
+
- spec/spec_tests/data/connection_string/valid-warnings.yml
|
|
2108
|
+
- spec/spec_tests/data/crud/read/aggregate-collation.yml
|
|
2109
|
+
- spec/spec_tests/data/crud/read/aggregate-out.yml
|
|
2110
|
+
- spec/spec_tests/data/crud/read/aggregate.yml
|
|
2111
|
+
- spec/spec_tests/data/crud/read/count-collation.yml
|
|
2112
|
+
- spec/spec_tests/data/crud/read/count-empty.yml
|
|
2113
|
+
- spec/spec_tests/data/crud/read/count.yml
|
|
2114
|
+
- spec/spec_tests/data/crud/read/distinct-collation.yml
|
|
2115
|
+
- spec/spec_tests/data/crud/read/distinct.yml
|
|
2116
|
+
- spec/spec_tests/data/crud/read/find-collation.yml
|
|
2117
|
+
- spec/spec_tests/data/crud/read/find.yml
|
|
2118
|
+
- spec/spec_tests/data/crud/write/bulkWrite-arrayFilters.yml
|
|
2119
|
+
- spec/spec_tests/data/crud/write/bulkWrite-collation.yml
|
|
2120
|
+
- spec/spec_tests/data/crud/write/bulkWrite.yml
|
|
2121
|
+
- spec/spec_tests/data/crud/write/deleteMany-collation.yml
|
|
2122
|
+
- spec/spec_tests/data/crud/write/deleteMany.yml
|
|
2123
|
+
- spec/spec_tests/data/crud/write/deleteOne-collation.yml
|
|
2124
|
+
- spec/spec_tests/data/crud/write/deleteOne.yml
|
|
2125
|
+
- spec/spec_tests/data/crud/write/findOneAndDelete-collation.yml
|
|
2126
|
+
- spec/spec_tests/data/crud/write/findOneAndDelete.yml
|
|
2127
|
+
- spec/spec_tests/data/crud/write/findOneAndReplace-collation.yml
|
|
2128
|
+
- spec/spec_tests/data/crud/write/findOneAndReplace-upsert.yml
|
|
2129
|
+
- spec/spec_tests/data/crud/write/findOneAndReplace-upsert_pre_2.6.yml
|
|
2130
|
+
- spec/spec_tests/data/crud/write/findOneAndReplace.yml
|
|
2131
|
+
- spec/spec_tests/data/crud/write/findOneAndUpdate-arrayFilters.yml
|
|
2132
|
+
- spec/spec_tests/data/crud/write/findOneAndUpdate-collation.yml
|
|
2133
|
+
- spec/spec_tests/data/crud/write/findOneAndUpdate.yml
|
|
2134
|
+
- spec/spec_tests/data/crud/write/insertMany.yml
|
|
2135
|
+
- spec/spec_tests/data/crud/write/insertOne.yml
|
|
2136
|
+
- spec/spec_tests/data/crud/write/replaceOne-collation.yml
|
|
2137
|
+
- spec/spec_tests/data/crud/write/replaceOne-pre_2.6.yml
|
|
2138
|
+
- spec/spec_tests/data/crud/write/replaceOne-upsert.yml
|
|
2139
|
+
- spec/spec_tests/data/crud/write/replaceOne.yml
|
|
2140
|
+
- spec/spec_tests/data/crud/write/updateMany-arrayFilters.yml
|
|
2141
|
+
- spec/spec_tests/data/crud/write/updateMany-collation.yml
|
|
2142
|
+
- spec/spec_tests/data/crud/write/updateMany-pre_2.6.yml
|
|
2143
|
+
- spec/spec_tests/data/crud/write/updateMany.yml
|
|
2144
|
+
- spec/spec_tests/data/crud/write/updateOne-arrayFilters.yml
|
|
2145
|
+
- spec/spec_tests/data/crud/write/updateOne-collation.yml
|
|
2146
|
+
- spec/spec_tests/data/crud/write/updateOne-pre_2.6.yml
|
|
2147
|
+
- spec/spec_tests/data/crud/write/updateOne.yml
|
|
2148
|
+
- spec/spec_tests/data/crud_unified/estimatedDocumentCount.yml
|
|
2149
|
+
- spec/spec_tests/data/crud_unified/updateWithPipelines.yml
|
|
2150
|
+
- spec/spec_tests/data/crud_v2/aggregate-merge.yml
|
|
2151
|
+
- spec/spec_tests/data/crud_v2/aggregate-out-readConcern.yml
|
|
2152
|
+
- spec/spec_tests/data/crud_v2/bulkWrite-arrayFilters.yml
|
|
2153
|
+
- spec/spec_tests/data/crud_v2/bulkWrite-delete-hint-clientError.yml
|
|
2154
|
+
- spec/spec_tests/data/crud_v2/bulkWrite-delete-hint-serverError.yml
|
|
2155
|
+
- spec/spec_tests/data/crud_v2/bulkWrite-delete-hint.yml
|
|
2156
|
+
- spec/spec_tests/data/crud_v2/bulkWrite-update-hint-clientError.yml
|
|
2157
|
+
- spec/spec_tests/data/crud_v2/bulkWrite-update-hint-serverError.yml
|
|
2158
|
+
- spec/spec_tests/data/crud_v2/bulkWrite-update-hint.yml
|
|
2159
|
+
- spec/spec_tests/data/crud_v2/db-aggregate.yml
|
|
2160
|
+
- spec/spec_tests/data/crud_v2/deleteMany-hint-clientError.yml
|
|
2161
|
+
- spec/spec_tests/data/crud_v2/deleteMany-hint-serverError.yml
|
|
2162
|
+
- spec/spec_tests/data/crud_v2/deleteMany-hint.yml
|
|
2163
|
+
- spec/spec_tests/data/crud_v2/deleteOne-hint-clientError.yml
|
|
2164
|
+
- spec/spec_tests/data/crud_v2/deleteOne-hint-serverError.yml
|
|
2165
|
+
- spec/spec_tests/data/crud_v2/deleteOne-hint.yml
|
|
2166
|
+
- spec/spec_tests/data/crud_v2/find-allowdiskuse-clientError.yml
|
|
2167
|
+
- spec/spec_tests/data/crud_v2/find-allowdiskuse-serverError.yml
|
|
2168
|
+
- spec/spec_tests/data/crud_v2/find-allowdiskuse.yml
|
|
2169
|
+
- spec/spec_tests/data/crud_v2/findOneAndDelete-hint-clientError.yml
|
|
2170
|
+
- spec/spec_tests/data/crud_v2/findOneAndDelete-hint-serverError.yml
|
|
2171
|
+
- spec/spec_tests/data/crud_v2/findOneAndDelete-hint.yml
|
|
2172
|
+
- spec/spec_tests/data/crud_v2/findOneAndReplace-hint-clientError.yml
|
|
2173
|
+
- spec/spec_tests/data/crud_v2/findOneAndReplace-hint-serverError.yml
|
|
2174
|
+
- spec/spec_tests/data/crud_v2/findOneAndReplace-hint.yml
|
|
2175
|
+
- spec/spec_tests/data/crud_v2/findOneAndUpdate-hint-clientError.yml
|
|
2176
|
+
- spec/spec_tests/data/crud_v2/findOneAndUpdate-hint-serverError.yml
|
|
2177
|
+
- spec/spec_tests/data/crud_v2/findOneAndUpdate-hint.yml
|
|
2178
|
+
- spec/spec_tests/data/crud_v2/replaceOne-hint.yml
|
|
2179
|
+
- spec/spec_tests/data/crud_v2/unacknowledged-bulkWrite-delete-hint-clientError.yml
|
|
2180
|
+
- spec/spec_tests/data/crud_v2/unacknowledged-bulkWrite-update-hint-clientError.yml
|
|
2181
|
+
- spec/spec_tests/data/crud_v2/unacknowledged-deleteMany-hint-clientError.yml
|
|
2182
|
+
- spec/spec_tests/data/crud_v2/unacknowledged-deleteOne-hint-clientError.yml
|
|
2183
|
+
- spec/spec_tests/data/crud_v2/unacknowledged-findOneAndDelete-hint-clientError.yml
|
|
2184
|
+
- spec/spec_tests/data/crud_v2/unacknowledged-findOneAndReplace-hint-clientError.yml
|
|
2185
|
+
- spec/spec_tests/data/crud_v2/unacknowledged-findOneAndUpdate-hint-clientError.yml
|
|
2186
|
+
- spec/spec_tests/data/crud_v2/unacknowledged-replaceOne-hint-clientError.yml
|
|
2187
|
+
- spec/spec_tests/data/crud_v2/unacknowledged-updateMany-hint-clientError.yml
|
|
2188
|
+
- spec/spec_tests/data/crud_v2/unacknowledged-updateOne-hint-clientError.yml
|
|
2189
|
+
- spec/spec_tests/data/crud_v2/updateMany-hint-clientError.yml
|
|
2190
|
+
- spec/spec_tests/data/crud_v2/updateMany-hint-serverError.yml
|
|
2191
|
+
- spec/spec_tests/data/crud_v2/updateMany-hint.yml
|
|
2192
|
+
- spec/spec_tests/data/crud_v2/updateOne-hint-clientError.yml
|
|
2193
|
+
- spec/spec_tests/data/crud_v2/updateOne-hint-serverError.yml
|
|
2194
|
+
- spec/spec_tests/data/crud_v2/updateOne-hint.yml
|
|
2195
|
+
- spec/spec_tests/data/crud_v2/updateWithPipelines.yml
|
|
2196
|
+
- spec/spec_tests/data/dns_seedlist_discovery/direct-connection-false.yml
|
|
2197
|
+
- spec/spec_tests/data/dns_seedlist_discovery/direct-connection-true.yml
|
|
2198
|
+
- spec/spec_tests/data/dns_seedlist_discovery/longer-parent-in-return.yml
|
|
1232
2199
|
- spec/spec_tests/data/dns_seedlist_discovery/misformatted-option.yml
|
|
1233
|
-
- spec/spec_tests/data/dns_seedlist_discovery/txt-record-not-allowed-option.yml
|
|
1234
|
-
- spec/spec_tests/data/dns_seedlist_discovery/uri-with-two-hosts.yml
|
|
1235
|
-
- spec/spec_tests/data/dns_seedlist_discovery/returned-parent-wrong.yml
|
|
1236
2200
|
- spec/spec_tests/data/dns_seedlist_discovery/no-results.yml
|
|
2201
|
+
- spec/spec_tests/data/dns_seedlist_discovery/not-enough-parts.yml
|
|
2202
|
+
- spec/spec_tests/data/dns_seedlist_discovery/one-result-default-port.yml
|
|
2203
|
+
- spec/spec_tests/data/dns_seedlist_discovery/one-txt-record-multiple-strings.yml
|
|
2204
|
+
- spec/spec_tests/data/dns_seedlist_discovery/one-txt-record.yml
|
|
2205
|
+
- spec/spec_tests/data/dns_seedlist_discovery/parent-part-mismatch1.yml
|
|
1237
2206
|
- spec/spec_tests/data/dns_seedlist_discovery/parent-part-mismatch2.yml
|
|
2207
|
+
- spec/spec_tests/data/dns_seedlist_discovery/parent-part-mismatch3.yml
|
|
1238
2208
|
- spec/spec_tests/data/dns_seedlist_discovery/parent-part-mismatch4.yml
|
|
1239
|
-
- spec/spec_tests/data/dns_seedlist_discovery/two-results-nonstandard-port.yml
|
|
1240
|
-
- spec/spec_tests/data/dns_seedlist_discovery/longer-parent-in-return.yml
|
|
1241
2209
|
- spec/spec_tests/data/dns_seedlist_discovery/parent-part-mismatch5.yml
|
|
2210
|
+
- spec/spec_tests/data/dns_seedlist_discovery/returned-parent-too-short.yml
|
|
2211
|
+
- spec/spec_tests/data/dns_seedlist_discovery/returned-parent-wrong.yml
|
|
2212
|
+
- spec/spec_tests/data/dns_seedlist_discovery/two-results-default-port.yml
|
|
2213
|
+
- spec/spec_tests/data/dns_seedlist_discovery/two-results-nonstandard-port.yml
|
|
2214
|
+
- spec/spec_tests/data/dns_seedlist_discovery/two-txt-records.yml
|
|
2215
|
+
- spec/spec_tests/data/dns_seedlist_discovery/txt-record-not-allowed-option.yml
|
|
1242
2216
|
- spec/spec_tests/data/dns_seedlist_discovery/txt-record-with-overridden-ssl-option.yml
|
|
1243
2217
|
- spec/spec_tests/data/dns_seedlist_discovery/txt-record-with-overridden-uri-option.yml
|
|
1244
|
-
- spec/spec_tests/data/dns_seedlist_discovery/
|
|
1245
|
-
- spec/spec_tests/data/dns_seedlist_discovery/
|
|
1246
|
-
- spec/spec_tests/data/
|
|
1247
|
-
- spec/spec_tests/data/
|
|
1248
|
-
- spec/spec_tests/data/
|
|
1249
|
-
- spec/spec_tests/data/
|
|
1250
|
-
- spec/spec_tests/data/
|
|
1251
|
-
- spec/spec_tests/data/
|
|
1252
|
-
- spec/spec_tests/data/
|
|
1253
|
-
- spec/spec_tests/data/
|
|
1254
|
-
- spec/spec_tests/data/
|
|
1255
|
-
- spec/spec_tests/data/
|
|
1256
|
-
- spec/spec_tests/data/
|
|
1257
|
-
- spec/spec_tests/data/
|
|
1258
|
-
- spec/spec_tests/data/
|
|
1259
|
-
- spec/spec_tests/data/
|
|
1260
|
-
- spec/spec_tests/data/
|
|
1261
|
-
- spec/spec_tests/data/
|
|
1262
|
-
- spec/spec_tests/data/
|
|
1263
|
-
- spec/spec_tests/data/
|
|
1264
|
-
- spec/spec_tests/data/cmap/connection-must-order-ids.yml
|
|
1265
|
-
- spec/spec_tests/data/cmap/connection-must-have-id.yml
|
|
1266
|
-
- spec/spec_tests/data/cmap/pool-checkout-no-idle.yml
|
|
1267
|
-
- spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/LongHeartbeat2.yml
|
|
1268
|
-
- spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/SecondaryPreferred.yml
|
|
1269
|
-
- spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/Secondary_tags2.yml
|
|
2218
|
+
- spec/spec_tests/data/dns_seedlist_discovery/txt-record-with-unallowed-option.yml
|
|
2219
|
+
- spec/spec_tests/data/dns_seedlist_discovery/uri-with-port.yml
|
|
2220
|
+
- spec/spec_tests/data/dns_seedlist_discovery/uri-with-two-hosts.yml
|
|
2221
|
+
- spec/spec_tests/data/gridfs/delete.yml
|
|
2222
|
+
- spec/spec_tests/data/gridfs/download.yml
|
|
2223
|
+
- spec/spec_tests/data/gridfs/download_by_name.yml
|
|
2224
|
+
- spec/spec_tests/data/gridfs/upload.yml
|
|
2225
|
+
- spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/DefaultNoMaxStaleness.yml
|
|
2226
|
+
- spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/Incompatible.yml
|
|
2227
|
+
- spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/LastUpdateTime.yml
|
|
2228
|
+
- spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/MaxStalenessTooSmall.yml
|
|
2229
|
+
- spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/Nearest.yml
|
|
2230
|
+
- spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/Nearest2.yml
|
|
2231
|
+
- spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/NoKnownServers.yml
|
|
2232
|
+
- spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/PrimaryPreferred.yml
|
|
2233
|
+
- spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/PrimaryPreferred_tags.yml
|
|
2234
|
+
- spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/Secondary.yml
|
|
2235
|
+
- spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/SecondaryPreferred.yml
|
|
2236
|
+
- spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/SecondaryPreferred_tags.yml
|
|
2237
|
+
- spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/ZeroMaxStaleness.yml
|
|
1270
2238
|
- spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/DefaultNoMaxStaleness.yml
|
|
1271
|
-
- spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/Nearest2.yml
|
|
1272
|
-
- spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/SecondaryPreferred_tags.yml
|
|
1273
2239
|
- spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/Incompatible.yml
|
|
1274
|
-
- spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/
|
|
1275
|
-
- spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/PrimaryPreferred.yml
|
|
1276
|
-
- spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/ZeroMaxStaleness.yml
|
|
1277
|
-
- spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/MaxStalenessTooSmall.yml
|
|
2240
|
+
- spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/LastUpdateTime.yml
|
|
1278
2241
|
- spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/LongHeartbeat.yml
|
|
2242
|
+
- spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/LongHeartbeat2.yml
|
|
2243
|
+
- spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/MaxStalenessTooSmall.yml
|
|
2244
|
+
- spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/MaxStalenessWithModePrimary.yml
|
|
1279
2245
|
- spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/Nearest.yml
|
|
2246
|
+
- spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/Nearest2.yml
|
|
2247
|
+
- spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/Nearest_tags.yml
|
|
2248
|
+
- spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/PrimaryPreferred.yml
|
|
1280
2249
|
- spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/PrimaryPreferred_incompatible.yml
|
|
2250
|
+
- spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/SecondaryPreferred.yml
|
|
2251
|
+
- spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/SecondaryPreferred_tags.yml
|
|
1281
2252
|
- spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/SecondaryPreferred_tags2.yml
|
|
1282
2253
|
- spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/Secondary_tags.yml
|
|
1283
|
-
- spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/
|
|
1284
|
-
- spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/
|
|
2254
|
+
- spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/Secondary_tags2.yml
|
|
2255
|
+
- spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/ZeroMaxStaleness.yml
|
|
1285
2256
|
- spec/spec_tests/data/max_staleness/Sharded/Incompatible.yml
|
|
1286
2257
|
- spec/spec_tests/data/max_staleness/Sharded/SmallMaxStaleness.yml
|
|
1287
|
-
- spec/spec_tests/data/max_staleness/Unknown/SmallMaxStaleness.yml
|
|
1288
2258
|
- spec/spec_tests/data/max_staleness/Single/Incompatible.yml
|
|
1289
2259
|
- spec/spec_tests/data/max_staleness/Single/SmallMaxStaleness.yml
|
|
1290
|
-
- spec/spec_tests/data/max_staleness/
|
|
1291
|
-
- spec/spec_tests/data/
|
|
1292
|
-
- spec/spec_tests/data/
|
|
1293
|
-
- spec/spec_tests/data/
|
|
1294
|
-
- spec/spec_tests/data/
|
|
1295
|
-
- spec/spec_tests/data/
|
|
1296
|
-
- spec/spec_tests/data/
|
|
1297
|
-
- spec/spec_tests/data/
|
|
1298
|
-
- spec/spec_tests/data/
|
|
1299
|
-
- spec/spec_tests/data/
|
|
1300
|
-
- spec/spec_tests/data/
|
|
1301
|
-
- spec/spec_tests/data/
|
|
1302
|
-
- spec/spec_tests/data/
|
|
1303
|
-
- spec/spec_tests/data/
|
|
1304
|
-
- spec/spec_tests/data/sdam_monitoring/standalone_repeated.yml
|
|
1305
|
-
- spec/spec_tests/data/sdam_monitoring/required_replica_set.yml
|
|
1306
|
-
- spec/spec_tests/data/sdam_monitoring/replica_set_with_second_seed_removal.yml
|
|
1307
|
-
- spec/spec_tests/data/sdam_monitoring/replica_set_other_change.yml
|
|
1308
|
-
- spec/spec_tests/data/sdam_monitoring/replica_set_with_removal.yml
|
|
1309
|
-
- spec/spec_tests/data/sdam_monitoring/replica_set_with_primary_removal.yml
|
|
1310
|
-
- spec/spec_tests/data/sdam_monitoring/replica_set_with_primary_and_secondary.yml
|
|
1311
|
-
- spec/spec_tests/data/sdam_monitoring/standalone.yml
|
|
1312
|
-
- spec/spec_tests/data/sdam_monitoring/replica_set_other_seed.yml
|
|
1313
|
-
- spec/spec_tests/data/sdam_monitoring/discovered_standalone.yml
|
|
1314
|
-
- spec/spec_tests/data/sdam_monitoring/replica_set_other_chain.yml
|
|
1315
|
-
- spec/spec_tests/data/connection_string/valid-unix_socket-absolute.yml
|
|
1316
|
-
- spec/spec_tests/data/connection_string/valid-unix_socket-relative.yml
|
|
1317
|
-
- spec/spec_tests/data/connection_string/valid-host_identifiers.yml
|
|
1318
|
-
- spec/spec_tests/data/connection_string/valid-warnings.yml
|
|
1319
|
-
- spec/spec_tests/data/connection_string/valid-auth.yml
|
|
1320
|
-
- spec/spec_tests/data/connection_string/invalid-uris.yml
|
|
1321
|
-
- spec/spec_tests/data/connection_string/valid-options.yml
|
|
1322
|
-
- spec/spec_tests/data/connection_string/valid-db-with-dotted-name.yml
|
|
1323
|
-
- spec/spec_tests/data/gridfs/download.yml
|
|
1324
|
-
- spec/spec_tests/data/gridfs/download_by_name.yml
|
|
1325
|
-
- spec/spec_tests/data/gridfs/upload.yml
|
|
1326
|
-
- spec/spec_tests/data/gridfs/delete.yml
|
|
1327
|
-
- spec/spec_tests/data/transactions/bulk.yml
|
|
1328
|
-
- spec/spec_tests/data/transactions/errors.yml
|
|
1329
|
-
- spec/spec_tests/data/transactions/isolation.yml
|
|
1330
|
-
- spec/spec_tests/data/transactions/read-pref.yml
|
|
1331
|
-
- spec/spec_tests/data/transactions/retryable-abort.yml
|
|
1332
|
-
- spec/spec_tests/data/transactions/abort.yml
|
|
1333
|
-
- spec/spec_tests/data/transactions/findOneAndReplace.yml
|
|
1334
|
-
- spec/spec_tests/data/transactions/retryable-commit.yml
|
|
1335
|
-
- spec/spec_tests/data/transactions/mongos-pin-auto.yml
|
|
1336
|
-
- spec/spec_tests/data/transactions/insert.yml
|
|
1337
|
-
- spec/spec_tests/data/transactions/findOneAndDelete.yml
|
|
1338
|
-
- spec/spec_tests/data/transactions/findOneAndUpdate.yml
|
|
1339
|
-
- spec/spec_tests/data/transactions/delete.yml
|
|
1340
|
-
- spec/spec_tests/data/transactions/mongos-recovery-token.yml
|
|
1341
|
-
- spec/spec_tests/data/transactions/retryable-writes.yml
|
|
1342
|
-
- spec/spec_tests/data/transactions/count.yml
|
|
1343
|
-
- spec/spec_tests/data/transactions/transaction-options.yml
|
|
1344
|
-
- spec/spec_tests/data/transactions/read-concern.yml
|
|
1345
|
-
- spec/spec_tests/data/transactions/pin-mongos.yml
|
|
1346
|
-
- spec/spec_tests/data/transactions/update.yml
|
|
1347
|
-
- spec/spec_tests/data/transactions/error-labels.yml
|
|
1348
|
-
- spec/spec_tests/data/transactions/causal-consistency.yml
|
|
1349
|
-
- spec/spec_tests/data/transactions/errors-client.yml
|
|
1350
|
-
- spec/spec_tests/data/transactions/commit.yml
|
|
1351
|
-
- spec/spec_tests/data/transactions/reads.yml
|
|
1352
|
-
- spec/spec_tests/data/transactions/write-concern.yml
|
|
1353
|
-
- spec/spec_tests/data/transactions/run-command.yml
|
|
1354
|
-
- spec/spec_tests/data/retryable_reads/listIndexes.yml
|
|
2260
|
+
- spec/spec_tests/data/max_staleness/Unknown/SmallMaxStaleness.yml
|
|
2261
|
+
- spec/spec_tests/data/read_write_concern/connection-string/read-concern.yml
|
|
2262
|
+
- spec/spec_tests/data/read_write_concern/connection-string/write-concern.yml
|
|
2263
|
+
- spec/spec_tests/data/read_write_concern/document/read-concern.yml
|
|
2264
|
+
- spec/spec_tests/data/read_write_concern/document/write-concern.yml
|
|
2265
|
+
- spec/spec_tests/data/read_write_concern/operation/default-write-concern-2.6.yml
|
|
2266
|
+
- spec/spec_tests/data/read_write_concern/operation/default-write-concern-3.2.yml
|
|
2267
|
+
- spec/spec_tests/data/read_write_concern/operation/default-write-concern-3.4.yml
|
|
2268
|
+
- spec/spec_tests/data/read_write_concern/operation/default-write-concern-4.2.yml
|
|
2269
|
+
- spec/spec_tests/data/retryable_reads/aggregate-merge.yml
|
|
2270
|
+
- spec/spec_tests/data/retryable_reads/aggregate-serverErrors.yml
|
|
2271
|
+
- spec/spec_tests/data/retryable_reads/aggregate.yml
|
|
2272
|
+
- spec/spec_tests/data/retryable_reads/changeStreams-client.watch-serverErrors.yml
|
|
2273
|
+
- spec/spec_tests/data/retryable_reads/changeStreams-client.watch.yml
|
|
1355
2274
|
- spec/spec_tests/data/retryable_reads/changeStreams-db.coll.watch-serverErrors.yml
|
|
1356
|
-
- spec/spec_tests/data/retryable_reads/
|
|
1357
|
-
- spec/spec_tests/data/retryable_reads/listIndexNames-serverErrors.yml
|
|
1358
|
-
- spec/spec_tests/data/retryable_reads/listCollectionObjects-serverErrors.yml
|
|
1359
|
-
- spec/spec_tests/data/retryable_reads/countDocuments-serverErrors.yml
|
|
1360
|
-
- spec/spec_tests/data/retryable_reads/listCollections.yml
|
|
1361
|
-
- spec/spec_tests/data/retryable_reads/listCollections-serverErrors.yml
|
|
1362
|
-
- spec/spec_tests/data/retryable_reads/listDatabaseNames-serverErrors.yml
|
|
1363
|
-
- spec/spec_tests/data/retryable_reads/listDatabaseObjects-serverErrors.yml
|
|
1364
|
-
- spec/spec_tests/data/retryable_reads/find-serverErrors.yml
|
|
1365
|
-
- spec/spec_tests/data/retryable_reads/findOne.yml
|
|
1366
|
-
- spec/spec_tests/data/retryable_reads/mapReduce.yml
|
|
1367
|
-
- spec/spec_tests/data/retryable_reads/countDocuments.yml
|
|
1368
|
-
- spec/spec_tests/data/retryable_reads/listIndexNames.yml
|
|
2275
|
+
- spec/spec_tests/data/retryable_reads/changeStreams-db.coll.watch.yml
|
|
1369
2276
|
- spec/spec_tests/data/retryable_reads/changeStreams-db.watch-serverErrors.yml
|
|
1370
|
-
- spec/spec_tests/data/retryable_reads/listDatabases.yml
|
|
1371
|
-
- spec/spec_tests/data/retryable_reads/aggregate-serverErrors.yml
|
|
1372
2277
|
- spec/spec_tests/data/retryable_reads/changeStreams-db.watch.yml
|
|
1373
|
-
- spec/spec_tests/data/retryable_reads/
|
|
1374
|
-
- spec/spec_tests/data/retryable_reads/
|
|
1375
|
-
- spec/spec_tests/data/retryable_reads/
|
|
2278
|
+
- spec/spec_tests/data/retryable_reads/count-serverErrors.yml
|
|
2279
|
+
- spec/spec_tests/data/retryable_reads/count.yml
|
|
2280
|
+
- spec/spec_tests/data/retryable_reads/countDocuments-serverErrors.yml
|
|
2281
|
+
- spec/spec_tests/data/retryable_reads/countDocuments.yml
|
|
2282
|
+
- spec/spec_tests/data/retryable_reads/distinct-serverErrors.yml
|
|
1376
2283
|
- spec/spec_tests/data/retryable_reads/distinct.yml
|
|
1377
|
-
- spec/spec_tests/data/retryable_reads/
|
|
1378
|
-
- spec/spec_tests/data/retryable_reads/
|
|
1379
|
-
- spec/spec_tests/data/retryable_reads/
|
|
1380
|
-
- spec/spec_tests/data/retryable_reads/
|
|
2284
|
+
- spec/spec_tests/data/retryable_reads/estimatedDocumentCount-4.9.yml
|
|
2285
|
+
- spec/spec_tests/data/retryable_reads/estimatedDocumentCount-pre4.9.yml
|
|
2286
|
+
- spec/spec_tests/data/retryable_reads/estimatedDocumentCount-serverErrors-4.9.yml
|
|
2287
|
+
- spec/spec_tests/data/retryable_reads/estimatedDocumentCount-serverErrors-pre4.9.yml
|
|
2288
|
+
- spec/spec_tests/data/retryable_reads/find-serverErrors.yml
|
|
1381
2289
|
- spec/spec_tests/data/retryable_reads/find.yml
|
|
1382
|
-
- spec/spec_tests/data/retryable_reads/
|
|
1383
|
-
- spec/spec_tests/data/retryable_reads/
|
|
1384
|
-
- spec/spec_tests/data/retryable_reads/
|
|
1385
|
-
- spec/spec_tests/data/retryable_reads/
|
|
2290
|
+
- spec/spec_tests/data/retryable_reads/findOne-serverErrors.yml
|
|
2291
|
+
- spec/spec_tests/data/retryable_reads/findOne.yml
|
|
2292
|
+
- spec/spec_tests/data/retryable_reads/gridfs-download-serverErrors.yml
|
|
2293
|
+
- spec/spec_tests/data/retryable_reads/gridfs-download.yml
|
|
1386
2294
|
- spec/spec_tests/data/retryable_reads/gridfs-downloadByName-serverErrors.yml
|
|
2295
|
+
- spec/spec_tests/data/retryable_reads/gridfs-downloadByName.yml
|
|
2296
|
+
- spec/spec_tests/data/retryable_reads/listCollectionNames-serverErrors.yml
|
|
2297
|
+
- spec/spec_tests/data/retryable_reads/listCollectionNames.yml
|
|
2298
|
+
- spec/spec_tests/data/retryable_reads/listCollectionObjects-serverErrors.yml
|
|
2299
|
+
- spec/spec_tests/data/retryable_reads/listCollectionObjects.yml
|
|
2300
|
+
- spec/spec_tests/data/retryable_reads/listCollections-serverErrors.yml
|
|
2301
|
+
- spec/spec_tests/data/retryable_reads/listCollections.yml
|
|
2302
|
+
- spec/spec_tests/data/retryable_reads/listDatabaseNames-serverErrors.yml
|
|
1387
2303
|
- spec/spec_tests/data/retryable_reads/listDatabaseNames.yml
|
|
2304
|
+
- spec/spec_tests/data/retryable_reads/listDatabaseObjects-serverErrors.yml
|
|
2305
|
+
- spec/spec_tests/data/retryable_reads/listDatabaseObjects.yml
|
|
2306
|
+
- spec/spec_tests/data/retryable_reads/listDatabases-serverErrors.yml
|
|
2307
|
+
- spec/spec_tests/data/retryable_reads/listDatabases.yml
|
|
2308
|
+
- spec/spec_tests/data/retryable_reads/listIndexNames-serverErrors.yml
|
|
2309
|
+
- spec/spec_tests/data/retryable_reads/listIndexNames.yml
|
|
1388
2310
|
- spec/spec_tests/data/retryable_reads/listIndexes-serverErrors.yml
|
|
1389
|
-
- spec/spec_tests/data/retryable_reads/
|
|
1390
|
-
- spec/spec_tests/data/retryable_reads/
|
|
1391
|
-
- spec/spec_tests/data/
|
|
1392
|
-
- spec/spec_tests/data/
|
|
1393
|
-
- spec/spec_tests/data/
|
|
1394
|
-
- spec/spec_tests/data/
|
|
1395
|
-
- spec/spec_tests/data/
|
|
1396
|
-
- spec/spec_tests/data/
|
|
1397
|
-
- spec/spec_tests/data/
|
|
1398
|
-
- spec/spec_tests/data/
|
|
1399
|
-
- spec/spec_tests/data/
|
|
1400
|
-
- spec/spec_tests/data/
|
|
1401
|
-
- spec/spec_tests/data/
|
|
1402
|
-
- spec/spec_tests/data/
|
|
1403
|
-
- spec/spec_tests/data/
|
|
1404
|
-
- spec/spec_tests/data/
|
|
1405
|
-
- spec/spec_tests/data/
|
|
1406
|
-
- spec/spec_tests/data/
|
|
1407
|
-
- spec/spec_tests/data/
|
|
1408
|
-
- spec/spec_tests/data/
|
|
1409
|
-
- spec/spec_tests/data/
|
|
1410
|
-
- spec/spec_tests/data/
|
|
1411
|
-
- spec/spec_tests/data/
|
|
1412
|
-
- spec/spec_tests/data/
|
|
1413
|
-
- spec/spec_tests/data/
|
|
1414
|
-
- spec/spec_tests/data/
|
|
1415
|
-
- spec/spec_tests/data/
|
|
1416
|
-
- spec/spec_tests/data/
|
|
1417
|
-
- spec/spec_tests/data/
|
|
1418
|
-
- spec/spec_tests/data/
|
|
1419
|
-
- spec/spec_tests/data/
|
|
1420
|
-
- spec/spec_tests/data/
|
|
1421
|
-
- spec/spec_tests/data/
|
|
1422
|
-
- spec/spec_tests/data/
|
|
1423
|
-
- spec/spec_tests/data/
|
|
1424
|
-
- spec/spec_tests/data/
|
|
1425
|
-
- spec/spec_tests/data/
|
|
1426
|
-
- spec/spec_tests/data/
|
|
1427
|
-
- spec/spec_tests/data/
|
|
1428
|
-
- spec/spec_tests/data/
|
|
1429
|
-
- spec/spec_tests/data/
|
|
1430
|
-
- spec/spec_tests/data/
|
|
1431
|
-
- spec/spec_tests/data/
|
|
1432
|
-
- spec/spec_tests/data/
|
|
1433
|
-
- spec/spec_tests/data/
|
|
1434
|
-
- spec/spec_tests/data/
|
|
1435
|
-
- spec/spec_tests/data/
|
|
1436
|
-
- spec/spec_tests/data/
|
|
1437
|
-
- spec/spec_tests/data/
|
|
1438
|
-
- spec/spec_tests/data/
|
|
1439
|
-
- spec/spec_tests/data/
|
|
1440
|
-
- spec/spec_tests/data/
|
|
1441
|
-
- spec/spec_tests/data/
|
|
1442
|
-
- spec/spec_tests/data/
|
|
1443
|
-
- spec/spec_tests/data/
|
|
1444
|
-
- spec/spec_tests/data/
|
|
1445
|
-
- spec/spec_tests/data/sdam/
|
|
1446
|
-
- spec/spec_tests/data/sdam/
|
|
1447
|
-
- spec/spec_tests/data/sdam/
|
|
1448
|
-
- spec/spec_tests/data/sdam/
|
|
1449
|
-
- spec/spec_tests/data/sdam/
|
|
1450
|
-
- spec/spec_tests/data/sdam/
|
|
1451
|
-
- spec/spec_tests/data/sdam/
|
|
1452
|
-
- spec/spec_tests/data/sdam/
|
|
1453
|
-
- spec/spec_tests/data/sdam/
|
|
1454
|
-
- spec/spec_tests/data/sdam/
|
|
1455
|
-
- spec/spec_tests/data/sdam/
|
|
1456
|
-
- spec/spec_tests/data/sdam/
|
|
1457
|
-
- spec/spec_tests/data/sdam/
|
|
1458
|
-
- spec/spec_tests/data/sdam/
|
|
1459
|
-
- spec/spec_tests/data/sdam/
|
|
1460
|
-
- spec/spec_tests/data/sdam/
|
|
1461
|
-
- spec/spec_tests/data/sdam/
|
|
1462
|
-
- spec/spec_tests/data/sdam/
|
|
1463
|
-
- spec/spec_tests/data/sdam/
|
|
1464
|
-
- spec/spec_tests/data/sdam/
|
|
1465
|
-
- spec/spec_tests/data/sdam/
|
|
1466
|
-
- spec/spec_tests/data/sdam/
|
|
1467
|
-
- spec/spec_tests/data/sdam/
|
|
1468
|
-
- spec/spec_tests/data/sdam/
|
|
1469
|
-
- spec/spec_tests/data/sdam/
|
|
1470
|
-
- spec/spec_tests/data/sdam/
|
|
1471
|
-
- spec/spec_tests/data/sdam/
|
|
2311
|
+
- spec/spec_tests/data/retryable_reads/listIndexes.yml
|
|
2312
|
+
- spec/spec_tests/data/retryable_reads/mapReduce.yml
|
|
2313
|
+
- spec/spec_tests/data/retryable_writes/bulkWrite-errorLabels.yml
|
|
2314
|
+
- spec/spec_tests/data/retryable_writes/bulkWrite-serverErrors.yml
|
|
2315
|
+
- spec/spec_tests/data/retryable_writes/bulkWrite.yml
|
|
2316
|
+
- spec/spec_tests/data/retryable_writes/deleteMany.yml
|
|
2317
|
+
- spec/spec_tests/data/retryable_writes/deleteOne-errorLabels.yml
|
|
2318
|
+
- spec/spec_tests/data/retryable_writes/deleteOne-serverErrors.yml
|
|
2319
|
+
- spec/spec_tests/data/retryable_writes/deleteOne.yml
|
|
2320
|
+
- spec/spec_tests/data/retryable_writes/findOneAndDelete-errorLabels.yml
|
|
2321
|
+
- spec/spec_tests/data/retryable_writes/findOneAndDelete-serverErrors.yml
|
|
2322
|
+
- spec/spec_tests/data/retryable_writes/findOneAndDelete.yml
|
|
2323
|
+
- spec/spec_tests/data/retryable_writes/findOneAndReplace-errorLabels.yml
|
|
2324
|
+
- spec/spec_tests/data/retryable_writes/findOneAndReplace-serverErrors.yml
|
|
2325
|
+
- spec/spec_tests/data/retryable_writes/findOneAndReplace.yml
|
|
2326
|
+
- spec/spec_tests/data/retryable_writes/findOneAndUpdate-errorLabels.yml
|
|
2327
|
+
- spec/spec_tests/data/retryable_writes/findOneAndUpdate-serverErrors.yml
|
|
2328
|
+
- spec/spec_tests/data/retryable_writes/findOneAndUpdate.yml
|
|
2329
|
+
- spec/spec_tests/data/retryable_writes/insertMany-errorLabels.yml
|
|
2330
|
+
- spec/spec_tests/data/retryable_writes/insertMany-serverErrors.yml
|
|
2331
|
+
- spec/spec_tests/data/retryable_writes/insertMany.yml
|
|
2332
|
+
- spec/spec_tests/data/retryable_writes/insertOne-errorLabels.yml
|
|
2333
|
+
- spec/spec_tests/data/retryable_writes/insertOne-serverErrors.yml
|
|
2334
|
+
- spec/spec_tests/data/retryable_writes/insertOne.yml
|
|
2335
|
+
- spec/spec_tests/data/retryable_writes/replaceOne-errorLabels.yml
|
|
2336
|
+
- spec/spec_tests/data/retryable_writes/replaceOne-serverErrors.yml
|
|
2337
|
+
- spec/spec_tests/data/retryable_writes/replaceOne.yml
|
|
2338
|
+
- spec/spec_tests/data/retryable_writes/updateMany.yml
|
|
2339
|
+
- spec/spec_tests/data/retryable_writes/updateOne-errorLabels.yml
|
|
2340
|
+
- spec/spec_tests/data/retryable_writes/updateOne-serverErrors.yml
|
|
2341
|
+
- spec/spec_tests/data/retryable_writes/updateOne.yml
|
|
2342
|
+
- spec/spec_tests/data/sdam/errors/error_handling_handshake.yml
|
|
2343
|
+
- spec/spec_tests/data/sdam/errors/non-stale-network-error.yml
|
|
2344
|
+
- spec/spec_tests/data/sdam/errors/non-stale-network-timeout-error.yml
|
|
2345
|
+
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-InterruptedAtShutdown.yml
|
|
2346
|
+
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-InterruptedDueToReplStateChange.yml
|
|
2347
|
+
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-LegacyNotPrimary.yml
|
|
2348
|
+
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-NotPrimaryNoSecondaryOk.yml
|
|
2349
|
+
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-NotPrimaryOrSecondary.yml
|
|
2350
|
+
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-NotWritablePrimary.yml
|
|
2351
|
+
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-PrimarySteppedDown.yml
|
|
2352
|
+
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-ShutdownInProgress.yml
|
|
2353
|
+
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-InterruptedAtShutdown.yml
|
|
2354
|
+
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-InterruptedDueToReplStateChange.yml
|
|
2355
|
+
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-LegacyNotPrimary.yml
|
|
2356
|
+
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-NotPrimaryNoSecondaryOk.yml
|
|
2357
|
+
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-NotPrimaryOrSecondary.yml
|
|
2358
|
+
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-NotWritablePrimary.yml
|
|
2359
|
+
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-PrimarySteppedDown.yml
|
|
2360
|
+
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-ShutdownInProgress.yml
|
|
2361
|
+
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-InterruptedAtShutdown.yml
|
|
2362
|
+
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-InterruptedDueToReplStateChange.yml
|
|
2363
|
+
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-LegacyNotPrimary.yml
|
|
2364
|
+
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-NotPrimaryNoSecondaryOk.yml
|
|
2365
|
+
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-NotPrimaryOrSecondary.yml
|
|
2366
|
+
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-NotWritablePrimary.yml
|
|
2367
|
+
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-PrimarySteppedDown.yml
|
|
2368
|
+
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-ShutdownInProgress.yml
|
|
2369
|
+
- spec/spec_tests/data/sdam/errors/post-42-InterruptedAtShutdown.yml
|
|
2370
|
+
- spec/spec_tests/data/sdam/errors/post-42-InterruptedDueToReplStateChange.yml
|
|
2371
|
+
- spec/spec_tests/data/sdam/errors/post-42-LegacyNotPrimary.yml
|
|
2372
|
+
- spec/spec_tests/data/sdam/errors/post-42-NotPrimaryNoSecondaryOk.yml
|
|
2373
|
+
- spec/spec_tests/data/sdam/errors/post-42-NotPrimaryOrSecondary.yml
|
|
2374
|
+
- spec/spec_tests/data/sdam/errors/post-42-NotWritablePrimary.yml
|
|
2375
|
+
- spec/spec_tests/data/sdam/errors/post-42-PrimarySteppedDown.yml
|
|
2376
|
+
- spec/spec_tests/data/sdam/errors/post-42-ShutdownInProgress.yml
|
|
2377
|
+
- spec/spec_tests/data/sdam/errors/pre-42-InterruptedAtShutdown.yml
|
|
2378
|
+
- spec/spec_tests/data/sdam/errors/pre-42-InterruptedDueToReplStateChange.yml
|
|
2379
|
+
- spec/spec_tests/data/sdam/errors/pre-42-LegacyNotPrimary.yml
|
|
2380
|
+
- spec/spec_tests/data/sdam/errors/pre-42-NotPrimaryNoSecondaryOk.yml
|
|
2381
|
+
- spec/spec_tests/data/sdam/errors/pre-42-NotPrimaryOrSecondary.yml
|
|
2382
|
+
- spec/spec_tests/data/sdam/errors/pre-42-NotWritablePrimary.yml
|
|
2383
|
+
- spec/spec_tests/data/sdam/errors/pre-42-PrimarySteppedDown.yml
|
|
2384
|
+
- spec/spec_tests/data/sdam/errors/pre-42-ShutdownInProgress.yml
|
|
2385
|
+
- spec/spec_tests/data/sdam/errors/prefer-error-code.yml
|
|
2386
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-InterruptedAtShutdown.yml
|
|
2387
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-InterruptedDueToReplStateChange.yml
|
|
2388
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-NotPrimaryNoSecondaryOk.yml
|
|
2389
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-NotPrimaryOrSecondary.yml
|
|
2390
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-NotWritablePrimary.yml
|
|
2391
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-PrimarySteppedDown.yml
|
|
2392
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-ShutdownInProgress.yml
|
|
2393
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-InterruptedAtShutdown.yml
|
|
2394
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-InterruptedDueToReplStateChange.yml
|
|
2395
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-LegacyNotPrimary.yml
|
|
2396
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-NotPrimaryNoSecondaryOk.yml
|
|
2397
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-NotPrimaryOrSecondary.yml
|
|
2398
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-NotWritablePrimary.yml
|
|
2399
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-PrimarySteppedDown.yml
|
|
2400
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-ShutdownInProgress.yml
|
|
2401
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-network.yml
|
|
2402
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-timeout.yml
|
|
2403
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-InterruptedAtShutdown.yml
|
|
2404
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-InterruptedDueToReplStateChange.yml
|
|
2405
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-LegacyNotPrimary.yml
|
|
2406
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-NotPrimaryNoSecondaryOk.yml
|
|
2407
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-NotPrimaryOrSecondary.yml
|
|
2408
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-NotWritablePrimary.yml
|
|
2409
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-PrimarySteppedDown.yml
|
|
2410
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-ShutdownInProgress.yml
|
|
2411
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-network.yml
|
|
2412
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-timeout.yml
|
|
2413
|
+
- spec/spec_tests/data/sdam/errors/stale-topologyVersion-InterruptedAtShutdown.yml
|
|
2414
|
+
- spec/spec_tests/data/sdam/errors/stale-topologyVersion-InterruptedDueToReplStateChange.yml
|
|
2415
|
+
- spec/spec_tests/data/sdam/errors/stale-topologyVersion-LegacyNotPrimary.yml
|
|
2416
|
+
- spec/spec_tests/data/sdam/errors/stale-topologyVersion-NotPrimaryNoSecondaryOk.yml
|
|
2417
|
+
- spec/spec_tests/data/sdam/errors/stale-topologyVersion-NotPrimaryOrSecondary.yml
|
|
2418
|
+
- spec/spec_tests/data/sdam/errors/stale-topologyVersion-NotWritablePrimary.yml
|
|
2419
|
+
- spec/spec_tests/data/sdam/errors/stale-topologyVersion-PrimarySteppedDown.yml
|
|
2420
|
+
- spec/spec_tests/data/sdam/errors/stale-topologyVersion-ShutdownInProgress.yml
|
|
2421
|
+
- spec/spec_tests/data/sdam/errors/write_errors_ignored.yml
|
|
1472
2422
|
- spec/spec_tests/data/sdam/rs/compatible.yml
|
|
1473
|
-
- spec/spec_tests/data/sdam/rs/equal_electionids.yml
|
|
1474
|
-
- spec/spec_tests/data/sdam/rs/primary_mismatched_me.yml
|
|
1475
|
-
- spec/spec_tests/data/sdam/rs/member_reconfig.yml
|
|
1476
|
-
- spec/spec_tests/data/sdam/rs/primary_hint_from_secondary_with_mismatched_me.yml
|
|
1477
|
-
- spec/spec_tests/data/sdam/rs/new_primary.yml
|
|
1478
2423
|
- spec/spec_tests/data/sdam/rs/compatible_unknown.yml
|
|
1479
|
-
- spec/spec_tests/data/sdam/rs/sec_not_auth.yml
|
|
1480
2424
|
- spec/spec_tests/data/sdam/rs/discover_arbiters.yml
|
|
1481
|
-
- spec/spec_tests/data/sdam/rs/
|
|
1482
|
-
- spec/spec_tests/data/sdam/rs/
|
|
1483
|
-
- spec/spec_tests/data/sdam/rs/
|
|
2425
|
+
- spec/spec_tests/data/sdam/rs/discover_arbiters_replicaset.yml
|
|
2426
|
+
- spec/spec_tests/data/sdam/rs/discover_ghost.yml
|
|
2427
|
+
- spec/spec_tests/data/sdam/rs/discover_ghost_replicaset.yml
|
|
2428
|
+
- spec/spec_tests/data/sdam/rs/discover_hidden.yml
|
|
2429
|
+
- spec/spec_tests/data/sdam/rs/discover_hidden_replicaset.yml
|
|
2430
|
+
- spec/spec_tests/data/sdam/rs/discover_passives.yml
|
|
2431
|
+
- spec/spec_tests/data/sdam/rs/discover_passives_replicaset.yml
|
|
1484
2432
|
- spec/spec_tests/data/sdam/rs/discover_primary.yml
|
|
1485
|
-
- spec/spec_tests/data/sdam/rs/
|
|
1486
|
-
- spec/spec_tests/data/sdam/rs/
|
|
1487
|
-
- spec/spec_tests/data/sdam/rs/
|
|
1488
|
-
- spec/spec_tests/data/sdam/rs/
|
|
1489
|
-
- spec/spec_tests/data/sdam/rs/
|
|
1490
|
-
- spec/spec_tests/data/sdam/rs/ghost_discovered.yml
|
|
1491
|
-
- spec/spec_tests/data/sdam/rs/secondary_mismatched_me.yml
|
|
1492
|
-
- spec/spec_tests/data/sdam/rs/new_primary_wrong_set_name.yml
|
|
2433
|
+
- spec/spec_tests/data/sdam/rs/discover_primary_replicaset.yml
|
|
2434
|
+
- spec/spec_tests/data/sdam/rs/discover_rsother.yml
|
|
2435
|
+
- spec/spec_tests/data/sdam/rs/discover_rsother_replicaset.yml
|
|
2436
|
+
- spec/spec_tests/data/sdam/rs/discover_secondary.yml
|
|
2437
|
+
- spec/spec_tests/data/sdam/rs/discover_secondary_replicaset.yml
|
|
1493
2438
|
- spec/spec_tests/data/sdam/rs/discovery.yml
|
|
1494
|
-
- spec/spec_tests/data/sdam/rs/
|
|
1495
|
-
- spec/spec_tests/data/sdam/rs/
|
|
1496
|
-
- spec/spec_tests/data/sdam/rs/
|
|
1497
|
-
- spec/spec_tests/data/sdam/rs/secondary_wrong_set_name_with_primary_second.yml
|
|
1498
|
-
- spec/spec_tests/data/sdam/rs/primary_disconnect_electionid.yml
|
|
1499
|
-
- spec/spec_tests/data/sdam/rs/primary_becomes_mongos.yml
|
|
1500
|
-
- spec/spec_tests/data/sdam/rs/rsother_discovered.yml
|
|
1501
|
-
- spec/spec_tests/data/sdam/rs/response_from_removed.yml
|
|
1502
|
-
- spec/spec_tests/data/sdam/rs/primary_disconnect_setversion.yml
|
|
2439
|
+
- spec/spec_tests/data/sdam/rs/equal_electionids.yml
|
|
2440
|
+
- spec/spec_tests/data/sdam/rs/hosts_differ_from_seeds.yml
|
|
2441
|
+
- spec/spec_tests/data/sdam/rs/incompatible_arbiter.yml
|
|
1503
2442
|
- spec/spec_tests/data/sdam/rs/incompatible_ghost.yml
|
|
2443
|
+
- spec/spec_tests/data/sdam/rs/incompatible_other.yml
|
|
2444
|
+
- spec/spec_tests/data/sdam/rs/ls_timeout.yml
|
|
2445
|
+
- spec/spec_tests/data/sdam/rs/member_reconfig.yml
|
|
2446
|
+
- spec/spec_tests/data/sdam/rs/member_standalone.yml
|
|
2447
|
+
- spec/spec_tests/data/sdam/rs/new_primary.yml
|
|
2448
|
+
- spec/spec_tests/data/sdam/rs/new_primary_new_electionid.yml
|
|
2449
|
+
- spec/spec_tests/data/sdam/rs/new_primary_new_setversion.yml
|
|
2450
|
+
- spec/spec_tests/data/sdam/rs/new_primary_wrong_set_name.yml
|
|
1504
2451
|
- spec/spec_tests/data/sdam/rs/non_rs_member.yml
|
|
2452
|
+
- spec/spec_tests/data/sdam/rs/normalize_case.yml
|
|
1505
2453
|
- spec/spec_tests/data/sdam/rs/normalize_case_me.yml
|
|
1506
|
-
- spec/spec_tests/data/sdam/rs/
|
|
1507
|
-
- spec/spec_tests/data/sdam/rs/ls_timeout.yml
|
|
2454
|
+
- spec/spec_tests/data/sdam/rs/null_election_id.yml
|
|
1508
2455
|
- spec/spec_tests/data/sdam/rs/primary_becomes_ghost.yml
|
|
1509
|
-
- spec/spec_tests/data/sdam/rs/
|
|
1510
|
-
- spec/spec_tests/data/sdam/
|
|
2456
|
+
- spec/spec_tests/data/sdam/rs/primary_becomes_mongos.yml
|
|
2457
|
+
- spec/spec_tests/data/sdam/rs/primary_becomes_standalone.yml
|
|
2458
|
+
- spec/spec_tests/data/sdam/rs/primary_changes_set_name.yml
|
|
2459
|
+
- spec/spec_tests/data/sdam/rs/primary_disconnect.yml
|
|
2460
|
+
- spec/spec_tests/data/sdam/rs/primary_disconnect_electionid.yml
|
|
2461
|
+
- spec/spec_tests/data/sdam/rs/primary_disconnect_setversion.yml
|
|
2462
|
+
- spec/spec_tests/data/sdam/rs/primary_hint_from_secondary_with_mismatched_me.yml
|
|
2463
|
+
- spec/spec_tests/data/sdam/rs/primary_mismatched_me.yml
|
|
2464
|
+
- spec/spec_tests/data/sdam/rs/primary_mismatched_me_not_removed.yml
|
|
2465
|
+
- spec/spec_tests/data/sdam/rs/primary_reports_new_member.yml
|
|
2466
|
+
- spec/spec_tests/data/sdam/rs/primary_to_no_primary_mismatched_me.yml
|
|
2467
|
+
- spec/spec_tests/data/sdam/rs/primary_wrong_set_name.yml
|
|
2468
|
+
- spec/spec_tests/data/sdam/rs/repeated.yml
|
|
2469
|
+
- spec/spec_tests/data/sdam/rs/replicaset_rsnp.yml
|
|
2470
|
+
- spec/spec_tests/data/sdam/rs/response_from_removed.yml
|
|
2471
|
+
- spec/spec_tests/data/sdam/rs/ruby_primary_address_change.yml
|
|
2472
|
+
- spec/spec_tests/data/sdam/rs/ruby_secondary_wrong_set_name_with_primary_second.yml
|
|
2473
|
+
- spec/spec_tests/data/sdam/rs/sec_not_auth.yml
|
|
2474
|
+
- spec/spec_tests/data/sdam/rs/secondary_ignore_ok_0.yml
|
|
2475
|
+
- spec/spec_tests/data/sdam/rs/secondary_mismatched_me.yml
|
|
2476
|
+
- spec/spec_tests/data/sdam/rs/secondary_wrong_set_name.yml
|
|
2477
|
+
- spec/spec_tests/data/sdam/rs/secondary_wrong_set_name_with_primary.yml
|
|
2478
|
+
- spec/spec_tests/data/sdam/rs/setversion_without_electionid.yml
|
|
2479
|
+
- spec/spec_tests/data/sdam/rs/stepdown_change_set_name.yml
|
|
2480
|
+
- spec/spec_tests/data/sdam/rs/too_new.yml
|
|
2481
|
+
- spec/spec_tests/data/sdam/rs/too_old.yml
|
|
2482
|
+
- spec/spec_tests/data/sdam/rs/topology_version_equal.yml
|
|
2483
|
+
- spec/spec_tests/data/sdam/rs/topology_version_greater.yml
|
|
2484
|
+
- spec/spec_tests/data/sdam/rs/topology_version_less.yml
|
|
2485
|
+
- spec/spec_tests/data/sdam/rs/unexpected_mongos.yml
|
|
2486
|
+
- spec/spec_tests/data/sdam/rs/use_setversion_without_electionid.yml
|
|
2487
|
+
- spec/spec_tests/data/sdam/rs/wrong_set_name.yml
|
|
1511
2488
|
- spec/spec_tests/data/sdam/sharded/compatible.yml
|
|
1512
|
-
- spec/spec_tests/data/sdam/sharded/
|
|
2489
|
+
- spec/spec_tests/data/sdam/sharded/discover_single_mongos.yml
|
|
2490
|
+
- spec/spec_tests/data/sdam/sharded/ls_timeout_mongos.yml
|
|
1513
2491
|
- spec/spec_tests/data/sdam/sharded/mongos_disconnect.yml
|
|
2492
|
+
- spec/spec_tests/data/sdam/sharded/multiple_mongoses.yml
|
|
1514
2493
|
- spec/spec_tests/data/sdam/sharded/non_mongos_removed.yml
|
|
1515
2494
|
- spec/spec_tests/data/sdam/sharded/normalize_uri_case.yml
|
|
1516
|
-
- spec/spec_tests/data/sdam/sharded/
|
|
2495
|
+
- spec/spec_tests/data/sdam/sharded/ruby_primary_different_address.yml
|
|
2496
|
+
- spec/spec_tests/data/sdam/sharded/ruby_primary_mismatched_me.yml
|
|
1517
2497
|
- spec/spec_tests/data/sdam/sharded/too_new.yml
|
|
1518
|
-
- spec/spec_tests/data/sdam/sharded/
|
|
1519
|
-
- spec/spec_tests/data/
|
|
1520
|
-
- spec/spec_tests/data/
|
|
1521
|
-
- spec/spec_tests/data/
|
|
1522
|
-
- spec/spec_tests/data/
|
|
1523
|
-
- spec/spec_tests/data/
|
|
1524
|
-
- spec/spec_tests/data/
|
|
1525
|
-
- spec/spec_tests/data/
|
|
1526
|
-
- spec/spec_tests/data/
|
|
1527
|
-
- spec/spec_tests/data/
|
|
1528
|
-
- spec/spec_tests/data/
|
|
1529
|
-
- spec/spec_tests/data/
|
|
1530
|
-
- spec/spec_tests/data/
|
|
1531
|
-
- spec/spec_tests/
|
|
2498
|
+
- spec/spec_tests/data/sdam/sharded/too_old.yml
|
|
2499
|
+
- spec/spec_tests/data/sdam/single/compatible.yml
|
|
2500
|
+
- spec/spec_tests/data/sdam/single/direct_connection_external_ip.yml
|
|
2501
|
+
- spec/spec_tests/data/sdam/single/direct_connection_mongos.yml
|
|
2502
|
+
- spec/spec_tests/data/sdam/single/direct_connection_replicaset.yml
|
|
2503
|
+
- spec/spec_tests/data/sdam/single/direct_connection_rsarbiter.yml
|
|
2504
|
+
- spec/spec_tests/data/sdam/single/direct_connection_rsprimary.yml
|
|
2505
|
+
- spec/spec_tests/data/sdam/single/direct_connection_rssecondary.yml
|
|
2506
|
+
- spec/spec_tests/data/sdam/single/direct_connection_standalone.yml
|
|
2507
|
+
- spec/spec_tests/data/sdam/single/direct_connection_unavailable_seed.yml
|
|
2508
|
+
- spec/spec_tests/data/sdam/single/direct_connection_wrong_set_name.yml
|
|
2509
|
+
- spec/spec_tests/data/sdam/single/discover_standalone.yml
|
|
2510
|
+
- spec/spec_tests/data/sdam/single/discover_unavailable_seed.yml
|
|
2511
|
+
- spec/spec_tests/data/sdam/single/ls_timeout_standalone.yml
|
|
2512
|
+
- spec/spec_tests/data/sdam/single/not_ok_response.yml
|
|
2513
|
+
- spec/spec_tests/data/sdam/single/ruby_primary_different_address.yml
|
|
2514
|
+
- spec/spec_tests/data/sdam/single/ruby_primary_mismatched_me.yml
|
|
2515
|
+
- spec/spec_tests/data/sdam/single/standalone_removed.yml
|
|
2516
|
+
- spec/spec_tests/data/sdam/single/standalone_using_legacy_hello.yml
|
|
2517
|
+
- spec/spec_tests/data/sdam/single/too_new.yml
|
|
2518
|
+
- spec/spec_tests/data/sdam/single/too_old.yml
|
|
2519
|
+
- spec/spec_tests/data/sdam/single/too_old_then_upgraded.yml
|
|
2520
|
+
- spec/spec_tests/data/sdam_integration/cancel-server-check.yml
|
|
2521
|
+
- spec/spec_tests/data/sdam_integration/connectTimeoutMS.yml
|
|
2522
|
+
- spec/spec_tests/data/sdam_integration/find-network-error.yml
|
|
2523
|
+
- spec/spec_tests/data/sdam_integration/find-shutdown-error.yml
|
|
2524
|
+
- spec/spec_tests/data/sdam_integration/hello-command-error.yml
|
|
2525
|
+
- spec/spec_tests/data/sdam_integration/hello-network-error.yml
|
|
2526
|
+
- spec/spec_tests/data/sdam_integration/hello-timeout.yml
|
|
2527
|
+
- spec/spec_tests/data/sdam_integration/insert-network-error.yml
|
|
2528
|
+
- spec/spec_tests/data/sdam_integration/insert-shutdown-error.yml
|
|
2529
|
+
- spec/spec_tests/data/sdam_integration/rediscover-quickly-after-step-down.yml
|
|
2530
|
+
- spec/spec_tests/data/sdam_monitoring/discovered_standalone.yml
|
|
2531
|
+
- spec/spec_tests/data/sdam_monitoring/replica_set_other_chain.yml
|
|
2532
|
+
- spec/spec_tests/data/sdam_monitoring/replica_set_other_change.yml
|
|
2533
|
+
- spec/spec_tests/data/sdam_monitoring/replica_set_primary_address_change.yml
|
|
2534
|
+
- spec/spec_tests/data/sdam_monitoring/replica_set_with_me_mismatch.yml
|
|
2535
|
+
- spec/spec_tests/data/sdam_monitoring/replica_set_with_no_primary.yml
|
|
2536
|
+
- spec/spec_tests/data/sdam_monitoring/replica_set_with_primary.yml
|
|
2537
|
+
- spec/spec_tests/data/sdam_monitoring/replica_set_with_primary_and_secondary.yml
|
|
2538
|
+
- spec/spec_tests/data/sdam_monitoring/replica_set_with_primary_removal.yml
|
|
2539
|
+
- spec/spec_tests/data/sdam_monitoring/replica_set_with_removal.yml
|
|
2540
|
+
- spec/spec_tests/data/sdam_monitoring/replica_set_with_second_seed_removal.yml
|
|
2541
|
+
- spec/spec_tests/data/sdam_monitoring/required_replica_set.yml
|
|
2542
|
+
- spec/spec_tests/data/sdam_monitoring/standalone.yml
|
|
2543
|
+
- spec/spec_tests/data/sdam_monitoring/standalone_repeated.yml
|
|
2544
|
+
- spec/spec_tests/data/sdam_monitoring/standalone_suppress_equal_description_changes.yml
|
|
2545
|
+
- spec/spec_tests/data/sdam_monitoring/standalone_to_rs_with_me_mismatch.yml
|
|
2546
|
+
- spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/Nearest.yml
|
|
2547
|
+
- spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/Nearest_multiple.yml
|
|
2548
|
+
- spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/Nearest_non_matching.yml
|
|
2549
|
+
- spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/PossiblePrimary.yml
|
|
2550
|
+
- spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/PossiblePrimaryNearest.yml
|
|
2551
|
+
- spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/Primary.yml
|
|
2552
|
+
- spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/PrimaryPreferred.yml
|
|
2553
|
+
- spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/PrimaryPreferred_non_matching.yml
|
|
2554
|
+
- spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/Secondary.yml
|
|
2555
|
+
- spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/SecondaryPreferred.yml
|
|
2556
|
+
- spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/SecondaryPreferred_non_matching.yml
|
|
2557
|
+
- spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/Secondary_multi_tags.yml
|
|
2558
|
+
- spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/Secondary_multi_tags2.yml
|
|
2559
|
+
- spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/Secondary_non_matching.yml
|
|
2560
|
+
- spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/Nearest.yml
|
|
2561
|
+
- spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/Nearest_multiple.yml
|
|
2562
|
+
- spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/Nearest_non_matching.yml
|
|
2563
|
+
- spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/Primary.yml
|
|
2564
|
+
- spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/PrimaryPreferred.yml
|
|
2565
|
+
- spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/PrimaryPreferred_non_matching.yml
|
|
2566
|
+
- spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/Secondary.yml
|
|
2567
|
+
- spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/SecondaryPreferred.yml
|
|
2568
|
+
- spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/SecondaryPreferred_non_matching.yml
|
|
2569
|
+
- spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/SecondaryPreferred_tags.yml
|
|
2570
|
+
- spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/Secondary_non_matching.yml
|
|
2571
|
+
- spec/spec_tests/data/server_selection/Sharded/read/Nearest.yml
|
|
2572
|
+
- spec/spec_tests/data/server_selection/Sharded/read/Primary.yml
|
|
2573
|
+
- spec/spec_tests/data/server_selection/Sharded/read/PrimaryPreferred.yml
|
|
2574
|
+
- spec/spec_tests/data/server_selection/Sharded/read/Secondary.yml
|
|
2575
|
+
- spec/spec_tests/data/server_selection/Sharded/read/SecondaryPreferred.yml
|
|
2576
|
+
- spec/spec_tests/data/server_selection/Single/read/SecondaryPreferred.yml
|
|
2577
|
+
- spec/spec_tests/data/server_selection/Unknown/read/SecondaryPreferred.yml
|
|
2578
|
+
- spec/spec_tests/data/server_selection_rtt/first_value.yml
|
|
2579
|
+
- spec/spec_tests/data/server_selection_rtt/first_value_zero.yml
|
|
2580
|
+
- spec/spec_tests/data/server_selection_rtt/value_test_1.yml
|
|
2581
|
+
- spec/spec_tests/data/server_selection_rtt/value_test_2.yml
|
|
2582
|
+
- spec/spec_tests/data/server_selection_rtt/value_test_3.yml
|
|
2583
|
+
- spec/spec_tests/data/server_selection_rtt/value_test_4.yml
|
|
2584
|
+
- spec/spec_tests/data/server_selection_rtt/value_test_5.yml
|
|
2585
|
+
- spec/spec_tests/data/transactions/abort.yml
|
|
2586
|
+
- spec/spec_tests/data/transactions/bulk.yml
|
|
2587
|
+
- spec/spec_tests/data/transactions/causal-consistency.yml
|
|
2588
|
+
- spec/spec_tests/data/transactions/commit.yml
|
|
2589
|
+
- spec/spec_tests/data/transactions/count.yml
|
|
2590
|
+
- spec/spec_tests/data/transactions/create-collection.yml
|
|
2591
|
+
- spec/spec_tests/data/transactions/create-index.yml
|
|
2592
|
+
- spec/spec_tests/data/transactions/delete.yml
|
|
2593
|
+
- spec/spec_tests/data/transactions/error-labels.yml
|
|
2594
|
+
- spec/spec_tests/data/transactions/errors-client.yml
|
|
2595
|
+
- spec/spec_tests/data/transactions/errors.yml
|
|
2596
|
+
- spec/spec_tests/data/transactions/findOneAndDelete.yml
|
|
2597
|
+
- spec/spec_tests/data/transactions/findOneAndReplace.yml
|
|
2598
|
+
- spec/spec_tests/data/transactions/findOneAndUpdate.yml
|
|
2599
|
+
- spec/spec_tests/data/transactions/insert.yml
|
|
2600
|
+
- spec/spec_tests/data/transactions/isolation.yml
|
|
2601
|
+
- spec/spec_tests/data/transactions/mongos-pin-auto.yml
|
|
2602
|
+
- spec/spec_tests/data/transactions/mongos-recovery-token.yml
|
|
2603
|
+
- spec/spec_tests/data/transactions/pin-mongos.yml
|
|
2604
|
+
- spec/spec_tests/data/transactions/read-concern.yml
|
|
2605
|
+
- spec/spec_tests/data/transactions/read-pref.yml
|
|
2606
|
+
- spec/spec_tests/data/transactions/reads.yml
|
|
2607
|
+
- spec/spec_tests/data/transactions/retryable-abort-errorLabels.yml
|
|
2608
|
+
- spec/spec_tests/data/transactions/retryable-abort.yml
|
|
2609
|
+
- spec/spec_tests/data/transactions/retryable-commit-errorLabels.yml
|
|
2610
|
+
- spec/spec_tests/data/transactions/retryable-commit.yml
|
|
2611
|
+
- spec/spec_tests/data/transactions/retryable-writes.yml
|
|
2612
|
+
- spec/spec_tests/data/transactions/run-command.yml
|
|
2613
|
+
- spec/spec_tests/data/transactions/transaction-options-repl.yml
|
|
2614
|
+
- spec/spec_tests/data/transactions/transaction-options.yml
|
|
2615
|
+
- spec/spec_tests/data/transactions/update.yml
|
|
2616
|
+
- spec/spec_tests/data/transactions/write-concern.yml
|
|
2617
|
+
- spec/spec_tests/data/transactions_api/callback-aborts.yml
|
|
2618
|
+
- spec/spec_tests/data/transactions_api/callback-commits.yml
|
|
2619
|
+
- spec/spec_tests/data/transactions_api/callback-retry.yml
|
|
2620
|
+
- spec/spec_tests/data/transactions_api/commit-retry.yml
|
|
2621
|
+
- spec/spec_tests/data/transactions_api/commit-transienttransactionerror-4.2.yml
|
|
2622
|
+
- spec/spec_tests/data/transactions_api/commit-transienttransactionerror.yml
|
|
2623
|
+
- spec/spec_tests/data/transactions_api/commit-writeconcernerror.yml
|
|
2624
|
+
- spec/spec_tests/data/transactions_api/commit.yml
|
|
2625
|
+
- spec/spec_tests/data/transactions_api/transaction-options.yml
|
|
2626
|
+
- spec/spec_tests/data/transactions_unified/mongos-unpin.yml
|
|
2627
|
+
- spec/spec_tests/data/unified/valid-fail/operation-failure.yml
|
|
2628
|
+
- spec/spec_tests/data/unified/valid-pass/poc-change-streams.yml
|
|
2629
|
+
- spec/spec_tests/data/unified/valid-pass/poc-command-monitoring.yml
|
|
2630
|
+
- spec/spec_tests/data/unified/valid-pass/poc-crud.yml
|
|
2631
|
+
- spec/spec_tests/data/unified/valid-pass/poc-gridfs.yml
|
|
2632
|
+
- spec/spec_tests/data/unified/valid-pass/poc-retryable-reads.yml
|
|
2633
|
+
- spec/spec_tests/data/unified/valid-pass/poc-retryable-writes.yml
|
|
2634
|
+
- spec/spec_tests/data/unified/valid-pass/poc-sessions.yml
|
|
2635
|
+
- spec/spec_tests/data/unified/valid-pass/poc-transactions-convenient-api.yml
|
|
2636
|
+
- spec/spec_tests/data/unified/valid-pass/poc-transactions-mongos-pin-auto.yml
|
|
2637
|
+
- spec/spec_tests/data/unified/valid-pass/poc-transactions.yml
|
|
2638
|
+
- spec/spec_tests/data/uri_options/auth-options.yml
|
|
2639
|
+
- spec/spec_tests/data/uri_options/compression-options.yml
|
|
2640
|
+
- spec/spec_tests/data/uri_options/concern-options.yml
|
|
2641
|
+
- spec/spec_tests/data/uri_options/connection-options.yml
|
|
2642
|
+
- spec/spec_tests/data/uri_options/connection-pool-options.yml
|
|
2643
|
+
- spec/spec_tests/data/uri_options/read-preference-options.yml
|
|
2644
|
+
- spec/spec_tests/data/uri_options/ruby-auth-options.yml
|
|
2645
|
+
- spec/spec_tests/data/uri_options/ruby-connection-options.yml
|
|
2646
|
+
- spec/spec_tests/data/uri_options/tls-options.yml
|
|
2647
|
+
- spec/spec_tests/data/versioned_api/crud-api-version-1-strict.yml
|
|
2648
|
+
- spec/spec_tests/data/versioned_api/crud-api-version-1.yml
|
|
2649
|
+
- spec/spec_tests/data/versioned_api/runcommand-helper-no-api-version-declared.yml
|
|
2650
|
+
- spec/spec_tests/data/versioned_api/test-commands-deprecation-errors.yml
|
|
2651
|
+
- spec/spec_tests/data/versioned_api/test-commands-strict-mode.yml
|
|
2652
|
+
- spec/spec_tests/data/versioned_api/transaction-handling.yml
|
|
2653
|
+
- spec/spec_tests/dns_seedlist_discovery_spec.rb
|
|
2654
|
+
- spec/spec_tests/gridfs_spec.rb
|
|
2655
|
+
- spec/spec_tests/max_staleness_spec.rb
|
|
2656
|
+
- spec/spec_tests/read_write_concern_connection_string_spec.rb
|
|
2657
|
+
- spec/spec_tests/read_write_concern_document_spec.rb
|
|
2658
|
+
- spec/spec_tests/read_write_concern_operaton_spec.rb
|
|
2659
|
+
- spec/spec_tests/retryable_reads_spec.rb
|
|
2660
|
+
- spec/spec_tests/retryable_writes_spec.rb
|
|
2661
|
+
- spec/spec_tests/sdam_integration_spec.rb
|
|
2662
|
+
- spec/spec_tests/sdam_monitoring_spec.rb
|
|
2663
|
+
- spec/spec_tests/sdam_spec.rb
|
|
2664
|
+
- spec/spec_tests/server_selection_rtt_spec.rb
|
|
2665
|
+
- spec/spec_tests/server_selection_spec.rb
|
|
2666
|
+
- spec/spec_tests/transactions_api_spec.rb
|
|
2667
|
+
- spec/spec_tests/transactions_spec.rb
|
|
2668
|
+
- spec/spec_tests/transactions_unified_spec.rb
|
|
2669
|
+
- spec/spec_tests/unified_spec.rb
|
|
2670
|
+
- spec/spec_tests/uri_options_spec.rb
|
|
2671
|
+
- spec/spec_tests/versioned_api_spec.rb
|
|
2672
|
+
- spec/stress/cleanup_spec.rb
|
|
2673
|
+
- spec/stress/connection_pool_stress_spec.rb
|
|
2674
|
+
- spec/stress/connection_pool_timing_spec.rb
|
|
2675
|
+
- spec/stress/fork_reconnect_stress_spec.rb
|
|
2676
|
+
- spec/stress/push_monitor_close_spec.rb
|
|
1532
2677
|
- spec/support/authorization.rb
|
|
1533
|
-
- spec/support/
|
|
1534
|
-
- spec/support/
|
|
1535
|
-
- spec/support/
|
|
1536
|
-
- spec/support/
|
|
1537
|
-
- spec/support/
|
|
1538
|
-
- spec/support/
|
|
1539
|
-
- spec/support/client_registry_macros.rb
|
|
1540
|
-
- spec/support/sdam_monitoring.rb
|
|
1541
|
-
- spec/support/change_streams/operation.rb
|
|
1542
|
-
- spec/support/connection_string.rb
|
|
1543
|
-
- spec/support/constraints.rb
|
|
1544
|
-
- spec/support/matchers.rb
|
|
1545
|
-
- spec/support/sdam_formatter_integration.rb
|
|
1546
|
-
- spec/support/cmap/verifier.rb
|
|
1547
|
-
- spec/support/json_ext_formatter.rb
|
|
1548
|
-
- spec/support/cmap.rb
|
|
1549
|
-
- spec/support/server_selection.rb
|
|
1550
|
-
- spec/support/transactions/context.rb
|
|
1551
|
-
- spec/support/transactions/spec.rb
|
|
1552
|
-
- spec/support/transactions/operation.rb
|
|
1553
|
-
- spec/support/transactions/test.rb
|
|
1554
|
-
- spec/support/utils.rb
|
|
1555
|
-
- spec/support/server_discovery_and_monitoring.rb
|
|
1556
|
-
- spec/support/primary_socket.rb
|
|
1557
|
-
- spec/support/crud/outcome.rb
|
|
1558
|
-
- spec/support/crud/test_base.rb
|
|
1559
|
-
- spec/support/crud/context.rb
|
|
1560
|
-
- spec/support/crud/spec.rb
|
|
1561
|
-
- spec/support/crud/requirement.rb
|
|
1562
|
-
- spec/support/crud/operation.rb
|
|
1563
|
-
- spec/support/crud/test.rb
|
|
1564
|
-
- spec/support/crud/verifier.rb
|
|
1565
|
-
- spec/support/command_monitoring.rb
|
|
1566
|
-
- spec/support/cluster_config.rb
|
|
1567
|
-
- spec/support/lite_constraints.rb
|
|
1568
|
-
- spec/support/monitoring_ext.rb
|
|
1569
|
-
- spec/support/event_subscriber.rb
|
|
1570
|
-
- spec/support/client_registry.rb
|
|
1571
|
-
- spec/support/spec_config.rb
|
|
1572
|
-
- spec/support/spec_setup.rb
|
|
1573
|
-
- spec/support/common_shortcuts.rb
|
|
1574
|
-
- spec/support/server_selection_rtt.rb
|
|
1575
|
-
- spec/support/cluster_tools.rb
|
|
1576
|
-
- spec/support/certificates/multi-ca.crt
|
|
2678
|
+
- spec/support/aws_utils/base.rb
|
|
2679
|
+
- spec/support/aws_utils/inspector.rb
|
|
2680
|
+
- spec/support/aws_utils/orchestrator.rb
|
|
2681
|
+
- spec/support/aws_utils/provisioner.rb
|
|
2682
|
+
- spec/support/aws_utils.rb
|
|
2683
|
+
- spec/support/background_thread_registry.rb
|
|
1577
2684
|
- spec/support/certificates/README.md
|
|
2685
|
+
- spec/support/certificates/atlas-ocsp-ca.crt
|
|
2686
|
+
- spec/support/certificates/atlas-ocsp.crt
|
|
2687
|
+
- spec/support/certificates/ca.crt
|
|
2688
|
+
- spec/support/certificates/client-encrypted.key
|
|
2689
|
+
- spec/support/certificates/client-int.crt
|
|
2690
|
+
- spec/support/certificates/client-second-level-bundle.pem
|
|
1578
2691
|
- spec/support/certificates/client-second-level.crt
|
|
1579
|
-
- spec/support/certificates/python-ca.crt
|
|
1580
|
-
- spec/support/certificates/crl.pem
|
|
1581
|
-
- spec/support/certificates/client.crt
|
|
1582
2692
|
- spec/support/certificates/client-second-level.key
|
|
1583
|
-
- spec/support/certificates/client.key
|
|
1584
|
-
- spec/support/certificates/client-encrypted.key
|
|
1585
|
-
- spec/support/certificates/server-second-level-bundle.pem
|
|
1586
2693
|
- spec/support/certificates/client-second-level.pem
|
|
1587
|
-
- spec/support/certificates/
|
|
1588
|
-
- spec/support/certificates/
|
|
1589
|
-
- spec/support/certificates/client-
|
|
2694
|
+
- spec/support/certificates/client-x509.crt
|
|
2695
|
+
- spec/support/certificates/client-x509.key
|
|
2696
|
+
- spec/support/certificates/client-x509.pem
|
|
2697
|
+
- spec/support/certificates/client.crt
|
|
2698
|
+
- spec/support/certificates/client.key
|
|
1590
2699
|
- spec/support/certificates/client.pem
|
|
2700
|
+
- spec/support/certificates/crl.pem
|
|
2701
|
+
- spec/support/certificates/crl_client_revoked.pem
|
|
2702
|
+
- spec/support/certificates/multi-ca.crt
|
|
2703
|
+
- spec/support/certificates/python-ca.crt
|
|
2704
|
+
- spec/support/certificates/server-int.crt
|
|
2705
|
+
- spec/support/certificates/server-second-level-bundle.pem
|
|
1591
2706
|
- spec/support/certificates/server-second-level.crt
|
|
1592
2707
|
- spec/support/certificates/server-second-level.key
|
|
1593
|
-
- spec/support/certificates/client-second-level-bundle.pem
|
|
1594
|
-
- spec/support/certificates/ca.crt
|
|
1595
|
-
- spec/support/certificates/server.pem
|
|
1596
2708
|
- spec/support/certificates/server-second-level.pem
|
|
1597
|
-
- spec/support/
|
|
1598
|
-
- spec/
|
|
1599
|
-
- spec/
|
|
1600
|
-
- spec/
|
|
1601
|
-
- spec/
|
|
1602
|
-
- spec/
|
|
1603
|
-
- spec/
|
|
1604
|
-
- spec/
|
|
1605
|
-
- spec/
|
|
1606
|
-
|
|
1607
|
-
- spec/
|
|
1608
|
-
- spec/
|
|
1609
|
-
- spec/
|
|
1610
|
-
- spec/
|
|
1611
|
-
- spec/
|
|
1612
|
-
- spec/
|
|
1613
|
-
- spec/
|
|
1614
|
-
- spec/
|
|
1615
|
-
- spec/
|
|
1616
|
-
- spec/
|
|
1617
|
-
- spec/
|
|
1618
|
-
- spec/
|
|
1619
|
-
- spec/
|
|
1620
|
-
- spec/
|
|
1621
|
-
- spec/
|
|
1622
|
-
- spec/
|
|
1623
|
-
- spec/
|
|
1624
|
-
- spec/
|
|
1625
|
-
- spec/
|
|
1626
|
-
- spec/
|
|
1627
|
-
- spec/
|
|
1628
|
-
- spec/
|
|
1629
|
-
- spec/
|
|
1630
|
-
- spec/
|
|
1631
|
-
- spec/
|
|
1632
|
-
- spec/
|
|
1633
|
-
- spec/
|
|
1634
|
-
- spec/
|
|
1635
|
-
- spec/
|
|
1636
|
-
- spec/
|
|
1637
|
-
- spec/
|
|
1638
|
-
- spec/
|
|
1639
|
-
- spec/integration/transactions_examples_spec.rb
|
|
1640
|
-
- spec/mongo/server/app_metadata_spec.rb
|
|
1641
|
-
- spec/mongo/server/connection_spec.rb
|
|
1642
|
-
- spec/mongo/server/monitor/app_metadata_spec.rb
|
|
1643
|
-
- spec/mongo/server/monitor/connection_spec.rb
|
|
1644
|
-
- spec/mongo/server/connection_pool_spec.rb
|
|
1645
|
-
- spec/mongo/server/description_query_methods_spec.rb
|
|
1646
|
-
- spec/mongo/server/description_spec.rb
|
|
1647
|
-
- spec/mongo/server/connection_auth_spec.rb
|
|
1648
|
-
- spec/mongo/server/description/features_spec.rb
|
|
1649
|
-
- spec/mongo/server/round_trip_time_averager_spec.rb
|
|
1650
|
-
- spec/mongo/server/monitor_spec.rb
|
|
1651
|
-
- spec/mongo/dbref_spec.rb
|
|
1652
|
-
- spec/mongo/collection_spec.rb
|
|
1653
|
-
- spec/mongo/operation/insert_spec.rb
|
|
1654
|
-
- spec/mongo/operation/result_spec.rb
|
|
1655
|
-
- spec/mongo/operation/indexes_spec.rb
|
|
1656
|
-
- spec/mongo/operation/drop_index_spec.rb
|
|
1657
|
-
- spec/mongo/operation/kill_cursors_spec.rb
|
|
1658
|
-
- spec/mongo/operation/create_index_spec.rb
|
|
1659
|
-
- spec/mongo/operation/find/legacy_spec.rb
|
|
1660
|
-
- spec/mongo/operation/aggregate_spec.rb
|
|
1661
|
-
- spec/mongo/operation/delete/op_msg_spec.rb
|
|
1662
|
-
- spec/mongo/operation/delete/command_spec.rb
|
|
1663
|
-
- spec/mongo/operation/delete/bulk_spec.rb
|
|
1664
|
-
- spec/mongo/operation/delete_spec.rb
|
|
1665
|
-
- spec/mongo/operation/specifiable_spec.rb
|
|
1666
|
-
- spec/mongo/operation/get_more_spec.rb
|
|
1667
|
-
- spec/mongo/operation/read_preference_spec.rb
|
|
1668
|
-
- spec/mongo/operation/create_user_spec.rb
|
|
1669
|
-
- spec/mongo/operation/insert/op_msg_spec.rb
|
|
1670
|
-
- spec/mongo/operation/insert/command_spec.rb
|
|
1671
|
-
- spec/mongo/operation/insert/bulk_spec.rb
|
|
1672
|
-
- spec/mongo/operation/remove_user_spec.rb
|
|
1673
|
-
- spec/mongo/operation/limited_spec.rb
|
|
1674
|
-
- spec/mongo/operation/update/op_msg_spec.rb
|
|
1675
|
-
- spec/mongo/operation/update/command_spec.rb
|
|
1676
|
-
- spec/mongo/operation/update/bulk_spec.rb
|
|
1677
|
-
- spec/mongo/operation/collections_info_spec.rb
|
|
1678
|
-
- spec/mongo/operation/command_spec.rb
|
|
1679
|
-
- spec/mongo/operation/update_user_spec.rb
|
|
1680
|
-
- spec/mongo/operation/update_spec.rb
|
|
1681
|
-
- spec/mongo/operation/map_reduce_spec.rb
|
|
1682
|
-
- spec/mongo/operation/aggregate/result_spec.rb
|
|
1683
|
-
- spec/mongo/address/ipv4_spec.rb
|
|
1684
|
-
- spec/mongo/address/ipv6_spec.rb
|
|
1685
|
-
- spec/mongo/address/unix_spec.rb
|
|
1686
|
-
- spec/mongo/protocol/insert_spec.rb
|
|
1687
|
-
- spec/mongo/protocol/reply_spec.rb
|
|
1688
|
-
- spec/mongo/protocol/kill_cursors_spec.rb
|
|
1689
|
-
- spec/mongo/protocol/delete_spec.rb
|
|
1690
|
-
- spec/mongo/protocol/msg_spec.rb
|
|
1691
|
-
- spec/mongo/protocol/query_spec.rb
|
|
1692
|
-
- spec/mongo/protocol/get_more_spec.rb
|
|
1693
|
-
- spec/mongo/protocol/compressed_spec.rb
|
|
1694
|
-
- spec/mongo/protocol/registry_spec.rb
|
|
1695
|
-
- spec/mongo/protocol/update_spec.rb
|
|
1696
|
-
- spec/mongo/cluster/socket_reaper_spec.rb
|
|
1697
|
-
- spec/mongo/cluster/cursor_reaper_spec.rb
|
|
1698
|
-
- spec/mongo/cluster/topology/sharded_spec.rb
|
|
1699
|
-
- spec/mongo/cluster/topology/unknown_spec.rb
|
|
1700
|
-
- spec/mongo/cluster/topology/single_spec.rb
|
|
1701
|
-
- spec/mongo/cluster/topology/replica_set_spec.rb
|
|
1702
|
-
- spec/mongo/cluster/topology_spec.rb
|
|
1703
|
-
- spec/mongo/bulk_write_spec.rb
|
|
1704
|
-
- spec/mongo/index/view_spec.rb
|
|
1705
|
-
- spec/mongo/write_concern_spec.rb
|
|
1706
|
-
- spec/mongo/session/server_session_spec.rb
|
|
1707
|
-
- spec/mongo/session/session_pool_spec.rb
|
|
1708
|
-
- spec/mongo/monitoring/command_log_subscriber_spec.rb
|
|
1709
|
-
- spec/mongo/monitoring/event/command_failed_spec.rb
|
|
1710
|
-
- spec/mongo/monitoring/event/server_description_changed_spec.rb
|
|
1711
|
-
- spec/mongo/monitoring/event/topology_opening_spec.rb
|
|
1712
|
-
- spec/mongo/monitoring/event/secure_spec.rb
|
|
1713
|
-
- spec/mongo/monitoring/event/command_started_spec.rb
|
|
1714
|
-
- spec/mongo/monitoring/event/server_closed_spec.rb
|
|
1715
|
-
- spec/mongo/monitoring/event/topology_changed_spec.rb
|
|
1716
|
-
- spec/mongo/monitoring/event/server_opening_spec.rb
|
|
1717
|
-
- spec/mongo/monitoring/event/cmap/connection_check_out_failed_spec.rb
|
|
1718
|
-
- spec/mongo/monitoring/event/cmap/pool_closed_spec.rb
|
|
1719
|
-
- spec/mongo/monitoring/event/cmap/connection_ready_spec.rb
|
|
1720
|
-
- spec/mongo/monitoring/event/cmap/connection_check_out_started_spec.rb
|
|
1721
|
-
- spec/mongo/monitoring/event/cmap/connection_created_spec.rb
|
|
1722
|
-
- spec/mongo/monitoring/event/cmap/connection_checked_in_spec.rb
|
|
1723
|
-
- spec/mongo/monitoring/event/cmap/pool_created_spec.rb
|
|
1724
|
-
- spec/mongo/monitoring/event/cmap/connection_checked_out_spec.rb
|
|
1725
|
-
- spec/mongo/monitoring/event/cmap/connection_closed_spec.rb
|
|
1726
|
-
- spec/mongo/monitoring/event/cmap/pool_cleared_spec.rb
|
|
1727
|
-
- spec/mongo/monitoring/event/server_heartbeat_failed_spec.rb
|
|
1728
|
-
- spec/mongo/monitoring/event/command_succeeded_spec.rb
|
|
1729
|
-
- spec/mongo/monitoring/event/topology_closed_spec.rb
|
|
1730
|
-
- spec/mongo/monitoring/event/server_heartbeat_succeeded_spec.rb
|
|
1731
|
-
- spec/mongo/monitoring/event/server_heartbeat_started_spec.rb
|
|
1732
|
-
- spec/mongo/server_selector/secondary_preferred_spec.rb
|
|
1733
|
-
- spec/mongo/server_selector/secondary_spec.rb
|
|
1734
|
-
- spec/mongo/server_selector/primary_spec.rb
|
|
1735
|
-
- spec/mongo/server_selector/primary_preferred_spec.rb
|
|
1736
|
-
- spec/mongo/server_selector/nearest_spec.rb
|
|
1737
|
-
- spec/mongo/options/redacted_spec.rb
|
|
1738
|
-
- spec/mongo/write_concern/acknowledged_spec.rb
|
|
1739
|
-
- spec/mongo/write_concern/unacknowledged_spec.rb
|
|
1740
|
-
- spec/mongo/socket/ssl_spec.rb
|
|
1741
|
-
- spec/mongo/socket/tcp_spec.rb
|
|
1742
|
-
- spec/mongo/socket/unix_spec.rb
|
|
1743
|
-
- spec/mongo/id_spec.rb
|
|
1744
|
-
- spec/mongo/uri/srv_protocol_spec.rb
|
|
1745
|
-
- spec/mongo/client_construction_spec.rb
|
|
1746
|
-
- spec/mongo/cursor/builder/op_kill_cursors_spec.rb
|
|
1747
|
-
- spec/mongo/cursor/builder/get_more_command_spec.rb
|
|
1748
|
-
- spec/mongo/cursor/builder/op_get_more_spec.rb
|
|
1749
|
-
- spec/mongo/session_spec.rb
|
|
1750
|
-
- spec/mongo/error/no_server_available_spec.rb
|
|
1751
|
-
- spec/mongo/error/operation_failure_spec.rb
|
|
1752
|
-
- spec/mongo/error/parser_spec.rb
|
|
1753
|
-
- spec/mongo/database_spec.rb
|
|
1754
|
-
- spec/mongo/auth_spec.rb
|
|
1755
|
-
- spec/mongo/retryable_spec.rb
|
|
1756
|
-
- spec/mongo/bulk_write/result_spec.rb
|
|
1757
|
-
- spec/mongo/bulk_write/ordered_combiner_spec.rb
|
|
1758
|
-
- spec/mongo/bulk_write/unordered_combiner_spec.rb
|
|
1759
|
-
- spec/mongo/server_spec.rb
|
|
1760
|
-
- spec/mongo/uri_spec.rb
|
|
1761
|
-
- spec/mongo/socket_spec.rb
|
|
1762
|
-
- spec/mongo/event/subscriber_spec.rb
|
|
1763
|
-
- spec/mongo/event/publisher_spec.rb
|
|
1764
|
-
- spec/mongo/grid/file/chunk_spec.rb
|
|
1765
|
-
- spec/mongo/grid/file/info_spec.rb
|
|
1766
|
-
- spec/mongo/grid/fs_bucket_spec.rb
|
|
1767
|
-
- spec/mongo/grid/stream/write_spec.rb
|
|
1768
|
-
- spec/mongo/grid/stream/read_spec.rb
|
|
1769
|
-
- spec/mongo/grid/file_spec.rb
|
|
1770
|
-
- spec/mongo/grid/stream_spec.rb
|
|
1771
|
-
- spec/mongo/logger_spec.rb
|
|
1772
|
-
- spec/mongo/address_spec.rb
|
|
1773
|
-
- spec/mongo/collection/view/immutable_spec.rb
|
|
1774
|
-
- spec/mongo/collection/view/change_stream_spec.rb
|
|
1775
|
-
- spec/mongo/collection/view/aggregation_spec.rb
|
|
1776
|
-
- spec/mongo/collection/view/builder/find_command_spec.rb
|
|
1777
|
-
- spec/mongo/collection/view/builder/modifiers_spec.rb
|
|
1778
|
-
- spec/mongo/collection/view/builder/flags_spec.rb
|
|
1779
|
-
- spec/mongo/collection/view/builder/op_query_spec.rb
|
|
1780
|
-
- spec/mongo/collection/view/readable_spec.rb
|
|
1781
|
-
- spec/mongo/collection/view/writable_spec.rb
|
|
1782
|
-
- spec/mongo/collection/view/map_reduce_spec.rb
|
|
1783
|
-
- spec/mongo/collection/view/explainable_spec.rb
|
|
1784
|
-
- spec/mongo/collection/view_spec.rb
|
|
1785
|
-
- spec/mongo/client_spec.rb
|
|
1786
|
-
- spec/mongo/cluster_spec.rb
|
|
1787
|
-
- spec/mongo/bson_spec.rb
|
|
1788
|
-
- spec/mongo/session_transaction_spec.rb
|
|
1789
|
-
- spec/mongo/monitoring_spec.rb
|
|
1790
|
-
- spec/mongo/lint_spec.rb
|
|
1791
|
-
- spec/mongo/server_selector_spec.rb
|
|
1792
|
-
- spec/mongo/cursor_spec.rb
|
|
1793
|
-
- spec/mongo/uri_option_parsing_spec.rb
|
|
1794
|
-
- spec/mongo/auth/scram/negotiation_spec.rb
|
|
1795
|
-
- spec/mongo/auth/scram/conversation_spec.rb
|
|
1796
|
-
- spec/mongo/auth/x509_spec.rb
|
|
1797
|
-
- spec/mongo/auth/user_spec.rb
|
|
1798
|
-
- spec/mongo/auth/x509/conversation_spec.rb
|
|
1799
|
-
- spec/mongo/auth/scram_spec.rb
|
|
1800
|
-
- spec/mongo/auth/stringprep_spec.rb
|
|
1801
|
-
- spec/mongo/auth/ldap/conversation_spec.rb
|
|
1802
|
-
- spec/mongo/auth/cr_spec.rb
|
|
1803
|
-
- spec/mongo/auth/user/view_spec.rb
|
|
1804
|
-
- spec/mongo/auth/ldap_spec.rb
|
|
1805
|
-
- spec/mongo/auth/invalid_mechanism_spec.rb
|
|
1806
|
-
- spec/mongo/auth/stringprep/profiles/sasl_spec.rb
|
|
1807
|
-
- spec/mongo/cluster_time_spec.rb
|
|
2709
|
+
- spec/support/certificates/server.pem
|
|
2710
|
+
- spec/support/client_registry.rb
|
|
2711
|
+
- spec/support/client_registry_macros.rb
|
|
2712
|
+
- spec/support/cluster_tools.rb
|
|
2713
|
+
- spec/support/common_shortcuts.rb
|
|
2714
|
+
- spec/support/constraints.rb
|
|
2715
|
+
- spec/support/crypt/corpus/corpus-key-aws.json
|
|
2716
|
+
- spec/support/crypt/corpus/corpus-key-local.json
|
|
2717
|
+
- spec/support/crypt/corpus/corpus-schema.json
|
|
2718
|
+
- spec/support/crypt/corpus/corpus.json
|
|
2719
|
+
- spec/support/crypt/corpus/corpus_encrypted.json
|
|
2720
|
+
- spec/support/crypt/data_keys/key_document_aws.json
|
|
2721
|
+
- spec/support/crypt/data_keys/key_document_local.json
|
|
2722
|
+
- spec/support/crypt/external/external-key.json
|
|
2723
|
+
- spec/support/crypt/external/external-schema.json
|
|
2724
|
+
- spec/support/crypt/limits/limits-doc.json
|
|
2725
|
+
- spec/support/crypt/limits/limits-key.json
|
|
2726
|
+
- spec/support/crypt/limits/limits-schema.json
|
|
2727
|
+
- spec/support/crypt/schema_maps/schema_map_aws.json
|
|
2728
|
+
- spec/support/crypt/schema_maps/schema_map_aws_key_alt_names.json
|
|
2729
|
+
- spec/support/crypt/schema_maps/schema_map_local.json
|
|
2730
|
+
- spec/support/crypt/schema_maps/schema_map_local_key_alt_names.json
|
|
2731
|
+
- spec/support/crypt.rb
|
|
2732
|
+
- spec/support/dns.rb
|
|
2733
|
+
- spec/support/event_subscriber.rb
|
|
2734
|
+
- spec/support/json_ext_formatter.rb
|
|
2735
|
+
- spec/support/keyword_struct.rb
|
|
2736
|
+
- spec/support/local_resource_registry.rb
|
|
2737
|
+
- spec/support/matchers.rb
|
|
2738
|
+
- spec/support/monitoring_ext.rb
|
|
2739
|
+
- spec/support/ocsp
|
|
2740
|
+
- spec/support/primary_socket.rb
|
|
2741
|
+
- spec/support/sdam_formatter_integration.rb
|
|
2742
|
+
- spec/support/session_registry.rb
|
|
2743
|
+
- spec/support/shared/app_metadata.rb
|
|
2744
|
+
- spec/support/shared/protocol.rb
|
|
2745
|
+
- spec/support/shared/scram_conversation.rb
|
|
2746
|
+
- spec/support/shared/server_selector.rb
|
|
2747
|
+
- spec/support/shared/session.rb
|
|
2748
|
+
- spec/support/spec_config.rb
|
|
2749
|
+
- spec/support/spec_setup.rb
|
|
2750
|
+
- spec/support/utils.rb
|