mongo 2.4.1 → 2.14.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- checksums.yaml.gz.sig +0 -0
- data/CONTRIBUTING.md +12 -54
- data/LICENSE +1 -1
- data/README.md +71 -44
- data/Rakefile +104 -9
- data/lib/mongo/active_support.rb +17 -0
- data/lib/mongo/address/ipv4.rb +38 -8
- data/lib/mongo/address/ipv6.rb +61 -12
- data/lib/mongo/address/unix.rb +9 -6
- data/lib/mongo/address/validator.rb +99 -0
- data/lib/mongo/address.rb +160 -59
- data/lib/mongo/auth/aws/conversation.rb +128 -0
- data/lib/mongo/auth/aws/credentials_retriever.rb +219 -0
- data/lib/mongo/auth/aws/request.rb +283 -0
- data/lib/mongo/auth/aws.rb +37 -0
- data/lib/mongo/auth/base.rb +129 -0
- data/lib/mongo/auth/conversation_base.rb +52 -0
- data/lib/mongo/auth/cr/conversation.rb +47 -71
- data/lib/mongo/auth/cr.rb +14 -35
- data/lib/mongo/auth/credential_cache.rb +51 -0
- data/lib/mongo/auth/gssapi/conversation.rb +108 -0
- data/lib/mongo/auth/gssapi.rb +38 -0
- data/lib/mongo/auth/ldap/conversation.rb +22 -53
- data/lib/mongo/auth/ldap.rb +11 -33
- data/lib/mongo/auth/roles.rb +1 -1
- data/lib/mongo/auth/sasl_conversation_base.rb +111 -0
- data/lib/mongo/auth/scram/conversation.rb +10 -411
- data/lib/mongo/auth/scram.rb +42 -37
- data/lib/mongo/auth/scram256/conversation.rb +63 -0
- data/lib/mongo/auth/scram256.rb +31 -0
- data/lib/mongo/auth/scram_conversation_base.rb +402 -0
- data/lib/mongo/auth/stringprep/profiles/sasl.rb +74 -0
- data/lib/mongo/auth/stringprep/tables.rb +3233 -0
- data/lib/mongo/auth/stringprep/unicode_normalize/normalize.rb +175 -0
- data/lib/mongo/auth/stringprep/unicode_normalize/tables.rb +1171 -0
- data/lib/mongo/auth/stringprep.rb +115 -0
- data/lib/mongo/auth/user/view.rb +53 -25
- data/lib/mongo/auth/user.rb +73 -10
- data/lib/mongo/auth/x509/conversation.rb +46 -52
- data/lib/mongo/auth/x509.rb +26 -31
- data/lib/mongo/auth.rb +93 -17
- data/lib/mongo/background_thread.rb +159 -0
- data/lib/mongo/bson.rb +1 -1
- data/lib/mongo/bulk_write/combineable.rb +22 -5
- data/lib/mongo/bulk_write/ordered_combiner.rb +1 -1
- data/lib/mongo/bulk_write/result.rb +2 -2
- data/lib/mongo/bulk_write/result_combiner.rb +18 -8
- data/lib/mongo/bulk_write/transformable.rb +20 -11
- data/lib/mongo/bulk_write/unordered_combiner.rb +1 -1
- data/lib/mongo/bulk_write/validatable.rb +10 -2
- data/lib/mongo/bulk_write.rb +134 -46
- data/lib/mongo/caching_cursor.rb +74 -0
- data/lib/mongo/client.rb +1050 -113
- data/lib/mongo/client_encryption.rb +103 -0
- data/lib/mongo/cluster/periodic_executor.rb +101 -0
- data/lib/mongo/cluster/reapers/cursor_reaper.rb +152 -0
- data/lib/mongo/cluster/reapers/socket_reaper.rb +62 -0
- data/lib/mongo/cluster/sdam_flow.rb +603 -0
- data/lib/mongo/cluster/topology/base.rb +218 -0
- data/lib/mongo/cluster/topology/no_replica_set_options.rb +34 -0
- data/lib/mongo/cluster/topology/replica_set_no_primary.rb +169 -0
- data/lib/mongo/cluster/topology/replica_set_with_primary.rb +27 -0
- data/lib/mongo/cluster/topology/sharded.rb +13 -116
- data/lib/mongo/cluster/topology/single.rb +19 -113
- data/lib/mongo/cluster/topology/unknown.rb +11 -152
- data/lib/mongo/cluster/topology.rb +65 -17
- data/lib/mongo/cluster.rb +798 -274
- data/lib/mongo/cluster_time.rb +139 -0
- data/lib/mongo/collection/view/aggregation.rb +47 -14
- data/lib/mongo/collection/view/builder/aggregation.rb +39 -8
- data/lib/mongo/collection/view/builder/find_command.rb +56 -23
- data/lib/mongo/collection/view/builder/flags.rb +2 -2
- data/lib/mongo/collection/view/builder/map_reduce.rb +17 -6
- data/lib/mongo/collection/view/builder/modifiers.rb +2 -2
- data/lib/mongo/collection/view/builder/op_query.rb +10 -2
- data/lib/mongo/collection/view/builder.rb +1 -1
- data/lib/mongo/collection/view/change_stream/retryable.rb +40 -0
- data/lib/mongo/collection/view/change_stream.rb +369 -0
- data/lib/mongo/collection/view/explainable.rb +29 -10
- data/lib/mongo/collection/view/immutable.rb +2 -2
- data/lib/mongo/collection/view/iterable.rb +107 -24
- data/lib/mongo/collection/view/map_reduce.rb +65 -36
- data/lib/mongo/collection/view/readable.rb +211 -52
- data/lib/mongo/collection/view/writable.rb +283 -60
- data/lib/mongo/collection/view.rb +52 -28
- data/lib/mongo/collection.rb +324 -60
- data/lib/mongo/crypt/auto_decryption_context.rb +40 -0
- data/lib/mongo/crypt/auto_encrypter.rb +179 -0
- data/lib/mongo/crypt/auto_encryption_context.rb +44 -0
- data/lib/mongo/crypt/binary.rb +155 -0
- data/lib/mongo/crypt/binding.rb +1229 -0
- data/lib/mongo/crypt/context.rb +135 -0
- data/lib/mongo/crypt/data_key_context.rb +162 -0
- data/lib/mongo/crypt/encryption_io.rb +306 -0
- data/lib/mongo/crypt/explicit_decryption_context.rb +40 -0
- data/lib/mongo/crypt/explicit_encrypter.rb +117 -0
- data/lib/mongo/crypt/explicit_encryption_context.rb +89 -0
- data/lib/mongo/crypt/handle.rb +315 -0
- data/lib/mongo/crypt/hooks.rb +90 -0
- data/lib/mongo/crypt/kms_context.rb +67 -0
- data/lib/mongo/crypt/status.rb +131 -0
- data/lib/mongo/crypt.rb +33 -0
- data/lib/mongo/cursor/builder/get_more_command.rb +9 -4
- data/lib/mongo/cursor/builder/kill_cursors_command.rb +24 -6
- data/lib/mongo/cursor/builder/op_get_more.rb +4 -4
- data/lib/mongo/cursor/builder/op_kill_cursors.rb +26 -7
- data/lib/mongo/cursor/builder.rb +1 -1
- data/lib/mongo/cursor.rb +226 -44
- data/lib/mongo/database/view.rb +104 -26
- data/lib/mongo/database.rb +214 -31
- data/lib/mongo/dbref.rb +10 -3
- data/lib/mongo/distinguishing_semaphore.rb +55 -0
- data/lib/mongo/error/auth_error.rb +29 -0
- data/lib/mongo/error/bulk_write_error.rb +20 -2
- data/lib/mongo/error/change_stream_resumable.rb +37 -0
- data/lib/mongo/error/closed_stream.rb +1 -1
- data/lib/mongo/error/connection_check_out_timeout.rb +48 -0
- data/lib/mongo/error/connection_perished.rb +23 -0
- data/lib/mongo/error/credential_check_error.rb +26 -0
- data/lib/mongo/error/crypt_error.rb +31 -0
- data/lib/mongo/error/extra_file_chunk.rb +1 -1
- data/lib/mongo/error/failed_string_prep_validation.rb +38 -0
- data/lib/mongo/error/file_not_found.rb +1 -1
- data/lib/mongo/error/handshake_error.rb +24 -0
- data/lib/mongo/error/insufficient_iteration_count.rb +38 -0
- data/lib/mongo/error/invalid_address.rb +24 -0
- data/lib/mongo/error/invalid_application_name.rb +1 -1
- data/lib/mongo/error/invalid_bulk_operation.rb +1 -1
- data/lib/mongo/error/invalid_bulk_operation_type.rb +1 -1
- data/lib/mongo/error/invalid_collection_name.rb +1 -1
- data/lib/mongo/error/invalid_cursor_operation.rb +27 -0
- data/lib/mongo/error/invalid_database_name.rb +1 -1
- data/lib/mongo/error/invalid_document.rb +1 -1
- data/lib/mongo/error/invalid_file.rb +1 -1
- data/lib/mongo/error/invalid_file_revision.rb +1 -1
- data/lib/mongo/error/invalid_min_pool_size.rb +35 -0
- data/lib/mongo/error/invalid_nonce.rb +2 -2
- data/lib/mongo/error/invalid_read_concern.rb +28 -0
- data/lib/mongo/error/invalid_read_option.rb +35 -0
- data/lib/mongo/error/invalid_replacement_document.rb +1 -1
- data/lib/mongo/error/invalid_server_auth_host.rb +22 -0
- data/lib/mongo/error/invalid_server_auth_response.rb +23 -0
- data/lib/mongo/error/invalid_server_preference.rb +7 -1
- data/lib/mongo/error/invalid_session.rb +37 -0
- data/lib/mongo/error/invalid_signature.rb +1 -1
- data/lib/mongo/error/invalid_transaction_operation.rb +82 -0
- data/lib/mongo/error/invalid_txt_record.rb +27 -0
- data/lib/mongo/error/invalid_update_document.rb +1 -1
- data/lib/mongo/error/invalid_uri.rb +8 -7
- data/lib/mongo/error/invalid_write_concern.rb +3 -3
- data/lib/mongo/error/kms_error.rb +22 -0
- data/lib/mongo/error/lint_error.rb +35 -0
- data/lib/mongo/error/max_bson_size.rb +15 -4
- data/lib/mongo/error/max_message_size.rb +1 -1
- data/lib/mongo/error/mismatched_domain.rb +27 -0
- data/lib/mongo/error/missing_file_chunk.rb +1 -1
- data/lib/mongo/error/missing_password.rb +29 -0
- data/lib/mongo/error/missing_resume_token.rb +39 -0
- data/lib/mongo/error/missing_scram_server_signature.rb +27 -0
- data/lib/mongo/error/mongocryptd_spawn_error.rb +22 -0
- data/lib/mongo/error/multi_index_drop.rb +1 -1
- data/lib/mongo/error/need_primary_server.rb +1 -1
- data/lib/mongo/error/no_server_available.rb +14 -5
- data/lib/mongo/error/no_srv_records.rb +26 -0
- data/lib/mongo/error/notable.rb +80 -0
- data/lib/mongo/error/operation_failure.rb +244 -13
- data/lib/mongo/error/parser.rb +156 -7
- data/lib/mongo/error/pool_closed_error.rb +50 -0
- data/lib/mongo/error/raise_original_error.rb +29 -0
- data/lib/mongo/error/sdam_error_detection.rb +72 -0
- data/lib/mongo/error/server_certificate_revoked.rb +22 -0
- data/lib/mongo/error/session_ended.rb +27 -0
- data/lib/mongo/error/sessions_not_supported.rb +35 -0
- data/lib/mongo/error/socket_error.rb +5 -2
- data/lib/mongo/error/socket_timeout_error.rb +5 -2
- data/lib/mongo/error/unchangeable_collection_option.rb +1 -1
- data/lib/mongo/error/unexpected_chunk_length.rb +1 -1
- data/lib/mongo/error/unexpected_response.rb +1 -1
- data/lib/mongo/error/unknown_payload_type.rb +41 -0
- data/lib/mongo/error/unsupported_array_filters.rb +56 -0
- data/lib/mongo/error/unsupported_collation.rb +7 -2
- data/lib/mongo/error/unsupported_features.rb +1 -19
- data/lib/mongo/error/unsupported_message_type.rb +23 -0
- data/lib/mongo/error/unsupported_option.rb +101 -0
- data/lib/mongo/error/write_retryable.rb +27 -0
- data/lib/mongo/error.rb +130 -1
- data/lib/mongo/event/base.rb +42 -0
- data/lib/mongo/event/listeners.rb +1 -1
- data/lib/mongo/event/publisher.rb +1 -1
- data/lib/mongo/event/subscriber.rb +1 -1
- data/lib/mongo/event.rb +10 -11
- data/lib/mongo/grid/file/chunk.rb +6 -6
- data/lib/mongo/grid/file/info.rb +35 -5
- data/lib/mongo/grid/file.rb +6 -1
- data/lib/mongo/grid/fs_bucket.rb +76 -34
- data/lib/mongo/grid/stream/read.rb +47 -24
- data/lib/mongo/grid/stream/write.rb +34 -12
- data/lib/mongo/grid/stream.rb +1 -1
- data/lib/mongo/grid.rb +1 -1
- data/lib/mongo/id.rb +64 -0
- data/lib/mongo/index/view.rb +98 -34
- data/lib/mongo/index.rb +2 -1
- data/lib/mongo/lint.rb +102 -0
- data/lib/mongo/loggable.rb +6 -2
- data/lib/mongo/logger.rb +4 -6
- data/lib/mongo/monitoring/cmap_log_subscriber.rb +53 -0
- data/lib/mongo/monitoring/command_log_subscriber.rb +22 -5
- data/lib/mongo/monitoring/event/cmap/base.rb +28 -0
- data/lib/mongo/monitoring/event/cmap/connection_check_out_failed.rb +85 -0
- data/lib/mongo/monitoring/event/cmap/connection_check_out_started.rb +56 -0
- data/lib/mongo/monitoring/event/cmap/connection_checked_in.rb +71 -0
- data/lib/mongo/monitoring/event/cmap/connection_checked_out.rb +72 -0
- data/lib/mongo/monitoring/event/cmap/connection_closed.rb +103 -0
- data/lib/mongo/monitoring/event/cmap/connection_created.rb +64 -0
- data/lib/mongo/monitoring/event/cmap/connection_ready.rb +64 -0
- data/lib/mongo/monitoring/event/cmap/pool_cleared.rb +57 -0
- data/lib/mongo/monitoring/event/cmap/pool_closed.rb +65 -0
- data/lib/mongo/monitoring/event/cmap/pool_created.rb +72 -0
- data/lib/mongo/monitoring/event/cmap.rb +25 -0
- data/lib/mongo/monitoring/event/command_failed.rb +30 -6
- data/lib/mongo/monitoring/event/command_started.rb +82 -6
- data/lib/mongo/monitoring/event/command_succeeded.rb +16 -3
- data/lib/mongo/monitoring/event/secure.rb +23 -3
- data/lib/mongo/monitoring/event/server_closed.rb +15 -2
- data/lib/mongo/monitoring/event/server_description_changed.rb +41 -3
- data/lib/mongo/monitoring/event/server_heartbeat_failed.rb +78 -0
- data/lib/mongo/monitoring/event/server_heartbeat_started.rb +62 -0
- data/lib/mongo/monitoring/event/server_heartbeat_succeeded.rb +70 -0
- data/lib/mongo/monitoring/event/server_opening.rb +15 -2
- data/lib/mongo/monitoring/event/topology_changed.rb +16 -2
- data/lib/mongo/monitoring/event/topology_closed.rb +15 -2
- data/lib/mongo/monitoring/event/topology_opening.rb +15 -2
- data/lib/mongo/monitoring/event.rb +6 -1
- data/lib/mongo/monitoring/publishable.rb +27 -45
- data/lib/mongo/monitoring/sdam_log_subscriber.rb +1 -1
- data/lib/mongo/monitoring/server_closed_log_subscriber.rb +1 -1
- data/lib/mongo/monitoring/server_description_changed_log_subscriber.rb +10 -2
- data/lib/mongo/monitoring/server_opening_log_subscriber.rb +1 -1
- data/lib/mongo/monitoring/topology_changed_log_subscriber.rb +5 -5
- data/lib/mongo/monitoring/topology_closed_log_subscriber.rb +30 -0
- data/lib/mongo/monitoring/topology_opening_log_subscriber.rb +2 -2
- data/lib/mongo/monitoring/unified_sdam_log_subscriber.rb +62 -0
- data/lib/mongo/monitoring.rb +198 -67
- data/lib/mongo/operation/aggregate/command.rb +44 -0
- data/lib/mongo/operation/aggregate/op_msg.rb +31 -0
- data/lib/mongo/operation/aggregate/result.rb +101 -0
- data/lib/mongo/operation/aggregate.rb +36 -0
- data/lib/mongo/operation/collections_info/command.rb +45 -0
- data/lib/mongo/operation/collections_info/result.rb +56 -0
- data/lib/mongo/operation/collections_info.rb +31 -0
- data/lib/mongo/operation/command/command.rb +38 -0
- data/lib/mongo/operation/command/op_msg.rb +28 -0
- data/lib/mongo/operation/command.rb +31 -0
- data/lib/mongo/operation/count/command.rb +38 -0
- data/lib/mongo/operation/count/op_msg.rb +29 -0
- data/lib/mongo/operation/count.rb +31 -0
- data/lib/mongo/operation/create/command.rb +38 -0
- data/lib/mongo/operation/create/op_msg.rb +29 -0
- data/lib/mongo/operation/create.rb +31 -0
- data/lib/mongo/operation/create_index/command.rb +42 -0
- data/lib/mongo/operation/create_index/op_msg.rb +38 -0
- data/lib/mongo/operation/create_index.rb +31 -0
- data/lib/mongo/operation/create_user/command.rb +43 -0
- data/lib/mongo/operation/create_user/op_msg.rb +35 -0
- data/lib/mongo/operation/create_user.rb +31 -0
- data/lib/mongo/operation/delete/bulk_result.rb +48 -0
- data/lib/mongo/operation/delete/command.rb +46 -0
- data/lib/mongo/operation/delete/legacy.rb +54 -0
- data/lib/mongo/operation/delete/op_msg.rb +45 -0
- data/lib/mongo/operation/delete/result.rb +45 -0
- data/lib/mongo/operation/delete.rb +38 -0
- data/lib/mongo/operation/distinct/command.rb +38 -0
- data/lib/mongo/operation/distinct/op_msg.rb +30 -0
- data/lib/mongo/operation/distinct.rb +31 -0
- data/lib/mongo/operation/drop/command.rb +38 -0
- data/lib/mongo/operation/drop/op_msg.rb +29 -0
- data/lib/mongo/operation/drop.rb +31 -0
- data/lib/mongo/operation/drop_database/command.rb +38 -0
- data/lib/mongo/operation/drop_database/op_msg.rb +29 -0
- data/lib/mongo/operation/drop_database.rb +31 -0
- data/lib/mongo/operation/drop_index/command.rb +42 -0
- data/lib/mongo/operation/drop_index/op_msg.rb +35 -0
- data/lib/mongo/operation/drop_index.rb +31 -0
- data/lib/mongo/operation/explain/command.rb +43 -0
- data/lib/mongo/operation/explain/legacy.rb +42 -0
- data/lib/mongo/operation/explain/op_msg.rb +37 -0
- data/lib/mongo/operation/explain/result.rb +53 -0
- data/lib/mongo/operation/explain.rb +33 -0
- data/lib/mongo/operation/find/command.rb +39 -0
- data/lib/mongo/operation/find/legacy/result.rb +43 -0
- data/lib/mongo/operation/find/legacy.rb +40 -0
- data/lib/mongo/operation/find/op_msg.rb +31 -0
- data/lib/mongo/operation/find/result.rb +73 -0
- data/lib/mongo/operation/find.rb +33 -0
- data/lib/mongo/operation/get_more/command.rb +39 -0
- data/lib/mongo/operation/get_more/legacy.rb +36 -0
- data/lib/mongo/operation/get_more/op_msg.rb +30 -0
- data/lib/mongo/operation/get_more/result.rb +72 -0
- data/lib/mongo/operation/get_more.rb +33 -0
- data/lib/mongo/operation/indexes/command.rb +39 -0
- data/lib/mongo/operation/indexes/legacy.rb +45 -0
- data/lib/mongo/operation/indexes/op_msg.rb +31 -0
- data/lib/mongo/operation/indexes/result.rb +102 -0
- data/lib/mongo/operation/indexes.rb +33 -0
- data/lib/mongo/operation/insert/bulk_result.rb +109 -0
- data/lib/mongo/operation/insert/command.rb +56 -0
- data/lib/mongo/operation/insert/legacy.rb +65 -0
- data/lib/mongo/operation/insert/op_msg.rb +51 -0
- data/lib/mongo/operation/insert/result.rb +72 -0
- data/lib/mongo/operation/insert.rb +41 -0
- data/lib/mongo/operation/kill_cursors/command.rb +37 -0
- data/lib/mongo/operation/kill_cursors/legacy.rb +37 -0
- data/lib/mongo/operation/kill_cursors/op_msg.rb +29 -0
- data/lib/mongo/operation/kill_cursors.rb +8 -16
- data/lib/mongo/operation/list_collections/command.rb +43 -0
- data/lib/mongo/operation/list_collections/op_msg.rb +36 -0
- data/lib/mongo/operation/list_collections/result.rb +107 -0
- data/lib/mongo/operation/list_collections.rb +32 -0
- data/lib/mongo/operation/map_reduce/command.rb +40 -0
- data/lib/mongo/operation/map_reduce/op_msg.rb +31 -0
- data/lib/mongo/operation/map_reduce/result.rb +139 -0
- data/lib/mongo/operation/map_reduce.rb +32 -0
- data/lib/mongo/operation/op_msg_base.rb +30 -0
- data/lib/mongo/operation/parallel_scan/command.rb +55 -0
- data/lib/mongo/operation/parallel_scan/op_msg.rb +43 -0
- data/lib/mongo/operation/parallel_scan/result.rb +65 -0
- data/lib/mongo/operation/parallel_scan.rb +32 -0
- data/lib/mongo/operation/remove_user/command.rb +43 -0
- data/lib/mongo/operation/remove_user/op_msg.rb +35 -0
- data/lib/mongo/operation/remove_user.rb +31 -0
- data/lib/mongo/operation/result.rb +190 -39
- data/lib/mongo/operation/shared/bypass_document_validation.rb +43 -0
- data/lib/mongo/operation/shared/causal_consistency_supported.rb +42 -0
- data/lib/mongo/operation/shared/collections_info_or_list_collections.rb +58 -0
- data/lib/mongo/operation/shared/executable.rb +106 -0
- data/lib/mongo/operation/shared/executable_no_validate.rb +29 -0
- data/lib/mongo/operation/shared/executable_transaction_label.rb +27 -0
- data/lib/mongo/operation/shared/idable.rb +65 -0
- data/lib/mongo/operation/shared/limited.rb +39 -0
- data/lib/mongo/operation/shared/object_id_generator.rb +37 -0
- data/lib/mongo/operation/shared/op_msg_or_command.rb +44 -0
- data/lib/mongo/operation/shared/op_msg_or_find_command.rb +47 -0
- data/lib/mongo/operation/shared/op_msg_or_list_indexes_command.rb +47 -0
- data/lib/mongo/operation/shared/polymorphic_lookup.rb +33 -0
- data/lib/mongo/operation/shared/polymorphic_result.rb +47 -0
- data/lib/mongo/operation/shared/read_preference_supported.rb +109 -0
- data/lib/mongo/operation/shared/response_handling.rb +169 -0
- data/lib/mongo/operation/shared/result/aggregatable.rb +71 -0
- data/lib/mongo/operation/shared/result/use_legacy_error_parser.rb +29 -0
- data/lib/mongo/operation/shared/sessions_supported.rb +239 -0
- data/lib/mongo/operation/shared/specifiable.rb +582 -0
- data/lib/mongo/operation/shared/write.rb +97 -0
- data/lib/mongo/operation/shared/write_concern_supported.rb +40 -0
- data/lib/mongo/operation/update/bulk_result.rb +126 -0
- data/lib/mongo/operation/update/command.rb +47 -0
- data/lib/mongo/operation/update/legacy/result.rb +109 -0
- data/lib/mongo/operation/update/legacy.rb +65 -0
- data/lib/mongo/operation/update/op_msg.rb +45 -0
- data/lib/mongo/operation/update/result.rb +110 -0
- data/lib/mongo/operation/update.rb +38 -0
- data/lib/mongo/operation/update_user/command.rb +42 -0
- data/lib/mongo/operation/update_user/op_msg.rb +35 -0
- data/lib/mongo/operation/update_user.rb +31 -0
- data/lib/mongo/operation/users_info/command.rb +43 -0
- data/lib/mongo/operation/users_info/op_msg.rb +36 -0
- data/lib/mongo/operation/users_info/result.rb +45 -0
- data/lib/mongo/operation/users_info.rb +32 -0
- data/lib/mongo/operation.rb +65 -22
- data/lib/mongo/options/mapper.rb +10 -3
- data/lib/mongo/options/redacted.rb +1 -1
- data/lib/mongo/options.rb +1 -1
- data/lib/mongo/protocol/bit_vector.rb +5 -4
- data/lib/mongo/protocol/compressed.rb +135 -0
- data/lib/mongo/protocol/delete.rb +9 -7
- data/lib/mongo/protocol/get_more.rb +17 -14
- data/lib/mongo/protocol/insert.rb +12 -8
- data/lib/mongo/protocol/kill_cursors.rb +15 -20
- data/lib/mongo/protocol/message.rb +166 -27
- data/lib/mongo/protocol/msg.rb +381 -0
- data/lib/mongo/protocol/query.rb +65 -10
- data/lib/mongo/protocol/registry.rb +76 -0
- data/lib/mongo/protocol/reply.rb +20 -15
- data/lib/mongo/protocol/serializers.rb +280 -12
- data/lib/mongo/protocol/update.rb +15 -9
- data/lib/mongo/protocol.rb +3 -0
- data/lib/mongo/query_cache.rb +242 -0
- data/lib/mongo/retryable.rb +411 -47
- data/lib/mongo/semaphore.rb +46 -0
- data/lib/mongo/server/app_metadata.rb +211 -0
- data/lib/mongo/server/connection.rb +223 -109
- data/lib/mongo/server/connection_base.rb +250 -0
- data/lib/mongo/server/connection_common.rb +135 -0
- data/lib/mongo/server/connection_pool/populator.rb +58 -0
- data/lib/mongo/server/connection_pool.rb +717 -58
- data/lib/mongo/server/context.rb +13 -13
- data/lib/mongo/server/description/features.rb +71 -14
- data/lib/mongo/server/description.rb +257 -70
- data/lib/mongo/server/monitor/app_metadata.rb +34 -0
- data/lib/mongo/server/monitor/connection.rb +177 -66
- data/lib/mongo/server/monitor.rb +232 -93
- data/lib/mongo/server/pending_connection.rb +255 -0
- data/lib/mongo/server/push_monitor/connection.rb +28 -0
- data/lib/mongo/server/push_monitor.rb +173 -0
- data/lib/mongo/server/round_trip_time_averager.rb +73 -0
- data/lib/mongo/server.rb +365 -54
- data/lib/mongo/server_selector/base.rb +622 -0
- data/lib/mongo/server_selector/nearest.rb +31 -20
- data/lib/mongo/server_selector/primary.rb +30 -14
- data/lib/mongo/server_selector/primary_preferred.rb +37 -24
- data/lib/mongo/server_selector/secondary.rb +31 -20
- data/lib/mongo/server_selector/secondary_preferred.rb +37 -22
- data/lib/mongo/server_selector.rb +14 -3
- data/lib/mongo/session/server_session.rb +119 -0
- data/lib/mongo/session/session_pool.rb +150 -0
- data/lib/mongo/session.rb +1067 -0
- data/lib/mongo/socket/ocsp_cache.rb +97 -0
- data/lib/mongo/socket/ocsp_verifier.rb +368 -0
- data/lib/mongo/socket/ssl.rb +278 -67
- data/lib/mongo/socket/tcp.rb +45 -32
- data/lib/mongo/socket/unix.rb +21 -34
- data/lib/mongo/socket.rb +273 -49
- data/lib/mongo/srv/monitor.rb +121 -0
- data/lib/mongo/srv/resolver.rb +134 -0
- data/lib/mongo/srv/result.rb +125 -0
- data/lib/mongo/srv.rb +17 -0
- data/lib/mongo/timeout.rb +51 -0
- data/lib/mongo/topology_version.rb +89 -0
- data/lib/mongo/uri/options_mapper.rb +582 -0
- data/lib/mongo/uri/srv_protocol.rb +238 -0
- data/lib/mongo/uri.rb +269 -320
- data/lib/mongo/utils.rb +73 -0
- data/lib/mongo/version.rb +2 -2
- data/lib/mongo/write_concern/acknowledged.rb +14 -4
- data/lib/mongo/write_concern/base.rb +67 -0
- data/lib/mongo/write_concern/unacknowledged.rb +14 -4
- data/lib/mongo/write_concern.rb +16 -35
- data/lib/mongo.rb +43 -5
- data/mongo.gemspec +14 -6
- data/spec/NOTES.aws-auth.md +296 -0
- data/spec/README.aws-auth.md +318 -0
- data/spec/README.md +692 -0
- data/spec/USERS.md +72 -0
- data/spec/atlas/atlas_connectivity_spec.rb +24 -0
- data/spec/atlas/operations_spec.rb +25 -0
- data/spec/integration/auth_spec.rb +266 -0
- data/spec/integration/awaited_ismaster_spec.rb +28 -0
- data/spec/integration/aws_auth_request_spec.rb +74 -0
- data/spec/integration/aws_credentials_retriever_spec.rb +103 -0
- data/spec/integration/bson_symbol_spec.rb +36 -0
- data/spec/integration/bulk_insert_spec.rb +80 -0
- data/spec/integration/bulk_write_spec.rb +67 -0
- data/spec/integration/change_stream_examples_spec.rb +205 -0
- data/spec/integration/change_stream_spec.rb +805 -0
- data/spec/integration/check_clean_slate_spec.rb +16 -0
- data/spec/integration/client_authentication_options_spec.rb +501 -0
- data/spec/integration/client_connectivity_spec.rb +38 -0
- data/spec/integration/client_construction_aws_auth_spec.rb +191 -0
- data/spec/integration/client_construction_spec.rb +236 -0
- data/spec/integration/client_side_encryption/auto_encryption_bulk_writes_spec.rb +357 -0
- data/spec/integration/client_side_encryption/auto_encryption_command_monitoring_spec.rb +303 -0
- data/spec/integration/client_side_encryption/auto_encryption_mongocryptd_spawn_spec.rb +72 -0
- data/spec/integration/client_side_encryption/auto_encryption_old_wire_version_spec.rb +79 -0
- data/spec/integration/client_side_encryption/auto_encryption_reconnect_spec.rb +221 -0
- data/spec/integration/client_side_encryption/auto_encryption_spec.rb +601 -0
- data/spec/integration/client_side_encryption/bson_size_limit_spec.rb +187 -0
- data/spec/integration/client_side_encryption/bypass_mongocryptd_spawn_spec.rb +78 -0
- data/spec/integration/client_side_encryption/client_close_spec.rb +63 -0
- data/spec/integration/client_side_encryption/corpus_spec.rb +233 -0
- data/spec/integration/client_side_encryption/custom_endpoint_spec.rb +132 -0
- data/spec/integration/client_side_encryption/data_key_spec.rb +165 -0
- data/spec/integration/client_side_encryption/explicit_encryption_spec.rb +114 -0
- data/spec/integration/client_side_encryption/external_key_vault_spec.rb +141 -0
- data/spec/integration/client_side_encryption/views_spec.rb +44 -0
- data/spec/integration/client_spec.rb +44 -0
- data/spec/integration/client_update_spec.rb +154 -0
- data/spec/integration/collection_indexes_prose_spec.rb +55 -0
- data/spec/integration/command_monitoring_spec.rb +146 -0
- data/spec/integration/command_spec.rb +176 -0
- data/spec/integration/connect_single_rs_name_spec.rb +72 -0
- data/spec/integration/connection_pool_populator_spec.rb +302 -0
- data/spec/integration/connection_spec.rb +331 -0
- data/spec/integration/crud_spec.rb +162 -0
- data/spec/integration/cursor_reaping_spec.rb +136 -0
- data/spec/integration/docs_examples_spec.rb +197 -0
- data/spec/integration/error_detection_spec.rb +39 -0
- data/spec/integration/fork_reconnect_spec.rb +198 -0
- data/spec/integration/get_more_spec.rb +39 -0
- data/spec/integration/grid_fs_bucket_spec.rb +48 -0
- data/spec/integration/heartbeat_events_spec.rb +99 -0
- data/spec/integration/mmapv1_spec.rb +28 -0
- data/spec/integration/mongos_pinning_spec.rb +34 -0
- data/spec/integration/ocsp_connectivity_spec.rb +26 -0
- data/spec/integration/ocsp_verifier_cache_spec.rb +188 -0
- data/spec/integration/ocsp_verifier_spec.rb +334 -0
- data/spec/integration/operation_failure_code_spec.rb +26 -0
- data/spec/integration/query_cache_spec.rb +1045 -0
- data/spec/integration/query_cache_transactions_spec.rb +190 -0
- data/spec/integration/read_concern_spec.rb +89 -0
- data/spec/integration/read_preference_spec.rb +541 -0
- data/spec/integration/reconnect_spec.rb +174 -0
- data/spec/integration/retryable_errors_spec.rb +283 -0
- data/spec/integration/retryable_writes/retryable_writes_36_and_older_spec.rb +761 -0
- data/spec/integration/retryable_writes/retryable_writes_40_and_newer_spec.rb +402 -0
- data/spec/integration/retryable_writes/shared/adds_diagnostics.rb +15 -0
- data/spec/integration/retryable_writes/shared/does_not_support_retries.rb +24 -0
- data/spec/integration/retryable_writes/shared/only_supports_legacy_retries.rb +25 -0
- data/spec/integration/retryable_writes/shared/performs_legacy_retries.rb +217 -0
- data/spec/integration/retryable_writes/shared/performs_modern_retries.rb +232 -0
- data/spec/integration/retryable_writes/shared/performs_no_retries.rb +110 -0
- data/spec/integration/retryable_writes/shared/supports_legacy_retries.rb +19 -0
- data/spec/integration/retryable_writes/shared/supports_modern_retries.rb +25 -0
- data/spec/integration/retryable_writes/shared/supports_retries.rb +16 -0
- data/spec/integration/retryable_writes_errors_spec.rb +31 -0
- data/spec/integration/sdam_error_handling_spec.rb +421 -0
- data/spec/integration/sdam_events_spec.rb +118 -0
- data/spec/integration/sdam_prose_spec.rb +64 -0
- data/spec/integration/server_description_spec.rb +45 -0
- data/spec/integration/server_monitor_spec.rb +52 -0
- data/spec/integration/server_selection_spec.rb +36 -0
- data/spec/integration/server_selector_spec.rb +85 -0
- data/spec/integration/server_spec.rb +64 -0
- data/spec/integration/shell_examples_spec.rb +981 -0
- data/spec/integration/size_limit_spec.rb +112 -0
- data/spec/integration/srv_monitoring_spec.rb +403 -0
- data/spec/integration/srv_spec.rb +56 -0
- data/spec/integration/ssl_uri_options_spec.rb +25 -0
- data/spec/integration/step_down_spec.rb +204 -0
- data/spec/integration/time_zone_querying_spec.rb +52 -0
- data/spec/integration/transactions_api_examples_spec.rb +59 -0
- data/spec/integration/transactions_examples_spec.rb +226 -0
- data/spec/integration/x509_auth_spec.rb +109 -0
- data/spec/integration/zlib_compression_spec.rb +25 -0
- data/spec/kerberos/kerberos_spec.rb +91 -0
- data/spec/lite_spec_helper.rb +158 -0
- data/spec/mongo/address/ipv4_spec.rb +5 -1
- data/spec/mongo/address/ipv6_spec.rb +33 -1
- data/spec/mongo/address/unix_spec.rb +1 -1
- data/spec/mongo/address/validator_spec.rb +51 -0
- data/spec/mongo/address_spec.rb +113 -7
- data/spec/mongo/auth/aws/request_region_spec.rb +42 -0
- data/spec/mongo/auth/aws/request_spec.rb +76 -0
- data/spec/mongo/auth/cr_spec.rb +30 -32
- data/spec/mongo/auth/gssapi/conversation_spec.rb +121 -0
- data/spec/mongo/auth/invalid_mechanism_spec.rb +11 -0
- data/spec/mongo/auth/ldap/conversation_spec.rb +2 -2
- data/spec/mongo/auth/ldap_spec.rb +11 -30
- data/spec/mongo/auth/scram/conversation_spec.rb +63 -58
- data/spec/mongo/auth/scram256/conversation_spec.rb +171 -0
- data/spec/mongo/auth/scram_negotiation_spec.rb +528 -0
- data/spec/mongo/auth/scram_spec.rb +92 -47
- data/spec/mongo/auth/stringprep/profiles/sasl_spec.rb +113 -0
- data/spec/mongo/auth/stringprep_spec.rb +188 -0
- data/spec/mongo/auth/user/view_spec.rb +401 -70
- data/spec/mongo/auth/user_spec.rb +162 -12
- data/spec/mongo/auth/x509/conversation_spec.rb +2 -2
- data/spec/mongo/auth/x509_spec.rb +40 -29
- data/spec/mongo/auth_spec.rb +4 -4
- data/spec/mongo/bulk_write/ordered_combiner_spec.rb +6 -6
- data/spec/mongo/bulk_write/result_spec.rb +124 -0
- data/spec/mongo/bulk_write/unordered_combiner_spec.rb +4 -4
- data/spec/mongo/bulk_write_spec.rb +803 -236
- data/spec/mongo/caching_cursor_spec.rb +70 -0
- data/spec/mongo/client_construction_spec.rb +2210 -0
- data/spec/mongo/client_encryption_spec.rb +411 -0
- data/spec/mongo/client_spec.rb +492 -431
- data/spec/mongo/cluster/cursor_reaper_spec.rb +40 -69
- data/spec/mongo/cluster/periodic_executor_spec.rb +16 -0
- data/spec/mongo/cluster/socket_reaper_spec.rb +43 -0
- data/spec/mongo/cluster/topology/replica_set_spec.rb +247 -226
- data/spec/mongo/cluster/topology/sharded_spec.rb +56 -55
- data/spec/mongo/cluster/topology/single_spec.rb +91 -31
- data/spec/mongo/cluster/topology/unknown_spec.rb +30 -115
- data/spec/mongo/cluster/topology_spec.rb +132 -19
- data/spec/mongo/cluster_spec.rb +447 -159
- data/spec/mongo/cluster_time_spec.rb +148 -0
- data/spec/mongo/collection/view/aggregation_spec.rb +143 -41
- data/spec/mongo/collection/view/builder/find_command_spec.rb +76 -10
- data/spec/mongo/collection/view/change_stream_resume_spec.rb +392 -0
- data/spec/mongo/collection/view/change_stream_spec.rb +531 -0
- data/spec/mongo/collection/view/explainable_spec.rb +88 -5
- data/spec/mongo/collection/view/immutable_spec.rb +1 -1
- data/spec/mongo/collection/view/iterable_spec.rb +38 -0
- data/spec/mongo/collection/view/map_reduce_spec.rb +253 -32
- data/spec/mongo/collection/view/readable_spec.rb +125 -60
- data/spec/mongo/collection/view/writable_spec.rb +273 -34
- data/spec/mongo/collection/view_spec.rb +10 -9
- data/spec/mongo/collection_spec.rb +2533 -232
- data/spec/mongo/crypt/auto_decryption_context_spec.rb +90 -0
- data/spec/mongo/crypt/auto_encrypter_spec.rb +187 -0
- data/spec/mongo/crypt/auto_encryption_context_spec.rb +107 -0
- data/spec/mongo/crypt/binary_spec.rb +110 -0
- data/spec/mongo/crypt/binding/binary_spec.rb +51 -0
- data/spec/mongo/crypt/binding/context_spec.rb +252 -0
- data/spec/mongo/crypt/binding/helpers_spec.rb +41 -0
- data/spec/mongo/crypt/binding/mongocrypt_spec.rb +139 -0
- data/spec/mongo/crypt/binding/status_spec.rb +94 -0
- data/spec/mongo/crypt/binding/version_spec.rb +17 -0
- data/spec/mongo/crypt/binding_unloaded_spec.rb +20 -0
- data/spec/mongo/crypt/data_key_context_spec.rb +213 -0
- data/spec/mongo/crypt/encryption_io_spec.rb +136 -0
- data/spec/mongo/crypt/explicit_decryption_context_spec.rb +72 -0
- data/spec/mongo/crypt/explicit_encryption_context_spec.rb +170 -0
- data/spec/mongo/crypt/handle_spec.rb +232 -0
- data/spec/mongo/crypt/helpers/mongo_crypt_spec_helper.rb +108 -0
- data/spec/mongo/crypt/status_spec.rb +147 -0
- data/spec/mongo/cursor/builder/get_more_command_spec.rb +37 -11
- data/spec/mongo/cursor/builder/op_get_more_spec.rb +11 -4
- data/spec/mongo/cursor/builder/op_kill_cursors_spec.rb +61 -0
- data/spec/mongo/cursor_spec.rb +317 -46
- data/spec/mongo/database_spec.rb +739 -65
- data/spec/mongo/distinguishing_semaphore_spec.rb +63 -0
- data/spec/mongo/error/bulk_write_error_spec.rb +49 -0
- data/spec/mongo/error/crypt_error_spec.rb +26 -0
- data/spec/mongo/error/max_bson_size_spec.rb +35 -0
- data/spec/mongo/error/no_server_available_spec.rb +32 -0
- data/spec/mongo/error/notable_spec.rb +59 -0
- data/spec/mongo/error/operation_failure_heavy_spec.rb +58 -0
- data/spec/mongo/error/operation_failure_spec.rb +490 -0
- data/spec/mongo/error/parser_spec.rb +392 -5
- data/spec/mongo/error/unsupported_option_spec.rb +54 -0
- data/spec/mongo/grid/file/info_spec.rb +3 -3
- data/spec/mongo/grid/fs_bucket_spec.rb +299 -191
- data/spec/mongo/grid/stream/read_spec.rb +13 -19
- data/spec/mongo/grid/stream/write_spec.rb +88 -28
- data/spec/mongo/id_spec.rb +35 -0
- data/spec/mongo/index/view_spec.rb +511 -140
- data/spec/mongo/lint_spec.rb +228 -0
- data/spec/mongo/logger_spec.rb +14 -12
- data/spec/mongo/monitoring/event/cmap/connection_check_out_failed_spec.rb +23 -0
- data/spec/mongo/monitoring/event/cmap/connection_check_out_started_spec.rb +19 -0
- data/spec/mongo/monitoring/event/cmap/connection_checked_in_spec.rb +30 -0
- data/spec/mongo/monitoring/event/cmap/connection_checked_out_spec.rb +30 -0
- data/spec/mongo/monitoring/event/cmap/connection_closed_spec.rb +27 -0
- data/spec/mongo/monitoring/event/cmap/connection_created_spec.rb +24 -0
- data/spec/mongo/monitoring/event/cmap/connection_ready_spec.rb +24 -0
- data/spec/mongo/monitoring/event/cmap/pool_cleared_spec.rb +19 -0
- data/spec/mongo/monitoring/event/cmap/pool_closed_spec.rb +26 -0
- data/spec/mongo/monitoring/event/cmap/pool_created_spec.rb +33 -0
- data/spec/mongo/monitoring/event/command_failed_spec.rb +30 -0
- data/spec/mongo/monitoring/event/command_started_spec.rb +27 -5
- data/spec/mongo/monitoring/event/command_succeeded_spec.rb +30 -8
- data/spec/mongo/monitoring/event/secure_spec.rb +43 -1
- data/spec/mongo/monitoring/event/server_closed_spec.rb +35 -0
- data/spec/mongo/monitoring/event/server_description_changed_spec.rb +35 -0
- data/spec/mongo/monitoring/event/server_heartbeat_failed_spec.rb +31 -0
- data/spec/mongo/monitoring/event/server_heartbeat_started_spec.rb +31 -0
- data/spec/mongo/monitoring/event/server_heartbeat_succeeded_spec.rb +31 -0
- data/spec/mongo/monitoring/event/server_opening_spec.rb +35 -0
- data/spec/mongo/monitoring/event/topology_changed_spec.rb +41 -0
- data/spec/mongo/monitoring/event/topology_closed_spec.rb +35 -0
- data/spec/mongo/monitoring/event/topology_opening_spec.rb +35 -0
- data/spec/mongo/monitoring_spec.rb +30 -5
- data/spec/mongo/operation/aggregate/result_spec.rb +85 -0
- data/spec/mongo/operation/aggregate_spec.rb +72 -0
- data/spec/mongo/operation/collections_info_spec.rb +42 -0
- data/spec/mongo/operation/command_spec.rb +80 -0
- data/spec/mongo/operation/create_index_spec.rb +56 -0
- data/spec/mongo/operation/create_user_spec.rb +47 -0
- data/spec/mongo/operation/delete/bulk_spec.rb +239 -0
- data/spec/mongo/operation/delete/command_spec.rb +112 -0
- data/spec/mongo/operation/delete/op_msg_spec.rb +254 -0
- data/spec/mongo/operation/delete_spec.rb +226 -0
- data/spec/mongo/operation/drop_index_spec.rb +54 -0
- data/spec/mongo/operation/find/legacy_spec.rb +125 -0
- data/spec/mongo/operation/get_more_spec.rb +58 -0
- data/spec/mongo/operation/indexes_spec.rb +34 -0
- data/spec/mongo/operation/insert/bulk_spec.rb +267 -0
- data/spec/mongo/operation/insert/command_spec.rb +115 -0
- data/spec/mongo/operation/insert/op_msg_spec.rb +285 -0
- data/spec/mongo/operation/insert_spec.rb +284 -0
- data/spec/mongo/operation/kill_cursors_spec.rb +4 -4
- data/spec/mongo/operation/limited_spec.rb +5 -3
- data/spec/mongo/operation/map_reduce_spec.rb +125 -0
- data/spec/mongo/operation/read_preference_legacy_spec.rb +363 -0
- data/spec/mongo/operation/read_preference_op_msg_spec.rb +304 -0
- data/spec/mongo/operation/remove_user_spec.rb +46 -0
- data/spec/mongo/operation/result_spec.rb +39 -4
- data/spec/mongo/operation/specifiable_spec.rb +2 -2
- data/spec/mongo/operation/update/bulk_spec.rb +233 -0
- data/spec/mongo/operation/update/command_spec.rb +119 -0
- data/spec/mongo/operation/update/op_msg_spec.rb +260 -0
- data/spec/mongo/operation/update_spec.rb +258 -0
- data/spec/mongo/operation/update_user_spec.rb +46 -0
- data/spec/mongo/protocol/compressed_spec.rb +66 -0
- data/spec/mongo/protocol/delete_spec.rb +24 -9
- data/spec/mongo/protocol/get_more_spec.rb +26 -11
- data/spec/mongo/protocol/insert_spec.rb +24 -9
- data/spec/mongo/protocol/kill_cursors_spec.rb +21 -6
- data/spec/mongo/protocol/msg_spec.rb +525 -0
- data/spec/mongo/protocol/query_spec.rb +56 -11
- data/spec/mongo/protocol/registry_spec.rb +31 -0
- data/spec/mongo/protocol/reply_spec.rb +15 -1
- data/spec/mongo/protocol/update_spec.rb +25 -10
- data/spec/mongo/query_cache_spec.rb +280 -0
- data/spec/mongo/retryable_spec.rb +464 -97
- data/spec/mongo/semaphore_spec.rb +51 -0
- data/spec/mongo/server/app_metadata_shared.rb +136 -0
- data/spec/mongo/server/app_metadata_spec.rb +145 -0
- data/spec/mongo/server/connection_auth_spec.rb +139 -0
- data/spec/mongo/server/connection_pool/populator_spec.rb +101 -0
- data/spec/mongo/server/connection_pool_spec.rb +894 -88
- data/spec/mongo/server/connection_spec.rb +786 -164
- data/spec/mongo/server/description/features_spec.rb +51 -37
- data/spec/mongo/server/description_query_methods_spec.rb +288 -0
- data/spec/mongo/server/description_spec.rb +186 -242
- data/spec/mongo/server/monitor/app_metadata_spec.rb +23 -0
- data/spec/mongo/server/monitor/connection_spec.rb +125 -0
- data/spec/mongo/server/monitor_spec.rb +165 -100
- data/spec/mongo/server/round_trip_time_averager_spec.rb +45 -0
- data/spec/mongo/server_selector/nearest_spec.rb +24 -23
- data/spec/mongo/server_selector/primary_preferred_spec.rb +27 -26
- data/spec/mongo/server_selector/primary_spec.rb +27 -9
- data/spec/mongo/server_selector/secondary_preferred_spec.rb +40 -23
- data/spec/mongo/server_selector/secondary_spec.rb +19 -18
- data/spec/mongo/server_selector_spec.rb +260 -4
- data/spec/mongo/server_spec.rb +294 -78
- data/spec/mongo/session/server_session_spec.rb +59 -0
- data/spec/mongo/session/session_pool_spec.rb +237 -0
- data/spec/mongo/session_spec.rb +345 -0
- data/spec/mongo/session_transaction_spec.rb +226 -0
- data/spec/mongo/socket/ssl_spec.rb +459 -168
- data/spec/mongo/socket/tcp_spec.rb +14 -0
- data/spec/mongo/socket/unix_spec.rb +9 -9
- data/spec/mongo/socket_spec.rb +116 -0
- data/spec/mongo/srv/monitor_spec.rb +230 -0
- data/spec/mongo/srv/result_spec.rb +54 -0
- data/spec/mongo/timeout_spec.rb +39 -0
- data/spec/mongo/uri/srv_protocol_spec.rb +1104 -0
- data/spec/mongo/uri_option_parsing_spec.rb +589 -0
- data/spec/mongo/uri_spec.rb +443 -93
- data/spec/mongo/utils_spec.rb +39 -0
- data/spec/mongo/write_concern/acknowledged_spec.rb +11 -0
- data/spec/mongo/write_concern/unacknowledged_spec.rb +11 -0
- data/spec/mongo/write_concern_spec.rb +69 -4
- data/spec/runners/auth.rb +119 -0
- data/spec/runners/change_streams/outcome.rb +42 -0
- data/spec/runners/change_streams/spec.rb +57 -0
- data/spec/runners/change_streams/test.rb +229 -0
- data/spec/runners/cmap/verifier.rb +45 -0
- data/spec/runners/cmap.rb +370 -0
- data/spec/runners/command_monitoring.rb +343 -0
- data/spec/runners/connection_string.rb +382 -0
- data/spec/runners/crud/context.rb +27 -0
- data/spec/runners/crud/operation.rb +466 -0
- data/spec/runners/crud/outcome.rb +53 -0
- data/spec/runners/crud/requirement.rb +69 -0
- data/spec/runners/crud/spec.rb +70 -0
- data/spec/runners/crud/test.rb +120 -0
- data/spec/runners/crud/test_base.rb +50 -0
- data/spec/runners/crud/verifier.rb +206 -0
- data/spec/runners/crud.rb +235 -0
- data/spec/runners/gridfs.rb +638 -0
- data/spec/runners/read_write_concern_document.rb +67 -0
- data/spec/runners/sdam/verifier.rb +109 -0
- data/spec/runners/sdam.rb +275 -0
- data/spec/runners/server_selection.rb +362 -0
- data/spec/runners/server_selection_rtt.rb +38 -0
- data/spec/runners/transactions/operation.rb +314 -0
- data/spec/runners/transactions/spec.rb +26 -0
- data/spec/runners/transactions/test.rb +322 -0
- data/spec/runners/transactions.rb +101 -0
- data/spec/shared/LICENSE +20 -0
- data/spec/shared/lib/mrss/child_process_helper.rb +80 -0
- data/spec/shared/lib/mrss/constraints.rb +303 -0
- data/spec/shared/lib/mrss/lite_constraints.rb +175 -0
- data/spec/shared/lib/mrss/spec_organizer.rb +149 -0
- data/spec/spec_helper.rb +17 -197
- data/spec/spec_tests/auth_spec.rb +41 -0
- data/spec/spec_tests/change_streams_spec.rb +90 -0
- data/spec/spec_tests/client_side_encryption_spec.rb +11 -0
- data/spec/spec_tests/cmap_spec.rb +106 -0
- data/spec/spec_tests/command_monitoring_spec.rb +66 -0
- data/spec/spec_tests/connection_string_spec.rb +7 -0
- data/spec/spec_tests/crud_spec.rb +19 -0
- data/spec/spec_tests/data/auth/connection-string.yml +366 -0
- data/spec/spec_tests/data/change_streams/change-streams-errors.yml +101 -0
- data/spec/spec_tests/data/change_streams/change-streams-resume-errorLabels.yml +1105 -0
- data/spec/spec_tests/data/change_streams/change-streams-resume-whitelist.yml +1173 -0
- data/spec/spec_tests/data/change_streams/change-streams.yml +536 -0
- data/spec/spec_tests/data/client_side_encryption/aggregate.yml +134 -0
- data/spec/spec_tests/data/client_side_encryption/badQueries.yml +526 -0
- data/spec/spec_tests/data/client_side_encryption/badSchema.yml +73 -0
- data/spec/spec_tests/data/client_side_encryption/basic.yml +116 -0
- data/spec/spec_tests/data/client_side_encryption/bulk.yml +88 -0
- data/spec/spec_tests/data/client_side_encryption/bypassAutoEncryption.yml +100 -0
- data/spec/spec_tests/data/client_side_encryption/bypassedCommand.yml +42 -0
- data/spec/spec_tests/data/client_side_encryption/count.yml +61 -0
- data/spec/spec_tests/data/client_side_encryption/countDocuments.yml +59 -0
- data/spec/spec_tests/data/client_side_encryption/delete.yml +105 -0
- data/spec/spec_tests/data/client_side_encryption/distinct.yml +73 -0
- data/spec/spec_tests/data/client_side_encryption/explain.yml +64 -0
- data/spec/spec_tests/data/client_side_encryption/find.yml +119 -0
- data/spec/spec_tests/data/client_side_encryption/findOneAndDelete.yml +57 -0
- data/spec/spec_tests/data/client_side_encryption/findOneAndReplace.yml +57 -0
- data/spec/spec_tests/data/client_side_encryption/findOneAndUpdate.yml +57 -0
- data/spec/spec_tests/data/client_side_encryption/getMore.yml +68 -0
- data/spec/spec_tests/data/client_side_encryption/insert.yml +102 -0
- data/spec/spec_tests/data/client_side_encryption/keyAltName.yml +71 -0
- data/spec/spec_tests/data/client_side_encryption/localKMS.yml +54 -0
- data/spec/spec_tests/data/client_side_encryption/localSchema.yml +72 -0
- data/spec/spec_tests/data/client_side_encryption/malformedCiphertext.yml +69 -0
- data/spec/spec_tests/data/client_side_encryption/maxWireVersion.yml +20 -0
- data/spec/spec_tests/data/client_side_encryption/missingKey.yml +49 -0
- data/spec/spec_tests/data/client_side_encryption/replaceOne.yml +64 -0
- data/spec/spec_tests/data/client_side_encryption/types.yml +527 -0
- data/spec/spec_tests/data/client_side_encryption/unsupportedCommand.yml +25 -0
- data/spec/spec_tests/data/client_side_encryption/updateMany.yml +77 -0
- data/spec/spec_tests/data/client_side_encryption/updateOne.yml +171 -0
- data/spec/spec_tests/data/cmap/connection-must-have-id.yml +27 -0
- data/spec/spec_tests/data/cmap/connection-must-order-ids.yml +27 -0
- data/spec/spec_tests/data/cmap/pool-checkin-destroy-closed.yml +27 -0
- data/spec/spec_tests/data/cmap/pool-checkin-destroy-stale.yml +27 -0
- data/spec/spec_tests/data/cmap/pool-checkin-make-available.yml +24 -0
- data/spec/spec_tests/data/cmap/pool-checkin.yml +19 -0
- data/spec/spec_tests/data/cmap/pool-checkout-connection.yml +19 -0
- data/spec/spec_tests/data/cmap/pool-checkout-error-closed.yml +36 -0
- data/spec/spec_tests/data/cmap/pool-checkout-multiple.yml +37 -0
- data/spec/spec_tests/data/cmap/pool-checkout-no-idle.yml +35 -0
- data/spec/spec_tests/data/cmap/pool-checkout-no-stale.yml +33 -0
- data/spec/spec_tests/data/cmap/pool-close-destroy-conns.yml +28 -0
- data/spec/spec_tests/data/cmap/pool-close.yml +11 -0
- data/spec/spec_tests/data/cmap/pool-create-max-size.yml +71 -0
- data/spec/spec_tests/data/cmap/pool-create-min-size.yml +34 -0
- data/spec/spec_tests/data/cmap/pool-create-with-options.yml +21 -0
- data/spec/spec_tests/data/cmap/pool-create.yml +12 -0
- data/spec/spec_tests/data/cmap/wait-queue-fairness.yml +124 -0
- data/spec/spec_tests/data/cmap/wait-queue-timeout.yml +46 -0
- data/spec/spec_tests/data/command_monitoring/bulkWrite.yml +49 -0
- data/spec/spec_tests/data/command_monitoring/command.yml +61 -0
- data/spec/spec_tests/data/command_monitoring/find.yml +266 -0
- data/spec/spec_tests/data/command_monitoring/insertMany.yml +75 -0
- data/spec/spec_tests/data/command_monitoring/unacknowledgedBulkWrite.yml +34 -0
- data/spec/spec_tests/data/command_monitoring/updateMany.yml +65 -0
- data/spec/spec_tests/data/command_monitoring/updateOne.yml +90 -0
- data/spec/spec_tests/data/connection_string/invalid-uris.yml +261 -0
- data/spec/spec_tests/data/connection_string/valid-auth.yml +257 -0
- data/spec/spec_tests/data/connection_string/valid-db-with-dotted-name.yml +77 -0
- data/spec/spec_tests/data/connection_string/valid-options.yml +17 -0
- data/spec/spec_tests/data/connection_string/valid-unix_socket-absolute.yml +197 -0
- data/spec/spec_tests/data/connection_string/valid-unix_socket-relative.yml +213 -0
- data/spec/spec_tests/data/connection_string/valid-warnings.yml +75 -0
- data/spec/spec_tests/data/crud/read/aggregate-out.yml +43 -0
- data/spec/spec_tests/data/crud/read/count-collation.yml +25 -0
- data/spec/spec_tests/data/crud/read/count-empty.yml +29 -0
- data/spec/spec_tests/data/crud/read/count.yml +74 -0
- data/spec/spec_tests/data/crud/write/bulkWrite-arrayFilters.yml +45 -0
- data/spec/spec_tests/data/crud/write/bulkWrite-collation.yml +101 -0
- data/spec/spec_tests/data/crud/write/bulkWrite.yml +401 -0
- data/spec/spec_tests/data/crud/write/findOneAndReplace-upsert.yml +91 -0
- data/spec/spec_tests/data/crud/write/findOneAndReplace-upsert_pre_2.6.yml +88 -0
- data/spec/spec_tests/data/crud/write/findOneAndReplace.yml +113 -0
- data/spec/spec_tests/data/crud/write/findOneAndUpdate-arrayFilters.yml +69 -0
- data/spec/spec_tests/data/crud/write/findOneAndUpdate.yml +163 -0
- data/spec/spec_tests/data/crud/write/insertMany.yml +77 -0
- data/spec/spec_tests/data/crud/write/replaceOne-collation.yml +24 -0
- data/spec/spec_tests/data/crud/write/replaceOne-pre_2.6.yml +98 -0
- data/spec/spec_tests/data/crud/write/replaceOne.yml +102 -0
- data/spec/spec_tests/data/crud/write/updateMany-arrayFilters.yml +66 -0
- data/spec/spec_tests/data/crud/write/updateMany-collation.yml +28 -0
- data/spec/spec_tests/data/crud/write/updateMany-pre_2.6.yml +86 -0
- data/spec/spec_tests/data/crud/write/updateMany.yml +87 -0
- data/spec/spec_tests/data/crud/write/updateOne-arrayFilters.yml +114 -0
- data/spec/spec_tests/data/crud/write/updateOne-collation.yml +25 -0
- data/spec/spec_tests/data/crud/write/updateOne-pre_2.6.yml +83 -0
- data/spec/spec_tests/data/crud/write/updateOne.yml +84 -0
- data/spec/spec_tests/data/crud_v2/aggregate-merge.yml +103 -0
- data/spec/spec_tests/data/crud_v2/aggregate-out-readConcern.yml +110 -0
- data/spec/spec_tests/data/crud_v2/bulkWrite-arrayFilters.yml +103 -0
- data/spec/spec_tests/data/crud_v2/bulkWrite-delete-hint-clientError.yml +63 -0
- data/spec/spec_tests/data/crud_v2/bulkWrite-delete-hint-serverError.yml +92 -0
- data/spec/spec_tests/data/crud_v2/bulkWrite-delete-hint.yml +103 -0
- data/spec/spec_tests/data/crud_v2/bulkWrite-update-hint-clientError.yml +90 -0
- data/spec/spec_tests/data/crud_v2/bulkWrite-update-hint-serverError.yml +147 -0
- data/spec/spec_tests/data/crud_v2/bulkWrite-update-hint.yml +164 -0
- data/spec/spec_tests/data/crud_v2/db-aggregate.yml +38 -0
- data/spec/spec_tests/data/crud_v2/deleteMany-hint-clientError.yml +43 -0
- data/spec/spec_tests/data/crud_v2/deleteMany-hint-serverError.yml +62 -0
- data/spec/spec_tests/data/crud_v2/deleteMany-hint.yml +58 -0
- data/spec/spec_tests/data/crud_v2/deleteOne-hint-clientError.yml +41 -0
- data/spec/spec_tests/data/crud_v2/deleteOne-hint-serverError.yml +60 -0
- data/spec/spec_tests/data/crud_v2/deleteOne-hint.yml +57 -0
- data/spec/spec_tests/data/crud_v2/find-allowdiskuse-clientError.yml +28 -0
- data/spec/spec_tests/data/crud_v2/find-allowdiskuse-serverError.yml +44 -0
- data/spec/spec_tests/data/crud_v2/find-allowdiskuse.yml +50 -0
- data/spec/spec_tests/data/crud_v2/findOneAndDelete-hint-clientError.yml +45 -0
- data/spec/spec_tests/data/crud_v2/findOneAndDelete-hint-serverError.yml +60 -0
- data/spec/spec_tests/data/crud_v2/findOneAndDelete-hint.yml +56 -0
- data/spec/spec_tests/data/crud_v2/findOneAndReplace-hint-clientError.yml +40 -0
- data/spec/spec_tests/data/crud_v2/findOneAndReplace-hint-serverError.yml +59 -0
- data/spec/spec_tests/data/crud_v2/findOneAndReplace-hint.yml +55 -0
- data/spec/spec_tests/data/crud_v2/findOneAndUpdate-hint-clientError.yml +40 -0
- data/spec/spec_tests/data/crud_v2/findOneAndUpdate-hint-serverError.yml +58 -0
- data/spec/spec_tests/data/crud_v2/findOneAndUpdate-hint.yml +55 -0
- data/spec/spec_tests/data/crud_v2/replaceOne-hint.yml +61 -0
- data/spec/spec_tests/data/crud_v2/unacknowledged-bulkWrite-delete-hint-clientError.yml +60 -0
- data/spec/spec_tests/data/crud_v2/unacknowledged-bulkWrite-update-hint-clientError.yml +88 -0
- data/spec/spec_tests/data/crud_v2/unacknowledged-deleteMany-hint-clientError.yml +40 -0
- data/spec/spec_tests/data/crud_v2/unacknowledged-deleteOne-hint-clientError.yml +38 -0
- data/spec/spec_tests/data/crud_v2/unacknowledged-findOneAndDelete-hint-clientError.yml +42 -0
- data/spec/spec_tests/data/crud_v2/unacknowledged-findOneAndReplace-hint-clientError.yml +40 -0
- data/spec/spec_tests/data/crud_v2/unacknowledged-findOneAndUpdate-hint-clientError.yml +40 -0
- data/spec/spec_tests/data/crud_v2/unacknowledged-replaceOne-hint-clientError.yml +40 -0
- data/spec/spec_tests/data/crud_v2/unacknowledged-updateMany-hint-clientError.yml +43 -0
- data/spec/spec_tests/data/crud_v2/unacknowledged-updateOne-hint-clientError.yml +40 -0
- data/spec/spec_tests/data/crud_v2/updateMany-hint-clientError.yml +45 -0
- data/spec/spec_tests/data/crud_v2/updateMany-hint-serverError.yml +66 -0
- data/spec/spec_tests/data/crud_v2/updateMany-hint.yml +65 -0
- data/spec/spec_tests/data/crud_v2/updateOne-hint-clientError.yml +43 -0
- data/spec/spec_tests/data/crud_v2/updateOne-hint-serverError.yml +62 -0
- data/spec/spec_tests/data/crud_v2/updateOne-hint.yml +61 -0
- data/spec/spec_tests/data/crud_v2/updateWithPipelines.yml +157 -0
- data/spec/spec_tests/data/dns_seedlist_discovery/direct-connection-false.yml +10 -0
- data/spec/spec_tests/data/dns_seedlist_discovery/direct-connection-true.yml +5 -0
- data/spec/spec_tests/data/dns_seedlist_discovery/longer-parent-in-return.yml +11 -0
- data/spec/spec_tests/data/dns_seedlist_discovery/misformatted-option.yml +5 -0
- data/spec/spec_tests/data/dns_seedlist_discovery/no-results.yml +5 -0
- data/spec/spec_tests/data/dns_seedlist_discovery/not-enough-parts.yml +5 -0
- data/spec/spec_tests/data/dns_seedlist_discovery/one-result-default-port.yml +10 -0
- data/spec/spec_tests/data/dns_seedlist_discovery/one-txt-record-multiple-strings.yml +10 -0
- data/spec/spec_tests/data/dns_seedlist_discovery/one-txt-record.yml +11 -0
- data/spec/spec_tests/data/dns_seedlist_discovery/parent-part-mismatch1.yml +5 -0
- data/spec/spec_tests/data/dns_seedlist_discovery/parent-part-mismatch2.yml +5 -0
- data/spec/spec_tests/data/dns_seedlist_discovery/parent-part-mismatch3.yml +5 -0
- data/spec/spec_tests/data/dns_seedlist_discovery/parent-part-mismatch4.yml +5 -0
- data/spec/spec_tests/data/dns_seedlist_discovery/parent-part-mismatch5.yml +5 -0
- data/spec/spec_tests/data/dns_seedlist_discovery/returned-parent-too-short.yml +5 -0
- data/spec/spec_tests/data/dns_seedlist_discovery/returned-parent-wrong.yml +5 -0
- data/spec/spec_tests/data/dns_seedlist_discovery/two-results-default-port.yml +11 -0
- data/spec/spec_tests/data/dns_seedlist_discovery/two-results-nonstandard-port.yml +11 -0
- data/spec/spec_tests/data/dns_seedlist_discovery/two-txt-records.yml +5 -0
- data/spec/spec_tests/data/dns_seedlist_discovery/txt-record-not-allowed-option.yml +5 -0
- data/spec/spec_tests/data/dns_seedlist_discovery/txt-record-with-overridden-ssl-option.yml +11 -0
- data/spec/spec_tests/data/dns_seedlist_discovery/txt-record-with-overridden-uri-option.yml +11 -0
- data/spec/spec_tests/data/dns_seedlist_discovery/txt-record-with-unallowed-option.yml +5 -0
- data/spec/spec_tests/data/dns_seedlist_discovery/uri-with-port.yml +5 -0
- data/spec/spec_tests/data/dns_seedlist_discovery/uri-with-two-hosts.yml +5 -0
- data/spec/spec_tests/data/gridfs/delete.yml +123 -0
- data/spec/spec_tests/data/gridfs/download.yml +192 -0
- data/spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/NoKnownServers.yml +16 -0
- data/spec/spec_tests/data/max_staleness/Unknown/SmallMaxStaleness.yml +15 -0
- data/spec/spec_tests/data/read_write_concern/connection-string/read-concern.yml +32 -0
- data/spec/spec_tests/data/read_write_concern/connection-string/write-concern.yml +79 -0
- data/spec/spec_tests/data/read_write_concern/document/read-concern.yml +37 -0
- data/spec/spec_tests/data/read_write_concern/document/write-concern.yml +100 -0
- data/spec/spec_tests/data/read_write_concern/operation/default-write-concern-2.6.yml +215 -0
- data/spec/spec_tests/data/read_write_concern/operation/default-write-concern-3.2.yml +58 -0
- data/spec/spec_tests/data/read_write_concern/operation/default-write-concern-3.4.yml +95 -0
- data/spec/spec_tests/data/read_write_concern/operation/default-write-concern-4.2.yml +36 -0
- data/spec/spec_tests/data/retryable_reads/aggregate-merge.yml +39 -0
- data/spec/spec_tests/data/retryable_reads/aggregate-serverErrors.yml +157 -0
- data/spec/spec_tests/data/retryable_reads/aggregate.yml +87 -0
- data/spec/spec_tests/data/retryable_reads/changeStreams-client.watch-serverErrors.yml +149 -0
- data/spec/spec_tests/data/retryable_reads/changeStreams-client.watch.yml +61 -0
- data/spec/spec_tests/data/retryable_reads/changeStreams-db.coll.watch-serverErrors.yml +149 -0
- data/spec/spec_tests/data/retryable_reads/changeStreams-db.coll.watch.yml +65 -0
- data/spec/spec_tests/data/retryable_reads/changeStreams-db.watch-serverErrors.yml +153 -0
- data/spec/spec_tests/data/retryable_reads/changeStreams-db.watch.yml +61 -0
- data/spec/spec_tests/data/retryable_reads/count-serverErrors.yml +150 -0
- data/spec/spec_tests/data/retryable_reads/count.yml +64 -0
- data/spec/spec_tests/data/retryable_reads/countDocuments-serverErrors.yml +150 -0
- data/spec/spec_tests/data/retryable_reads/countDocuments.yml +64 -0
- data/spec/spec_tests/data/retryable_reads/distinct-serverErrors.yml +156 -0
- data/spec/spec_tests/data/retryable_reads/distinct.yml +71 -0
- data/spec/spec_tests/data/retryable_reads/estimatedDocumentCount-serverErrors.yml +148 -0
- data/spec/spec_tests/data/retryable_reads/estimatedDocumentCount.yml +62 -0
- data/spec/spec_tests/data/retryable_reads/find-serverErrors.yml +160 -0
- data/spec/spec_tests/data/retryable_reads/find.yml +86 -0
- data/spec/spec_tests/data/retryable_reads/findOne-serverErrors.yml +154 -0
- data/spec/spec_tests/data/retryable_reads/findOne.yml +68 -0
- data/spec/spec_tests/data/retryable_reads/gridfs-download-serverErrors.yml +173 -0
- data/spec/spec_tests/data/retryable_reads/gridfs-download.yml +79 -0
- data/spec/spec_tests/data/retryable_reads/gridfs-downloadByName-serverErrors.yml +174 -0
- data/spec/spec_tests/data/retryable_reads/gridfs-downloadByName.yml +79 -0
- data/spec/spec_tests/data/retryable_reads/listCollectionNames-serverErrors.yml +143 -0
- data/spec/spec_tests/data/retryable_reads/listCollectionNames.yml +59 -0
- data/spec/spec_tests/data/retryable_reads/listCollectionObjects-serverErrors.yml +144 -0
- data/spec/spec_tests/data/retryable_reads/listCollectionObjects.yml +59 -0
- data/spec/spec_tests/data/retryable_reads/listCollections-serverErrors.yml +143 -0
- data/spec/spec_tests/data/retryable_reads/listCollections.yml +59 -0
- data/spec/spec_tests/data/retryable_reads/listDatabaseNames-serverErrors.yml +143 -0
- data/spec/spec_tests/data/retryable_reads/listDatabaseNames.yml +59 -0
- data/spec/spec_tests/data/retryable_reads/listDatabaseObjects-serverErrors.yml +144 -0
- data/spec/spec_tests/data/retryable_reads/listDatabaseObjects.yml +59 -0
- data/spec/spec_tests/data/retryable_reads/listDatabases-serverErrors.yml +144 -0
- data/spec/spec_tests/data/retryable_reads/listDatabases.yml +59 -0
- data/spec/spec_tests/data/retryable_reads/listIndexNames-serverErrors.yml +144 -0
- data/spec/spec_tests/data/retryable_reads/listIndexNames.yml +60 -0
- data/spec/spec_tests/data/retryable_reads/listIndexes-serverErrors.yml +145 -0
- data/spec/spec_tests/data/retryable_reads/listIndexes.yml +60 -0
- data/spec/spec_tests/data/retryable_reads/mapReduce.yml +60 -0
- data/spec/spec_tests/data/retryable_writes/bulkWrite-errorLabels.yml +77 -0
- data/spec/spec_tests/data/retryable_writes/bulkWrite-serverErrors.yml +130 -0
- data/spec/spec_tests/data/retryable_writes/bulkWrite.yml +396 -0
- data/spec/spec_tests/data/retryable_writes/deleteMany.yml +22 -0
- data/spec/spec_tests/data/retryable_writes/deleteOne-errorLabels.yml +48 -0
- data/spec/spec_tests/data/retryable_writes/deleteOne-serverErrors.yml +73 -0
- data/spec/spec_tests/data/retryable_writes/deleteOne.yml +57 -0
- data/spec/spec_tests/data/retryable_writes/findOneAndDelete-errorLabels.yml +49 -0
- data/spec/spec_tests/data/retryable_writes/findOneAndDelete-serverErrors.yml +74 -0
- data/spec/spec_tests/data/retryable_writes/findOneAndDelete.yml +58 -0
- data/spec/spec_tests/data/retryable_writes/findOneAndReplace-errorLabels.yml +52 -0
- data/spec/spec_tests/data/retryable_writes/findOneAndReplace-serverErrors.yml +80 -0
- data/spec/spec_tests/data/retryable_writes/findOneAndReplace.yml +63 -0
- data/spec/spec_tests/data/retryable_writes/findOneAndUpdate-errorLabels.yml +52 -0
- data/spec/spec_tests/data/retryable_writes/findOneAndUpdate-serverErrors.yml +79 -0
- data/spec/spec_tests/data/retryable_writes/findOneAndUpdate.yml +62 -0
- data/spec/spec_tests/data/retryable_writes/insertMany-errorLabels.yml +54 -0
- data/spec/spec_tests/data/retryable_writes/insertMany-serverErrors.yml +84 -0
- data/spec/spec_tests/data/retryable_writes/insertMany.yml +74 -0
- data/spec/spec_tests/data/retryable_writes/insertOne-errorLabels.yml +44 -0
- data/spec/spec_tests/data/retryable_writes/insertOne-serverErrors.yml +526 -0
- data/spec/spec_tests/data/retryable_writes/insertOne.yml +61 -0
- data/spec/spec_tests/data/retryable_writes/replaceOne-errorLabels.yml +53 -0
- data/spec/spec_tests/data/retryable_writes/replaceOne-serverErrors.yml +82 -0
- data/spec/spec_tests/data/retryable_writes/replaceOne.yml +66 -0
- data/spec/spec_tests/data/retryable_writes/updateMany.yml +27 -0
- data/spec/spec_tests/data/retryable_writes/updateOne-errorLabels.yml +53 -0
- data/spec/spec_tests/data/retryable_writes/updateOne-serverErrors.yml +82 -0
- data/spec/spec_tests/data/retryable_writes/updateOne.yml +129 -0
- data/spec/spec_tests/data/sdam/errors/error_handling_handshake.yml +54 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-network-error.yml +46 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-network-timeout-error.yml +37 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-InterruptedAtShutdown.yml +60 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-InterruptedDueToReplStateChange.yml +60 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-NotMaster.yml +60 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-NotMasterNoSlaveOk.yml +60 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-NotMasterOrSecondary.yml +60 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-PrimarySteppedDown.yml +60 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-ShutdownInProgress.yml +60 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-InterruptedAtShutdown.yml +51 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-InterruptedDueToReplStateChange.yml +51 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-NotMaster.yml +51 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-NotMasterNoSlaveOk.yml +51 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-NotMasterOrSecondary.yml +51 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-PrimarySteppedDown.yml +51 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-ShutdownInProgress.yml +51 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-InterruptedAtShutdown.yml +60 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-InterruptedDueToReplStateChange.yml +60 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-NotMaster.yml +60 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-NotMasterNoSlaveOk.yml +60 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-NotMasterOrSecondary.yml +60 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-PrimarySteppedDown.yml +60 -0
- data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-ShutdownInProgress.yml +60 -0
- data/spec/spec_tests/data/sdam/errors/post-42-InterruptedAtShutdown.yml +46 -0
- data/spec/spec_tests/data/sdam/errors/post-42-InterruptedDueToReplStateChange.yml +46 -0
- data/spec/spec_tests/data/sdam/errors/post-42-NotMaster.yml +46 -0
- data/spec/spec_tests/data/sdam/errors/post-42-NotMasterNoSlaveOk.yml +46 -0
- data/spec/spec_tests/data/sdam/errors/post-42-NotMasterOrSecondary.yml +46 -0
- data/spec/spec_tests/data/sdam/errors/post-42-PrimarySteppedDown.yml +46 -0
- data/spec/spec_tests/data/sdam/errors/post-42-ShutdownInProgress.yml +46 -0
- data/spec/spec_tests/data/sdam/errors/pre-42-InterruptedAtShutdown.yml +46 -0
- data/spec/spec_tests/data/sdam/errors/pre-42-InterruptedDueToReplStateChange.yml +46 -0
- data/spec/spec_tests/data/sdam/errors/pre-42-NotMaster.yml +46 -0
- data/spec/spec_tests/data/sdam/errors/pre-42-NotMasterNoSlaveOk.yml +46 -0
- data/spec/spec_tests/data/sdam/errors/pre-42-NotMasterOrSecondary.yml +46 -0
- data/spec/spec_tests/data/sdam/errors/pre-42-PrimarySteppedDown.yml +46 -0
- data/spec/spec_tests/data/sdam/errors/pre-42-ShutdownInProgress.yml +46 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-InterruptedAtShutdown.yml +89 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-InterruptedDueToReplStateChange.yml +89 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-NotMaster.yml +89 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-NotMasterNoSlaveOk.yml +89 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-NotMasterOrSecondary.yml +89 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-PrimarySteppedDown.yml +89 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-ShutdownInProgress.yml +89 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-InterruptedAtShutdown.yml +89 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-InterruptedDueToReplStateChange.yml +89 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-NotMaster.yml +89 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-NotMasterNoSlaveOk.yml +89 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-NotMasterOrSecondary.yml +89 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-PrimarySteppedDown.yml +89 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-ShutdownInProgress.yml +89 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-network.yml +80 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-timeout.yml +80 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-InterruptedAtShutdown.yml +89 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-InterruptedDueToReplStateChange.yml +89 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-NotMaster.yml +89 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-NotMasterNoSlaveOk.yml +89 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-NotMasterOrSecondary.yml +89 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-PrimarySteppedDown.yml +89 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-ShutdownInProgress.yml +89 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-network.yml +80 -0
- data/spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-timeout.yml +80 -0
- data/spec/spec_tests/data/sdam/errors/stale-topologyVersion-InterruptedAtShutdown.yml +64 -0
- data/spec/spec_tests/data/sdam/errors/stale-topologyVersion-InterruptedDueToReplStateChange.yml +64 -0
- data/spec/spec_tests/data/sdam/errors/stale-topologyVersion-NotMaster.yml +64 -0
- data/spec/spec_tests/data/sdam/errors/stale-topologyVersion-NotMasterNoSlaveOk.yml +64 -0
- data/spec/spec_tests/data/sdam/errors/stale-topologyVersion-NotMasterOrSecondary.yml +64 -0
- data/spec/spec_tests/data/sdam/errors/stale-topologyVersion-PrimarySteppedDown.yml +64 -0
- data/spec/spec_tests/data/sdam/errors/stale-topologyVersion-ShutdownInProgress.yml +64 -0
- data/spec/spec_tests/data/sdam/rs/compatible.yml +43 -0
- data/spec/spec_tests/data/sdam/rs/compatible_unknown.yml +33 -0
- data/spec/spec_tests/data/sdam/rs/discover_arbiters.yml +43 -0
- data/spec/spec_tests/data/sdam/rs/discover_arbiters_replicaset.yml +43 -0
- data/spec/spec_tests/data/sdam/rs/discover_ghost.yml +35 -0
- data/spec/spec_tests/data/sdam/rs/discover_ghost_replicaset.yml +41 -0
- data/spec/spec_tests/data/sdam/rs/discover_hidden.yml +50 -0
- data/spec/spec_tests/data/sdam/rs/discover_hidden_replicaset.yml +50 -0
- data/spec/spec_tests/data/sdam/rs/discover_passives.yml +81 -0
- data/spec/spec_tests/data/sdam/rs/discover_passives_replicaset.yml +81 -0
- data/spec/spec_tests/data/sdam/rs/discover_primary.yml +42 -0
- data/spec/spec_tests/data/sdam/rs/discover_primary_replicaset.yml +42 -0
- data/spec/spec_tests/data/sdam/rs/discover_rsother.yml +49 -0
- data/spec/spec_tests/data/sdam/rs/discover_rsother_replicaset.yml +66 -0
- data/spec/spec_tests/data/sdam/rs/discover_secondary.yml +43 -0
- data/spec/spec_tests/data/sdam/rs/discover_secondary_replicaset.yml +43 -0
- data/spec/spec_tests/data/sdam/rs/discovery.yml +203 -0
- data/spec/spec_tests/data/sdam/rs/equal_electionids.yml +55 -0
- data/spec/spec_tests/data/sdam/rs/hosts_differ_from_seeds.yml +36 -0
- data/spec/spec_tests/data/sdam/rs/incompatible_arbiter.yml +34 -0
- data/spec/spec_tests/data/sdam/rs/incompatible_ghost.yml +32 -0
- data/spec/spec_tests/data/sdam/rs/incompatible_other.yml +34 -0
- data/spec/spec_tests/data/sdam/rs/ls_timeout.yml +243 -0
- data/spec/spec_tests/data/sdam/rs/member_reconfig.yml +72 -0
- data/spec/spec_tests/data/sdam/rs/member_standalone.yml +64 -0
- data/spec/spec_tests/data/sdam/rs/new_primary.yml +78 -0
- data/spec/spec_tests/data/sdam/rs/new_primary_new_electionid.yml +116 -0
- data/spec/spec_tests/data/sdam/rs/new_primary_new_setversion.yml +116 -0
- data/spec/spec_tests/data/sdam/rs/new_primary_wrong_set_name.yml +75 -0
- data/spec/spec_tests/data/sdam/rs/non_rs_member.yml +32 -0
- data/spec/spec_tests/data/sdam/rs/normalize_case.yml +51 -0
- data/spec/spec_tests/data/sdam/rs/normalize_case_me.yml +100 -0
- data/spec/spec_tests/data/sdam/rs/null_election_id.yml +171 -0
- data/spec/spec_tests/data/sdam/rs/primary_becomes_ghost.yml +63 -0
- data/spec/spec_tests/data/sdam/rs/primary_becomes_mongos.yml +56 -0
- data/spec/spec_tests/data/sdam/rs/primary_becomes_standalone.yml +54 -0
- data/spec/spec_tests/data/sdam/rs/primary_changes_set_name.yml +61 -0
- data/spec/spec_tests/data/sdam/rs/primary_disconnect.yml +58 -0
- data/spec/spec_tests/data/sdam/rs/primary_disconnect_electionid.yml +184 -0
- data/spec/spec_tests/data/sdam/rs/primary_disconnect_setversion.yml +184 -0
- data/spec/spec_tests/data/sdam/rs/primary_hint_from_secondary_with_mismatched_me.yml +62 -0
- data/spec/spec_tests/data/sdam/rs/primary_mismatched_me.yml +26 -0
- data/spec/spec_tests/data/sdam/rs/primary_mismatched_me_not_removed.yml +73 -0
- data/spec/spec_tests/data/sdam/rs/primary_reports_new_member.yml +171 -0
- data/spec/spec_tests/data/sdam/rs/primary_to_no_primary_mismatched_me.yml +79 -0
- data/spec/spec_tests/data/sdam/rs/primary_wrong_set_name.yml +29 -0
- data/spec/spec_tests/data/sdam/rs/repeated.yml +101 -0
- data/spec/spec_tests/data/sdam/rs/replicaset_rsnp.yml +20 -0
- data/spec/spec_tests/data/sdam/rs/response_from_removed.yml +67 -0
- data/spec/spec_tests/data/sdam/rs/ruby_primary_address_change.yml +31 -0
- data/spec/spec_tests/data/sdam/rs/ruby_secondary_wrong_set_name_with_primary_second.yml +73 -0
- data/spec/spec_tests/data/sdam/rs/sec_not_auth.yml +53 -0
- data/spec/spec_tests/data/sdam/rs/secondary_ignore_ok_0.yml +85 -0
- data/spec/spec_tests/data/sdam/rs/secondary_mismatched_me.yml +27 -0
- data/spec/spec_tests/data/sdam/rs/secondary_wrong_set_name.yml +30 -0
- data/spec/spec_tests/data/sdam/rs/secondary_wrong_set_name_with_primary.yml +73 -0
- data/spec/spec_tests/data/sdam/rs/setversion_without_electionid.yml +77 -0
- data/spec/spec_tests/data/sdam/rs/stepdown_change_set_name.yml +63 -0
- data/spec/spec_tests/data/sdam/rs/too_new.yml +43 -0
- data/spec/spec_tests/data/sdam/rs/too_old.yml +39 -0
- data/spec/spec_tests/data/sdam/rs/topology_version_equal.yml +66 -0
- data/spec/spec_tests/data/sdam/rs/topology_version_greater.yml +189 -0
- data/spec/spec_tests/data/sdam/rs/topology_version_less.yml +62 -0
- data/spec/spec_tests/data/sdam/rs/unexpected_mongos.yml +28 -0
- data/spec/spec_tests/data/sdam/rs/use_setversion_without_electionid.yml +114 -0
- data/spec/spec_tests/data/sdam/rs/wrong_set_name.yml +37 -0
- data/spec/spec_tests/data/sdam/sharded/compatible.yml +38 -0
- data/spec/spec_tests/data/sdam/sharded/discover_single_mongos.yml +23 -0
- data/spec/spec_tests/data/sdam/sharded/ls_timeout_mongos.yml +97 -0
- data/spec/spec_tests/data/sdam/sharded/mongos_disconnect.yml +110 -0
- data/spec/spec_tests/data/sdam/sharded/multiple_mongoses.yml +50 -0
- data/spec/spec_tests/data/sdam/sharded/non_mongos_removed.yml +45 -0
- data/spec/spec_tests/data/sdam/sharded/normalize_uri_case.yml +32 -0
- data/spec/spec_tests/data/sdam/sharded/ruby_primary_different_address.yml +21 -0
- data/spec/spec_tests/data/sdam/sharded/ruby_primary_mismatched_me.yml +22 -0
- data/spec/spec_tests/data/sdam/sharded/too_new.yml +36 -0
- data/spec/spec_tests/data/sdam/sharded/too_old.yml +36 -0
- data/spec/spec_tests/data/sdam/single/compatible.yml +26 -0
- data/spec/spec_tests/data/sdam/single/direct_connection_external_ip.yml +36 -0
- data/spec/spec_tests/data/sdam/single/direct_connection_mongos.yml +35 -0
- data/spec/spec_tests/data/sdam/single/direct_connection_replicaset.yml +22 -0
- data/spec/spec_tests/data/sdam/single/direct_connection_rsarbiter.yml +37 -0
- data/spec/spec_tests/data/sdam/single/direct_connection_rsprimary.yml +36 -0
- data/spec/spec_tests/data/sdam/single/direct_connection_rssecondary.yml +37 -0
- data/spec/spec_tests/data/sdam/single/direct_connection_slave.yml +34 -0
- data/spec/spec_tests/data/sdam/single/direct_connection_standalone.yml +34 -0
- data/spec/spec_tests/data/sdam/single/direct_connection_unavailable_seed.yml +28 -0
- data/spec/spec_tests/data/sdam/single/direct_connection_wrong_set_name.yml +38 -0
- data/spec/spec_tests/data/sdam/single/discover_standalone.yml +34 -0
- data/spec/spec_tests/data/sdam/single/discover_unavailable_seed.yml +28 -0
- data/spec/spec_tests/data/sdam/single/ls_timeout_standalone.yml +35 -0
- data/spec/spec_tests/data/sdam/single/not_ok_response.yml +42 -0
- data/spec/spec_tests/data/sdam/single/ruby_primary_different_address.yml +24 -0
- data/spec/spec_tests/data/sdam/single/ruby_primary_mismatched_me.yml +25 -0
- data/spec/spec_tests/data/sdam/single/standalone_removed.yml +34 -0
- data/spec/spec_tests/data/sdam/single/too_new.yml +26 -0
- data/spec/spec_tests/data/sdam/single/too_old.yml +24 -0
- data/spec/spec_tests/data/sdam/single/too_old_then_upgraded.yml +46 -0
- data/spec/spec_tests/data/sdam_integration/cancel-server-check.yml +96 -0
- data/spec/spec_tests/data/sdam_integration/connectTimeoutMS.yml +88 -0
- data/spec/spec_tests/data/sdam_integration/find-network-error.yml +83 -0
- data/spec/spec_tests/data/sdam_integration/find-shutdown-error.yml +116 -0
- data/spec/spec_tests/data/sdam_integration/insert-network-error.yml +86 -0
- data/spec/spec_tests/data/sdam_integration/insert-shutdown-error.yml +115 -0
- data/spec/spec_tests/data/sdam_integration/isMaster-command-error.yml +168 -0
- data/spec/spec_tests/data/sdam_integration/isMaster-network-error.yml +162 -0
- data/spec/spec_tests/data/sdam_integration/isMaster-timeout.yml +229 -0
- data/spec/spec_tests/data/sdam_integration/rediscover-quickly-after-step-down.yml +87 -0
- data/spec/spec_tests/data/sdam_monitoring/discovered_standalone.yml +70 -0
- data/spec/spec_tests/data/sdam_monitoring/replica_set_other_chain.yml +222 -0
- data/spec/spec_tests/data/sdam_monitoring/replica_set_other_change.yml +225 -0
- data/spec/spec_tests/data/sdam_monitoring/replica_set_primary_address_change.yml +251 -0
- data/spec/spec_tests/data/sdam_monitoring/replica_set_with_me_mismatch.yml +111 -0
- data/spec/spec_tests/data/sdam_monitoring/replica_set_with_primary_and_secondary.yml +198 -0
- data/spec/spec_tests/data/sdam_monitoring/replica_set_with_primary_removal.yml +175 -0
- data/spec/spec_tests/data/sdam_monitoring/replica_set_with_removal.yml +110 -0
- data/spec/spec_tests/data/sdam_monitoring/replica_set_with_second_seed_removal.yml +106 -0
- data/spec/spec_tests/data/sdam_monitoring/required_replica_set.yml +107 -0
- data/spec/spec_tests/data/sdam_monitoring/standalone.yml +70 -0
- data/spec/spec_tests/data/sdam_monitoring/standalone_repeated.yml +86 -0
- data/spec/spec_tests/data/sdam_monitoring/standalone_suppress_equal_description_changes.yml +73 -0
- data/spec/spec_tests/data/sdam_monitoring/standalone_to_rs_with_me_mismatch.yml +90 -0
- data/spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/Nearest.yml +25 -0
- data/spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/Nearest_multiple.yml +26 -0
- data/spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/Nearest_non_matching.yml +20 -0
- data/spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/PossiblePrimary.yml +15 -0
- data/spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/PossiblePrimaryNearest.yml +15 -0
- data/spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/Primary.yml +18 -0
- data/spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/PrimaryPreferred.yml +25 -0
- data/spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/PrimaryPreferred_non_matching.yml +20 -0
- data/spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/Secondary.yml +25 -0
- data/spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/SecondaryPreferred.yml +25 -0
- data/spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/SecondaryPreferred_non_matching.yml +20 -0
- data/spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/Secondary_non_matching.yml +20 -0
- data/spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/Nearest.yml +32 -0
- data/spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/Nearest_multiple.yml +33 -0
- data/spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/Nearest_non_matching.yml +25 -0
- data/spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/Primary.yml +26 -0
- data/spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/PrimaryPreferred.yml +28 -0
- data/spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/PrimaryPreferred_non_matching.yml +28 -0
- data/spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/Secondary.yml +30 -0
- data/spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/SecondaryPreferred.yml +30 -0
- data/spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/SecondaryPreferred_non_matching.yml +28 -0
- data/spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/Secondary_non_matching.yml +25 -0
- data/spec/spec_tests/data/server_selection/Sharded/read/Nearest.yml +21 -0
- data/spec/spec_tests/data/server_selection/Sharded/read/Primary.yml +19 -0
- data/spec/spec_tests/data/server_selection/Sharded/read/PrimaryPreferred.yml +21 -0
- data/spec/spec_tests/data/server_selection/Sharded/read/Secondary.yml +21 -0
- data/spec/spec_tests/data/server_selection/Sharded/read/SecondaryPreferred.yml +21 -0
- data/spec/spec_tests/data/server_selection/Single/read/SecondaryPreferred.yml +18 -0
- data/spec/spec_tests/data/server_selection/Unknown/read/SecondaryPreferred.yml +10 -0
- data/spec/spec_tests/data/transactions/abort.yml +413 -0
- data/spec/spec_tests/data/transactions/bulk.yml +267 -0
- data/spec/spec_tests/data/transactions/causal-consistency.yml +175 -0
- data/spec/spec_tests/data/transactions/commit.yml +603 -0
- data/spec/spec_tests/data/transactions/count.yml +67 -0
- data/spec/spec_tests/data/transactions/create-collection.yml +131 -0
- data/spec/spec_tests/data/transactions/create-index.yml +152 -0
- data/spec/spec_tests/data/transactions/delete.yml +192 -0
- data/spec/spec_tests/data/transactions/error-labels.yml +1027 -0
- data/spec/spec_tests/data/transactions/errors-client.yml +56 -0
- data/spec/spec_tests/data/transactions/errors.yml +133 -0
- data/spec/spec_tests/data/transactions/findOneAndDelete.yml +134 -0
- data/spec/spec_tests/data/transactions/findOneAndReplace.yml +148 -0
- data/spec/spec_tests/data/transactions/findOneAndUpdate.yml +236 -0
- data/spec/spec_tests/data/transactions/insert.yml +390 -0
- data/spec/spec_tests/data/transactions/isolation.yml +133 -0
- data/spec/spec_tests/data/transactions/mongos-pin-auto.yml +1671 -0
- data/spec/spec_tests/data/transactions/mongos-recovery-token.yml +348 -0
- data/spec/spec_tests/data/transactions/pin-mongos.yml +556 -0
- data/spec/spec_tests/data/transactions/read-concern.yml +623 -0
- data/spec/spec_tests/data/transactions/read-pref.yml +348 -0
- data/spec/spec_tests/data/transactions/reads.yml +261 -0
- data/spec/spec_tests/data/transactions/retryable-abort-errorLabels.yml +124 -0
- data/spec/spec_tests/data/transactions/retryable-abort.yml +1315 -0
- data/spec/spec_tests/data/transactions/retryable-commit-errorLabels.yml +132 -0
- data/spec/spec_tests/data/transactions/retryable-commit.yml +1460 -0
- data/spec/spec_tests/data/transactions/retryable-writes.yml +216 -0
- data/spec/spec_tests/data/transactions/run-command.yml +197 -0
- data/spec/spec_tests/data/transactions/transaction-options-repl.yml +117 -0
- data/spec/spec_tests/data/transactions/transaction-options.yml +781 -0
- data/spec/spec_tests/data/transactions/update.yml +246 -0
- data/spec/spec_tests/data/transactions/write-concern.yml +554 -0
- data/spec/spec_tests/data/transactions_api/callback-aborts.yml +170 -0
- data/spec/spec_tests/data/transactions_api/callback-commits.yml +204 -0
- data/spec/spec_tests/data/transactions_api/callback-retry.yml +215 -0
- data/spec/spec_tests/data/transactions_api/commit-retry.yml +324 -0
- data/spec/spec_tests/data/transactions_api/commit-transienttransactionerror-4.2.yml +139 -0
- data/spec/spec_tests/data/transactions_api/commit-transienttransactionerror.yml +175 -0
- data/spec/spec_tests/data/transactions_api/commit-writeconcernerror.yml +216 -0
- data/spec/spec_tests/data/transactions_api/commit.yml +193 -0
- data/spec/spec_tests/data/transactions_api/transaction-options.yml +274 -0
- data/spec/spec_tests/data/uri_options/auth-options.yml +49 -0
- data/spec/spec_tests/data/uri_options/compression-options.yml +51 -0
- data/spec/spec_tests/data/uri_options/concern-options.yml +55 -0
- data/spec/spec_tests/data/uri_options/connection-options.yml +149 -0
- data/spec/spec_tests/data/uri_options/connection-pool-options.yml +26 -0
- data/spec/spec_tests/data/uri_options/read-preference-options.yml +66 -0
- data/spec/spec_tests/data/uri_options/ruby-auth-options.yml +12 -0
- data/spec/spec_tests/data/uri_options/ruby-connection-options.yml +58 -0
- data/spec/spec_tests/data/uri_options/tls-options.yml +364 -0
- data/spec/spec_tests/dns_seedlist_discovery_spec.rb +76 -0
- data/spec/spec_tests/gridfs_spec.rb +52 -0
- data/spec/spec_tests/max_staleness_spec.rb +9 -0
- data/spec/spec_tests/read_write_concern_connection_string_spec.rb +10 -0
- data/spec/spec_tests/read_write_concern_document_spec.rb +74 -0
- data/spec/spec_tests/read_write_concern_operaton_spec.rb +10 -0
- data/spec/spec_tests/retryable_reads_spec.rb +47 -0
- data/spec/spec_tests/retryable_writes_spec.rb +19 -0
- data/spec/spec_tests/sdam_integration_spec.rb +13 -0
- data/spec/spec_tests/sdam_monitoring_spec.rb +93 -0
- data/spec/spec_tests/sdam_spec.rb +239 -0
- data/spec/spec_tests/server_selection_rtt_spec.rb +30 -0
- data/spec/spec_tests/server_selection_spec.rb +9 -0
- data/spec/spec_tests/transactions_api_spec.rb +10 -0
- data/spec/spec_tests/transactions_spec.rb +10 -0
- data/spec/spec_tests/uri_options_spec.rb +74 -0
- data/spec/stress/cleanup_spec.rb +58 -0
- data/spec/stress/connection_pool_stress_spec.rb +201 -0
- data/spec/stress/connection_pool_timing_spec.rb +181 -0
- data/spec/stress/fork_reconnect_stress_spec.rb +109 -0
- data/spec/support/authorization.rb +51 -153
- data/spec/support/aws_utils/base.rb +134 -0
- data/spec/support/aws_utils/inspector.rb +224 -0
- data/spec/support/aws_utils/orchestrator.rb +370 -0
- data/spec/support/aws_utils/provisioner.rb +360 -0
- data/spec/support/aws_utils.rb +62 -0
- data/spec/support/background_thread_registry.rb +67 -0
- data/spec/support/certificates/README.md +105 -0
- data/spec/support/certificates/atlas-ocsp-ca.crt +28 -0
- data/spec/support/certificates/atlas-ocsp.crt +41 -0
- data/spec/support/certificates/ca.crt +76 -0
- data/spec/support/certificates/client-encrypted.key +30 -0
- data/spec/support/certificates/client-int.crt +78 -0
- data/spec/support/certificates/client-second-level-bundle.pem +179 -0
- data/spec/support/certificates/client-second-level.crt +74 -0
- data/spec/support/certificates/client-second-level.key +27 -0
- data/spec/support/certificates/client-second-level.pem +101 -0
- data/spec/support/certificates/client-x509.crt +78 -0
- data/spec/support/certificates/client-x509.key +27 -0
- data/spec/support/certificates/client-x509.pem +105 -0
- data/spec/support/certificates/client.crt +74 -0
- data/spec/support/certificates/client.key +27 -0
- data/spec/support/certificates/client.pem +90 -90
- data/spec/support/certificates/crl.pem +10 -8
- data/spec/support/certificates/crl_client_revoked.pem +11 -10
- data/spec/support/certificates/multi-ca.crt +152 -0
- data/spec/support/certificates/python-ca.crt +76 -0
- data/spec/support/certificates/server-int.crt +78 -0
- data/spec/support/certificates/server-second-level-bundle.pem +179 -0
- data/spec/support/certificates/server-second-level.crt +74 -0
- data/spec/support/certificates/server-second-level.key +27 -0
- data/spec/support/certificates/server-second-level.pem +101 -0
- data/spec/support/certificates/server.pem +99 -32
- data/spec/support/client_registry.rb +247 -0
- data/spec/support/client_registry_macros.rb +23 -0
- data/spec/support/cluster_config.rb +207 -0
- data/spec/support/cluster_tools.rb +376 -0
- data/spec/support/common_shortcuts.rb +342 -0
- data/spec/support/constraints.rb +16 -0
- data/spec/support/crypt/corpus/corpus-key-aws.json +33 -0
- data/spec/support/crypt/corpus/corpus-key-local.json +31 -0
- data/spec/support/crypt/corpus/corpus-schema.json +2057 -0
- data/spec/support/crypt/corpus/corpus.json +3657 -0
- data/spec/support/crypt/corpus/corpus_encrypted.json +4152 -0
- data/spec/support/crypt/data_keys/key_document_aws.json +34 -0
- data/spec/support/crypt/data_keys/key_document_local.json +31 -0
- data/spec/support/crypt/external/external-key.json +31 -0
- data/spec/support/crypt/external/external-schema.json +19 -0
- data/spec/support/crypt/limits/limits-doc.json +102 -0
- data/spec/support/crypt/limits/limits-key.json +31 -0
- data/spec/support/crypt/limits/limits-schema.json +1405 -0
- data/spec/support/crypt/schema_maps/schema_map_aws.json +17 -0
- data/spec/support/crypt/schema_maps/schema_map_aws_key_alt_names.json +12 -0
- data/spec/support/crypt/schema_maps/schema_map_local.json +18 -0
- data/spec/support/crypt/schema_maps/schema_map_local_key_alt_names.json +12 -0
- data/spec/support/crypt.rb +154 -0
- data/spec/support/dns.rb +13 -0
- data/spec/support/event_subscriber.rb +212 -0
- data/spec/support/json_ext_formatter.rb +13 -0
- data/spec/support/keyword_struct.rb +26 -0
- data/spec/support/local_resource_registry.rb +34 -0
- data/spec/support/matchers.rb +35 -0
- data/spec/support/monitoring_ext.rb +16 -0
- data/spec/support/ocsp +1 -0
- data/spec/support/primary_socket.rb +21 -0
- data/spec/support/sdam_formatter_integration.rb +116 -0
- data/spec/support/session_registry.rb +52 -0
- data/spec/support/shared/protocol.rb +2 -0
- data/spec/support/shared/scram_conversation.rb +100 -0
- data/spec/support/shared/server_selector.rb +109 -63
- data/spec/support/shared/session.rb +907 -0
- data/spec/support/spec_config.rb +560 -0
- data/spec/support/spec_setup.rb +70 -0
- data/spec/support/utils.rb +534 -0
- data.tar.gz.sig +0 -0
- metadata +2229 -653
- metadata.gz.sig +0 -0
- data/lib/csasl/csasl.bundle +0 -0
- data/lib/mongo/cluster/app_metadata.rb +0 -146
- data/lib/mongo/cluster/cursor_reaper.rb +0 -174
- data/lib/mongo/cluster/topology/replica_set.rb +0 -317
- data/lib/mongo/event/description_changed.rb +0 -72
- data/lib/mongo/event/member_discovered.rb +0 -65
- data/lib/mongo/event/primary_elected.rb +0 -55
- data/lib/mongo/event/standalone_discovered.rb +0 -53
- data/lib/mongo/operation/commands/aggregate/result.rb +0 -89
- data/lib/mongo/operation/commands/aggregate.rb +0 -64
- data/lib/mongo/operation/commands/collections_info/result.rb +0 -41
- data/lib/mongo/operation/commands/collections_info.rb +0 -71
- data/lib/mongo/operation/commands/command.rb +0 -47
- data/lib/mongo/operation/commands/create.rb +0 -45
- data/lib/mongo/operation/commands/drop.rb +0 -45
- data/lib/mongo/operation/commands/drop_database.rb +0 -45
- data/lib/mongo/operation/commands/find/result.rb +0 -62
- data/lib/mongo/operation/commands/find.rb +0 -27
- data/lib/mongo/operation/commands/get_more/result.rb +0 -62
- data/lib/mongo/operation/commands/get_more.rb +0 -27
- data/lib/mongo/operation/commands/indexes.rb +0 -73
- data/lib/mongo/operation/commands/list_collections/result.rb +0 -94
- data/lib/mongo/operation/commands/list_collections.rb +0 -48
- data/lib/mongo/operation/commands/list_indexes/result.rb +0 -98
- data/lib/mongo/operation/commands/list_indexes.rb +0 -48
- data/lib/mongo/operation/commands/map_reduce/result.rb +0 -119
- data/lib/mongo/operation/commands/map_reduce.rb +0 -60
- data/lib/mongo/operation/commands/parallel_scan/result.rb +0 -64
- data/lib/mongo/operation/commands/parallel_scan.rb +0 -53
- data/lib/mongo/operation/commands/user_query.rb +0 -72
- data/lib/mongo/operation/commands/users_info/result.rb +0 -44
- data/lib/mongo/operation/commands/users_info.rb +0 -48
- data/lib/mongo/operation/commands.rb +0 -29
- data/lib/mongo/operation/executable.rb +0 -42
- data/lib/mongo/operation/limited.rb +0 -37
- data/lib/mongo/operation/object_id_generator.rb +0 -36
- data/lib/mongo/operation/read/get_more.rb +0 -52
- data/lib/mongo/operation/read/query/result.rb +0 -40
- data/lib/mongo/operation/read/query.rb +0 -55
- data/lib/mongo/operation/read.rb +0 -16
- data/lib/mongo/operation/read_preference.rb +0 -61
- data/lib/mongo/operation/specifiable.rb +0 -507
- data/lib/mongo/operation/takes_write_concern.rb +0 -35
- data/lib/mongo/operation/write/bulk/bulkable.rb +0 -83
- data/lib/mongo/operation/write/bulk/delete/result.rb +0 -71
- data/lib/mongo/operation/write/bulk/delete.rb +0 -71
- data/lib/mongo/operation/write/bulk/insert/result.rb +0 -129
- data/lib/mongo/operation/write/bulk/insert.rb +0 -96
- data/lib/mongo/operation/write/bulk/legacy_mergable.rb +0 -87
- data/lib/mongo/operation/write/bulk/mergable.rb +0 -71
- data/lib/mongo/operation/write/bulk/update/result.rb +0 -205
- data/lib/mongo/operation/write/bulk/update.rb +0 -81
- data/lib/mongo/operation/write/bulk.rb +0 -20
- data/lib/mongo/operation/write/command/create_index.rb +0 -55
- data/lib/mongo/operation/write/command/create_user.rb +0 -42
- data/lib/mongo/operation/write/command/delete.rb +0 -56
- data/lib/mongo/operation/write/command/drop_index.rb +0 -56
- data/lib/mongo/operation/write/command/insert.rb +0 -66
- data/lib/mongo/operation/write/command/remove_user.rb +0 -41
- data/lib/mongo/operation/write/command/update.rb +0 -63
- data/lib/mongo/operation/write/command/update_user.rb +0 -42
- data/lib/mongo/operation/write/command/writable.rb +0 -57
- data/lib/mongo/operation/write/command.rb +0 -23
- data/lib/mongo/operation/write/create_index.rb +0 -67
- data/lib/mongo/operation/write/create_user.rb +0 -50
- data/lib/mongo/operation/write/delete/result.rb +0 -40
- data/lib/mongo/operation/write/delete.rb +0 -75
- data/lib/mongo/operation/write/drop_index.rb +0 -63
- data/lib/mongo/operation/write/gle.rb +0 -49
- data/lib/mongo/operation/write/idable.rb +0 -63
- data/lib/mongo/operation/write/insert/result.rb +0 -62
- data/lib/mongo/operation/write/insert.rb +0 -71
- data/lib/mongo/operation/write/remove_user.rb +0 -48
- data/lib/mongo/operation/write/update/result.rb +0 -160
- data/lib/mongo/operation/write/update.rb +0 -85
- data/lib/mongo/operation/write/update_user.rb +0 -50
- data/lib/mongo/operation/write/write_command_enabled.rb +0 -62
- data/lib/mongo/operation/write.rb +0 -27
- data/lib/mongo/server/connectable.rb +0 -119
- data/lib/mongo/server/connection_pool/queue.rb +0 -197
- data/lib/mongo/server/description/inspector/description_changed.rb +0 -57
- data/lib/mongo/server/description/inspector/member_discovered.rb +0 -59
- data/lib/mongo/server/description/inspector/primary_elected.rb +0 -60
- data/lib/mongo/server/description/inspector/standalone_discovered.rb +0 -56
- data/lib/mongo/server/description/inspector.rb +0 -81
- data/lib/mongo/server_selector/selectable.rb +0 -281
- data/lib/mongo/write_concern/normalizable.rb +0 -52
- data/spec/mongo/cluster/app_metadata_spec.rb +0 -104
- data/spec/mongo/command_monitoring_spec.rb +0 -64
- data/spec/mongo/connection_string_spec.rb +0 -115
- data/spec/mongo/crud_spec.rb +0 -41
- data/spec/mongo/gridfs_spec.rb +0 -50
- data/spec/mongo/max_staleness_spec.rb +0 -126
- data/spec/mongo/operation/commands/aggregate/result_spec.rb +0 -80
- data/spec/mongo/operation/commands/aggregate_spec.rb +0 -72
- data/spec/mongo/operation/commands/collections_info_spec.rb +0 -40
- data/spec/mongo/operation/commands/command_spec.rb +0 -80
- data/spec/mongo/operation/commands/indexes_spec.rb +0 -31
- data/spec/mongo/operation/commands/map_reduce_spec.rb +0 -125
- data/spec/mongo/operation/read/get_more_spec.rb +0 -53
- data/spec/mongo/operation/read/query_spec.rb +0 -102
- data/spec/mongo/operation/read_preference_spec.rb +0 -245
- data/spec/mongo/operation/write/bulk/delete_spec.rb +0 -223
- data/spec/mongo/operation/write/bulk/insert_spec.rb +0 -250
- data/spec/mongo/operation/write/bulk/update_spec.rb +0 -220
- data/spec/mongo/operation/write/command/delete_spec.rb +0 -106
- data/spec/mongo/operation/write/command/insert_spec.rb +0 -105
- data/spec/mongo/operation/write/command/update_spec.rb +0 -110
- data/spec/mongo/operation/write/create_index_spec.rb +0 -63
- data/spec/mongo/operation/write/create_user_spec.rb +0 -44
- data/spec/mongo/operation/write/delete_spec.rb +0 -215
- data/spec/mongo/operation/write/drop_index_spec.rb +0 -51
- data/spec/mongo/operation/write/insert_spec.rb +0 -291
- data/spec/mongo/operation/write/remove_user_spec.rb +0 -46
- data/spec/mongo/operation/write/update_spec.rb +0 -256
- data/spec/mongo/operation/write/update_user_spec.rb +0 -46
- data/spec/mongo/sdam_monitoring_spec.rb +0 -60
- data/spec/mongo/sdam_spec.rb +0 -84
- data/spec/mongo/server/connection_pool/queue_spec.rb +0 -190
- data/spec/mongo/server/description/inspector/description_changed_spec.rb +0 -78
- data/spec/mongo/server/description/inspector/primary_elected_spec.rb +0 -94
- data/spec/mongo/server_selection_rtt_spec.rb +0 -85
- data/spec/mongo/server_selection_spec.rb +0 -93
- data/spec/support/certificates/ca.pem +0 -17
- data/spec/support/certificates/client_cert.pem +0 -21
- data/spec/support/certificates/client_key.pem +0 -28
- data/spec/support/certificates/client_key_encrypted.pem +0 -30
- data/spec/support/certificates/password_protected.pem +0 -51
- data/spec/support/command_monitoring/bulkWrite.yml +0 -73
- data/spec/support/command_monitoring/command.yml +0 -42
- data/spec/support/command_monitoring/find.yml +0 -268
- data/spec/support/command_monitoring/insertMany.yml +0 -81
- data/spec/support/command_monitoring/updateMany.yml +0 -67
- data/spec/support/command_monitoring/updateOne.yml +0 -95
- data/spec/support/command_monitoring.rb +0 -376
- data/spec/support/connection_string.rb +0 -228
- data/spec/support/connection_string_tests/invalid-uris.yml +0 -193
- data/spec/support/connection_string_tests/valid-auth.yml +0 -256
- data/spec/support/connection_string_tests/valid-options.yml +0 -30
- data/spec/support/connection_string_tests/valid-unix_socket-absolute.yml +0 -197
- data/spec/support/connection_string_tests/valid-unix_socket-relative.yml +0 -213
- data/spec/support/connection_string_tests/valid-warnings.yml +0 -55
- data/spec/support/crud/read.rb +0 -154
- data/spec/support/crud/write.rb +0 -224
- data/spec/support/crud.rb +0 -271
- data/spec/support/crud_tests/read/aggregate-out.yml +0 -28
- data/spec/support/crud_tests/read/count-collation.yml +0 -15
- data/spec/support/crud_tests/read/count.yml +0 -36
- data/spec/support/crud_tests/write/findOneAndReplace-upsert.yml +0 -47
- data/spec/support/crud_tests/write/findOneAndReplace.yml +0 -142
- data/spec/support/crud_tests/write/findOneAndUpdate.yml +0 -160
- data/spec/support/crud_tests/write/insertMany.yml +0 -23
- data/spec/support/crud_tests/write/replaceOne-collation.yml +0 -23
- data/spec/support/crud_tests/write/replaceOne.yml +0 -86
- data/spec/support/crud_tests/write/updateMany-collation.yml +0 -27
- data/spec/support/crud_tests/write/updateMany.yml +0 -82
- data/spec/support/crud_tests/write/updateOne-collation.yml +0 -24
- data/spec/support/crud_tests/write/updateOne.yml +0 -79
- data/spec/support/gridfs.rb +0 -637
- data/spec/support/gridfs_tests/delete.yml +0 -157
- data/spec/support/gridfs_tests/download.yml +0 -210
- data/spec/support/helpers.rb +0 -140
- data/spec/support/max_staleness/Unknown/SmallMaxStaleness.yml +0 -14
- data/spec/support/sdam/rs/discover_arbiters.yml +0 -41
- data/spec/support/sdam/rs/discover_passives.yml +0 -77
- data/spec/support/sdam/rs/discover_primary.yml +0 -40
- data/spec/support/sdam/rs/discover_secondary.yml +0 -41
- data/spec/support/sdam/rs/discovery.yml +0 -195
- data/spec/support/sdam/rs/equal_electionids.yml +0 -48
- data/spec/support/sdam/rs/ghost_discovered.yml +0 -39
- data/spec/support/sdam/rs/hosts_differ_from_seeds.yml +0 -34
- data/spec/support/sdam/rs/member_reconfig.yml +0 -68
- data/spec/support/sdam/rs/member_standalone.yml +0 -60
- data/spec/support/sdam/rs/new_primary.yml +0 -74
- data/spec/support/sdam/rs/new_primary_new_electionid.yml +0 -101
- data/spec/support/sdam/rs/new_primary_new_setversion.yml +0 -101
- data/spec/support/sdam/rs/new_primary_wrong_set_name.yml +0 -71
- data/spec/support/sdam/rs/non_rs_member.yml +0 -31
- data/spec/support/sdam/rs/normalize_case.yml +0 -49
- data/spec/support/sdam/rs/null_election_id.yml +0 -152
- data/spec/support/sdam/rs/primary_becomes_standalone.yml +0 -52
- data/spec/support/sdam/rs/primary_changes_set_name.yml +0 -57
- data/spec/support/sdam/rs/primary_disconnect.yml +0 -56
- data/spec/support/sdam/rs/primary_disconnect_electionid.yml +0 -159
- data/spec/support/sdam/rs/primary_disconnect_setversion.yml +0 -159
- data/spec/support/sdam/rs/primary_mismatched_me.yml +0 -37
- data/spec/support/sdam/rs/primary_reports_new_member.yml +0 -163
- data/spec/support/sdam/rs/primary_to_no_primary_mismatched_me.yml +0 -75
- data/spec/support/sdam/rs/primary_wrong_set_name.yml +0 -27
- data/spec/support/sdam/rs/response_from_removed.yml +0 -63
- data/spec/support/sdam/rs/rsother_discovered.yml +0 -62
- data/spec/support/sdam/rs/sec_not_auth.yml +0 -49
- data/spec/support/sdam/rs/secondary_mismatched_me.yml +0 -37
- data/spec/support/sdam/rs/secondary_wrong_set_name.yml +0 -28
- data/spec/support/sdam/rs/secondary_wrong_set_name_with_primary.yml +0 -69
- data/spec/support/sdam/rs/set_version_without_electionid.yml +0 -69
- data/spec/support/sdam/rs/setversion_without_electionid.yml +0 -69
- data/spec/support/sdam/rs/stepdown_change_set_name.yml +0 -59
- data/spec/support/sdam/rs/unexpected_mongos.yml +0 -26
- data/spec/support/sdam/rs/use_setversion_without_electionid.yml +0 -99
- data/spec/support/sdam/rs/wrong_set_name.yml +0 -35
- data/spec/support/sdam/sharded/mongos_disconnect.yml +0 -104
- data/spec/support/sdam/sharded/multiple_mongoses.yml +0 -46
- data/spec/support/sdam/sharded/non_mongos_removed.yml +0 -41
- data/spec/support/sdam/sharded/normalize_uri_case.yml +0 -32
- data/spec/support/sdam/sharded/single_mongos.yml +0 -33
- data/spec/support/sdam/single/direct_connection_external_ip.yml +0 -34
- data/spec/support/sdam/single/direct_connection_mongos.yml +0 -33
- data/spec/support/sdam/single/direct_connection_rsarbiter.yml +0 -35
- data/spec/support/sdam/single/direct_connection_rsprimary.yml +0 -34
- data/spec/support/sdam/single/direct_connection_rssecondary.yml +0 -35
- data/spec/support/sdam/single/direct_connection_slave.yml +0 -32
- data/spec/support/sdam/single/direct_connection_standalone.yml +0 -32
- data/spec/support/sdam/single/not_ok_response.yml +0 -38
- data/spec/support/sdam/single/standalone_removed.yml +0 -32
- data/spec/support/sdam/single/unavailable_seed.yml +0 -28
- data/spec/support/sdam_monitoring/replica_set_with_removal.yml +0 -106
- data/spec/support/sdam_monitoring/required_replica_set.yml +0 -84
- data/spec/support/sdam_monitoring/standalone.yml +0 -70
- data/spec/support/sdam_monitoring.rb +0 -144
- data/spec/support/server_discovery_and_monitoring.rb +0 -219
- data/spec/support/server_selection/selection/ReplicaSetNoPrimary/read/Nearest.yml +0 -26
- data/spec/support/server_selection/selection/ReplicaSetNoPrimary/read/Nearest_multiple.yml +0 -27
- data/spec/support/server_selection/selection/ReplicaSetNoPrimary/read/Nearest_non_matching.yml +0 -21
- data/spec/support/server_selection/selection/ReplicaSetNoPrimary/read/Primary.yml +0 -21
- data/spec/support/server_selection/selection/ReplicaSetNoPrimary/read/PrimaryPreferred.yml +0 -26
- data/spec/support/server_selection/selection/ReplicaSetNoPrimary/read/PrimaryPreferred_non_matching.yml +0 -21
- data/spec/support/server_selection/selection/ReplicaSetNoPrimary/read/Secondary.yml +0 -26
- data/spec/support/server_selection/selection/ReplicaSetNoPrimary/read/SecondaryPreferred.yml +0 -26
- data/spec/support/server_selection/selection/ReplicaSetNoPrimary/read/SecondaryPreferred_non_matching.yml +0 -21
- data/spec/support/server_selection/selection/ReplicaSetNoPrimary/read/Secondary_non_matching.yml +0 -21
- data/spec/support/server_selection/selection/ReplicaSetWithPrimary/read/Nearest.yml +0 -33
- data/spec/support/server_selection/selection/ReplicaSetWithPrimary/read/Nearest_multiple.yml +0 -34
- data/spec/support/server_selection/selection/ReplicaSetWithPrimary/read/Nearest_non_matching.yml +0 -26
- data/spec/support/server_selection/selection/ReplicaSetWithPrimary/read/Primary.yml +0 -29
- data/spec/support/server_selection/selection/ReplicaSetWithPrimary/read/PrimaryPreferred.yml +0 -29
- data/spec/support/server_selection/selection/ReplicaSetWithPrimary/read/PrimaryPreferred_non_matching.yml +0 -29
- data/spec/support/server_selection/selection/ReplicaSetWithPrimary/read/Secondary.yml +0 -31
- data/spec/support/server_selection/selection/ReplicaSetWithPrimary/read/SecondaryPreferred.yml +0 -31
- data/spec/support/server_selection/selection/ReplicaSetWithPrimary/read/SecondaryPreferred_non_matching.yml +0 -29
- data/spec/support/server_selection/selection/ReplicaSetWithPrimary/read/Secondary_non_matching.yml +0 -26
- data/spec/support/server_selection/selection/Sharded/read/SecondaryPreferred.yml +0 -26
- data/spec/support/server_selection/selection/Single/read/SecondaryPreferred.yml +0 -19
- data/spec/support/server_selection/selection/Unknown/read/SecondaryPreferred.yml +0 -11
- data/spec/support/server_selection.rb +0 -163
- data/spec/support/server_selection_rtt.rb +0 -41
- data/spec/support/travis.rb +0 -14
- /data/spec/{support → spec_tests/data}/command_monitoring/deleteMany.yml +0 -0
- /data/spec/{support → spec_tests/data}/command_monitoring/deleteOne.yml +0 -0
- /data/spec/{support → spec_tests/data}/command_monitoring/insertOne.yml +0 -0
- /data/spec/{support/connection_string_tests → spec_tests/data/connection_string}/valid-host_identifiers.yml +0 -0
- /data/spec/{support/crud_tests → spec_tests/data/crud}/read/aggregate-collation.yml +0 -0
- /data/spec/{support/crud_tests → spec_tests/data/crud}/read/aggregate.yml +0 -0
- /data/spec/{support/crud_tests → spec_tests/data/crud}/read/distinct-collation.yml +0 -0
- /data/spec/{support/crud_tests → spec_tests/data/crud}/read/distinct.yml +0 -0
- /data/spec/{support/crud_tests → spec_tests/data/crud}/read/find-collation.yml +0 -0
- /data/spec/{support/crud_tests → spec_tests/data/crud}/read/find.yml +0 -0
- /data/spec/{support/crud_tests → spec_tests/data/crud}/write/deleteMany-collation.yml +0 -0
- /data/spec/{support/crud_tests → spec_tests/data/crud}/write/deleteMany.yml +0 -0
- /data/spec/{support/crud_tests → spec_tests/data/crud}/write/deleteOne-collation.yml +0 -0
- /data/spec/{support/crud_tests → spec_tests/data/crud}/write/deleteOne.yml +0 -0
- /data/spec/{support/crud_tests → spec_tests/data/crud}/write/findOneAndDelete-collation.yml +0 -0
- /data/spec/{support/crud_tests → spec_tests/data/crud}/write/findOneAndDelete.yml +0 -0
- /data/spec/{support/crud_tests → spec_tests/data/crud}/write/findOneAndReplace-collation.yml +0 -0
- /data/spec/{support/crud_tests → spec_tests/data/crud}/write/findOneAndUpdate-collation.yml +0 -0
- /data/spec/{support/crud_tests → spec_tests/data/crud}/write/insertOne.yml +0 -0
- /data/spec/{support/crud_tests → spec_tests/data/crud}/write/replaceOne-upsert.yml +0 -0
- /data/spec/{support/gridfs_tests → spec_tests/data/gridfs}/download_by_name.yml +0 -0
- /data/spec/{support/gridfs_tests → spec_tests/data/gridfs}/upload.yml +0 -0
- /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetNoPrimary/DefaultNoMaxStaleness.yml +0 -0
- /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetNoPrimary/Incompatible.yml +0 -0
- /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetNoPrimary/LastUpdateTime.yml +0 -0
- /data/spec/{support/max_staleness/ReplicaSetNoPrimary/NoKnownServers.yml → spec_tests/data/max_staleness/ReplicaSetNoPrimary/MaxStalenessTooSmall.yml} +0 -0
- /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetNoPrimary/Nearest.yml +0 -0
- /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetNoPrimary/Nearest2.yml +0 -0
- /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetNoPrimary/PrimaryPreferred.yml +0 -0
- /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetNoPrimary/PrimaryPreferred_tags.yml +0 -0
- /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetNoPrimary/Secondary.yml +0 -0
- /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetNoPrimary/SecondaryPreferred.yml +0 -0
- /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetNoPrimary/SecondaryPreferred_tags.yml +0 -0
- /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetNoPrimary/ZeroMaxStaleness.yml +0 -0
- /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetWithPrimary/DefaultNoMaxStaleness.yml +0 -0
- /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetWithPrimary/Incompatible.yml +0 -0
- /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetWithPrimary/LastUpdateTime.yml +0 -0
- /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetWithPrimary/LongHeartbeat.yml +0 -0
- /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetWithPrimary/LongHeartbeat2.yml +0 -0
- /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetWithPrimary/MaxStalenessTooSmall.yml +0 -0
- /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetWithPrimary/MaxStalenessWithModePrimary.yml +0 -0
- /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetWithPrimary/Nearest.yml +0 -0
- /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetWithPrimary/Nearest2.yml +0 -0
- /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetWithPrimary/Nearest_tags.yml +0 -0
- /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetWithPrimary/PrimaryPreferred.yml +0 -0
- /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetWithPrimary/PrimaryPreferred_incompatible.yml +0 -0
- /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetWithPrimary/SecondaryPreferred.yml +0 -0
- /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetWithPrimary/SecondaryPreferred_tags.yml +0 -0
- /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetWithPrimary/SecondaryPreferred_tags2.yml +0 -0
- /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetWithPrimary/Secondary_tags.yml +0 -0
- /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetWithPrimary/Secondary_tags2.yml +0 -0
- /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetWithPrimary/ZeroMaxStaleness.yml +0 -0
- /data/spec/{support → spec_tests/data}/max_staleness/Sharded/Incompatible.yml +0 -0
- /data/spec/{support → spec_tests/data}/max_staleness/Sharded/SmallMaxStaleness.yml +0 -0
- /data/spec/{support → spec_tests/data}/max_staleness/Single/Incompatible.yml +0 -0
- /data/spec/{support → spec_tests/data}/max_staleness/Single/SmallMaxStaleness.yml +0 -0
- /data/spec/{support → spec_tests/data}/sdam_monitoring/replica_set_with_no_primary.yml +0 -0
- /data/spec/{support → spec_tests/data}/sdam_monitoring/replica_set_with_primary.yml +0 -0
- /data/spec/{support/server_selection/selection → spec_tests/data/server_selection}/ReplicaSetNoPrimary/read/Secondary_multi_tags.yml +0 -0
- /data/spec/{support/server_selection/selection → spec_tests/data/server_selection}/ReplicaSetNoPrimary/read/Secondary_multi_tags2.yml +0 -0
- /data/spec/{support/server_selection/selection → spec_tests/data/server_selection}/ReplicaSetWithPrimary/read/SecondaryPreferred_tags.yml +0 -0
- /data/spec/{support/server_selection/rtt → spec_tests/data/server_selection_rtt}/first_value.yml +0 -0
- /data/spec/{support/server_selection/rtt → spec_tests/data/server_selection_rtt}/first_value_zero.yml +0 -0
- /data/spec/{support/server_selection/rtt → spec_tests/data/server_selection_rtt}/value_test_1.yml +0 -0
- /data/spec/{support/server_selection/rtt → spec_tests/data/server_selection_rtt}/value_test_2.yml +0 -0
- /data/spec/{support/server_selection/rtt → spec_tests/data/server_selection_rtt}/value_test_3.yml +0 -0
- /data/spec/{support/server_selection/rtt → spec_tests/data/server_selection_rtt}/value_test_4.yml +0 -0
- /data/spec/{support/server_selection/rtt → spec_tests/data/server_selection_rtt}/value_test_5.yml +0 -0
@@ -0,0 +1,296 @@
|
|
1
|
+
# AWS Authentication Implementation Notes
|
2
|
+
|
3
|
+
## AWS Account
|
4
|
+
|
5
|
+
Per [its documentation](https://docs.aws.amazon.com/STS/latest/APIReference/API_GetCallerIdentity.html,
|
6
|
+
the GetCallerIdentity API call that the server makes to STS to authenticate
|
7
|
+
the user using MONGODB-AWS auth mechanism requires no privileges. This means
|
8
|
+
in order to test authentication using non-temporary credentials (i.e.,
|
9
|
+
AWS access key id and secret access key only) it is sufficient to create an
|
10
|
+
IAM user that has no permissions but does have programmatic access enabled
|
11
|
+
(i.e. has an access key id and secret access key).
|
12
|
+
|
13
|
+
## AWS Signature V4
|
14
|
+
|
15
|
+
The driver implements the AWS signature v4 internally rather than relying on
|
16
|
+
a third-party library (such as the
|
17
|
+
[AWS SDK for Ruby](https://docs.aws.amazon.com/sdk-for-ruby/v3/api/index.html))
|
18
|
+
to provide the signature implementation. The implementation is quite compact
|
19
|
+
but getting it working took some effort due to:
|
20
|
+
|
21
|
+
1. [The server not logging AWS responses when authentication fails
|
22
|
+
](https://jira.mongodb.org/browse/SERVER-46909)
|
23
|
+
2. Some of the messages from STS being quite cryptic (I could not figure out
|
24
|
+
what the problem was for either "Request is missing Authentication Token" or
|
25
|
+
"Request must contain a signature that conforms to AWS standards", and
|
26
|
+
ultimately resolved these problems by comparing my requests to those produced
|
27
|
+
by the AWS SDK).
|
28
|
+
3. Amazon's own documentation not providing an example signature calculation
|
29
|
+
that could be followed to verify correctness, especially since this is a
|
30
|
+
multi-step process and all kinds of subtle errors are possible in many of the
|
31
|
+
steps like using a date instead of a time, hex-encoding a MAC in an
|
32
|
+
intermediate step or not separating header values from the list of signed
|
33
|
+
headers by two newlines.
|
34
|
+
|
35
|
+
### Reference Implementation - AWS SDK
|
36
|
+
|
37
|
+
To see actual working STS requests I used Amazon's
|
38
|
+
[AWS SDK for Ruby](https://docs.aws.amazon.com/sdk-for-ruby/v3/api/index.html)
|
39
|
+
([API docs for STS client](https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/Client.html),
|
40
|
+
[configuration documentation](https://docs.aws.amazon.com/sdk-for-ruby/v3/developer-guide/setup-config.html))
|
41
|
+
as follows:
|
42
|
+
|
43
|
+
1. Set the credentials in the environment (note that the region must be
|
44
|
+
explicitly provided):
|
45
|
+
|
46
|
+
export AWS_ACCESS_KEY_ID=AKIAREALKEY
|
47
|
+
export AWS_SECRET_ACCESS_KEY=Sweee/realsecret
|
48
|
+
export AWS_REGION=us-east-1
|
49
|
+
|
50
|
+
2. Install the correct gem and launch IRb:
|
51
|
+
|
52
|
+
gem install aws-sdk-core
|
53
|
+
irb -raws-sdk-core -Iaws/sts
|
54
|
+
|
55
|
+
3. Send a GetCallerIdentity request, as used by MongoDB server:
|
56
|
+
|
57
|
+
Aws::STS::Client.new(
|
58
|
+
logger: Logger.new(STDERR, level: :debug),
|
59
|
+
http_wire_trace: true,
|
60
|
+
).get_caller_identity
|
61
|
+
|
62
|
+
This call enables HTTP request and response logging and produces output
|
63
|
+
similar to the following:
|
64
|
+
|
65
|
+
opening connection to sts.amazonaws.com:443...
|
66
|
+
opened
|
67
|
+
starting SSL for sts.amazonaws.com:443...
|
68
|
+
SSL established, protocol: TLSv1.2, cipher: ECDHE-RSA-AES128-SHA
|
69
|
+
<- "POST / HTTP/1.1\r\nContent-Type: application/x-www-form-urlencoded; charset=utf-8\r\nAccept-Encoding: \r\nUser-Agent: aws-sdk-ruby3/3.91.1 ruby/2.7.0 x86_64-linux aws-sdk-core/3.91.1\r\nHost: sts.amazonaws.com\r\nX-Amz-Date: 20200317T194745Z\r\nX-Amz-Content-Sha256: ab821ae955788b0e33ebd34c208442ccfc2d406e2edc5e7a39bd6458fbb4f843\r\nAuthorization: AWS4-HMAC-SHA256 Credential=AKIAREALKEY/20200317/us-east-1/sts/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=6cd3a60a2d7dfba0dcd17f9c4c42d0186de5830cf99545332253a327bba14131\r\nContent-Length: 43\r\nAccept: */*\r\n\r\n"
|
70
|
+
-> "HTTP/1.1 200 OK\r\n"
|
71
|
+
-> "x-amzn-RequestId: c56f5d68-8763-4032-a835-fd95efd83fa6\r\n"
|
72
|
+
-> "Content-Type: text/xml\r\n"
|
73
|
+
-> "Content-Length: 401\r\n"
|
74
|
+
-> "Date: Tue, 17 Mar 2020 19:47:44 GMT\r\n"
|
75
|
+
-> "\r\n"
|
76
|
+
reading 401 bytes...
|
77
|
+
-> ""
|
78
|
+
-> "<GetCallerIdentityResponse xmlns=\"https://sts.amazonaws.com/doc/2011-06-15/\">\n <GetCallerIdentityResult>\n <Arn>arn:aws:iam::5851234356:user/test</Arn>\n <UserId>AIDAREALUSERID</UserId>\n <Account>5851234356</Account>\n </GetCallerIdentityResult>\n <ResponseMetadata>\n <RequestId>c56f5d68-8763-4032-a835-fd95efd83fa6</RequestId>\n </ResponseMetadata>\n</GetCallerIdentityResponse>\n"
|
79
|
+
read 401 bytes
|
80
|
+
Conn keep-alive
|
81
|
+
I, [2020-03-17T15:47:45.275421 #9815] INFO -- : [Aws::STS::Client 200 0.091573 0 retries] get_caller_identity()
|
82
|
+
|
83
|
+
=> #<struct Aws::STS::Types::GetCallerIdentityResponse user_id="AIDAREALUSERID", account="5851234356", arn="arn:aws:iam::5851234356:user/test">
|
84
|
+
|
85
|
+
Note that:
|
86
|
+
|
87
|
+
1. The set of headers sent by the AWS SDK differs from the set
|
88
|
+
of headers that the MONGODB-AWS auth mechanism specification mentions.
|
89
|
+
I used the AWS SDK implementation as a guide to determine the correct shape
|
90
|
+
of the request to STS and in particular the `Authorization` header.
|
91
|
+
The source code of Amazon's implementation is
|
92
|
+
[here](https://github.com/aws/aws-sdk-ruby/blob/master/gems/aws-sigv4/lib/aws-sigv4/signer.rb)
|
93
|
+
and it generates, in particular, the x-amz-content-sha256` header
|
94
|
+
which the MONGODB-AWS auth mechanism specification does not mention.
|
95
|
+
2. This is a working request which can be replayed, making it possible
|
96
|
+
to send this request that was created by the AWS SDK repeatedly with minor
|
97
|
+
alterations to study STS error reporting behavior. STS as of this writing
|
98
|
+
allows a 15 minute window during which a request may be replayed.
|
99
|
+
3. The printed request only shows the headers and not the request body.
|
100
|
+
In case of the GetCallerIdentity, the payload is fixed and is the same as
|
101
|
+
what the MONGODB-AWS auth mechanism specification requires
|
102
|
+
(`Action=GetCallerIdentity&Version=2011-06-15`).
|
103
|
+
|
104
|
+
Because the AWS SDK includes a different set of headers in its requests,
|
105
|
+
it not feasible to compare the canonical requests generated by AWS SDK
|
106
|
+
verbatim to the canonical requests generated by the driver.
|
107
|
+
|
108
|
+
### Manual Requests
|
109
|
+
|
110
|
+
It is possible to manually send requests to STS using OpenSSL `s_client`
|
111
|
+
tool in combination with the [printf](https://linux.die.net/man/3/printf)
|
112
|
+
utility to transform the newline escapes. A sample command replaying the
|
113
|
+
request printed above is as follows:
|
114
|
+
|
115
|
+
(printf "POST / HTTP/1.1\r\nContent-Type: application/x-www-form-urlencoded; charset=utf-8\r\nAccept-Encoding: \r\nUser-Agent: aws-sdk-ruby3/3.91.1 ruby/2.7.0 x86_64-linux aws-sdk-core/3.91.1\r\nHost: sts.amazonaws.com\r\nX-Amz-Date: 20200317T194745Z\r\nX-Amz-Content-Sha256: ab821ae955788b0e33ebd34c208442ccfc2d406e2edc5e7a39bd6458fbb4f843\r\nAuthorization: AWS4-HMAC-SHA256 Credential=AKIAREALKEY/20200317/us-east-1/sts/aws4_request, SignedHeaders=content-type;host;x-amz-content-sha256;x-amz-date, Signature=6cd3a60a2d7dfba0dcd17f9c4c42d0186de5830cf99545332253a327bba14131\r\nContent-Length: 43\r\nAccept: */*\r\n\r\n" &&
|
116
|
+
echo "Action=GetCallerIdentity&Version=2011-06-15" &&
|
117
|
+
sleep 5) |openssl s_client -connect sts.amazonaws.com:443
|
118
|
+
|
119
|
+
Note the sleep call - `s_client` does not wait for the remote end to provide
|
120
|
+
a response before exiting, thus the sleep on the input side allows 5 seconds
|
121
|
+
for STS to process the request and respond.
|
122
|
+
|
123
|
+
For reference, Amazon provides [GetCallerIdentity API documentation
|
124
|
+
](https://docs.aws.amazon.com/STS/latest/APIReference/API_GetCallerIdentity.html).
|
125
|
+
|
126
|
+
### Integration Test - Signature Generation
|
127
|
+
|
128
|
+
The Ruby driver includes an integration test for signature generation, where
|
129
|
+
the driver makes the call to `GetCallerIdentity` STS endpoint using the
|
130
|
+
provided AWS credentials. This test is in
|
131
|
+
`spec/integration/aws_auth_request_spec.rb`.
|
132
|
+
|
133
|
+
### STS Error Responses
|
134
|
+
|
135
|
+
The error responses produced by STS sometimes do not clearly indicate the
|
136
|
+
problem. Below are some of the puzzling responses I encountered:
|
137
|
+
|
138
|
+
- *Request is missing Authentication Token*: request is missing the
|
139
|
+
`Authorization` header, or the value of the header does not begin with
|
140
|
+
`AWS4-`. For example, this error is produced if the signature algorithm
|
141
|
+
is erroneously given as `AWS-HMAC-SHA256` instead of `AWS4-HMAC-SHA256`
|
142
|
+
with the remainder of the header value being correctly constructed.
|
143
|
+
This error is also produced if the value of the header erroneously includes
|
144
|
+
the name of the header (i.e. the header name is specified twice in the header
|
145
|
+
line) but the value is otherwise completely valid. This error has no relation
|
146
|
+
to the "session token" or "security token" as used with temporary AWS
|
147
|
+
credentials.
|
148
|
+
- *The security token included in the request is invalid*: this error can be
|
149
|
+
produced in several circumstances:
|
150
|
+
- When the AWS access key id, as specified in the scope part of the
|
151
|
+
`Authorization` header, is not a valid access key id. In the case of
|
152
|
+
non-temporary credentials being used for authentication, the error refers to
|
153
|
+
a "security token" but the authentication process does not actually use a
|
154
|
+
security token as this term is used in the AWS documentation describing
|
155
|
+
temporary credentials.
|
156
|
+
- When using temporary credentials and the security token is not provided
|
157
|
+
in the STS request at all (x-amz-security-token header).
|
158
|
+
- *Signature expired: 20200317T000000Z is now earlier than 20200317T222541Z
|
159
|
+
(20200317T224041Z - 15 min.)*: This error happens when `x-amz-date` header
|
160
|
+
value is the formatted date (`YYYYMMDD`) rather than the ISO8601 formatted
|
161
|
+
time (`YYYYMMDDTHHMMSSZ`). Note that the string `20200317T000000Z` is never
|
162
|
+
explicitly provided in the request - it is derived by AWS from the provided
|
163
|
+
header `x-amz-date: 20200317`.
|
164
|
+
- *The request signature we calculated does not match the signature
|
165
|
+
you provided. Check your AWS Secret Access Key and signing method. Consult
|
166
|
+
the service documentation for details*: this is the error produced when
|
167
|
+
the signature is not calculated correctly but everything else in the
|
168
|
+
request is valid. If a different error is produced, most likely the problem
|
169
|
+
is in something other than signature calculation.
|
170
|
+
- *The security token included in the request is expired*: this error is
|
171
|
+
produced when temporary credentials are used and the credentials have
|
172
|
+
expired.
|
173
|
+
|
174
|
+
See also [AWS documentation for STS error messages](https://docs.aws.amazon.com/STS/latest/APIReference/CommonErrors.html).
|
175
|
+
|
176
|
+
### Resources
|
177
|
+
|
178
|
+
Generally I found Amazon's own documentation to be the best for implementing
|
179
|
+
the signature calculation. The following documents should be read in order:
|
180
|
+
|
181
|
+
- [Signing AWS requests overview](https://docs.aws.amazon.com/general/latest/gr/sigv4_signing.html)
|
182
|
+
- [Creating canonical request](https://docs.aws.amazon.com/general/latest/gr/sigv4-create-canonical-request.html)
|
183
|
+
- [Creating string to sign](https://docs.aws.amazon.com/general/latest/gr/sigv4-create-string-to-sign.html)
|
184
|
+
- [Calculating signature](https://docs.aws.amazon.com/general/latest/gr/sigv4-calculate-signature.html)
|
185
|
+
|
186
|
+
### Signature Debugger
|
187
|
+
|
188
|
+
The most excellent [awssignature.com](http://www.awssignature.com/) was
|
189
|
+
indispensable in debugging the actual signature calculation process.
|
190
|
+
|
191
|
+
### MongoDB Server
|
192
|
+
|
193
|
+
MongoDB server internally defines the set of headers that it is prepared to
|
194
|
+
handle when it is processing AWS authentication. Headers that are not part
|
195
|
+
of that set cause the server to reject driver's payloads.
|
196
|
+
|
197
|
+
The error reporting when additional headers are provided and when the
|
198
|
+
correct set of headers is provided but the headers are not ordered
|
199
|
+
lexicographically [can be misleading](https://jira.mongodb.org/browse/SERVER-47488).
|
200
|
+
|
201
|
+
## Direct AWS Requests
|
202
|
+
|
203
|
+
[STS GetCallerIdentity API docs](https://docs.aws.amazon.com/STS/latest/APIReference/API_GetCallerIdentity.html)
|
204
|
+
|
205
|
+
When making direct requests to AWS, adding `Accept: application/json`
|
206
|
+
header will return the results in the JSON format, including the errors.
|
207
|
+
|
208
|
+
## AWS CLI
|
209
|
+
|
210
|
+
[Configuration reference](https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-envvars.html)
|
211
|
+
|
212
|
+
Note that AWS CLI uses `AWS_DEFAULT_REGION` environment variable to configure
|
213
|
+
the region used for operations.
|
214
|
+
|
215
|
+
## AWS Ruby SDK
|
216
|
+
|
217
|
+
[Configuration reference](https://docs.aws.amazon.com/sdk-for-ruby/v3/developer-guide/setup-config.html)
|
218
|
+
|
219
|
+
Note that AWS Ruby SDK uses `AWS_REGION` environment variable to configure
|
220
|
+
the region used for operations.
|
221
|
+
|
222
|
+
[STS::Client#assume_role documentation](https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/STS/Client.html#assume_role-instance_method)
|
223
|
+
|
224
|
+
## IMDSv2
|
225
|
+
|
226
|
+
`X-aws-ec2-metadata-token-ttl-seconds` is a required header when using
|
227
|
+
IMDSv2 EC2 instance metadata requests. This header is used in the examples
|
228
|
+
on [Amazon's page describing
|
229
|
+
IMDSv2](https://aws.amazon.com/blogs/security/defense-in-depth-open-firewalls-reverse-proxies-ssrf-vulnerabilities-ec2-instance-metadata-service/),
|
230
|
+
but is not explicitly stated as being required.
|
231
|
+
|
232
|
+
Not providing this header fails the PUT requests with HTTP code 400.
|
233
|
+
|
234
|
+
## IAM Roles For EC2 Instances
|
235
|
+
|
236
|
+
### Metadata Rate Limit
|
237
|
+
|
238
|
+
[Amazon documentation](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instancedata-data-retrieval.html#instancedata-throttling)
|
239
|
+
states that the EC2 instance metadata endpoint is rate limited. Since the
|
240
|
+
driver accesses it to obtain credentials whenever a connection is established,
|
241
|
+
rate limits may adversely affect the driver's ability to establish connections.
|
242
|
+
|
243
|
+
### Instance Profile Assignment
|
244
|
+
|
245
|
+
It can take over 5 seconds for an instance to see its instance profile change
|
246
|
+
reflected in the instance metadata. Evergreen test runs seem to experience
|
247
|
+
this delay to a significantly larger extent than testing in a standalone
|
248
|
+
AWS account.
|
249
|
+
|
250
|
+
## IAM Roles For ECS Tasks
|
251
|
+
|
252
|
+
### ECS Task Roles
|
253
|
+
|
254
|
+
When an ECS task (or more precisely, the task definition) is created,
|
255
|
+
it is possible to specify an *execution role* and a *task role*. The two are
|
256
|
+
completely separate; an execution role is required to, for example, be
|
257
|
+
able to send container logs to CloudWatch if the container is running in
|
258
|
+
Fargate, and a task role is required for AWS authentication purposes.
|
259
|
+
|
260
|
+
The ECS task role is also separate from EC2 instance role and the IAM role
|
261
|
+
for a user to assume a role - these roles all require different configuration.
|
262
|
+
|
263
|
+
### `AWS_CONTAINER_CREDENTIALS_RELATIVE_URI` Scope
|
264
|
+
|
265
|
+
As stated in [this Amazon support document](https://aws.amazon.com/premiumsupport/knowledge-center/ecs-iam-task-roles-config-errors/),
|
266
|
+
the `AWS_CONTAINER_CREDENTIALS_RELATIVE_URI` environment variable is only
|
267
|
+
available to the PID 1 process in the container. Other processes need to
|
268
|
+
extract it from PID 1's environment:
|
269
|
+
|
270
|
+
strings /proc/1/environment
|
271
|
+
|
272
|
+
### Other ECS Metadata
|
273
|
+
|
274
|
+
`strings /proc/1/environment` also shows a number of other enviroment
|
275
|
+
variables available in the container with metadata. For example a test
|
276
|
+
container yields:
|
277
|
+
|
278
|
+
HOSTNAME=f893c90ec4bd
|
279
|
+
ECS_CONTAINER_METADATA_URI=http://169.254.170.2/v3/5fb0b11b-c4c8-4cdb-b68b-edf70b3f4937
|
280
|
+
AWS_DEFAULT_REGION=us-east-2
|
281
|
+
AWS_EXECUTION_ENV=AWS_ECS_FARGATE
|
282
|
+
AWS_REGION=us-east-2
|
283
|
+
AWS_CONTAINER_CREDENTIALS_RELATIVE_URI=/v2/credentials/f17b5770-9a0d-498c-8d26-eea69f8d0924
|
284
|
+
|
285
|
+
### Metadata Rate Limit
|
286
|
+
|
287
|
+
[Amazon documentation](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/troubleshoot-task-iam-roles.html)
|
288
|
+
states that ECS task metadata endpoint is subject to rate limiting,
|
289
|
+
which is configured via [ECS_TASK_METADATA_RPS_LIMIT container agent
|
290
|
+
parameter](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-agent-config.html).
|
291
|
+
When the rate limit is reached, requests fail with `429 Too Many Requests`
|
292
|
+
HTTP status code.
|
293
|
+
|
294
|
+
Since the driver accesses this endpoint to obtain credentials whenever
|
295
|
+
a connection is established, rate limits may adversely affect the driver's
|
296
|
+
ability to establish connections.
|
@@ -0,0 +1,318 @@
|
|
1
|
+
# Testing AWS Authentication
|
2
|
+
|
3
|
+
## Server Configuration
|
4
|
+
|
5
|
+
AWS authentication requires the following to be done on the server side:
|
6
|
+
|
7
|
+
1. The AWS authentication mechanism must be enabled on the server. This
|
8
|
+
is done by adding `MONGODB-AWS` to the values in `authenticationMechanisms`
|
9
|
+
server parameter.
|
10
|
+
|
11
|
+
2. A user must be created in the `$external` database with the ARN matching
|
12
|
+
the IAM user or role that the client will authenticate as.
|
13
|
+
|
14
|
+
Note that the server does not need to have AWS keys provided to it - it
|
15
|
+
uses the keys that the client provides during authentication.
|
16
|
+
|
17
|
+
An easy way to configure the deployment in the required fashion is to
|
18
|
+
configure the deployment to accept both password authentication and
|
19
|
+
AWS authentication, and add a bootstrap user:
|
20
|
+
|
21
|
+
mlaunch init --single --auth --username root --password toor \
|
22
|
+
--setParameter authenticationMechanisms=MONGODB-AWS,SCRAM-SHA-1,SCRAM-SHA-256 \
|
23
|
+
--dir /tmp/db
|
24
|
+
|
25
|
+
Then connect as the bootstrap user and create AWS-mapped users:
|
26
|
+
|
27
|
+
mongo mongodb://root:toor@localhost:27017
|
28
|
+
|
29
|
+
# In the mongo shell:
|
30
|
+
use $external
|
31
|
+
db.createUser({
|
32
|
+
user: 'arn:aws:iam::1234567890:user/test',
|
33
|
+
roles: [{role:'root', db:'admin'}]})
|
34
|
+
|
35
|
+
The ARN can be retrieved from the AWS management console. Alternatively,
|
36
|
+
if the IAM user's access and secret keys are known, trying to authenticate
|
37
|
+
as the user will log the user's ARN into the server log when authentication
|
38
|
+
fails; this ARN can be then used to create the server user.
|
39
|
+
|
40
|
+
With the server user created, it is possible to authenticate using AWS.
|
41
|
+
The following example uses regular user credentials for an IAM user
|
42
|
+
created as described in the next section;
|
43
|
+
|
44
|
+
mongo 'mongodb://AKIAAAAAAAAAAAA:t9t2mawssecretkey@localhost:27017/?authMechanism=MONGODB-AWS&authsource=$external'
|
45
|
+
|
46
|
+
To authenticate, provide the IAM user's access key id as the username and
|
47
|
+
secret access key as the password. Note that the username and the password
|
48
|
+
must be percent-escaped when they are passed in the URI as the examples here
|
49
|
+
show. Also note that the user's ARN is not explicitly specified by the client
|
50
|
+
during authentication - the server determines the ARN from the acess
|
51
|
+
key id and the secret access key provided by the client.
|
52
|
+
|
53
|
+
## Provisioning Tools
|
54
|
+
|
55
|
+
The Ruby driver includes tools that set up the resources needed to test
|
56
|
+
AWS authentication. These are exposed by the `.evergreen/aws` script.
|
57
|
+
To use this script, it must be provided AWS credentials and the region
|
58
|
+
to operate in. The credentials and region can be given as command-line
|
59
|
+
arguments or set in the environment, as follows:
|
60
|
+
|
61
|
+
export AWS_ACCESS_KEY_ID=AKIAYOURACCESSKEY
|
62
|
+
export AWS_SECRET_ACCESS_KEY=YOURSECRETACCESSKEY
|
63
|
+
export AWS_REGION=us-east-1
|
64
|
+
|
65
|
+
If you also perform manual testing (for example by following some of the
|
66
|
+
instructions in this file), ensure AWS_SESSION_TOKEN is not set
|
67
|
+
unless you are intending to invoke the `.evergreen/aws` script with
|
68
|
+
temporary credentials:
|
69
|
+
|
70
|
+
unset AWS_SESSION_TOKEN
|
71
|
+
|
72
|
+
Note that [AWS CLI](https://aws.amazon.com/cli/) uses a different environment
|
73
|
+
variable for the region - `AWS_DEFAULT_REGION` rather than `AWS_REGION`.
|
74
|
+
If you also intend to use the AWS CLI, execute:
|
75
|
+
|
76
|
+
export AWS_DEFAULT_REGION=$AWS_REGION
|
77
|
+
|
78
|
+
To verify that credentials are correctly set in the environment, you can
|
79
|
+
perform the following operations:
|
80
|
+
|
81
|
+
# Test driver tooling
|
82
|
+
./.evergreen/aws key-pairs
|
83
|
+
|
84
|
+
# Test AWS CLI
|
85
|
+
aws sts get-caller-identity
|
86
|
+
|
87
|
+
Alternatively, to provide the credentials on each call to the driver's
|
88
|
+
`aws` script, use the `-a` and `-s` arguments as follows:
|
89
|
+
|
90
|
+
./.evergreen/aws -a KEY-ID -s SECRET-KEY key-pairs
|
91
|
+
|
92
|
+
## Common Setup
|
93
|
+
|
94
|
+
In order to test all AWS authentication scenarios, a large number of AWS
|
95
|
+
objects needs to be configured. This configuration is split into two parts:
|
96
|
+
common setup and scenario-specific setup.
|
97
|
+
|
98
|
+
The common setup is performed by running:
|
99
|
+
|
100
|
+
./.evergreen/aws setup-resources
|
101
|
+
|
102
|
+
This creates resources like security groups, IAM users and CloudWatch
|
103
|
+
log groups that do not cost money. It is possible to test authentication
|
104
|
+
with regular credentials and temporary credentials obtained via an
|
105
|
+
AssumeRole request using these resources. In order to test authentication
|
106
|
+
from an EC2 instance or an ECS task, the instance and/or the task need
|
107
|
+
to be started which costs money and is performed as separate steps as
|
108
|
+
detailed below.
|
109
|
+
|
110
|
+
## Regular Credentials - IAM User
|
111
|
+
|
112
|
+
AWS authentication as a regular IAM user requires having an IAM user to
|
113
|
+
authenticate as. This user can be created using the AWS management console.
|
114
|
+
The IAM user requires no permissions, but it must have the programmatic
|
115
|
+
access enabled (i.e. have an access key ID and the secret access key).
|
116
|
+
|
117
|
+
An IAM user is created as part of the common setup described earlier.
|
118
|
+
To reset and retrieve the access key ID and secret access key for the
|
119
|
+
created user, run:
|
120
|
+
|
121
|
+
./.evergreen/aws reset-keys
|
122
|
+
|
123
|
+
Note that if the user already had an access key, the old credentials are
|
124
|
+
removed and replaced with new credentials.
|
125
|
+
|
126
|
+
Given the credentials for the test user, the URI for running the driver
|
127
|
+
test suite can be formed as follows:
|
128
|
+
|
129
|
+
export "MONGODB_URI=mongodb://$AWS_ACCESS_KEY_ID:$AWS_SECRET_ACCESS_KEY@localhost:27017/?authMechanism=MONGODB-AWS&authsource=$external"
|
130
|
+
|
131
|
+
## Temporary Credentials - AssumeRole Request
|
132
|
+
|
133
|
+
To test a user authenticating with an assumed role, you can follow
|
134
|
+
[the example provided in Amazon documentation](https://aws.amazon.com/premiumsupport/knowledge-center/iam-assume-role-cli/)
|
135
|
+
to set up the assumed role and related objects and obtain temporary credentials
|
136
|
+
or use the driver's tooling using the commands given below.
|
137
|
+
Since the temporary credentials expire, the role needs to be re-assumed
|
138
|
+
periodically during testing and the new credentials and session token retrieved.
|
139
|
+
|
140
|
+
If following the example in Amazon's documentation,
|
141
|
+
[jq](https://stedolan.github.io/jq/) can be used to efficiently place the
|
142
|
+
credentials from the AssumeRole request into the environment, as follows:
|
143
|
+
|
144
|
+
# Call given in the example guide
|
145
|
+
aws sts assume-role --role-arn arn:aws:iam::YOUR-ACCOUNT-ID:role/example-role --role-session-name AWSCLI-Session >~/.aws-assumed-role.json
|
146
|
+
|
147
|
+
# Extract the credentials
|
148
|
+
export AWS_ACCESS_KEY_ID=`jq .Credentials.AccessKeyId ~/.aws-assumed-role.json -r`
|
149
|
+
export AWS_SECRET_ACCESS_KEY=`jq .Credentials.SecretAccessKey ~/.aws-assumed-role.json -r`
|
150
|
+
export AWS_SESSION_TOKEN=`jq .Credentials.SessionToken ~/.aws-assumed-role.json -r`
|
151
|
+
|
152
|
+
Alternatively, the `./evergreen/aws` script can be used to assume the role.
|
153
|
+
By default, it will assume the role that `setup-resources` action configured.
|
154
|
+
|
155
|
+
Note: The ability to assume this role is granted to the
|
156
|
+
[IAM user](#regular-credentials-iam-user) that the provisioning tool creates.
|
157
|
+
Therefore the shell must be configured with credentials of the test user,
|
158
|
+
not with credentials of the master user that performed the provisioning.
|
159
|
+
|
160
|
+
To assume the role created by the common setup, run:
|
161
|
+
|
162
|
+
./.evergreen/aws assume-role
|
163
|
+
|
164
|
+
It is also possible to specify the ARN of the role to assume manually, if
|
165
|
+
you created the role using other means:
|
166
|
+
|
167
|
+
./.evergreen/aws assume-role ASSUME-ROLE-ARN
|
168
|
+
|
169
|
+
To place the credentials into the environment:
|
170
|
+
|
171
|
+
eval $(./.evergreen/aws assume-role)
|
172
|
+
export AWS_ACCESS_KEY_ID AWS_SECRET_ACCESS_KEY AWS_SESSION_TOKEN
|
173
|
+
|
174
|
+
With the credentials in the environment, to verify that the role was assumed
|
175
|
+
and the credentials are complete and correct, perform a `GetCallerIdentity`
|
176
|
+
call:
|
177
|
+
|
178
|
+
aws sts get-caller-identity
|
179
|
+
|
180
|
+
Given the credentials for the test user, the URI for running the driver
|
181
|
+
test suite can be formed as follows:
|
182
|
+
|
183
|
+
export "MONGODB_URI=mongodb://$AWS_ACCESS_KEY_ID:$AWS_SECRET_ACCESS_KEY@localhost:27017/?authMechanism=MONGODB-AWS&authsource=$external&authMechanismProperties=AWS_SESSION_TOKEN:$AWS_SESSION_TOKEN"
|
184
|
+
|
185
|
+
## Temporary Credentials - EC2 Instance Role
|
186
|
+
|
187
|
+
To test authentication [using temporary credentials for an EC2 instance
|
188
|
+
role](https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_use_switch-role-ec2.html),
|
189
|
+
an EC2 instance launched with an IAM role or an EC2 instance configured
|
190
|
+
with an instance profile is required. No permissions are needed for the
|
191
|
+
IAM role used with the EC2 instance.
|
192
|
+
|
193
|
+
To create an EC2 instance with an attached role using the AWS console:
|
194
|
+
|
195
|
+
1. Crate an IAM role that the instance will use. It is not necessary to
|
196
|
+
specify any permissions.
|
197
|
+
2. Launch an instance, choosing the IAM role created in the launch wizard.
|
198
|
+
|
199
|
+
To define an instance profile which allows adding and removing an IAM role
|
200
|
+
to/from an instance at runtime, follow Amazon documentation
|
201
|
+
[here](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/iam-roles-for-amazon-ec2.html#attach-iam-role).
|
202
|
+
To test temporary credentials obtained via an EC2 instance role in Evergreen,
|
203
|
+
an instance profile must be associated with the running instance as per
|
204
|
+
this guide.
|
205
|
+
|
206
|
+
The driver provides tooling to configure a suitable instance profile and
|
207
|
+
launch an EC2 instance that can have this instance profile attached to it.
|
208
|
+
|
209
|
+
The instance profile and associated IAM role are created by the common
|
210
|
+
setup described above. To launch an EC2 instance suitable for testing
|
211
|
+
authentication via an EC2 role, run:
|
212
|
+
|
213
|
+
./.evergreen/aws launch-ec2 path/to/ssh.key.pub
|
214
|
+
|
215
|
+
The `launch-ec2` command takes one argument which is the path to the
|
216
|
+
public key for the key pair to use for SSH access to the instance.
|
217
|
+
|
218
|
+
This script will output the instance ID of the launched instance. The
|
219
|
+
instance initially does not have an instance profile assigned; to assign
|
220
|
+
the instance profile created in the common setup to the instance, run:
|
221
|
+
|
222
|
+
./.evergreen/aws set-instance-profile i-instanceid
|
223
|
+
|
224
|
+
To remove the instance profile from the instance, run:
|
225
|
+
|
226
|
+
./.evergreen/aws clear-instance-profile i-instanceid
|
227
|
+
|
228
|
+
To provision the instance for running the driver's test suite via Docker, run:
|
229
|
+
|
230
|
+
ip=12.34.56.78
|
231
|
+
./.evergreen/provision-remote ubuntu@$ip docker
|
232
|
+
|
233
|
+
To run the AWS auth tests using the EC2 instance role credentials, run:
|
234
|
+
|
235
|
+
./.evergreen/test-docker-remote ubuntu@$ip \
|
236
|
+
MONGODB_VERSION=4.4 AUTH=aws-ec2 \
|
237
|
+
-s .evergreen/run-tests-aws-auth.sh \
|
238
|
+
-a .env.private
|
239
|
+
|
240
|
+
Note that if if you are not using MongoDB AWS account for testing, you
|
241
|
+
would need to specify MONGO_RUBY_DRIVER_AWS_AUTH_USER_ARN in your
|
242
|
+
`.env.private` file with the ARN of the user to add to MongoDB. The easiest
|
243
|
+
way to find out this value is to run the tests and note which username the
|
244
|
+
test suite is trying to authenticate as.
|
245
|
+
|
246
|
+
To terminate the instance, run:
|
247
|
+
|
248
|
+
./.evergreen/aws stop-ec2
|
249
|
+
|
250
|
+
## Temporary Credentials - ECS Task Role
|
251
|
+
|
252
|
+
The basic procedure for setting up an ECS cluster is described in
|
253
|
+
[this guide](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ECS_AWSCLI_Fargate.html).
|
254
|
+
For testing AWS auth, the ECS task must have a role assigned to it which is
|
255
|
+
covered in [this guide](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-iam-roles.html)
|
256
|
+
and additionally [here](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task_execution_IAM_role.html).
|
257
|
+
|
258
|
+
Although not required for testing AWS auth specifically, it is very helpful
|
259
|
+
for general troubleshooting of ECS provisioning to have log output from the
|
260
|
+
tasks. Logging to CloudWatch is covered by [this Amazon guide](https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/QuickStartEC2Instance.html)
|
261
|
+
with these potentially helpful [additional](https://stackoverflow.com/questions/50397217/how-to-determine-the-cloudwatch-log-stream-for-a-fargate-service#50704804)
|
262
|
+
[resources](https://help.sumologic.com/03Send-Data/Collect-from-Other-Data-Sources/AWS_Fargate_log_collection).
|
263
|
+
A log group must be manually created, the steps for which are described
|
264
|
+
[here](https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/Working-with-log-groups-and-streams.html).
|
265
|
+
|
266
|
+
Additional references:
|
267
|
+
|
268
|
+
- [Task definition CPU and memory values](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/create-task-definition.html)
|
269
|
+
|
270
|
+
The common setup creates all of the necessary prerequisites to test
|
271
|
+
authentication using ECS task credentials, which includes an empty ECS
|
272
|
+
cluster. To test authentication, a service needs to be created in the
|
273
|
+
ECS cluster that runs the SSH daemon, which can be done by running:
|
274
|
+
|
275
|
+
./.evergreen/aws launch-ecs path/to/ssh.key.pub
|
276
|
+
|
277
|
+
The `launch-ecs` command takes one argument which is the path to the
|
278
|
+
public key for the key pair to use for SSH access to the instance.
|
279
|
+
|
280
|
+
This script generally produces no output if it succeeds. As the service takes
|
281
|
+
some time to start, run the following command to check its status:
|
282
|
+
|
283
|
+
./.evergreen/aws ecs-status
|
284
|
+
|
285
|
+
The status output shows the tasks running in the ECS cluster ordered by their
|
286
|
+
generation, with the newest ones first. Event log for the cluster is displayed,
|
287
|
+
as well as event stream for the running task of the latest available generation
|
288
|
+
which includes the Docker execution output collected via CloudWatch.
|
289
|
+
The status output includes the public IP of the running task once it is
|
290
|
+
available, which can be used to SSH into the container and run the tests.
|
291
|
+
|
292
|
+
Note that when AWS auth from an ECS task is tested in Evergreen, the task is
|
293
|
+
accessed via its private IP; when the test is performed using the provisioning
|
294
|
+
tooling described in this document, the task is accessed via its public IP.
|
295
|
+
|
296
|
+
If the public IP address is in the `IP` shell variable, provision the task:
|
297
|
+
|
298
|
+
./.evergreen/provision-remote root@$IP local
|
299
|
+
|
300
|
+
To run the credentials retrieval test on the ECS task, execute:
|
301
|
+
|
302
|
+
./.evergreen/test-remote root@$IP env AUTH=aws-ecs RVM_RUBY=ruby-2.7 MONGODB_VERSION=4.4 TEST_CMD='rspec spec/integration/aws*spec.rb' .evergreen/run-tests.sh
|
303
|
+
|
304
|
+
To run the test again without rebuilding the remote environment, execute:
|
305
|
+
|
306
|
+
./.evergreen/test-remote -e root@$IP \
|
307
|
+
env AUTH=aws-ecs RVM_RUBY=ruby-2.7 sh -c '\
|
308
|
+
export PATH=`pwd`/rubies/ruby-2.7/bin:$PATH && \
|
309
|
+
eval export `strings /proc/1/environ |grep ^AWS_CONTAINER_CREDENTIALS_RELATIVE_URI` && \
|
310
|
+
bundle exec rspec spec/integration/aws*spec.rb'
|
311
|
+
|
312
|
+
Note that this command retrieves the value of `AWS_CONTAINER_CREDENTIALS_RELATIVE_URI`
|
313
|
+
from the PID 1 environment and places it into the current environment prior to
|
314
|
+
running the tests.
|
315
|
+
|
316
|
+
To terminate the AWS auth-related ECS tasks, run:
|
317
|
+
|
318
|
+
./.evergreen/aws stop-ecs
|