mongo 2.17.4 → 2.18.0.beta1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data/README.md +21 -37
- data/lib/mongo/auth/base.rb +8 -1
- data/lib/mongo/auth.rb +12 -1
- data/lib/mongo/bulk_write/result.rb +10 -1
- data/lib/mongo/bulk_write/result_combiner.rb +2 -4
- data/lib/mongo/bulk_write.rb +108 -28
- data/lib/mongo/client.rb +114 -12
- data/lib/mongo/client_encryption.rb +30 -9
- data/lib/mongo/cluster/reapers/cursor_reaper.rb +11 -1
- data/lib/mongo/cluster.rb +20 -24
- data/lib/mongo/collection/helpers.rb +43 -0
- data/lib/mongo/collection/queryable_encryption.rb +122 -0
- data/lib/mongo/collection/view/aggregation.rb +19 -16
- data/lib/mongo/collection/view/change_stream.rb +56 -23
- data/lib/mongo/collection/view/explainable.rb +1 -1
- data/lib/mongo/collection/view/iterable.rb +2 -18
- data/lib/mongo/collection/view/map_reduce.rb +18 -9
- data/lib/mongo/collection/view/readable.rb +19 -23
- data/lib/mongo/collection/view/writable.rb +133 -40
- data/lib/mongo/collection/view.rb +0 -1
- data/lib/mongo/collection.rb +108 -48
- data/lib/mongo/config/options.rb +62 -0
- data/lib/mongo/config/validators/option.rb +26 -0
- data/lib/mongo/config.rb +31 -0
- data/lib/mongo/crypt/auto_encrypter.rb +79 -6
- data/lib/mongo/crypt/binding.rb +395 -143
- data/lib/mongo/crypt/context.rb +5 -2
- data/lib/mongo/crypt/data_key_context.rb +7 -104
- data/lib/mongo/crypt/encryption_io.rb +28 -60
- data/lib/mongo/crypt/explicit_encrypter.rb +27 -25
- data/lib/mongo/crypt/explicit_encryption_context.rb +31 -3
- data/lib/mongo/crypt/handle.rb +102 -79
- data/lib/mongo/crypt/hooks.rb +25 -2
- data/lib/mongo/crypt/kms/aws.rb +128 -0
- data/lib/mongo/crypt/kms/azure.rb +136 -0
- data/lib/mongo/crypt/kms/credentials.rb +81 -0
- data/lib/mongo/crypt/kms/gcp.rb +182 -0
- data/lib/mongo/crypt/kms/kmip.rb +110 -0
- data/lib/mongo/crypt/kms/local.rb +74 -0
- data/lib/mongo/crypt/kms/master_key_document.rb +65 -0
- data/lib/mongo/crypt/kms.rb +117 -0
- data/lib/mongo/crypt.rb +1 -0
- data/lib/mongo/cursor/kill_spec.rb +27 -6
- data/lib/mongo/cursor.rb +21 -16
- data/lib/mongo/database/view.rb +6 -3
- data/lib/mongo/database.rb +73 -12
- data/lib/mongo/dbref.rb +1 -105
- data/lib/mongo/error/bulk_write_error.rb +31 -4
- data/lib/mongo/error/invalid_config_option.rb +20 -0
- data/lib/mongo/error/invalid_replacement_document.rb +27 -9
- data/lib/mongo/error/invalid_update_document.rb +27 -7
- data/lib/mongo/error/labelable.rb +72 -0
- data/lib/mongo/error/missing_connection.rb +25 -0
- data/lib/mongo/error/notable.rb +7 -0
- data/lib/mongo/error/operation_failure.rb +34 -86
- data/lib/mongo/error/read_write_retryable.rb +108 -0
- data/lib/mongo/{operation/kill_cursors/legacy.rb → error/session_not_materialized.rb} +7 -19
- data/lib/mongo/error.rb +5 -37
- data/lib/mongo/index/view.rb +22 -7
- data/lib/mongo/monitoring/event/command_failed.rb +8 -2
- data/lib/mongo/monitoring/event/command_started.rb +1 -1
- data/lib/mongo/monitoring/event/command_succeeded.rb +9 -2
- data/lib/mongo/monitoring/publishable.rb +9 -5
- data/lib/mongo/operation/collections_info/result.rb +5 -2
- data/lib/mongo/operation/command/op_msg.rb +6 -0
- data/lib/mongo/operation/context.rb +24 -6
- data/lib/mongo/operation/count/op_msg.rb +4 -1
- data/lib/mongo/operation/create/op_msg.rb +16 -1
- data/lib/mongo/operation/create_index/op_msg.rb +2 -1
- data/lib/mongo/operation/delete/op_msg.rb +1 -0
- data/lib/mongo/operation/delete.rb +0 -1
- data/lib/mongo/operation/drop_index/op_msg.rb +5 -1
- data/lib/mongo/operation/get_more/command_builder.rb +5 -1
- data/lib/mongo/operation/insert/bulk_result.rb +5 -1
- data/lib/mongo/operation/insert/command.rb +0 -4
- data/lib/mongo/operation/insert/op_msg.rb +6 -3
- data/lib/mongo/operation/insert/result.rb +6 -3
- data/lib/mongo/operation/insert.rb +0 -1
- data/lib/mongo/operation/kill_cursors.rb +0 -1
- data/lib/mongo/operation/list_collections/op_msg.rb +4 -1
- data/lib/mongo/operation/map_reduce/result.rb +16 -0
- data/lib/mongo/operation/result.rb +21 -5
- data/lib/mongo/operation/shared/executable.rb +21 -6
- data/lib/mongo/operation/shared/polymorphic_operation.rb +15 -3
- data/lib/mongo/operation/shared/response_handling.rb +6 -5
- data/lib/mongo/operation/shared/sessions_supported.rb +3 -7
- data/lib/mongo/operation/shared/write.rb +18 -12
- data/lib/mongo/operation/update/op_msg.rb +2 -1
- data/lib/mongo/operation/update.rb +0 -1
- data/lib/mongo/protocol/caching_hash.rb +69 -0
- data/lib/mongo/protocol/msg.rb +37 -1
- data/lib/mongo/protocol.rb +1 -0
- data/lib/mongo/query_cache.rb +15 -0
- data/lib/mongo/retryable.rb +78 -30
- data/lib/mongo/server/connection.rb +33 -0
- data/lib/mongo/server/connection_base.rb +2 -0
- data/lib/mongo/server/connection_common.rb +4 -1
- data/lib/mongo/server/connection_pool.rb +69 -42
- data/lib/mongo/server/description/features.rb +3 -1
- data/lib/mongo/server/description.rb +7 -2
- data/lib/mongo/server/monitor/connection.rb +5 -10
- data/lib/mongo/server/monitor.rb +21 -13
- data/lib/mongo/server/push_monitor.rb +9 -3
- data/lib/mongo/server.rb +9 -5
- data/lib/mongo/session/session_pool.rb +8 -0
- data/lib/mongo/session.rb +111 -35
- data/lib/mongo/socket/ocsp_verifier.rb +4 -5
- data/lib/mongo/socket/tcp.rb +3 -0
- data/lib/mongo/srv/resolver.rb +24 -3
- data/lib/mongo/uri/options_mapper.rb +2 -0
- data/lib/mongo/uri/srv_protocol.rb +1 -1
- data/lib/mongo/uri.rb +20 -0
- data/lib/mongo/version.rb +1 -1
- data/lib/mongo.rb +20 -0
- data/mongo.gemspec +10 -4
- data/spec/README.md +5 -5
- data/spec/integration/aws_lambda_examples_spec.rb +68 -0
- data/spec/integration/bulk_write_error_message_spec.rb +32 -0
- data/spec/integration/bulk_write_spec.rb +0 -16
- data/spec/integration/change_stream_spec.rb +6 -5
- data/spec/integration/client_construction_spec.rb +1 -1
- data/spec/integration/client_side_encryption/auto_encryption_bulk_writes_spec.rb +9 -9
- data/spec/integration/client_side_encryption/auto_encryption_command_monitoring_spec.rb +18 -19
- data/spec/integration/client_side_encryption/auto_encryption_mongocryptd_spawn_spec.rb +0 -1
- data/spec/integration/client_side_encryption/auto_encryption_reconnect_spec.rb +31 -0
- data/spec/integration/client_side_encryption/auto_encryption_spec.rb +108 -1
- data/spec/integration/client_side_encryption/bson_size_limit_spec.rb +2 -2
- data/spec/integration/client_side_encryption/bypass_mongocryptd_spawn_spec.rb +2 -2
- data/spec/integration/client_side_encryption/client_close_spec.rb +1 -1
- data/spec/integration/client_side_encryption/corpus_spec.rb +64 -35
- data/spec/integration/client_side_encryption/custom_endpoint_spec.rb +39 -42
- data/spec/integration/client_side_encryption/data_key_spec.rb +97 -7
- data/spec/integration/client_side_encryption/explicit_encryption_spec.rb +59 -0
- data/spec/integration/client_side_encryption/explicit_queryable_encryption_spec.rb +147 -0
- data/spec/integration/client_side_encryption/external_key_vault_spec.rb +6 -6
- data/spec/integration/client_side_encryption/kms_tls_options_spec.rb +394 -0
- data/spec/integration/client_side_encryption/kms_tls_spec.rb +92 -0
- data/spec/integration/client_side_encryption/queryable_encryption_examples_spec.rb +111 -0
- data/spec/integration/client_side_encryption/views_spec.rb +1 -1
- data/spec/integration/client_update_spec.rb +2 -2
- data/spec/integration/crud_spec.rb +12 -0
- data/spec/integration/cursor_pinning_spec.rb +3 -3
- data/spec/integration/fork_reconnect_spec.rb +15 -8
- data/spec/integration/grid_fs_bucket_spec.rb +3 -3
- data/spec/integration/ocsp_verifier_spec.rb +1 -0
- data/spec/integration/query_cache_spec.rb +34 -30
- data/spec/integration/retryable_writes/retryable_writes_36_and_older_spec.rb +1 -1
- data/spec/integration/sdam_events_spec.rb +0 -40
- data/spec/integration/server_monitor_spec.rb +2 -1
- data/spec/integration/size_limit_spec.rb +4 -1
- data/spec/integration/snapshot_query_examples_spec.rb +127 -0
- data/spec/integration/srv_monitoring_spec.rb +37 -0
- data/spec/integration/step_down_spec.rb +20 -4
- data/spec/integration/transaction_pinning_spec.rb +2 -2
- data/spec/integration/versioned_api_examples_spec.rb +37 -31
- data/spec/lite_spec_helper.rb +14 -5
- data/spec/mongo/address/ipv6_spec.rb +7 -0
- data/spec/mongo/address_spec.rb +7 -0
- data/spec/mongo/auth/scram/conversation_spec.rb +23 -23
- data/spec/mongo/auth/scram256/conversation_spec.rb +20 -20
- data/spec/mongo/auth/scram_negotiation_spec.rb +1 -0
- data/spec/mongo/bulk_write/result_spec.rb +15 -1
- data/spec/mongo/bulk_write_spec.rb +128 -20
- data/spec/mongo/client_construction_spec.rb +141 -7
- data/spec/mongo/client_encryption_spec.rb +11 -11
- data/spec/mongo/client_spec.rb +297 -1
- data/spec/mongo/cluster/cursor_reaper_spec.rb +21 -3
- data/spec/mongo/cluster_spec.rb +0 -44
- data/spec/mongo/collection/view/aggregation_spec.rb +2 -2
- data/spec/mongo/collection/view/change_stream_spec.rb +2 -2
- data/spec/mongo/collection/view/readable_spec.rb +35 -56
- data/spec/mongo/collection/view/writable_spec.rb +144 -32
- data/spec/mongo/collection_crud_spec.rb +63 -13
- data/spec/mongo/config/options_spec.rb +75 -0
- data/spec/mongo/config_spec.rb +73 -0
- data/spec/mongo/crypt/auto_decryption_context_spec.rb +17 -1
- data/spec/mongo/crypt/auto_encrypter_spec.rb +106 -0
- data/spec/mongo/crypt/auto_encryption_context_spec.rb +17 -1
- data/spec/mongo/crypt/binding/context_spec.rb +99 -17
- data/spec/mongo/crypt/binding/mongocrypt_spec.rb +17 -46
- data/spec/mongo/crypt/binding/version_spec.rb +25 -0
- data/spec/mongo/crypt/binding_unloaded_spec.rb +14 -0
- data/spec/mongo/crypt/data_key_context_spec.rb +42 -114
- data/spec/mongo/crypt/encryption_io_spec.rb +2 -0
- data/spec/mongo/crypt/explicit_decryption_context_spec.rb +32 -1
- data/spec/mongo/crypt/explicit_encryption_context_spec.rb +89 -1
- data/spec/mongo/crypt/handle_spec.rb +47 -169
- data/spec/mongo/crypt/hooks_spec.rb +30 -0
- data/spec/mongo/crypt/kms/credentials_spec.rb +404 -0
- data/spec/mongo/crypt/kms_spec.rb +59 -0
- data/spec/mongo/cursor_spec.rb +37 -51
- data/spec/mongo/database_spec.rb +66 -1
- data/spec/mongo/error/operation_failure_heavy_spec.rb +49 -0
- data/spec/mongo/index/view_spec.rb +69 -0
- data/spec/mongo/operation/create/op_msg_spec.rb +286 -0
- data/spec/mongo/operation/delete/op_msg_spec.rb +13 -4
- data/spec/mongo/operation/delete_spec.rb +0 -30
- data/spec/mongo/operation/insert/op_msg_spec.rb +18 -10
- data/spec/mongo/operation/insert_spec.rb +0 -32
- data/spec/mongo/operation/result_spec.rb +20 -0
- data/spec/mongo/operation/update/op_msg_spec.rb +13 -4
- data/spec/mongo/operation/update_spec.rb +0 -29
- data/spec/mongo/protocol/caching_hash_spec.rb +82 -0
- data/spec/mongo/protocol/msg_spec.rb +41 -0
- data/spec/mongo/query_cache_spec.rb +1 -0
- data/spec/mongo/retryable_spec.rb +32 -3
- data/spec/mongo/server/connection_auth_spec.rb +3 -1
- data/spec/mongo/server/connection_common_spec.rb +13 -1
- data/spec/mongo/server/connection_pool_spec.rb +94 -49
- data/spec/mongo/server/connection_spec.rb +50 -159
- data/spec/mongo/server/description/features_spec.rb +24 -0
- data/spec/mongo/server/push_monitor_spec.rb +2 -8
- data/spec/mongo/session_spec.rb +26 -6
- data/spec/mongo/session_transaction_spec.rb +2 -1
- data/spec/mongo/socket/ssl_spec.rb +15 -4
- data/spec/mongo/uri/srv_protocol_spec.rb +101 -2
- data/spec/mongo/uri_spec.rb +25 -0
- data/spec/runners/connection_string.rb +8 -0
- data/spec/runners/crud/operation.rb +12 -3
- data/spec/runners/crud/requirement.rb +3 -3
- data/spec/runners/crud/spec.rb +5 -0
- data/spec/runners/crud/verifier.rb +6 -0
- data/spec/runners/transactions/test.rb +33 -14
- data/spec/runners/transactions.rb +9 -6
- data/spec/runners/unified/assertions.rb +59 -10
- data/spec/runners/unified/change_stream_operations.rb +9 -0
- data/spec/runners/unified/crud_operations.rb +50 -2
- data/spec/runners/unified/ddl_operations.rb +20 -0
- data/spec/runners/unified/error.rb +2 -1
- data/spec/runners/unified/support_operations.rb +5 -2
- data/spec/runners/unified/test.rb +19 -4
- data/spec/runners/unified.rb +9 -2
- data/spec/shared/lib/mrss/constraints.rb +10 -17
- data/spec/shared/lib/mrss/docker_runner.rb +21 -3
- data/spec/shared/lib/mrss/lite_constraints.rb +32 -1
- data/spec/shared/lib/mrss/session_registry.rb +69 -0
- data/spec/shared/lib/mrss/session_registry_legacy.rb +60 -0
- data/spec/shared/share/Dockerfile.erb +56 -54
- data/spec/shared/shlib/config.sh +27 -0
- data/spec/shared/shlib/distro.sh +2 -1
- data/spec/shared/shlib/server.sh +46 -21
- data/spec/shared/shlib/set_env.sh +40 -5
- data/spec/spec_helper.rb +0 -1
- data/spec/spec_tests/crud_spec.rb +0 -10
- data/spec/spec_tests/data/change_streams_unified/change-streams-errors.yml +124 -0
- data/spec/spec_tests/data/change_streams_unified/change-streams-pre_and_post_images.yml +351 -0
- data/spec/spec_tests/data/change_streams_unified/change-streams-resume-allowlist.yml +1171 -0
- data/spec/spec_tests/data/change_streams_unified/change-streams-resume-errorLabels.yml +1068 -0
- data/spec/spec_tests/data/change_streams_unified/change-streams.yml +859 -4
- data/spec/spec_tests/data/client_side_encryption/aggregate.yml +3 -17
- data/spec/spec_tests/data/client_side_encryption/azureKMS.yml +46 -0
- data/spec/spec_tests/data/client_side_encryption/badQueries.yml +12 -2
- data/spec/spec_tests/data/client_side_encryption/basic.yml +3 -17
- data/spec/spec_tests/data/client_side_encryption/bulk.yml +1 -8
- data/spec/spec_tests/data/client_side_encryption/bypassAutoEncryption.yml +2 -2
- data/spec/spec_tests/data/client_side_encryption/count.yml +1 -8
- data/spec/spec_tests/data/client_side_encryption/countDocuments.yml +1 -8
- data/spec/spec_tests/data/client_side_encryption/delete.yml +2 -16
- data/spec/spec_tests/data/client_side_encryption/distinct.yml +1 -8
- data/spec/spec_tests/data/client_side_encryption/explain.yml +1 -8
- data/spec/spec_tests/data/client_side_encryption/find.yml +2 -16
- data/spec/spec_tests/data/client_side_encryption/findOneAndDelete.yml +1 -8
- data/spec/spec_tests/data/client_side_encryption/findOneAndReplace.yml +1 -8
- data/spec/spec_tests/data/client_side_encryption/findOneAndUpdate.yml +1 -8
- data/spec/spec_tests/data/client_side_encryption/fle2-BypassQueryAnalysis.yml +101 -0
- data/spec/spec_tests/data/client_side_encryption/fle2-Compact.yml +80 -0
- data/spec/spec_tests/data/client_side_encryption/fle2-CreateCollection.yml +1263 -0
- data/spec/spec_tests/data/client_side_encryption/fle2-DecryptExistingData.yml +64 -0
- data/spec/spec_tests/data/client_side_encryption/fle2-Delete.yml +107 -0
- data/spec/spec_tests/data/client_side_encryption/fle2-EncryptedFields-vs-EncryptedFieldsMap.yml +80 -0
- data/spec/spec_tests/data/client_side_encryption/fle2-EncryptedFields-vs-jsonSchema.yml +90 -0
- data/spec/spec_tests/data/client_side_encryption/fle2-EncryptedFieldsMap-defaults.yml +57 -0
- data/spec/spec_tests/data/client_side_encryption/fle2-FindOneAndUpdate.yml +213 -0
- data/spec/spec_tests/data/client_side_encryption/fle2-InsertFind-Indexed.yml +86 -0
- data/spec/spec_tests/data/client_side_encryption/fle2-InsertFind-Unindexed.yml +83 -0
- data/spec/spec_tests/data/client_side_encryption/fle2-MissingKey.yml +41 -0
- data/spec/spec_tests/data/client_side_encryption/fle2-NoEncryption.yml +42 -0
- data/spec/spec_tests/data/client_side_encryption/fle2-Update.yml +221 -0
- data/spec/spec_tests/data/client_side_encryption/fle2-validatorAndPartialFieldExpression.yml +168 -0
- data/spec/spec_tests/data/client_side_encryption/gcpKMS.yml +46 -0
- data/spec/spec_tests/data/client_side_encryption/getMore.yml +1 -8
- data/spec/spec_tests/data/client_side_encryption/insert.yml +2 -16
- data/spec/spec_tests/data/client_side_encryption/keyAltName.yml +1 -8
- data/spec/spec_tests/data/client_side_encryption/localKMS.yml +1 -8
- data/spec/spec_tests/data/client_side_encryption/localSchema.yml +1 -8
- data/spec/spec_tests/data/client_side_encryption/maxWireVersion.yml +2 -0
- data/spec/spec_tests/data/client_side_encryption/missingKey.yml +2 -9
- data/spec/spec_tests/data/client_side_encryption/noSchema.yml +39 -0
- data/spec/spec_tests/data/client_side_encryption/replaceOne.yml +1 -8
- data/spec/spec_tests/data/client_side_encryption/types.yml +44 -70
- data/spec/spec_tests/data/client_side_encryption/updateMany.yml +1 -8
- data/spec/spec_tests/data/client_side_encryption/updateOne.yml +1 -8
- data/spec/spec_tests/data/collection_management/clustered-indexes.yml +135 -0
- data/spec/spec_tests/data/collection_management/createCollection-pre_and_post_images.yml +50 -0
- data/spec/spec_tests/data/collection_management/modifyCollection-pre_and_post_images.yml +58 -0
- data/spec/spec_tests/data/command_monitoring_unified/pre-42-server-connection-id.yml +56 -0
- data/spec/spec_tests/data/command_monitoring_unified/server-connection-id.yml +56 -0
- data/spec/spec_tests/data/crud/read/aggregate-collation.yml +1 -1
- data/spec/spec_tests/data/crud/read/count-collation.yml +1 -1
- data/spec/spec_tests/data/crud/read/distinct-collation.yml +1 -1
- data/spec/spec_tests/data/crud/read/find-collation.yml +1 -1
- data/spec/spec_tests/data/crud/write/bulkWrite-collation.yml +1 -1
- data/spec/spec_tests/data/crud/write/deleteMany-collation.yml +1 -1
- data/spec/spec_tests/data/crud/write/deleteOne-collation.yml +1 -1
- data/spec/spec_tests/data/crud/write/findOneAndDelete-collation.yml +1 -1
- data/spec/spec_tests/data/crud/write/findOneAndReplace-collation.yml +1 -1
- data/spec/spec_tests/data/crud/write/findOneAndUpdate-collation.yml +1 -1
- data/spec/spec_tests/data/crud/write/replaceOne-collation.yml +1 -1
- data/spec/spec_tests/data/crud/write/updateMany-collation.yml +1 -1
- data/spec/spec_tests/data/crud/write/updateOne-collation.yml +1 -1
- data/spec/spec_tests/data/crud_unified/aggregate-allowdiskuse.yml +75 -0
- data/spec/spec_tests/data/crud_unified/aggregate-merge.yml +185 -0
- data/spec/spec_tests/data/crud_unified/aggregate-out-readConcern.yml +171 -0
- data/spec/spec_tests/data/crud_unified/aggregate.yml +215 -0
- data/spec/spec_tests/data/crud_unified/bulkWrite-arrayFilters-clientError.yml +98 -0
- data/spec/spec_tests/data/crud_unified/bulkWrite-arrayFilters.yml +174 -0
- data/spec/spec_tests/data/crud_unified/bulkWrite-comment.yml +189 -0
- data/spec/spec_tests/data/crud_unified/bulkWrite-delete-hint-clientError.yml +113 -0
- data/spec/spec_tests/data/crud_unified/bulkWrite-delete-hint-serverError.yml +142 -0
- data/spec/spec_tests/data/crud_unified/bulkWrite-delete-hint.yml +154 -0
- data/spec/spec_tests/data/crud_unified/bulkWrite-deleteMany-hint-unacknowledged.yml +98 -0
- data/spec/spec_tests/data/crud_unified/bulkWrite-deleteMany-let.yml +86 -0
- data/spec/spec_tests/data/crud_unified/bulkWrite-deleteOne-hint-unacknowledged.yml +97 -0
- data/spec/spec_tests/data/crud_unified/bulkWrite-deleteOne-let.yml +86 -0
- data/spec/spec_tests/data/crud_unified/bulkWrite-insertOne-dots_and_dollars.yml +138 -0
- data/spec/spec_tests/data/crud_unified/bulkWrite-replaceOne-dots_and_dollars.yml +165 -0
- data/spec/spec_tests/data/crud_unified/bulkWrite-replaceOne-hint-unacknowledged.yml +103 -0
- data/spec/spec_tests/data/crud_unified/bulkWrite-replaceOne-let.yml +93 -0
- data/spec/spec_tests/data/crud_unified/bulkWrite-update-hint-clientError.yml +148 -0
- data/spec/spec_tests/data/crud_unified/bulkWrite-update-hint-serverError.yml +239 -0
- data/spec/spec_tests/data/crud_unified/bulkWrite-update-hint.yml +256 -0
- data/spec/spec_tests/data/crud_unified/bulkWrite-update-validation.yml +73 -0
- data/spec/spec_tests/data/crud_unified/bulkWrite-updateMany-dots_and_dollars.yml +150 -0
- data/spec/spec_tests/data/crud_unified/bulkWrite-updateMany-hint-unacknowledged.yml +104 -0
- data/spec/spec_tests/data/crud_unified/bulkWrite-updateMany-let.yml +96 -0
- data/spec/spec_tests/data/crud_unified/bulkWrite-updateOne-dots_and_dollars.yml +150 -0
- data/spec/spec_tests/data/crud_unified/bulkWrite-updateOne-hint-unacknowledged.yml +103 -0
- data/spec/spec_tests/data/crud_unified/bulkWrite-updateOne-let.yml +95 -0
- data/spec/spec_tests/data/crud_unified/countDocuments-comment.yml +92 -0
- data/spec/spec_tests/data/crud_unified/db-aggregate.yml +73 -0
- data/spec/spec_tests/data/crud_unified/deleteMany-comment.yml +97 -0
- data/spec/spec_tests/data/crud_unified/deleteMany-hint-clientError.yml +87 -0
- data/spec/spec_tests/data/crud_unified/deleteMany-hint-serverError.yml +107 -0
- data/spec/spec_tests/data/crud_unified/deleteMany-hint-unacknowledged.yml +90 -0
- data/spec/spec_tests/data/crud_unified/deleteMany-hint.yml +99 -0
- data/spec/spec_tests/data/crud_unified/deleteMany-let.yml +2 -0
- data/spec/spec_tests/data/crud_unified/deleteOne-comment.yml +98 -0
- data/spec/spec_tests/data/crud_unified/deleteOne-hint-clientError.yml +80 -0
- data/spec/spec_tests/data/crud_unified/deleteOne-hint-serverError.yml +100 -0
- data/spec/spec_tests/data/crud_unified/deleteOne-hint-unacknowledged.yml +89 -0
- data/spec/spec_tests/data/crud_unified/deleteOne-hint.yml +95 -0
- data/spec/spec_tests/data/crud_unified/deleteOne-let.yml +2 -0
- data/spec/spec_tests/data/crud_unified/estimatedDocumentCount-comment.yml +95 -0
- data/spec/spec_tests/data/crud_unified/estimatedDocumentCount.yml +5 -135
- data/spec/spec_tests/data/crud_unified/find-allowdiskuse-clientError.yml +55 -0
- data/spec/spec_tests/data/crud_unified/find-allowdiskuse-serverError.yml +68 -0
- data/spec/spec_tests/data/crud_unified/find-allowdiskuse.yml +79 -0
- data/spec/spec_tests/data/crud_unified/find-comment.yml +166 -0
- data/spec/spec_tests/data/crud_unified/find.yml +68 -0
- data/spec/spec_tests/data/crud_unified/findOneAndDelete-comment.yml +96 -0
- data/spec/spec_tests/data/crud_unified/findOneAndDelete-hint-clientError.yml +91 -0
- data/spec/spec_tests/data/crud_unified/findOneAndDelete-hint-serverError.yml +107 -0
- data/spec/spec_tests/data/crud_unified/findOneAndDelete-hint-unacknowledged.yml +88 -0
- data/spec/spec_tests/data/crud_unified/findOneAndDelete-hint.yml +102 -0
- data/spec/spec_tests/data/crud_unified/findOneAndDelete-let.yml +2 -4
- data/spec/spec_tests/data/crud_unified/findOneAndReplace-comment.yml +101 -0
- data/spec/spec_tests/data/crud_unified/findOneAndReplace-dots_and_dollars.yml +140 -0
- data/spec/spec_tests/data/crud_unified/findOneAndReplace-hint-clientError.yml +83 -0
- data/spec/spec_tests/data/crud_unified/findOneAndReplace-hint-serverError.yml +99 -0
- data/spec/spec_tests/data/crud_unified/findOneAndReplace-hint-unacknowledged.yml +96 -0
- data/spec/spec_tests/data/crud_unified/findOneAndReplace-hint.yml +98 -0
- data/spec/spec_tests/data/crud_unified/findOneAndUpdate-comment.yml +95 -0
- data/spec/spec_tests/data/crud_unified/findOneAndUpdate-dots_and_dollars.yml +127 -0
- data/spec/spec_tests/data/crud_unified/findOneAndUpdate-hint-clientError.yml +84 -0
- data/spec/spec_tests/data/crud_unified/findOneAndUpdate-hint-serverError.yml +100 -0
- data/spec/spec_tests/data/crud_unified/findOneAndUpdate-hint-unacknowledged.yml +92 -0
- data/spec/spec_tests/data/crud_unified/findOneAndUpdate-hint.yml +99 -0
- data/spec/spec_tests/data/crud_unified/insertMany-comment.yml +93 -0
- data/spec/spec_tests/data/crud_unified/insertMany-dots_and_dollars.yml +128 -0
- data/spec/spec_tests/data/crud_unified/insertOne-comment.yml +91 -0
- data/spec/spec_tests/data/crud_unified/insertOne-dots_and_dollars.yml +238 -0
- data/spec/spec_tests/data/crud_unified/replaceOne-comment.yml +105 -0
- data/spec/spec_tests/data/crud_unified/replaceOne-dots_and_dollars.yml +180 -0
- data/spec/spec_tests/data/crud_unified/replaceOne-hint-unacknowledged.yml +95 -0
- data/spec/spec_tests/data/crud_unified/replaceOne-hint.yml +108 -0
- data/spec/spec_tests/data/crud_unified/replaceOne-let.yml +98 -0
- data/spec/spec_tests/data/crud_unified/replaceOne-validation.yml +37 -0
- data/spec/spec_tests/data/crud_unified/updateMany-comment.yml +104 -0
- data/spec/spec_tests/data/crud_unified/updateMany-dots_and_dollars.yml +138 -0
- data/spec/spec_tests/data/crud_unified/updateMany-hint-clientError.yml +91 -0
- data/spec/spec_tests/data/crud_unified/updateMany-hint-serverError.yml +115 -0
- data/spec/spec_tests/data/crud_unified/updateMany-hint-unacknowledged.yml +96 -0
- data/spec/spec_tests/data/crud_unified/updateMany-hint.yml +115 -0
- data/spec/spec_tests/data/crud_unified/updateMany-let.yml +5 -1
- data/spec/spec_tests/data/crud_unified/updateMany-validation.yml +39 -0
- data/spec/spec_tests/data/crud_unified/updateOne-comment.yml +104 -0
- data/spec/spec_tests/data/crud_unified/updateOne-dots_and_dollars.yml +138 -0
- data/spec/spec_tests/data/crud_unified/updateOne-hint-clientError.yml +85 -0
- data/spec/spec_tests/data/crud_unified/updateOne-hint-serverError.yml +109 -0
- data/spec/spec_tests/data/crud_unified/updateOne-hint-unacknowledged.yml +95 -0
- data/spec/spec_tests/data/crud_unified/updateOne-hint.yml +109 -0
- data/spec/spec_tests/data/crud_unified/updateOne-let.yml +5 -1
- data/spec/spec_tests/data/crud_unified/updateOne-validation.yml +37 -0
- data/spec/spec_tests/data/crud_unified/updateWithPipelines.yml +8 -14
- data/spec/spec_tests/data/retryable_reads/{estimatedDocumentCount-serverErrors-pre4.9.yml → legacy/estimatedDocumentCount-serverErrors.yml} +0 -2
- data/spec/spec_tests/data/retryable_reads/{estimatedDocumentCount-pre4.9.yml → legacy/estimatedDocumentCount.yml} +0 -2
- data/spec/spec_tests/data/retryable_reads/unified/handshakeError.yml +129 -0
- data/spec/spec_tests/data/retryable_writes/{bulkWrite-serverErrors.yml → legacy/bulkWrite-serverErrors.yml} +1 -1
- data/spec/spec_tests/data/retryable_writes/{deleteOne-serverErrors.yml → legacy/deleteOne-serverErrors.yml} +1 -1
- data/spec/spec_tests/data/retryable_writes/{findOneAndDelete-serverErrors.yml → legacy/findOneAndDelete-serverErrors.yml} +1 -1
- data/spec/spec_tests/data/retryable_writes/{findOneAndReplace-serverErrors.yml → legacy/findOneAndReplace-serverErrors.yml} +1 -1
- data/spec/spec_tests/data/retryable_writes/{findOneAndUpdate-serverErrors.yml → legacy/findOneAndUpdate-serverErrors.yml} +1 -1
- data/spec/spec_tests/data/retryable_writes/{insertMany-serverErrors.yml → legacy/insertMany-serverErrors.yml} +1 -1
- data/spec/spec_tests/data/retryable_writes/{insertOne-serverErrors.yml → legacy/insertOne-serverErrors.yml} +5 -5
- data/spec/spec_tests/data/retryable_writes/{replaceOne-serverErrors.yml → legacy/replaceOne-serverErrors.yml} +1 -1
- data/spec/spec_tests/data/retryable_writes/{updateOne-serverErrors.yml → legacy/updateOne-serverErrors.yml} +1 -1
- data/spec/spec_tests/data/retryable_writes/unified/bulkWrite-serverErrors.yml +96 -0
- data/spec/spec_tests/data/retryable_writes/unified/handshakeError.yml +137 -0
- data/spec/spec_tests/data/retryable_writes/unified/insertOne-serverErrors.yml +78 -0
- data/spec/spec_tests/data/sdam/errors/prefer-error-code.yml +2 -2
- data/spec/spec_tests/data/seed_list_discovery/load-balanced/loadBalanced-no-results.yml +5 -0
- data/spec/spec_tests/data/seed_list_discovery/load-balanced/srvMaxHosts-conflicts_with_loadBalanced-true-txt.yml +5 -0
- data/spec/spec_tests/data/seed_list_discovery/load-balanced/srvMaxHosts-conflicts_with_loadBalanced-true.yml +5 -0
- data/spec/spec_tests/data/seed_list_discovery/load-balanced/srvMaxHosts-zero-txt.yml +10 -0
- data/spec/spec_tests/data/seed_list_discovery/load-balanced/srvMaxHosts-zero.yml +10 -0
- data/spec/spec_tests/data/seed_list_discovery/replica-set/srv-service-name.yml +11 -0
- data/spec/spec_tests/data/seed_list_discovery/replica-set/srvMaxHosts-conflicts_with_replicaSet-txt.yml +5 -0
- data/spec/spec_tests/data/seed_list_discovery/replica-set/srvMaxHosts-conflicts_with_replicaSet.yml +5 -0
- data/spec/spec_tests/data/seed_list_discovery/replica-set/srvMaxHosts-equal_to_srv_records.yml +16 -0
- data/spec/spec_tests/data/seed_list_discovery/replica-set/srvMaxHosts-greater_than_srv_records.yml +15 -0
- data/spec/spec_tests/data/seed_list_discovery/replica-set/srvMaxHosts-less_than_srv_records.yml +15 -0
- data/spec/spec_tests/data/seed_list_discovery/replica-set/srvMaxHosts-zero-txt.yml +15 -0
- data/spec/spec_tests/data/seed_list_discovery/replica-set/srvMaxHosts-zero.yml +15 -0
- data/spec/spec_tests/data/seed_list_discovery/sharded/srvMaxHosts-equal_to_srv_records.yml +13 -0
- data/spec/spec_tests/data/seed_list_discovery/sharded/srvMaxHosts-greater_than_srv_records.yml +12 -0
- data/spec/spec_tests/data/seed_list_discovery/sharded/srvMaxHosts-less_than_srv_records.yml +10 -0
- data/spec/spec_tests/data/seed_list_discovery/sharded/srvMaxHosts-zero.yml +11 -0
- data/spec/spec_tests/data/server_selection/Unknown/read/ghost.yml +11 -0
- data/spec/spec_tests/data/server_selection/Unknown/write/ghost.yml +11 -0
- data/spec/spec_tests/data/sessions_unified/driver-sessions-server-support.yml +123 -0
- data/spec/spec_tests/data/sessions_unified/snapshot-sessions-not-supported-client-error.yml +9 -3
- data/spec/spec_tests/data/transactions/error-labels.yml +1 -1
- data/spec/spec_tests/data/transactions/errors-client.yml +8 -9
- data/spec/spec_tests/data/transactions/mongos-recovery-token.yml +1 -1
- data/spec/spec_tests/data/transactions/retryable-abort-errorLabels.yml +0 -2
- data/spec/spec_tests/data/transactions/retryable-abort.yml +7 -9
- data/spec/spec_tests/data/transactions/retryable-commit-errorLabels.yml +0 -2
- data/spec/spec_tests/data/transactions/retryable-commit.yml +7 -9
- data/spec/spec_tests/data/transactions/retryable-writes.yml +0 -2
- data/spec/spec_tests/data/unified/invalid/expectedEventsForClient-ignoreExtraEvents-type.yml +15 -0
- data/spec/spec_tests/data/unified/valid-fail/operation-unsupported.yml +13 -0
- data/spec/spec_tests/data/unified/valid-pass/expectedEventsForClient-ignoreExtraEvents.yml +78 -0
- data/spec/spec_tests/data/unified/valid-pass/poc-change-streams.yml +4 -1
- data/spec/spec_tests/data/unified/valid-pass/poc-command-monitoring.yml +3 -3
- data/spec/spec_tests/data/unified/valid-pass/poc-transactions.yml +3 -2
- data/spec/spec_tests/data/uri_options/srv-options.yml +96 -0
- data/spec/spec_tests/data/versioned_api/crud-api-version-1-strict.yml +6 -4
- data/spec/spec_tests/data/versioned_api/crud-api-version-1.yml +7 -5
- data/spec/spec_tests/retryable_reads_spec.rb +4 -1
- data/spec/spec_tests/retryable_reads_unified_spec.rb +22 -0
- data/spec/spec_tests/retryable_writes_spec.rb +4 -1
- data/spec/spec_tests/retryable_writes_unified_spec.rb +21 -0
- data/spec/spec_tests/seed_list_discovery_spec.rb +10 -1
- data/spec/spec_tests/unified_spec.rb +6 -1
- data/spec/stress/connection_pool_timing_spec.rb +2 -1
- data/spec/stress/fork_reconnect_stress_spec.rb +3 -2
- data/spec/support/authorization.rb +1 -1
- data/spec/support/certificates/atlas-ocsp-ca.crt +47 -40
- data/spec/support/certificates/atlas-ocsp.crt +106 -101
- data/spec/support/cluster_tools.rb +1 -1
- data/spec/support/common_shortcuts.rb +22 -0
- data/spec/support/crypt/corpus/corpus-encrypted.json +9515 -0
- data/spec/support/crypt/corpus/corpus-key-aws.json +32 -32
- data/spec/support/crypt/corpus/corpus-key-azure.json +33 -0
- data/spec/support/crypt/corpus/corpus-key-gcp.json +35 -0
- data/spec/support/crypt/corpus/corpus-key-kmip.json +32 -0
- data/spec/support/crypt/corpus/corpus-key-local.json +30 -30
- data/spec/support/crypt/corpus/corpus-schema.json +4399 -121
- data/spec/support/crypt/corpus/corpus.json +4999 -37
- data/spec/support/crypt/data_keys/key_document_azure.json +33 -0
- data/spec/support/crypt/data_keys/key_document_gcp.json +37 -0
- data/spec/support/crypt/data_keys/key_document_kmip.json +32 -0
- data/spec/support/crypt/encryptedFields.json +33 -0
- data/spec/support/crypt/keys/key1-document.json +30 -0
- data/spec/support/crypt/schema_maps/schema_map_azure.json +17 -0
- data/spec/support/crypt/schema_maps/schema_map_azure_key_alt_names.json +12 -0
- data/spec/support/crypt/schema_maps/schema_map_gcp.json +17 -0
- data/spec/support/crypt/schema_maps/schema_map_gcp_key_alt_names.json +12 -0
- data/spec/support/crypt/schema_maps/schema_map_kmip.json +17 -0
- data/spec/support/crypt/schema_maps/schema_map_kmip_key_alt_names.json +12 -0
- data/spec/support/crypt.rb +207 -6
- data/spec/support/macros.rb +18 -0
- data/spec/support/mongos_macros.rb +17 -0
- data/spec/support/shared/scram_conversation.rb +2 -1
- data/spec/support/shared/session.rb +13 -7
- data/spec/support/spec_config.rb +82 -1
- data/spec/support/utils.rb +25 -4
- data.tar.gz.sig +0 -0
- metadata +1499 -1252
- metadata.gz.sig +0 -0
- data/lib/mongo/operation/delete/legacy.rb +0 -64
- data/lib/mongo/operation/insert/legacy.rb +0 -68
- data/lib/mongo/operation/update/legacy/result.rb +0 -112
- data/lib/mongo/operation/update/legacy.rb +0 -76
- data/spec/integration/find_options_spec.rb +0 -227
- data/spec/mongo/dbref_spec.rb +0 -152
- data/spec/mongo/operation/kill_cursors_spec.rb +0 -47
- data/spec/spec_tests/change_streams_spec.rb +0 -93
- data/spec/spec_tests/data/change_streams/change-streams-errors.yml +0 -101
- data/spec/spec_tests/data/change_streams/change-streams-resume-allowlist.yml +0 -1173
- data/spec/spec_tests/data/change_streams/change-streams-resume-errorLabels.yml +0 -1105
- data/spec/spec_tests/data/change_streams/change-streams.yml +0 -535
- data/spec/spec_tests/data/crud_v2/aggregate-merge.yml +0 -103
- data/spec/spec_tests/data/crud_v2/aggregate-out-readConcern.yml +0 -111
- data/spec/spec_tests/data/crud_v2/bulkWrite-arrayFilters.yml +0 -103
- data/spec/spec_tests/data/crud_v2/bulkWrite-delete-hint-clientError.yml +0 -63
- data/spec/spec_tests/data/crud_v2/bulkWrite-delete-hint-serverError.yml +0 -92
- data/spec/spec_tests/data/crud_v2/bulkWrite-delete-hint.yml +0 -103
- data/spec/spec_tests/data/crud_v2/bulkWrite-update-hint-clientError.yml +0 -90
- data/spec/spec_tests/data/crud_v2/bulkWrite-update-hint-serverError.yml +0 -147
- data/spec/spec_tests/data/crud_v2/bulkWrite-update-hint.yml +0 -164
- data/spec/spec_tests/data/crud_v2/db-aggregate.yml +0 -39
- data/spec/spec_tests/data/crud_v2/deleteMany-hint-clientError.yml +0 -43
- data/spec/spec_tests/data/crud_v2/deleteMany-hint-serverError.yml +0 -62
- data/spec/spec_tests/data/crud_v2/deleteMany-hint.yml +0 -58
- data/spec/spec_tests/data/crud_v2/deleteOne-hint-clientError.yml +0 -41
- data/spec/spec_tests/data/crud_v2/deleteOne-hint-serverError.yml +0 -60
- data/spec/spec_tests/data/crud_v2/deleteOne-hint.yml +0 -57
- data/spec/spec_tests/data/crud_v2/find-allowdiskuse-clientError.yml +0 -28
- data/spec/spec_tests/data/crud_v2/find-allowdiskuse-serverError.yml +0 -44
- data/spec/spec_tests/data/crud_v2/find-allowdiskuse.yml +0 -50
- data/spec/spec_tests/data/crud_v2/findOneAndDelete-hint-clientError.yml +0 -45
- data/spec/spec_tests/data/crud_v2/findOneAndDelete-hint-serverError.yml +0 -60
- data/spec/spec_tests/data/crud_v2/findOneAndDelete-hint.yml +0 -56
- data/spec/spec_tests/data/crud_v2/findOneAndReplace-hint-clientError.yml +0 -40
- data/spec/spec_tests/data/crud_v2/findOneAndReplace-hint-serverError.yml +0 -59
- data/spec/spec_tests/data/crud_v2/findOneAndReplace-hint.yml +0 -55
- data/spec/spec_tests/data/crud_v2/findOneAndUpdate-hint-clientError.yml +0 -40
- data/spec/spec_tests/data/crud_v2/findOneAndUpdate-hint-serverError.yml +0 -58
- data/spec/spec_tests/data/crud_v2/findOneAndUpdate-hint.yml +0 -55
- data/spec/spec_tests/data/crud_v2/replaceOne-hint.yml +0 -61
- data/spec/spec_tests/data/crud_v2/unacknowledged-bulkWrite-delete-hint-clientError.yml +0 -60
- data/spec/spec_tests/data/crud_v2/unacknowledged-bulkWrite-update-hint-clientError.yml +0 -88
- data/spec/spec_tests/data/crud_v2/unacknowledged-deleteMany-hint-clientError.yml +0 -40
- data/spec/spec_tests/data/crud_v2/unacknowledged-deleteOne-hint-clientError.yml +0 -38
- data/spec/spec_tests/data/crud_v2/unacknowledged-findOneAndDelete-hint-clientError.yml +0 -42
- data/spec/spec_tests/data/crud_v2/unacknowledged-findOneAndReplace-hint-clientError.yml +0 -40
- data/spec/spec_tests/data/crud_v2/unacknowledged-findOneAndUpdate-hint-clientError.yml +0 -40
- data/spec/spec_tests/data/crud_v2/unacknowledged-replaceOne-hint-clientError.yml +0 -40
- data/spec/spec_tests/data/crud_v2/unacknowledged-updateMany-hint-clientError.yml +0 -43
- data/spec/spec_tests/data/crud_v2/unacknowledged-updateOne-hint-clientError.yml +0 -40
- data/spec/spec_tests/data/crud_v2/updateMany-hint-clientError.yml +0 -45
- data/spec/spec_tests/data/crud_v2/updateMany-hint-serverError.yml +0 -66
- data/spec/spec_tests/data/crud_v2/updateMany-hint.yml +0 -65
- data/spec/spec_tests/data/crud_v2/updateOne-hint-clientError.yml +0 -43
- data/spec/spec_tests/data/crud_v2/updateOne-hint-serverError.yml +0 -62
- data/spec/spec_tests/data/crud_v2/updateOne-hint.yml +0 -61
- data/spec/spec_tests/data/crud_v2/updateWithPipelines.yml +0 -157
- data/spec/spec_tests/data/retryable_reads/estimatedDocumentCount-4.9.yml +0 -60
- data/spec/spec_tests/data/retryable_reads/estimatedDocumentCount-serverErrors-4.9.yml +0 -146
- data/spec/support/crypt/corpus/corpus_encrypted.json +0 -4152
- data/spec/support/session_registry.rb +0 -55
- /data/spec/spec_tests/data/retryable_reads/{aggregate-merge.yml → legacy/aggregate-merge.yml} +0 -0
- /data/spec/spec_tests/data/retryable_reads/{aggregate-serverErrors.yml → legacy/aggregate-serverErrors.yml} +0 -0
- /data/spec/spec_tests/data/retryable_reads/{aggregate.yml → legacy/aggregate.yml} +0 -0
- /data/spec/spec_tests/data/retryable_reads/{changeStreams-client.watch-serverErrors.yml → legacy/changeStreams-client.watch-serverErrors.yml} +0 -0
- /data/spec/spec_tests/data/retryable_reads/{changeStreams-client.watch.yml → legacy/changeStreams-client.watch.yml} +0 -0
- /data/spec/spec_tests/data/retryable_reads/{changeStreams-db.coll.watch-serverErrors.yml → legacy/changeStreams-db.coll.watch-serverErrors.yml} +0 -0
- /data/spec/spec_tests/data/retryable_reads/{changeStreams-db.coll.watch.yml → legacy/changeStreams-db.coll.watch.yml} +0 -0
- /data/spec/spec_tests/data/retryable_reads/{changeStreams-db.watch-serverErrors.yml → legacy/changeStreams-db.watch-serverErrors.yml} +0 -0
- /data/spec/spec_tests/data/retryable_reads/{changeStreams-db.watch.yml → legacy/changeStreams-db.watch.yml} +0 -0
- /data/spec/spec_tests/data/retryable_reads/{count-serverErrors.yml → legacy/count-serverErrors.yml} +0 -0
- /data/spec/spec_tests/data/retryable_reads/{count.yml → legacy/count.yml} +0 -0
- /data/spec/spec_tests/data/retryable_reads/{countDocuments-serverErrors.yml → legacy/countDocuments-serverErrors.yml} +0 -0
- /data/spec/spec_tests/data/retryable_reads/{countDocuments.yml → legacy/countDocuments.yml} +0 -0
- /data/spec/spec_tests/data/retryable_reads/{distinct-serverErrors.yml → legacy/distinct-serverErrors.yml} +0 -0
- /data/spec/spec_tests/data/retryable_reads/{distinct.yml → legacy/distinct.yml} +0 -0
- /data/spec/spec_tests/data/retryable_reads/{find-serverErrors.yml → legacy/find-serverErrors.yml} +0 -0
- /data/spec/spec_tests/data/retryable_reads/{find.yml → legacy/find.yml} +0 -0
- /data/spec/spec_tests/data/retryable_reads/{findOne-serverErrors.yml → legacy/findOne-serverErrors.yml} +0 -0
- /data/spec/spec_tests/data/retryable_reads/{findOne.yml → legacy/findOne.yml} +0 -0
- /data/spec/spec_tests/data/retryable_reads/{gridfs-download-serverErrors.yml → legacy/gridfs-download-serverErrors.yml} +0 -0
- /data/spec/spec_tests/data/retryable_reads/{gridfs-download.yml → legacy/gridfs-download.yml} +0 -0
- /data/spec/spec_tests/data/retryable_reads/{gridfs-downloadByName-serverErrors.yml → legacy/gridfs-downloadByName-serverErrors.yml} +0 -0
- /data/spec/spec_tests/data/retryable_reads/{gridfs-downloadByName.yml → legacy/gridfs-downloadByName.yml} +0 -0
- /data/spec/spec_tests/data/retryable_reads/{listCollectionNames-serverErrors.yml → legacy/listCollectionNames-serverErrors.yml} +0 -0
- /data/spec/spec_tests/data/retryable_reads/{listCollectionNames.yml → legacy/listCollectionNames.yml} +0 -0
- /data/spec/spec_tests/data/retryable_reads/{listCollectionObjects-serverErrors.yml → legacy/listCollectionObjects-serverErrors.yml} +0 -0
- /data/spec/spec_tests/data/retryable_reads/{listCollectionObjects.yml → legacy/listCollectionObjects.yml} +0 -0
- /data/spec/spec_tests/data/retryable_reads/{listCollections-serverErrors.yml → legacy/listCollections-serverErrors.yml} +0 -0
- /data/spec/spec_tests/data/retryable_reads/{listCollections.yml → legacy/listCollections.yml} +0 -0
- /data/spec/spec_tests/data/retryable_reads/{listDatabaseNames-serverErrors.yml → legacy/listDatabaseNames-serverErrors.yml} +0 -0
- /data/spec/spec_tests/data/retryable_reads/{listDatabaseNames.yml → legacy/listDatabaseNames.yml} +0 -0
- /data/spec/spec_tests/data/retryable_reads/{listDatabaseObjects-serverErrors.yml → legacy/listDatabaseObjects-serverErrors.yml} +0 -0
- /data/spec/spec_tests/data/retryable_reads/{listDatabaseObjects.yml → legacy/listDatabaseObjects.yml} +0 -0
- /data/spec/spec_tests/data/retryable_reads/{listDatabases-serverErrors.yml → legacy/listDatabases-serverErrors.yml} +0 -0
- /data/spec/spec_tests/data/retryable_reads/{listDatabases.yml → legacy/listDatabases.yml} +0 -0
- /data/spec/spec_tests/data/retryable_reads/{listIndexNames-serverErrors.yml → legacy/listIndexNames-serverErrors.yml} +0 -0
- /data/spec/spec_tests/data/retryable_reads/{listIndexNames.yml → legacy/listIndexNames.yml} +0 -0
- /data/spec/spec_tests/data/retryable_reads/{listIndexes-serverErrors.yml → legacy/listIndexes-serverErrors.yml} +0 -0
- /data/spec/spec_tests/data/retryable_reads/{listIndexes.yml → legacy/listIndexes.yml} +0 -0
- /data/spec/spec_tests/data/retryable_reads/{mapReduce.yml → legacy/mapReduce.yml} +0 -0
- /data/spec/spec_tests/data/retryable_writes/{bulkWrite-errorLabels.yml → legacy/bulkWrite-errorLabels.yml} +0 -0
- /data/spec/spec_tests/data/retryable_writes/{bulkWrite.yml → legacy/bulkWrite.yml} +0 -0
- /data/spec/spec_tests/data/retryable_writes/{deleteMany.yml → legacy/deleteMany.yml} +0 -0
- /data/spec/spec_tests/data/retryable_writes/{deleteOne-errorLabels.yml → legacy/deleteOne-errorLabels.yml} +0 -0
- /data/spec/spec_tests/data/retryable_writes/{deleteOne.yml → legacy/deleteOne.yml} +0 -0
- /data/spec/spec_tests/data/retryable_writes/{findOneAndDelete-errorLabels.yml → legacy/findOneAndDelete-errorLabels.yml} +0 -0
- /data/spec/spec_tests/data/retryable_writes/{findOneAndDelete.yml → legacy/findOneAndDelete.yml} +0 -0
- /data/spec/spec_tests/data/retryable_writes/{findOneAndReplace-errorLabels.yml → legacy/findOneAndReplace-errorLabels.yml} +0 -0
- /data/spec/spec_tests/data/retryable_writes/{findOneAndReplace.yml → legacy/findOneAndReplace.yml} +0 -0
- /data/spec/spec_tests/data/retryable_writes/{findOneAndUpdate-errorLabels.yml → legacy/findOneAndUpdate-errorLabels.yml} +0 -0
- /data/spec/spec_tests/data/retryable_writes/{findOneAndUpdate.yml → legacy/findOneAndUpdate.yml} +0 -0
- /data/spec/spec_tests/data/retryable_writes/{insertMany-errorLabels.yml → legacy/insertMany-errorLabels.yml} +0 -0
- /data/spec/spec_tests/data/retryable_writes/{insertMany.yml → legacy/insertMany.yml} +0 -0
- /data/spec/spec_tests/data/retryable_writes/{insertOne-errorLabels.yml → legacy/insertOne-errorLabels.yml} +0 -0
- /data/spec/spec_tests/data/retryable_writes/{insertOne.yml → legacy/insertOne.yml} +0 -0
- /data/spec/spec_tests/data/retryable_writes/{replaceOne-errorLabels.yml → legacy/replaceOne-errorLabels.yml} +0 -0
- /data/spec/spec_tests/data/retryable_writes/{replaceOne.yml → legacy/replaceOne.yml} +0 -0
- /data/spec/spec_tests/data/retryable_writes/{updateMany.yml → legacy/updateMany.yml} +0 -0
- /data/spec/spec_tests/data/retryable_writes/{updateOne-errorLabels.yml → legacy/updateOne-errorLabels.yml} +0 -0
- /data/spec/spec_tests/data/retryable_writes/{updateOne.yml → legacy/updateOne.yml} +0 -0
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mongo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.18.0.beta1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tyler Brock
|
@@ -12,32 +12,27 @@ bindir: bin
|
|
12
12
|
cert_chain:
|
13
13
|
- |
|
14
14
|
-----BEGIN CERTIFICATE-----
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
HbUoKHRirZu0F7JCvQQq4EkSuLWPplRJfYEeJIYm05zhhFeEyqea2B/TTlCtXa42
|
35
|
-
84vxXsxGzumuO8F2Q9m6/p95sNhqCp0B/SkKXIrRGJ7FBzupoORNRXHviS2OC3ty
|
36
|
-
4lwUzOlLTF/yO0wwYYfmtQOALQwKnW838vbYthMXvTjxB0EgVZ5PKto99WbjsXzy
|
37
|
-
wkeAWhd5b+5JS0zgDL4SvGB8/W2IY+y0zELkojBMgJPyrpAWHL/WSsSBMuhyI2Pv
|
38
|
-
xxaBVLklnJJ/qCCOZ3lG2MyVc/Nb0Mmq8ygWNsfwHmKKYuuWcviit0D0Tek=
|
15
|
+
MIIDfDCCAmSgAwIBAgIBATANBgkqhkiG9w0BAQUFADBCMRQwEgYDVQQDDAtkcml2
|
16
|
+
ZXItcnVieTEVMBMGCgmSJomT8ixkARkWBTEwZ2VuMRMwEQYKCZImiZPyLGQBGRYD
|
17
|
+
Y29tMB4XDTIyMDMzMDE5MTcwMloXDTIzMDMzMDE5MTcwMlowQjEUMBIGA1UEAwwL
|
18
|
+
ZHJpdmVyLXJ1YnkxFTATBgoJkiaJk/IsZAEZFgUxMGdlbjETMBEGCgmSJomT8ixk
|
19
|
+
ARkWA2NvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANFdSAa8fRm1
|
20
|
+
bAM9za6Z0fAH4g02bqM1NGnw8zJQrE/PFrFfY6IFCT2AsLfOwr1maVm7iU1+kdVI
|
21
|
+
IQ+iI/9+E+ArJ+rbGV3dDPQ+SLl3mLT+vXjfjcxMqI2IW6UuVtt2U3Rxd4QU0kdT
|
22
|
+
JxmcPYs5fDN6BgYc6XXgUjy3m+Kwha2pGctdciUOwEfOZ4RmNRlEZKCMLRHdFP8j
|
23
|
+
4WTnJSGfXDiuoXICJb5yOPOZPuaapPSNXp93QkUdsqdKC32I+KMpKKYGBQ6yisfA
|
24
|
+
5MyVPPCzLR1lP5qXVGJPnOqUAkvEUfCahg7EP9tI20qxiXrR6TSEraYhIFXL0EGY
|
25
|
+
u8KAcPHm5KkCAwEAAaN9MHswCQYDVR0TBAIwADALBgNVHQ8EBAMCBLAwHQYDVR0O
|
26
|
+
BBYEFFt3WbF+9JpUjAoj62cQBgNb8HzXMCAGA1UdEQQZMBeBFWRyaXZlci1ydWJ5
|
27
|
+
QDEwZ2VuLmNvbTAgBgNVHRIEGTAXgRVkcml2ZXItcnVieUAxMGdlbi5jb20wDQYJ
|
28
|
+
KoZIhvcNAQEFBQADggEBAM0s7jz2IGD8Ms035b1tMnbNP2CBPq3pen3KQj7IkGF7
|
29
|
+
x8LPDdOqUj4pUMLeefntX/PkSvwROo677TnWK6+GLayGm5xLHrZH3svybC6QtqTR
|
30
|
+
mVOLUoZ4TgUmtnMUa/ZvgrIsOeiCysjSf4WECuw7g+LE6jcpLepgYTLk2u1+5SgH
|
31
|
+
JVENj0BMkdeZIKkc2G97DSx3Zrmz7QWAaH+99XlajJbfcgvhDso+ffQkTBlOgLBg
|
32
|
+
+WyKQ+QTIdtDiyf2LQmxWnxt/W1CmScjdLS7/yXGkkB/D9Uy+sJD747O/B9P238Q
|
33
|
+
XnerrtyOu04RsWDvaZkCwSDVzoqfICh4CP1mlde73Ts=
|
39
34
|
-----END CERTIFICATE-----
|
40
|
-
date:
|
35
|
+
date: 2022-06-08 00:00:00.000000000 Z
|
41
36
|
dependencies:
|
42
37
|
- !ruby/object:Gem::Dependency
|
43
38
|
name: bson
|
@@ -45,7 +40,7 @@ dependencies:
|
|
45
40
|
requirements:
|
46
41
|
- - ">="
|
47
42
|
- !ruby/object:Gem::Version
|
48
|
-
version: 4.
|
43
|
+
version: 4.14.1
|
49
44
|
- - "<"
|
50
45
|
- !ruby/object:Gem::Version
|
51
46
|
version: 5.0.0
|
@@ -55,7 +50,7 @@ dependencies:
|
|
55
50
|
requirements:
|
56
51
|
- - ">="
|
57
52
|
- !ruby/object:Gem::Version
|
58
|
-
version: 4.
|
53
|
+
version: 4.14.1
|
59
54
|
- - "<"
|
60
55
|
- !ruby/object:Gem::Version
|
61
56
|
version: 5.0.0
|
@@ -137,6 +132,8 @@ files:
|
|
137
132
|
- lib/mongo/cluster/topology/unknown.rb
|
138
133
|
- lib/mongo/cluster_time.rb
|
139
134
|
- lib/mongo/collection.rb
|
135
|
+
- lib/mongo/collection/helpers.rb
|
136
|
+
- lib/mongo/collection/queryable_encryption.rb
|
140
137
|
- lib/mongo/collection/view.rb
|
141
138
|
- lib/mongo/collection/view/aggregation.rb
|
142
139
|
- lib/mongo/collection/view/builder.rb
|
@@ -150,6 +147,9 @@ files:
|
|
150
147
|
- lib/mongo/collection/view/map_reduce.rb
|
151
148
|
- lib/mongo/collection/view/readable.rb
|
152
149
|
- lib/mongo/collection/view/writable.rb
|
150
|
+
- lib/mongo/config.rb
|
151
|
+
- lib/mongo/config/options.rb
|
152
|
+
- lib/mongo/config/validators/option.rb
|
153
153
|
- lib/mongo/crypt.rb
|
154
154
|
- lib/mongo/crypt/auto_decryption_context.rb
|
155
155
|
- lib/mongo/crypt/auto_encrypter.rb
|
@@ -164,6 +164,14 @@ files:
|
|
164
164
|
- lib/mongo/crypt/explicit_encryption_context.rb
|
165
165
|
- lib/mongo/crypt/handle.rb
|
166
166
|
- lib/mongo/crypt/hooks.rb
|
167
|
+
- lib/mongo/crypt/kms.rb
|
168
|
+
- lib/mongo/crypt/kms/aws.rb
|
169
|
+
- lib/mongo/crypt/kms/azure.rb
|
170
|
+
- lib/mongo/crypt/kms/credentials.rb
|
171
|
+
- lib/mongo/crypt/kms/gcp.rb
|
172
|
+
- lib/mongo/crypt/kms/kmip.rb
|
173
|
+
- lib/mongo/crypt/kms/local.rb
|
174
|
+
- lib/mongo/crypt/kms/master_key_document.rb
|
167
175
|
- lib/mongo/crypt/kms_context.rb
|
168
176
|
- lib/mongo/crypt/status.rb
|
169
177
|
- lib/mongo/cursor.rb
|
@@ -193,6 +201,7 @@ files:
|
|
193
201
|
- lib/mongo/error/invalid_bulk_operation.rb
|
194
202
|
- lib/mongo/error/invalid_bulk_operation_type.rb
|
195
203
|
- lib/mongo/error/invalid_collection_name.rb
|
204
|
+
- lib/mongo/error/invalid_config_option.rb
|
196
205
|
- lib/mongo/error/invalid_cursor_operation.rb
|
197
206
|
- lib/mongo/error/invalid_database_name.rb
|
198
207
|
- lib/mongo/error/invalid_document.rb
|
@@ -214,10 +223,12 @@ files:
|
|
214
223
|
- lib/mongo/error/invalid_uri.rb
|
215
224
|
- lib/mongo/error/invalid_write_concern.rb
|
216
225
|
- lib/mongo/error/kms_error.rb
|
226
|
+
- lib/mongo/error/labelable.rb
|
217
227
|
- lib/mongo/error/lint_error.rb
|
218
228
|
- lib/mongo/error/max_bson_size.rb
|
219
229
|
- lib/mongo/error/max_message_size.rb
|
220
230
|
- lib/mongo/error/mismatched_domain.rb
|
231
|
+
- lib/mongo/error/missing_connection.rb
|
221
232
|
- lib/mongo/error/missing_file_chunk.rb
|
222
233
|
- lib/mongo/error/missing_password.rb
|
223
234
|
- lib/mongo/error/missing_resume_token.rb
|
@@ -234,11 +245,13 @@ files:
|
|
234
245
|
- lib/mongo/error/parser.rb
|
235
246
|
- lib/mongo/error/pool_closed_error.rb
|
236
247
|
- lib/mongo/error/raise_original_error.rb
|
248
|
+
- lib/mongo/error/read_write_retryable.rb
|
237
249
|
- lib/mongo/error/sdam_error_detection.rb
|
238
250
|
- lib/mongo/error/server_api_conflict.rb
|
239
251
|
- lib/mongo/error/server_api_not_supported.rb
|
240
252
|
- lib/mongo/error/server_certificate_revoked.rb
|
241
253
|
- lib/mongo/error/session_ended.rb
|
254
|
+
- lib/mongo/error/session_not_materialized.rb
|
242
255
|
- lib/mongo/error/sessions_not_supported.rb
|
243
256
|
- lib/mongo/error/snapshot_session_invalid_server_version.rb
|
244
257
|
- lib/mongo/error/snapshot_session_transaction_prohibited.rb
|
@@ -339,7 +352,6 @@ files:
|
|
339
352
|
- lib/mongo/operation/delete.rb
|
340
353
|
- lib/mongo/operation/delete/bulk_result.rb
|
341
354
|
- lib/mongo/operation/delete/command.rb
|
342
|
-
- lib/mongo/operation/delete/legacy.rb
|
343
355
|
- lib/mongo/operation/delete/op_msg.rb
|
344
356
|
- lib/mongo/operation/delete/result.rb
|
345
357
|
- lib/mongo/operation/distinct.rb
|
@@ -384,13 +396,11 @@ files:
|
|
384
396
|
- lib/mongo/operation/insert.rb
|
385
397
|
- lib/mongo/operation/insert/bulk_result.rb
|
386
398
|
- lib/mongo/operation/insert/command.rb
|
387
|
-
- lib/mongo/operation/insert/legacy.rb
|
388
399
|
- lib/mongo/operation/insert/op_msg.rb
|
389
400
|
- lib/mongo/operation/insert/result.rb
|
390
401
|
- lib/mongo/operation/kill_cursors.rb
|
391
402
|
- lib/mongo/operation/kill_cursors/command.rb
|
392
403
|
- lib/mongo/operation/kill_cursors/command_builder.rb
|
393
|
-
- lib/mongo/operation/kill_cursors/legacy.rb
|
394
404
|
- lib/mongo/operation/kill_cursors/op_msg.rb
|
395
405
|
- lib/mongo/operation/list_collections.rb
|
396
406
|
- lib/mongo/operation/list_collections/command.rb
|
@@ -434,8 +444,6 @@ files:
|
|
434
444
|
- lib/mongo/operation/update.rb
|
435
445
|
- lib/mongo/operation/update/bulk_result.rb
|
436
446
|
- lib/mongo/operation/update/command.rb
|
437
|
-
- lib/mongo/operation/update/legacy.rb
|
438
|
-
- lib/mongo/operation/update/legacy/result.rb
|
439
447
|
- lib/mongo/operation/update/op_msg.rb
|
440
448
|
- lib/mongo/operation/update/result.rb
|
441
449
|
- lib/mongo/operation/update_user.rb
|
@@ -453,6 +461,7 @@ files:
|
|
453
461
|
- lib/mongo/options/redacted.rb
|
454
462
|
- lib/mongo/protocol.rb
|
455
463
|
- lib/mongo/protocol/bit_vector.rb
|
464
|
+
- lib/mongo/protocol/caching_hash.rb
|
456
465
|
- lib/mongo/protocol/compressed.rb
|
457
466
|
- lib/mongo/protocol/delete.rb
|
458
467
|
- lib/mongo/protocol/get_more.rb
|
@@ -528,6 +537,7 @@ files:
|
|
528
537
|
- spec/integration/awaited_ismaster_spec.rb
|
529
538
|
- spec/integration/aws_auth_request_spec.rb
|
530
539
|
- spec/integration/aws_credentials_retriever_spec.rb
|
540
|
+
- spec/integration/aws_lambda_examples_spec.rb
|
531
541
|
- spec/integration/bson_symbol_spec.rb
|
532
542
|
- spec/integration/bulk_insert_spec.rb
|
533
543
|
- spec/integration/bulk_write_error_message_spec.rb
|
@@ -552,7 +562,11 @@ files:
|
|
552
562
|
- spec/integration/client_side_encryption/custom_endpoint_spec.rb
|
553
563
|
- spec/integration/client_side_encryption/data_key_spec.rb
|
554
564
|
- spec/integration/client_side_encryption/explicit_encryption_spec.rb
|
565
|
+
- spec/integration/client_side_encryption/explicit_queryable_encryption_spec.rb
|
555
566
|
- spec/integration/client_side_encryption/external_key_vault_spec.rb
|
567
|
+
- spec/integration/client_side_encryption/kms_tls_options_spec.rb
|
568
|
+
- spec/integration/client_side_encryption/kms_tls_spec.rb
|
569
|
+
- spec/integration/client_side_encryption/queryable_encryption_examples_spec.rb
|
556
570
|
- spec/integration/client_side_encryption/views_spec.rb
|
557
571
|
- spec/integration/client_spec.rb
|
558
572
|
- spec/integration/client_update_spec.rb
|
@@ -567,7 +581,6 @@ files:
|
|
567
581
|
- spec/integration/cursor_reaping_spec.rb
|
568
582
|
- spec/integration/docs_examples_spec.rb
|
569
583
|
- spec/integration/error_detection_spec.rb
|
570
|
-
- spec/integration/find_options_spec.rb
|
571
584
|
- spec/integration/fork_reconnect_spec.rb
|
572
585
|
- spec/integration/get_more_spec.rb
|
573
586
|
- spec/integration/grid_fs_bucket_spec.rb
|
@@ -610,6 +623,7 @@ files:
|
|
610
623
|
- spec/integration/shell_examples_spec.rb
|
611
624
|
- spec/integration/size_limit_spec.rb
|
612
625
|
- spec/integration/snappy_compression_spec.rb
|
626
|
+
- spec/integration/snapshot_query_examples_spec.rb
|
613
627
|
- spec/integration/srv_monitoring_spec.rb
|
614
628
|
- spec/integration/srv_spec.rb
|
615
629
|
- spec/integration/ssl_uri_options_spec.rb
|
@@ -682,6 +696,8 @@ files:
|
|
682
696
|
- spec/mongo/collection_crud_spec.rb
|
683
697
|
- spec/mongo/collection_ddl_spec.rb
|
684
698
|
- spec/mongo/collection_spec.rb
|
699
|
+
- spec/mongo/config/options_spec.rb
|
700
|
+
- spec/mongo/config_spec.rb
|
685
701
|
- spec/mongo/crypt/auto_decryption_context_spec.rb
|
686
702
|
- spec/mongo/crypt/auto_encrypter_spec.rb
|
687
703
|
- spec/mongo/crypt/auto_encryption_context_spec.rb
|
@@ -699,12 +715,14 @@ files:
|
|
699
715
|
- spec/mongo/crypt/explicit_encryption_context_spec.rb
|
700
716
|
- spec/mongo/crypt/handle_spec.rb
|
701
717
|
- spec/mongo/crypt/helpers/mongo_crypt_spec_helper.rb
|
718
|
+
- spec/mongo/crypt/hooks_spec.rb
|
719
|
+
- spec/mongo/crypt/kms/credentials_spec.rb
|
720
|
+
- spec/mongo/crypt/kms_spec.rb
|
702
721
|
- spec/mongo/crypt/status_spec.rb
|
703
722
|
- spec/mongo/cursor/builder/get_more_command_spec.rb
|
704
723
|
- spec/mongo/cursor/builder/op_get_more_spec.rb
|
705
724
|
- spec/mongo/cursor_spec.rb
|
706
725
|
- spec/mongo/database_spec.rb
|
707
|
-
- spec/mongo/dbref_spec.rb
|
708
726
|
- spec/mongo/distinguishing_semaphore_spec.rb
|
709
727
|
- spec/mongo/error/bulk_write_error_spec.rb
|
710
728
|
- spec/mongo/error/crypt_error_spec.rb
|
@@ -757,6 +775,7 @@ files:
|
|
757
775
|
- spec/mongo/operation/aggregate_spec.rb
|
758
776
|
- spec/mongo/operation/collections_info_spec.rb
|
759
777
|
- spec/mongo/operation/command_spec.rb
|
778
|
+
- spec/mongo/operation/create/op_msg_spec.rb
|
760
779
|
- spec/mongo/operation/create_index_spec.rb
|
761
780
|
- spec/mongo/operation/create_user_spec.rb
|
762
781
|
- spec/mongo/operation/delete/bulk_spec.rb
|
@@ -773,7 +792,6 @@ files:
|
|
773
792
|
- spec/mongo/operation/insert/command_spec.rb
|
774
793
|
- spec/mongo/operation/insert/op_msg_spec.rb
|
775
794
|
- spec/mongo/operation/insert_spec.rb
|
776
|
-
- spec/mongo/operation/kill_cursors_spec.rb
|
777
795
|
- spec/mongo/operation/limited_spec.rb
|
778
796
|
- spec/mongo/operation/map_reduce_spec.rb
|
779
797
|
- spec/mongo/operation/read_preference_legacy_spec.rb
|
@@ -787,6 +805,7 @@ files:
|
|
787
805
|
- spec/mongo/operation/update_spec.rb
|
788
806
|
- spec/mongo/operation/update_user_spec.rb
|
789
807
|
- spec/mongo/options/redacted_spec.rb
|
808
|
+
- spec/mongo/protocol/caching_hash_spec.rb
|
790
809
|
- spec/mongo/protocol/compressed_spec.rb
|
791
810
|
- spec/mongo/protocol/delete_spec.rb
|
792
811
|
- spec/mongo/protocol/get_more_spec.rb
|
@@ -892,18 +911,20 @@ files:
|
|
892
911
|
- spec/shared/lib/mrss/event_subscriber.rb
|
893
912
|
- spec/shared/lib/mrss/lite_constraints.rb
|
894
913
|
- spec/shared/lib/mrss/server_version_registry.rb
|
914
|
+
- spec/shared/lib/mrss/session_registry.rb
|
915
|
+
- spec/shared/lib/mrss/session_registry_legacy.rb
|
895
916
|
- spec/shared/lib/mrss/spec_organizer.rb
|
896
917
|
- spec/shared/lib/mrss/utils.rb
|
897
918
|
- spec/shared/share/Dockerfile.erb
|
898
919
|
- spec/shared/share/haproxy-1.conf
|
899
920
|
- spec/shared/share/haproxy-2.conf
|
921
|
+
- spec/shared/shlib/config.sh
|
900
922
|
- spec/shared/shlib/distro.sh
|
901
923
|
- spec/shared/shlib/server.sh
|
902
924
|
- spec/shared/shlib/set_env.sh
|
903
925
|
- spec/solo/clean_exit_spec.rb
|
904
926
|
- spec/spec_helper.rb
|
905
927
|
- spec/spec_tests/auth_spec.rb
|
906
|
-
- spec/spec_tests/change_streams_spec.rb
|
907
928
|
- spec/spec_tests/change_streams_unified_spec.rb
|
908
929
|
- spec/spec_tests/client_side_encryption_spec.rb
|
909
930
|
- spec/spec_tests/cmap_spec.rb
|
@@ -914,12 +935,13 @@ files:
|
|
914
935
|
- spec/spec_tests/crud_spec.rb
|
915
936
|
- spec/spec_tests/crud_unified_spec.rb
|
916
937
|
- spec/spec_tests/data/auth/connection-string.yml
|
917
|
-
- spec/spec_tests/data/
|
918
|
-
- spec/spec_tests/data/
|
919
|
-
- spec/spec_tests/data/
|
920
|
-
- spec/spec_tests/data/
|
938
|
+
- spec/spec_tests/data/change_streams_unified/change-streams-errors.yml
|
939
|
+
- spec/spec_tests/data/change_streams_unified/change-streams-pre_and_post_images.yml
|
940
|
+
- spec/spec_tests/data/change_streams_unified/change-streams-resume-allowlist.yml
|
941
|
+
- spec/spec_tests/data/change_streams_unified/change-streams-resume-errorLabels.yml
|
921
942
|
- spec/spec_tests/data/change_streams_unified/change-streams.yml
|
922
943
|
- spec/spec_tests/data/client_side_encryption/aggregate.yml
|
944
|
+
- spec/spec_tests/data/client_side_encryption/azureKMS.yml
|
923
945
|
- spec/spec_tests/data/client_side_encryption/badQueries.yml
|
924
946
|
- spec/spec_tests/data/client_side_encryption/badSchema.yml
|
925
947
|
- spec/spec_tests/data/client_side_encryption/basic.yml
|
@@ -935,6 +957,22 @@ files:
|
|
935
957
|
- spec/spec_tests/data/client_side_encryption/findOneAndDelete.yml
|
936
958
|
- spec/spec_tests/data/client_side_encryption/findOneAndReplace.yml
|
937
959
|
- spec/spec_tests/data/client_side_encryption/findOneAndUpdate.yml
|
960
|
+
- spec/spec_tests/data/client_side_encryption/fle2-BypassQueryAnalysis.yml
|
961
|
+
- spec/spec_tests/data/client_side_encryption/fle2-Compact.yml
|
962
|
+
- spec/spec_tests/data/client_side_encryption/fle2-CreateCollection.yml
|
963
|
+
- spec/spec_tests/data/client_side_encryption/fle2-DecryptExistingData.yml
|
964
|
+
- spec/spec_tests/data/client_side_encryption/fle2-Delete.yml
|
965
|
+
- spec/spec_tests/data/client_side_encryption/fle2-EncryptedFields-vs-EncryptedFieldsMap.yml
|
966
|
+
- spec/spec_tests/data/client_side_encryption/fle2-EncryptedFields-vs-jsonSchema.yml
|
967
|
+
- spec/spec_tests/data/client_side_encryption/fle2-EncryptedFieldsMap-defaults.yml
|
968
|
+
- spec/spec_tests/data/client_side_encryption/fle2-FindOneAndUpdate.yml
|
969
|
+
- spec/spec_tests/data/client_side_encryption/fle2-InsertFind-Indexed.yml
|
970
|
+
- spec/spec_tests/data/client_side_encryption/fle2-InsertFind-Unindexed.yml
|
971
|
+
- spec/spec_tests/data/client_side_encryption/fle2-MissingKey.yml
|
972
|
+
- spec/spec_tests/data/client_side_encryption/fle2-NoEncryption.yml
|
973
|
+
- spec/spec_tests/data/client_side_encryption/fle2-Update.yml
|
974
|
+
- spec/spec_tests/data/client_side_encryption/fle2-validatorAndPartialFieldExpression.yml
|
975
|
+
- spec/spec_tests/data/client_side_encryption/gcpKMS.yml
|
938
976
|
- spec/spec_tests/data/client_side_encryption/getMore.yml
|
939
977
|
- spec/spec_tests/data/client_side_encryption/insert.yml
|
940
978
|
- spec/spec_tests/data/client_side_encryption/keyAltName.yml
|
@@ -943,6 +981,7 @@ files:
|
|
943
981
|
- spec/spec_tests/data/client_side_encryption/malformedCiphertext.yml
|
944
982
|
- spec/spec_tests/data/client_side_encryption/maxWireVersion.yml
|
945
983
|
- spec/spec_tests/data/client_side_encryption/missingKey.yml
|
984
|
+
- spec/spec_tests/data/client_side_encryption/noSchema.yml
|
946
985
|
- spec/spec_tests/data/client_side_encryption/replaceOne.yml
|
947
986
|
- spec/spec_tests/data/client_side_encryption/types.yml
|
948
987
|
- spec/spec_tests/data/client_side_encryption/unsupportedCommand.yml
|
@@ -967,6 +1006,9 @@ files:
|
|
967
1006
|
- spec/spec_tests/data/cmap/pool-create.yml
|
968
1007
|
- spec/spec_tests/data/cmap/wait-queue-fairness.yml
|
969
1008
|
- spec/spec_tests/data/cmap/wait-queue-timeout.yml
|
1009
|
+
- spec/spec_tests/data/collection_management/clustered-indexes.yml
|
1010
|
+
- spec/spec_tests/data/collection_management/createCollection-pre_and_post_images.yml
|
1011
|
+
- spec/spec_tests/data/collection_management/modifyCollection-pre_and_post_images.yml
|
970
1012
|
- spec/spec_tests/data/collection_management/timeseries-collection.yml
|
971
1013
|
- spec/spec_tests/data/command_monitoring/bulkWrite.yml
|
972
1014
|
- spec/spec_tests/data/command_monitoring/command.yml
|
@@ -978,7 +1020,9 @@ files:
|
|
978
1020
|
- spec/spec_tests/data/command_monitoring/unacknowledgedBulkWrite.yml
|
979
1021
|
- spec/spec_tests/data/command_monitoring/updateMany.yml
|
980
1022
|
- spec/spec_tests/data/command_monitoring/updateOne.yml
|
1023
|
+
- spec/spec_tests/data/command_monitoring_unified/pre-42-server-connection-id.yml
|
981
1024
|
- spec/spec_tests/data/command_monitoring_unified/redacted-commands.yml
|
1025
|
+
- spec/spec_tests/data/command_monitoring_unified/server-connection-id.yml
|
982
1026
|
- spec/spec_tests/data/connection_string/invalid-uris.yml
|
983
1027
|
- spec/spec_tests/data/connection_string/valid-auth.yml
|
984
1028
|
- spec/spec_tests/data/connection_string/valid-db-with-dotted-name.yml
|
@@ -1027,65 +1071,106 @@ files:
|
|
1027
1071
|
- spec/spec_tests/data/crud/write/updateOne-collation.yml
|
1028
1072
|
- spec/spec_tests/data/crud/write/updateOne-pre_2.6.yml
|
1029
1073
|
- spec/spec_tests/data/crud/write/updateOne.yml
|
1074
|
+
- spec/spec_tests/data/crud_unified/aggregate-allowdiskuse.yml
|
1030
1075
|
- spec/spec_tests/data/crud_unified/aggregate-let.yml
|
1076
|
+
- spec/spec_tests/data/crud_unified/aggregate-merge.yml
|
1077
|
+
- spec/spec_tests/data/crud_unified/aggregate-out-readConcern.yml
|
1031
1078
|
- spec/spec_tests/data/crud_unified/aggregate-write-readPreference.yml
|
1079
|
+
- spec/spec_tests/data/crud_unified/aggregate.yml
|
1080
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-arrayFilters-clientError.yml
|
1081
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-arrayFilters.yml
|
1082
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-comment.yml
|
1083
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-delete-hint-clientError.yml
|
1084
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-delete-hint-serverError.yml
|
1085
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-delete-hint.yml
|
1086
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-deleteMany-hint-unacknowledged.yml
|
1087
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-deleteMany-let.yml
|
1088
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-deleteOne-hint-unacknowledged.yml
|
1089
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-deleteOne-let.yml
|
1090
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-insertOne-dots_and_dollars.yml
|
1091
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-replaceOne-dots_and_dollars.yml
|
1092
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-replaceOne-hint-unacknowledged.yml
|
1093
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-replaceOne-let.yml
|
1094
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-update-hint-clientError.yml
|
1095
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-update-hint-serverError.yml
|
1096
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-update-hint.yml
|
1097
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-update-validation.yml
|
1098
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-updateMany-dots_and_dollars.yml
|
1099
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-updateMany-hint-unacknowledged.yml
|
1100
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-updateMany-let.yml
|
1101
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-updateOne-dots_and_dollars.yml
|
1102
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-updateOne-hint-unacknowledged.yml
|
1103
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-updateOne-let.yml
|
1104
|
+
- spec/spec_tests/data/crud_unified/countDocuments-comment.yml
|
1032
1105
|
- spec/spec_tests/data/crud_unified/db-aggregate-write-readPreference.yml
|
1106
|
+
- spec/spec_tests/data/crud_unified/db-aggregate.yml
|
1107
|
+
- spec/spec_tests/data/crud_unified/deleteMany-comment.yml
|
1108
|
+
- spec/spec_tests/data/crud_unified/deleteMany-hint-clientError.yml
|
1109
|
+
- spec/spec_tests/data/crud_unified/deleteMany-hint-serverError.yml
|
1110
|
+
- spec/spec_tests/data/crud_unified/deleteMany-hint-unacknowledged.yml
|
1111
|
+
- spec/spec_tests/data/crud_unified/deleteMany-hint.yml
|
1033
1112
|
- spec/spec_tests/data/crud_unified/deleteMany-let.yml
|
1113
|
+
- spec/spec_tests/data/crud_unified/deleteOne-comment.yml
|
1114
|
+
- spec/spec_tests/data/crud_unified/deleteOne-hint-clientError.yml
|
1115
|
+
- spec/spec_tests/data/crud_unified/deleteOne-hint-serverError.yml
|
1116
|
+
- spec/spec_tests/data/crud_unified/deleteOne-hint-unacknowledged.yml
|
1117
|
+
- spec/spec_tests/data/crud_unified/deleteOne-hint.yml
|
1034
1118
|
- spec/spec_tests/data/crud_unified/deleteOne-let.yml
|
1119
|
+
- spec/spec_tests/data/crud_unified/estimatedDocumentCount-comment.yml
|
1035
1120
|
- spec/spec_tests/data/crud_unified/estimatedDocumentCount.yml
|
1121
|
+
- spec/spec_tests/data/crud_unified/find-allowdiskuse-clientError.yml
|
1122
|
+
- spec/spec_tests/data/crud_unified/find-allowdiskuse-serverError.yml
|
1123
|
+
- spec/spec_tests/data/crud_unified/find-allowdiskuse.yml
|
1124
|
+
- spec/spec_tests/data/crud_unified/find-comment.yml
|
1036
1125
|
- spec/spec_tests/data/crud_unified/find-let.yml
|
1126
|
+
- spec/spec_tests/data/crud_unified/find.yml
|
1127
|
+
- spec/spec_tests/data/crud_unified/findOneAndDelete-comment.yml
|
1128
|
+
- spec/spec_tests/data/crud_unified/findOneAndDelete-hint-clientError.yml
|
1129
|
+
- spec/spec_tests/data/crud_unified/findOneAndDelete-hint-serverError.yml
|
1130
|
+
- spec/spec_tests/data/crud_unified/findOneAndDelete-hint-unacknowledged.yml
|
1131
|
+
- spec/spec_tests/data/crud_unified/findOneAndDelete-hint.yml
|
1037
1132
|
- spec/spec_tests/data/crud_unified/findOneAndDelete-let.yml
|
1133
|
+
- spec/spec_tests/data/crud_unified/findOneAndReplace-comment.yml
|
1134
|
+
- spec/spec_tests/data/crud_unified/findOneAndReplace-dots_and_dollars.yml
|
1135
|
+
- spec/spec_tests/data/crud_unified/findOneAndReplace-hint-clientError.yml
|
1136
|
+
- spec/spec_tests/data/crud_unified/findOneAndReplace-hint-serverError.yml
|
1137
|
+
- spec/spec_tests/data/crud_unified/findOneAndReplace-hint-unacknowledged.yml
|
1138
|
+
- spec/spec_tests/data/crud_unified/findOneAndReplace-hint.yml
|
1038
1139
|
- spec/spec_tests/data/crud_unified/findOneAndReplace-let.yml
|
1140
|
+
- spec/spec_tests/data/crud_unified/findOneAndUpdate-comment.yml
|
1141
|
+
- spec/spec_tests/data/crud_unified/findOneAndUpdate-dots_and_dollars.yml
|
1142
|
+
- spec/spec_tests/data/crud_unified/findOneAndUpdate-hint-clientError.yml
|
1143
|
+
- spec/spec_tests/data/crud_unified/findOneAndUpdate-hint-serverError.yml
|
1144
|
+
- spec/spec_tests/data/crud_unified/findOneAndUpdate-hint-unacknowledged.yml
|
1145
|
+
- spec/spec_tests/data/crud_unified/findOneAndUpdate-hint.yml
|
1039
1146
|
- spec/spec_tests/data/crud_unified/findOneAndUpdate-let.yml
|
1147
|
+
- spec/spec_tests/data/crud_unified/insertMany-comment.yml
|
1148
|
+
- spec/spec_tests/data/crud_unified/insertMany-dots_and_dollars.yml
|
1149
|
+
- spec/spec_tests/data/crud_unified/insertOne-comment.yml
|
1150
|
+
- spec/spec_tests/data/crud_unified/insertOne-dots_and_dollars.yml
|
1151
|
+
- spec/spec_tests/data/crud_unified/replaceOne-comment.yml
|
1152
|
+
- spec/spec_tests/data/crud_unified/replaceOne-dots_and_dollars.yml
|
1153
|
+
- spec/spec_tests/data/crud_unified/replaceOne-hint-unacknowledged.yml
|
1154
|
+
- spec/spec_tests/data/crud_unified/replaceOne-hint.yml
|
1155
|
+
- spec/spec_tests/data/crud_unified/replaceOne-let.yml
|
1156
|
+
- spec/spec_tests/data/crud_unified/replaceOne-validation.yml
|
1157
|
+
- spec/spec_tests/data/crud_unified/updateMany-comment.yml
|
1158
|
+
- spec/spec_tests/data/crud_unified/updateMany-dots_and_dollars.yml
|
1159
|
+
- spec/spec_tests/data/crud_unified/updateMany-hint-clientError.yml
|
1160
|
+
- spec/spec_tests/data/crud_unified/updateMany-hint-serverError.yml
|
1161
|
+
- spec/spec_tests/data/crud_unified/updateMany-hint-unacknowledged.yml
|
1162
|
+
- spec/spec_tests/data/crud_unified/updateMany-hint.yml
|
1040
1163
|
- spec/spec_tests/data/crud_unified/updateMany-let.yml
|
1164
|
+
- spec/spec_tests/data/crud_unified/updateMany-validation.yml
|
1165
|
+
- spec/spec_tests/data/crud_unified/updateOne-comment.yml
|
1166
|
+
- spec/spec_tests/data/crud_unified/updateOne-dots_and_dollars.yml
|
1167
|
+
- spec/spec_tests/data/crud_unified/updateOne-hint-clientError.yml
|
1168
|
+
- spec/spec_tests/data/crud_unified/updateOne-hint-serverError.yml
|
1169
|
+
- spec/spec_tests/data/crud_unified/updateOne-hint-unacknowledged.yml
|
1170
|
+
- spec/spec_tests/data/crud_unified/updateOne-hint.yml
|
1041
1171
|
- spec/spec_tests/data/crud_unified/updateOne-let.yml
|
1172
|
+
- spec/spec_tests/data/crud_unified/updateOne-validation.yml
|
1042
1173
|
- spec/spec_tests/data/crud_unified/updateWithPipelines.yml
|
1043
|
-
- spec/spec_tests/data/crud_v2/aggregate-merge.yml
|
1044
|
-
- spec/spec_tests/data/crud_v2/aggregate-out-readConcern.yml
|
1045
|
-
- spec/spec_tests/data/crud_v2/bulkWrite-arrayFilters.yml
|
1046
|
-
- spec/spec_tests/data/crud_v2/bulkWrite-delete-hint-clientError.yml
|
1047
|
-
- spec/spec_tests/data/crud_v2/bulkWrite-delete-hint-serverError.yml
|
1048
|
-
- spec/spec_tests/data/crud_v2/bulkWrite-delete-hint.yml
|
1049
|
-
- spec/spec_tests/data/crud_v2/bulkWrite-update-hint-clientError.yml
|
1050
|
-
- spec/spec_tests/data/crud_v2/bulkWrite-update-hint-serverError.yml
|
1051
|
-
- spec/spec_tests/data/crud_v2/bulkWrite-update-hint.yml
|
1052
|
-
- spec/spec_tests/data/crud_v2/db-aggregate.yml
|
1053
|
-
- spec/spec_tests/data/crud_v2/deleteMany-hint-clientError.yml
|
1054
|
-
- spec/spec_tests/data/crud_v2/deleteMany-hint-serverError.yml
|
1055
|
-
- spec/spec_tests/data/crud_v2/deleteMany-hint.yml
|
1056
|
-
- spec/spec_tests/data/crud_v2/deleteOne-hint-clientError.yml
|
1057
|
-
- spec/spec_tests/data/crud_v2/deleteOne-hint-serverError.yml
|
1058
|
-
- spec/spec_tests/data/crud_v2/deleteOne-hint.yml
|
1059
|
-
- spec/spec_tests/data/crud_v2/find-allowdiskuse-clientError.yml
|
1060
|
-
- spec/spec_tests/data/crud_v2/find-allowdiskuse-serverError.yml
|
1061
|
-
- spec/spec_tests/data/crud_v2/find-allowdiskuse.yml
|
1062
|
-
- spec/spec_tests/data/crud_v2/findOneAndDelete-hint-clientError.yml
|
1063
|
-
- spec/spec_tests/data/crud_v2/findOneAndDelete-hint-serverError.yml
|
1064
|
-
- spec/spec_tests/data/crud_v2/findOneAndDelete-hint.yml
|
1065
|
-
- spec/spec_tests/data/crud_v2/findOneAndReplace-hint-clientError.yml
|
1066
|
-
- spec/spec_tests/data/crud_v2/findOneAndReplace-hint-serverError.yml
|
1067
|
-
- spec/spec_tests/data/crud_v2/findOneAndReplace-hint.yml
|
1068
|
-
- spec/spec_tests/data/crud_v2/findOneAndUpdate-hint-clientError.yml
|
1069
|
-
- spec/spec_tests/data/crud_v2/findOneAndUpdate-hint-serverError.yml
|
1070
|
-
- spec/spec_tests/data/crud_v2/findOneAndUpdate-hint.yml
|
1071
|
-
- spec/spec_tests/data/crud_v2/replaceOne-hint.yml
|
1072
|
-
- spec/spec_tests/data/crud_v2/unacknowledged-bulkWrite-delete-hint-clientError.yml
|
1073
|
-
- spec/spec_tests/data/crud_v2/unacknowledged-bulkWrite-update-hint-clientError.yml
|
1074
|
-
- spec/spec_tests/data/crud_v2/unacknowledged-deleteMany-hint-clientError.yml
|
1075
|
-
- spec/spec_tests/data/crud_v2/unacknowledged-deleteOne-hint-clientError.yml
|
1076
|
-
- spec/spec_tests/data/crud_v2/unacknowledged-findOneAndDelete-hint-clientError.yml
|
1077
|
-
- spec/spec_tests/data/crud_v2/unacknowledged-findOneAndReplace-hint-clientError.yml
|
1078
|
-
- spec/spec_tests/data/crud_v2/unacknowledged-findOneAndUpdate-hint-clientError.yml
|
1079
|
-
- spec/spec_tests/data/crud_v2/unacknowledged-replaceOne-hint-clientError.yml
|
1080
|
-
- spec/spec_tests/data/crud_v2/unacknowledged-updateMany-hint-clientError.yml
|
1081
|
-
- spec/spec_tests/data/crud_v2/unacknowledged-updateOne-hint-clientError.yml
|
1082
|
-
- spec/spec_tests/data/crud_v2/updateMany-hint-clientError.yml
|
1083
|
-
- spec/spec_tests/data/crud_v2/updateMany-hint-serverError.yml
|
1084
|
-
- spec/spec_tests/data/crud_v2/updateMany-hint.yml
|
1085
|
-
- spec/spec_tests/data/crud_v2/updateOne-hint-clientError.yml
|
1086
|
-
- spec/spec_tests/data/crud_v2/updateOne-hint-serverError.yml
|
1087
|
-
- spec/spec_tests/data/crud_v2/updateOne-hint.yml
|
1088
|
-
- spec/spec_tests/data/crud_v2/updateWithPipelines.yml
|
1089
1174
|
- spec/spec_tests/data/gridfs/delete.yml
|
1090
1175
|
- spec/spec_tests/data/gridfs/download.yml
|
1091
1176
|
- spec/spec_tests/data/gridfs/download_by_name.yml
|
@@ -1138,79 +1223,81 @@ files:
|
|
1138
1223
|
- spec/spec_tests/data/read_write_concern/operation/default-write-concern-3.2.yml
|
1139
1224
|
- spec/spec_tests/data/read_write_concern/operation/default-write-concern-3.4.yml
|
1140
1225
|
- spec/spec_tests/data/read_write_concern/operation/default-write-concern-4.2.yml
|
1141
|
-
- spec/spec_tests/data/retryable_reads/aggregate-merge.yml
|
1142
|
-
- spec/spec_tests/data/retryable_reads/aggregate-serverErrors.yml
|
1143
|
-
- spec/spec_tests/data/retryable_reads/aggregate.yml
|
1144
|
-
- spec/spec_tests/data/retryable_reads/changeStreams-client.watch-serverErrors.yml
|
1145
|
-
- spec/spec_tests/data/retryable_reads/changeStreams-client.watch.yml
|
1146
|
-
- spec/spec_tests/data/retryable_reads/changeStreams-db.coll.watch-serverErrors.yml
|
1147
|
-
- spec/spec_tests/data/retryable_reads/changeStreams-db.coll.watch.yml
|
1148
|
-
- spec/spec_tests/data/retryable_reads/changeStreams-db.watch-serverErrors.yml
|
1149
|
-
- spec/spec_tests/data/retryable_reads/changeStreams-db.watch.yml
|
1150
|
-
- spec/spec_tests/data/retryable_reads/count-serverErrors.yml
|
1151
|
-
- spec/spec_tests/data/retryable_reads/count.yml
|
1152
|
-
- spec/spec_tests/data/retryable_reads/countDocuments-serverErrors.yml
|
1153
|
-
- spec/spec_tests/data/retryable_reads/countDocuments.yml
|
1154
|
-
- spec/spec_tests/data/retryable_reads/distinct-serverErrors.yml
|
1155
|
-
- spec/spec_tests/data/retryable_reads/distinct.yml
|
1156
|
-
- spec/spec_tests/data/retryable_reads/estimatedDocumentCount-
|
1157
|
-
- spec/spec_tests/data/retryable_reads/estimatedDocumentCount
|
1158
|
-
- spec/spec_tests/data/retryable_reads/
|
1159
|
-
- spec/spec_tests/data/retryable_reads/
|
1160
|
-
- spec/spec_tests/data/retryable_reads/
|
1161
|
-
- spec/spec_tests/data/retryable_reads/
|
1162
|
-
- spec/spec_tests/data/retryable_reads/
|
1163
|
-
- spec/spec_tests/data/retryable_reads/
|
1164
|
-
- spec/spec_tests/data/retryable_reads/gridfs-
|
1165
|
-
- spec/spec_tests/data/retryable_reads/gridfs-
|
1166
|
-
- spec/spec_tests/data/retryable_reads/
|
1167
|
-
- spec/spec_tests/data/retryable_reads/
|
1168
|
-
- spec/spec_tests/data/retryable_reads/
|
1169
|
-
- spec/spec_tests/data/retryable_reads/
|
1170
|
-
- spec/spec_tests/data/retryable_reads/
|
1171
|
-
- spec/spec_tests/data/retryable_reads/
|
1172
|
-
- spec/spec_tests/data/retryable_reads/
|
1173
|
-
- spec/spec_tests/data/retryable_reads/
|
1174
|
-
- spec/spec_tests/data/retryable_reads/
|
1175
|
-
- spec/spec_tests/data/retryable_reads/
|
1176
|
-
- spec/spec_tests/data/retryable_reads/
|
1177
|
-
- spec/spec_tests/data/retryable_reads/
|
1178
|
-
- spec/spec_tests/data/retryable_reads/
|
1179
|
-
- spec/spec_tests/data/retryable_reads/
|
1180
|
-
- spec/spec_tests/data/retryable_reads/
|
1181
|
-
- spec/spec_tests/data/retryable_reads/
|
1182
|
-
- spec/spec_tests/data/retryable_reads/
|
1183
|
-
- spec/spec_tests/data/retryable_reads/
|
1184
|
-
- spec/spec_tests/data/
|
1185
|
-
- spec/spec_tests/data/retryable_writes/bulkWrite-
|
1186
|
-
- spec/spec_tests/data/retryable_writes/bulkWrite
|
1187
|
-
- spec/spec_tests/data/retryable_writes/
|
1188
|
-
- spec/spec_tests/data/retryable_writes/
|
1189
|
-
- spec/spec_tests/data/retryable_writes/deleteOne-
|
1190
|
-
- spec/spec_tests/data/retryable_writes/deleteOne
|
1191
|
-
- spec/spec_tests/data/retryable_writes/
|
1192
|
-
- spec/spec_tests/data/retryable_writes/findOneAndDelete-
|
1193
|
-
- spec/spec_tests/data/retryable_writes/findOneAndDelete
|
1194
|
-
- spec/spec_tests/data/retryable_writes/
|
1195
|
-
- spec/spec_tests/data/retryable_writes/findOneAndReplace-
|
1196
|
-
- spec/spec_tests/data/retryable_writes/findOneAndReplace
|
1197
|
-
- spec/spec_tests/data/retryable_writes/
|
1198
|
-
- spec/spec_tests/data/retryable_writes/findOneAndUpdate-
|
1199
|
-
- spec/spec_tests/data/retryable_writes/findOneAndUpdate
|
1200
|
-
- spec/spec_tests/data/retryable_writes/
|
1201
|
-
- spec/spec_tests/data/retryable_writes/insertMany-
|
1202
|
-
- spec/spec_tests/data/retryable_writes/insertMany
|
1203
|
-
- spec/spec_tests/data/retryable_writes/
|
1204
|
-
- spec/spec_tests/data/retryable_writes/insertOne-
|
1205
|
-
- spec/spec_tests/data/retryable_writes/insertOne
|
1206
|
-
- spec/spec_tests/data/retryable_writes/
|
1207
|
-
- spec/spec_tests/data/retryable_writes/replaceOne-
|
1208
|
-
- spec/spec_tests/data/retryable_writes/replaceOne
|
1209
|
-
- spec/spec_tests/data/retryable_writes/
|
1210
|
-
- spec/spec_tests/data/retryable_writes/
|
1211
|
-
- spec/spec_tests/data/retryable_writes/updateOne-
|
1212
|
-
- spec/spec_tests/data/retryable_writes/updateOne
|
1213
|
-
- spec/spec_tests/data/retryable_writes/
|
1226
|
+
- spec/spec_tests/data/retryable_reads/legacy/aggregate-merge.yml
|
1227
|
+
- spec/spec_tests/data/retryable_reads/legacy/aggregate-serverErrors.yml
|
1228
|
+
- spec/spec_tests/data/retryable_reads/legacy/aggregate.yml
|
1229
|
+
- spec/spec_tests/data/retryable_reads/legacy/changeStreams-client.watch-serverErrors.yml
|
1230
|
+
- spec/spec_tests/data/retryable_reads/legacy/changeStreams-client.watch.yml
|
1231
|
+
- spec/spec_tests/data/retryable_reads/legacy/changeStreams-db.coll.watch-serverErrors.yml
|
1232
|
+
- spec/spec_tests/data/retryable_reads/legacy/changeStreams-db.coll.watch.yml
|
1233
|
+
- spec/spec_tests/data/retryable_reads/legacy/changeStreams-db.watch-serverErrors.yml
|
1234
|
+
- spec/spec_tests/data/retryable_reads/legacy/changeStreams-db.watch.yml
|
1235
|
+
- spec/spec_tests/data/retryable_reads/legacy/count-serverErrors.yml
|
1236
|
+
- spec/spec_tests/data/retryable_reads/legacy/count.yml
|
1237
|
+
- spec/spec_tests/data/retryable_reads/legacy/countDocuments-serverErrors.yml
|
1238
|
+
- spec/spec_tests/data/retryable_reads/legacy/countDocuments.yml
|
1239
|
+
- spec/spec_tests/data/retryable_reads/legacy/distinct-serverErrors.yml
|
1240
|
+
- spec/spec_tests/data/retryable_reads/legacy/distinct.yml
|
1241
|
+
- spec/spec_tests/data/retryable_reads/legacy/estimatedDocumentCount-serverErrors.yml
|
1242
|
+
- spec/spec_tests/data/retryable_reads/legacy/estimatedDocumentCount.yml
|
1243
|
+
- spec/spec_tests/data/retryable_reads/legacy/find-serverErrors.yml
|
1244
|
+
- spec/spec_tests/data/retryable_reads/legacy/find.yml
|
1245
|
+
- spec/spec_tests/data/retryable_reads/legacy/findOne-serverErrors.yml
|
1246
|
+
- spec/spec_tests/data/retryable_reads/legacy/findOne.yml
|
1247
|
+
- spec/spec_tests/data/retryable_reads/legacy/gridfs-download-serverErrors.yml
|
1248
|
+
- spec/spec_tests/data/retryable_reads/legacy/gridfs-download.yml
|
1249
|
+
- spec/spec_tests/data/retryable_reads/legacy/gridfs-downloadByName-serverErrors.yml
|
1250
|
+
- spec/spec_tests/data/retryable_reads/legacy/gridfs-downloadByName.yml
|
1251
|
+
- spec/spec_tests/data/retryable_reads/legacy/listCollectionNames-serverErrors.yml
|
1252
|
+
- spec/spec_tests/data/retryable_reads/legacy/listCollectionNames.yml
|
1253
|
+
- spec/spec_tests/data/retryable_reads/legacy/listCollectionObjects-serverErrors.yml
|
1254
|
+
- spec/spec_tests/data/retryable_reads/legacy/listCollectionObjects.yml
|
1255
|
+
- spec/spec_tests/data/retryable_reads/legacy/listCollections-serverErrors.yml
|
1256
|
+
- spec/spec_tests/data/retryable_reads/legacy/listCollections.yml
|
1257
|
+
- spec/spec_tests/data/retryable_reads/legacy/listDatabaseNames-serverErrors.yml
|
1258
|
+
- spec/spec_tests/data/retryable_reads/legacy/listDatabaseNames.yml
|
1259
|
+
- spec/spec_tests/data/retryable_reads/legacy/listDatabaseObjects-serverErrors.yml
|
1260
|
+
- spec/spec_tests/data/retryable_reads/legacy/listDatabaseObjects.yml
|
1261
|
+
- spec/spec_tests/data/retryable_reads/legacy/listDatabases-serverErrors.yml
|
1262
|
+
- spec/spec_tests/data/retryable_reads/legacy/listDatabases.yml
|
1263
|
+
- spec/spec_tests/data/retryable_reads/legacy/listIndexNames-serverErrors.yml
|
1264
|
+
- spec/spec_tests/data/retryable_reads/legacy/listIndexNames.yml
|
1265
|
+
- spec/spec_tests/data/retryable_reads/legacy/listIndexes-serverErrors.yml
|
1266
|
+
- spec/spec_tests/data/retryable_reads/legacy/listIndexes.yml
|
1267
|
+
- spec/spec_tests/data/retryable_reads/legacy/mapReduce.yml
|
1268
|
+
- spec/spec_tests/data/retryable_reads/unified/handshakeError.yml
|
1269
|
+
- spec/spec_tests/data/retryable_writes/legacy/bulkWrite-errorLabels.yml
|
1270
|
+
- spec/spec_tests/data/retryable_writes/legacy/bulkWrite-serverErrors.yml
|
1271
|
+
- spec/spec_tests/data/retryable_writes/legacy/bulkWrite.yml
|
1272
|
+
- spec/spec_tests/data/retryable_writes/legacy/deleteMany.yml
|
1273
|
+
- spec/spec_tests/data/retryable_writes/legacy/deleteOne-errorLabels.yml
|
1274
|
+
- spec/spec_tests/data/retryable_writes/legacy/deleteOne-serverErrors.yml
|
1275
|
+
- spec/spec_tests/data/retryable_writes/legacy/deleteOne.yml
|
1276
|
+
- spec/spec_tests/data/retryable_writes/legacy/findOneAndDelete-errorLabels.yml
|
1277
|
+
- spec/spec_tests/data/retryable_writes/legacy/findOneAndDelete-serverErrors.yml
|
1278
|
+
- spec/spec_tests/data/retryable_writes/legacy/findOneAndDelete.yml
|
1279
|
+
- spec/spec_tests/data/retryable_writes/legacy/findOneAndReplace-errorLabels.yml
|
1280
|
+
- spec/spec_tests/data/retryable_writes/legacy/findOneAndReplace-serverErrors.yml
|
1281
|
+
- spec/spec_tests/data/retryable_writes/legacy/findOneAndReplace.yml
|
1282
|
+
- spec/spec_tests/data/retryable_writes/legacy/findOneAndUpdate-errorLabels.yml
|
1283
|
+
- spec/spec_tests/data/retryable_writes/legacy/findOneAndUpdate-serverErrors.yml
|
1284
|
+
- spec/spec_tests/data/retryable_writes/legacy/findOneAndUpdate.yml
|
1285
|
+
- spec/spec_tests/data/retryable_writes/legacy/insertMany-errorLabels.yml
|
1286
|
+
- spec/spec_tests/data/retryable_writes/legacy/insertMany-serverErrors.yml
|
1287
|
+
- spec/spec_tests/data/retryable_writes/legacy/insertMany.yml
|
1288
|
+
- spec/spec_tests/data/retryable_writes/legacy/insertOne-errorLabels.yml
|
1289
|
+
- spec/spec_tests/data/retryable_writes/legacy/insertOne-serverErrors.yml
|
1290
|
+
- spec/spec_tests/data/retryable_writes/legacy/insertOne.yml
|
1291
|
+
- spec/spec_tests/data/retryable_writes/legacy/replaceOne-errorLabels.yml
|
1292
|
+
- spec/spec_tests/data/retryable_writes/legacy/replaceOne-serverErrors.yml
|
1293
|
+
- spec/spec_tests/data/retryable_writes/legacy/replaceOne.yml
|
1294
|
+
- spec/spec_tests/data/retryable_writes/legacy/updateMany.yml
|
1295
|
+
- spec/spec_tests/data/retryable_writes/legacy/updateOne-errorLabels.yml
|
1296
|
+
- spec/spec_tests/data/retryable_writes/legacy/updateOne-serverErrors.yml
|
1297
|
+
- spec/spec_tests/data/retryable_writes/legacy/updateOne.yml
|
1298
|
+
- spec/spec_tests/data/retryable_writes/unified/bulkWrite-serverErrors.yml
|
1299
|
+
- spec/spec_tests/data/retryable_writes/unified/handshakeError.yml
|
1300
|
+
- spec/spec_tests/data/retryable_writes/unified/insertOne-serverErrors.yml
|
1214
1301
|
- spec/spec_tests/data/sdam/errors/error_handling_handshake.yml
|
1215
1302
|
- spec/spec_tests/data/sdam/errors/non-stale-network-error.yml
|
1216
1303
|
- spec/spec_tests/data/sdam/errors/non-stale-network-timeout-error.yml
|
@@ -1418,9 +1505,14 @@ files:
|
|
1418
1505
|
- spec/spec_tests/data/sdam_monitoring/standalone_suppress_equal_description_changes.yml
|
1419
1506
|
- spec/spec_tests/data/sdam_monitoring/standalone_to_rs_with_me_mismatch.yml
|
1420
1507
|
- spec/spec_tests/data/seed_list_discovery/load-balanced/loadBalanced-directConnection.yml
|
1508
|
+
- spec/spec_tests/data/seed_list_discovery/load-balanced/loadBalanced-no-results.yml
|
1421
1509
|
- spec/spec_tests/data/seed_list_discovery/load-balanced/loadBalanced-replicaSet-errors.yml
|
1422
1510
|
- spec/spec_tests/data/seed_list_discovery/load-balanced/loadBalanced-true-multiple-hosts.yml
|
1423
1511
|
- spec/spec_tests/data/seed_list_discovery/load-balanced/loadBalanced-true-txt.yml
|
1512
|
+
- spec/spec_tests/data/seed_list_discovery/load-balanced/srvMaxHosts-conflicts_with_loadBalanced-true-txt.yml
|
1513
|
+
- spec/spec_tests/data/seed_list_discovery/load-balanced/srvMaxHosts-conflicts_with_loadBalanced-true.yml
|
1514
|
+
- spec/spec_tests/data/seed_list_discovery/load-balanced/srvMaxHosts-zero-txt.yml
|
1515
|
+
- spec/spec_tests/data/seed_list_discovery/load-balanced/srvMaxHosts-zero.yml
|
1424
1516
|
- spec/spec_tests/data/seed_list_discovery/replica-set/direct-connection-false.yml
|
1425
1517
|
- spec/spec_tests/data/seed_list_discovery/replica-set/direct-connection-true.yml
|
1426
1518
|
- spec/spec_tests/data/seed_list_discovery/replica-set/encoded-userinfo-and-db.yml
|
@@ -1439,6 +1531,14 @@ files:
|
|
1439
1531
|
- spec/spec_tests/data/seed_list_discovery/replica-set/parent-part-mismatch5.yml
|
1440
1532
|
- spec/spec_tests/data/seed_list_discovery/replica-set/returned-parent-too-short.yml
|
1441
1533
|
- spec/spec_tests/data/seed_list_discovery/replica-set/returned-parent-wrong.yml
|
1534
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/srv-service-name.yml
|
1535
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/srvMaxHosts-conflicts_with_replicaSet-txt.yml
|
1536
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/srvMaxHosts-conflicts_with_replicaSet.yml
|
1537
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/srvMaxHosts-equal_to_srv_records.yml
|
1538
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/srvMaxHosts-greater_than_srv_records.yml
|
1539
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/srvMaxHosts-less_than_srv_records.yml
|
1540
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/srvMaxHosts-zero-txt.yml
|
1541
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/srvMaxHosts-zero.yml
|
1442
1542
|
- spec/spec_tests/data/seed_list_discovery/replica-set/two-results-default-port.yml
|
1443
1543
|
- spec/spec_tests/data/seed_list_discovery/replica-set/two-results-nonstandard-port.yml
|
1444
1544
|
- spec/spec_tests/data/seed_list_discovery/replica-set/two-txt-records.yml
|
@@ -1450,6 +1550,10 @@ files:
|
|
1450
1550
|
- spec/spec_tests/data/seed_list_discovery/replica-set/uri-with-auth.yml
|
1451
1551
|
- spec/spec_tests/data/seed_list_discovery/replica-set/uri-with-port.yml
|
1452
1552
|
- spec/spec_tests/data/seed_list_discovery/replica-set/uri-with-two-hosts.yml
|
1553
|
+
- spec/spec_tests/data/seed_list_discovery/sharded/srvMaxHosts-equal_to_srv_records.yml
|
1554
|
+
- spec/spec_tests/data/seed_list_discovery/sharded/srvMaxHosts-greater_than_srv_records.yml
|
1555
|
+
- spec/spec_tests/data/seed_list_discovery/sharded/srvMaxHosts-less_than_srv_records.yml
|
1556
|
+
- spec/spec_tests/data/seed_list_discovery/sharded/srvMaxHosts-zero.yml
|
1453
1557
|
- spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/Nearest.yml
|
1454
1558
|
- spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/Nearest_multiple.yml
|
1455
1559
|
- spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/Nearest_non_matching.yml
|
@@ -1482,6 +1586,8 @@ files:
|
|
1482
1586
|
- spec/spec_tests/data/server_selection/Sharded/read/SecondaryPreferred.yml
|
1483
1587
|
- spec/spec_tests/data/server_selection/Single/read/SecondaryPreferred.yml
|
1484
1588
|
- spec/spec_tests/data/server_selection/Unknown/read/SecondaryPreferred.yml
|
1589
|
+
- spec/spec_tests/data/server_selection/Unknown/read/ghost.yml
|
1590
|
+
- spec/spec_tests/data/server_selection/Unknown/write/ghost.yml
|
1485
1591
|
- spec/spec_tests/data/server_selection_rtt/first_value.yml
|
1486
1592
|
- spec/spec_tests/data/server_selection_rtt/first_value_zero.yml
|
1487
1593
|
- spec/spec_tests/data/server_selection_rtt/value_test_1.yml
|
@@ -1489,6 +1595,7 @@ files:
|
|
1489
1595
|
- spec/spec_tests/data/server_selection_rtt/value_test_3.yml
|
1490
1596
|
- spec/spec_tests/data/server_selection_rtt/value_test_4.yml
|
1491
1597
|
- spec/spec_tests/data/server_selection_rtt/value_test_5.yml
|
1598
|
+
- spec/spec_tests/data/sessions_unified/driver-sessions-server-support.yml
|
1492
1599
|
- spec/spec_tests/data/sessions_unified/snapshot-sessions-not-supported-client-error.yml
|
1493
1600
|
- spec/spec_tests/data/sessions_unified/snapshot-sessions-not-supported-server-error.yml
|
1494
1601
|
- spec/spec_tests/data/sessions_unified/snapshot-sessions-unsupported-ops.yml
|
@@ -1535,7 +1642,10 @@ files:
|
|
1535
1642
|
- spec/spec_tests/data/transactions_api/commit.yml
|
1536
1643
|
- spec/spec_tests/data/transactions_api/transaction-options.yml
|
1537
1644
|
- spec/spec_tests/data/transactions_unified/mongos-unpin.yml
|
1645
|
+
- spec/spec_tests/data/unified/invalid/expectedEventsForClient-ignoreExtraEvents-type.yml
|
1538
1646
|
- spec/spec_tests/data/unified/valid-fail/operation-failure.yml
|
1647
|
+
- spec/spec_tests/data/unified/valid-fail/operation-unsupported.yml
|
1648
|
+
- spec/spec_tests/data/unified/valid-pass/expectedEventsForClient-ignoreExtraEvents.yml
|
1539
1649
|
- spec/spec_tests/data/unified/valid-pass/poc-change-streams.yml
|
1540
1650
|
- spec/spec_tests/data/unified/valid-pass/poc-command-monitoring.yml
|
1541
1651
|
- spec/spec_tests/data/unified/valid-pass/poc-crud.yml
|
@@ -1554,6 +1664,7 @@ files:
|
|
1554
1664
|
- spec/spec_tests/data/uri_options/read-preference-options.yml
|
1555
1665
|
- spec/spec_tests/data/uri_options/ruby-auth-options.yml
|
1556
1666
|
- spec/spec_tests/data/uri_options/ruby-connection-options.yml
|
1667
|
+
- spec/spec_tests/data/uri_options/srv-options.yml
|
1557
1668
|
- spec/spec_tests/data/uri_options/tls-options.yml
|
1558
1669
|
- spec/spec_tests/data/versioned_api/crud-api-version-1-strict.yml
|
1559
1670
|
- spec/spec_tests/data/versioned_api/crud-api-version-1.yml
|
@@ -1568,7 +1679,9 @@ files:
|
|
1568
1679
|
- spec/spec_tests/read_write_concern_document_spec.rb
|
1569
1680
|
- spec/spec_tests/read_write_concern_operaton_spec.rb
|
1570
1681
|
- spec/spec_tests/retryable_reads_spec.rb
|
1682
|
+
- spec/spec_tests/retryable_reads_unified_spec.rb
|
1571
1683
|
- spec/spec_tests/retryable_writes_spec.rb
|
1684
|
+
- spec/spec_tests/retryable_writes_unified_spec.rb
|
1572
1685
|
- spec/spec_tests/sdam_integration_spec.rb
|
1573
1686
|
- spec/spec_tests/sdam_monitoring_spec.rb
|
1574
1687
|
- spec/spec_tests/sdam_spec.rb
|
@@ -1626,32 +1739,47 @@ files:
|
|
1626
1739
|
- spec/support/common_shortcuts.rb
|
1627
1740
|
- spec/support/constraints.rb
|
1628
1741
|
- spec/support/crypt.rb
|
1742
|
+
- spec/support/crypt/corpus/corpus-encrypted.json
|
1629
1743
|
- spec/support/crypt/corpus/corpus-key-aws.json
|
1744
|
+
- spec/support/crypt/corpus/corpus-key-azure.json
|
1745
|
+
- spec/support/crypt/corpus/corpus-key-gcp.json
|
1746
|
+
- spec/support/crypt/corpus/corpus-key-kmip.json
|
1630
1747
|
- spec/support/crypt/corpus/corpus-key-local.json
|
1631
1748
|
- spec/support/crypt/corpus/corpus-schema.json
|
1632
1749
|
- spec/support/crypt/corpus/corpus.json
|
1633
|
-
- spec/support/crypt/corpus/corpus_encrypted.json
|
1634
1750
|
- spec/support/crypt/data_keys/key_document_aws.json
|
1751
|
+
- spec/support/crypt/data_keys/key_document_azure.json
|
1752
|
+
- spec/support/crypt/data_keys/key_document_gcp.json
|
1753
|
+
- spec/support/crypt/data_keys/key_document_kmip.json
|
1635
1754
|
- spec/support/crypt/data_keys/key_document_local.json
|
1755
|
+
- spec/support/crypt/encryptedFields.json
|
1636
1756
|
- spec/support/crypt/external/external-key.json
|
1637
1757
|
- spec/support/crypt/external/external-schema.json
|
1758
|
+
- spec/support/crypt/keys/key1-document.json
|
1638
1759
|
- spec/support/crypt/limits/limits-doc.json
|
1639
1760
|
- spec/support/crypt/limits/limits-key.json
|
1640
1761
|
- spec/support/crypt/limits/limits-schema.json
|
1641
1762
|
- spec/support/crypt/schema_maps/schema_map_aws.json
|
1642
1763
|
- spec/support/crypt/schema_maps/schema_map_aws_key_alt_names.json
|
1764
|
+
- spec/support/crypt/schema_maps/schema_map_azure.json
|
1765
|
+
- spec/support/crypt/schema_maps/schema_map_azure_key_alt_names.json
|
1766
|
+
- spec/support/crypt/schema_maps/schema_map_gcp.json
|
1767
|
+
- spec/support/crypt/schema_maps/schema_map_gcp_key_alt_names.json
|
1768
|
+
- spec/support/crypt/schema_maps/schema_map_kmip.json
|
1769
|
+
- spec/support/crypt/schema_maps/schema_map_kmip_key_alt_names.json
|
1643
1770
|
- spec/support/crypt/schema_maps/schema_map_local.json
|
1644
1771
|
- spec/support/crypt/schema_maps/schema_map_local_key_alt_names.json
|
1645
1772
|
- spec/support/dns.rb
|
1646
1773
|
- spec/support/json_ext_formatter.rb
|
1647
1774
|
- spec/support/keyword_struct.rb
|
1648
1775
|
- spec/support/local_resource_registry.rb
|
1776
|
+
- spec/support/macros.rb
|
1649
1777
|
- spec/support/matchers.rb
|
1778
|
+
- spec/support/mongos_macros.rb
|
1650
1779
|
- spec/support/monitoring_ext.rb
|
1651
1780
|
- spec/support/ocsp
|
1652
1781
|
- spec/support/primary_socket.rb
|
1653
1782
|
- spec/support/sdam_formatter_integration.rb
|
1654
|
-
- spec/support/session_registry.rb
|
1655
1783
|
- spec/support/shared/app_metadata.rb
|
1656
1784
|
- spec/support/shared/auth_context.rb
|
1657
1785
|
- spec/support/shared/protocol.rb
|
@@ -1662,14 +1790,14 @@ files:
|
|
1662
1790
|
- spec/support/spec_setup.rb
|
1663
1791
|
- spec/support/using_hash.rb
|
1664
1792
|
- spec/support/utils.rb
|
1665
|
-
homepage: https://
|
1793
|
+
homepage: https://mongodb.com/docs/ruby-driver/
|
1666
1794
|
licenses:
|
1667
1795
|
- Apache-2.0
|
1668
1796
|
metadata:
|
1669
1797
|
bug_tracker_uri: https://jira.mongodb.org/projects/RUBY
|
1670
1798
|
changelog_uri: https://github.com/mongodb/mongo-ruby-driver/releases
|
1671
|
-
documentation_uri: https://
|
1672
|
-
homepage_uri: https://
|
1799
|
+
documentation_uri: https://mongodb.com/docs/ruby-driver/
|
1800
|
+
homepage_uri: https://mongodb.com/docs/ruby-driver/
|
1673
1801
|
source_code_uri: https://github.com/mongodb/mongo-ruby-driver
|
1674
1802
|
post_install_message:
|
1675
1803
|
rdoc_options: []
|
@@ -1682,9 +1810,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
1682
1810
|
version: '2.5'
|
1683
1811
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
1684
1812
|
requirements:
|
1685
|
-
- - "
|
1813
|
+
- - ">"
|
1686
1814
|
- !ruby/object:Gem::Version
|
1687
|
-
version:
|
1815
|
+
version: 1.3.1
|
1688
1816
|
requirements: []
|
1689
1817
|
rubyforge_project:
|
1690
1818
|
rubygems_version: 2.7.6.2
|
@@ -1692,1147 +1820,1266 @@ signing_key:
|
|
1692
1820
|
specification_version: 4
|
1693
1821
|
summary: Ruby driver for MongoDB
|
1694
1822
|
test_files:
|
1695
|
-
- spec/mongo/session_spec.rb
|
1696
|
-
- spec/mongo/socket_spec.rb
|
1697
|
-
- spec/mongo/dbref_spec.rb
|
1698
|
-
- spec/mongo/cluster_spec.rb
|
1699
|
-
- spec/mongo/auth/stringprep_spec.rb
|
1700
|
-
- spec/mongo/auth/aws/request_region_spec.rb
|
1701
|
-
- spec/mongo/auth/aws/request_spec.rb
|
1702
|
-
- spec/mongo/auth/scram_negotiation_spec.rb
|
1703
|
-
- spec/mongo/auth/ldap/conversation_spec.rb
|
1704
|
-
- spec/mongo/auth/scram_spec.rb
|
1705
|
-
- spec/mongo/auth/cr_spec.rb
|
1706
|
-
- spec/mongo/auth/stringprep/profiles/sasl_spec.rb
|
1707
|
-
- spec/mongo/auth/ldap_spec.rb
|
1708
|
-
- spec/mongo/auth/user_spec.rb
|
1709
|
-
- spec/mongo/auth/scram/conversation_spec.rb
|
1710
|
-
- spec/mongo/auth/x509/conversation_spec.rb
|
1711
|
-
- spec/mongo/auth/gssapi/conversation_spec.rb
|
1712
|
-
- spec/mongo/auth/x509_spec.rb
|
1713
|
-
- spec/mongo/auth/scram256/conversation_spec.rb
|
1714
|
-
- spec/mongo/auth/user/view_spec.rb
|
1715
|
-
- spec/mongo/auth/invalid_mechanism_spec.rb
|
1716
|
-
- spec/mongo/collection/view_spec.rb
|
1717
|
-
- spec/mongo/collection/view/explainable_spec.rb
|
1718
|
-
- spec/mongo/collection/view/map_reduce_spec.rb
|
1719
|
-
- spec/mongo/collection/view/immutable_spec.rb
|
1720
|
-
- spec/mongo/collection/view/writable_spec.rb
|
1721
|
-
- spec/mongo/collection/view/change_stream_resume_spec.rb
|
1722
|
-
- spec/mongo/collection/view/builder/op_query_spec.rb
|
1723
|
-
- spec/mongo/collection/view/builder/find_command_spec.rb
|
1724
|
-
- spec/mongo/collection/view/aggregation_spec.rb
|
1725
|
-
- spec/mongo/collection/view/readable_spec.rb
|
1726
|
-
- spec/mongo/collection/view/iterable_spec.rb
|
1727
|
-
- spec/mongo/collection/view/change_stream_spec.rb
|
1728
|
-
- spec/mongo/grid/file/info_spec.rb
|
1729
|
-
- spec/mongo/grid/file/chunk_spec.rb
|
1730
|
-
- spec/mongo/grid/stream_spec.rb
|
1731
|
-
- spec/mongo/grid/fs_bucket_spec.rb
|
1732
|
-
- spec/mongo/grid/stream/write_spec.rb
|
1733
|
-
- spec/mongo/grid/stream/read_spec.rb
|
1734
|
-
- spec/mongo/grid/file_spec.rb
|
1735
|
-
- spec/mongo/database_spec.rb
|
1736
|
-
- spec/mongo/uri_spec.rb
|
1737
|
-
- spec/mongo/protocol/delete_spec.rb
|
1738
|
-
- spec/mongo/protocol/get_more_spec.rb
|
1739
|
-
- spec/mongo/protocol/query_spec.rb
|
1740
|
-
- spec/mongo/protocol/msg_spec.rb
|
1741
|
-
- spec/mongo/protocol/registry_spec.rb
|
1742
|
-
- spec/mongo/protocol/insert_spec.rb
|
1743
|
-
- spec/mongo/protocol/reply_spec.rb
|
1744
|
-
- spec/mongo/protocol/kill_cursors_spec.rb
|
1745
|
-
- spec/mongo/protocol/update_spec.rb
|
1746
|
-
- spec/mongo/protocol/compressed_spec.rb
|
1747
|
-
- spec/mongo/srv/monitor_spec.rb
|
1748
|
-
- spec/mongo/srv/result_spec.rb
|
1749
|
-
- spec/mongo/cluster/topology/replica_set_spec.rb
|
1750
|
-
- spec/mongo/cluster/topology/unknown_spec.rb
|
1751
|
-
- spec/mongo/cluster/topology/sharded_spec.rb
|
1752
|
-
- spec/mongo/cluster/topology/single_spec.rb
|
1753
|
-
- spec/mongo/cluster/topology_spec.rb
|
1754
|
-
- spec/mongo/cluster/periodic_executor_spec.rb
|
1755
|
-
- spec/mongo/cluster/socket_reaper_spec.rb
|
1756
|
-
- spec/mongo/cluster/cursor_reaper_spec.rb
|
1757
|
-
- spec/mongo/session_transaction_spec.rb
|
1758
|
-
- spec/mongo/cursor_spec.rb
|
1759
|
-
- spec/mongo/collection_crud_spec.rb
|
1760
|
-
- spec/mongo/semaphore_spec.rb
|
1761
|
-
- spec/mongo/bson_spec.rb
|
1762
|
-
- spec/mongo/collection_ddl_spec.rb
|
1763
|
-
- spec/mongo/crypt/binary_spec.rb
|
1764
|
-
- spec/mongo/crypt/helpers/mongo_crypt_spec_helper.rb
|
1765
|
-
- spec/mongo/crypt/binding/mongocrypt_spec.rb
|
1766
|
-
- spec/mongo/crypt/binding/binary_spec.rb
|
1767
|
-
- spec/mongo/crypt/binding/context_spec.rb
|
1768
|
-
- spec/mongo/crypt/binding/helpers_spec.rb
|
1769
|
-
- spec/mongo/crypt/binding/status_spec.rb
|
1770
|
-
- spec/mongo/crypt/binding/version_spec.rb
|
1771
|
-
- spec/mongo/crypt/explicit_decryption_context_spec.rb
|
1772
|
-
- spec/mongo/crypt/auto_decryption_context_spec.rb
|
1773
|
-
- spec/mongo/crypt/handle_spec.rb
|
1774
|
-
- spec/mongo/crypt/data_key_context_spec.rb
|
1775
|
-
- spec/mongo/crypt/auto_encrypter_spec.rb
|
1776
|
-
- spec/mongo/crypt/encryption_io_spec.rb
|
1777
|
-
- spec/mongo/crypt/status_spec.rb
|
1778
|
-
- spec/mongo/crypt/binding_unloaded_spec.rb
|
1779
|
-
- spec/mongo/crypt/auto_encryption_context_spec.rb
|
1780
|
-
- spec/mongo/crypt/explicit_encryption_context_spec.rb
|
1781
|
-
- spec/mongo/cursor/builder/op_get_more_spec.rb
|
1782
|
-
- spec/mongo/cursor/builder/get_more_command_spec.rb
|
1783
|
-
- spec/mongo/address/ipv4_spec.rb
|
1784
|
-
- spec/mongo/address/ipv6_spec.rb
|
1785
|
-
- spec/mongo/address/unix_spec.rb
|
1786
|
-
- spec/mongo/address/validator_spec.rb
|
1787
|
-
- spec/mongo/client_spec.rb
|
1788
|
-
- spec/mongo/uri/srv_protocol_spec.rb
|
1789
|
-
- spec/mongo/session/session_pool_spec.rb
|
1790
|
-
- spec/mongo/session/server_session_spec.rb
|
1791
|
-
- spec/mongo/address_spec.rb
|
1792
|
-
- spec/mongo/event/subscriber_spec.rb
|
1793
|
-
- spec/mongo/event/publisher_spec.rb
|
1794
|
-
- spec/mongo/lint_spec.rb
|
1795
|
-
- spec/mongo/auth_spec.rb
|
1796
|
-
- spec/mongo/index/view_spec.rb
|
1797
|
-
- spec/mongo/client_encryption_spec.rb
|
1798
|
-
- spec/mongo/server_selector_spec.rb
|
1799
|
-
- spec/mongo/operation/collections_info_spec.rb
|
1800
|
-
- spec/mongo/operation/delete_spec.rb
|
1801
|
-
- spec/mongo/operation/get_more_spec.rb
|
1802
|
-
- spec/mongo/operation/indexes_spec.rb
|
1803
|
-
- spec/mongo/operation/insert/bulk_spec.rb
|
1804
|
-
- spec/mongo/operation/insert/op_msg_spec.rb
|
1805
|
-
- spec/mongo/operation/insert/command_spec.rb
|
1806
|
-
- spec/mongo/operation/map_reduce_spec.rb
|
1807
|
-
- spec/mongo/operation/delete/bulk_spec.rb
|
1808
|
-
- spec/mongo/operation/delete/op_msg_spec.rb
|
1809
|
-
- spec/mongo/operation/delete/command_spec.rb
|
1810
|
-
- spec/mongo/operation/aggregate_spec.rb
|
1811
|
-
- spec/mongo/operation/update_user_spec.rb
|
1812
|
-
- spec/mongo/operation/limited_spec.rb
|
1813
|
-
- spec/mongo/operation/create_index_spec.rb
|
1814
|
-
- spec/mongo/operation/drop_index_spec.rb
|
1815
|
-
- spec/mongo/operation/read_preference_legacy_spec.rb
|
1816
|
-
- spec/mongo/operation/read_preference_op_msg_spec.rb
|
1817
|
-
- spec/mongo/operation/create_user_spec.rb
|
1818
|
-
- spec/mongo/operation/result_spec.rb
|
1819
|
-
- spec/mongo/operation/insert_spec.rb
|
1820
|
-
- spec/mongo/operation/find/builder/modifiers_spec.rb
|
1821
|
-
- spec/mongo/operation/find/builder/flags_spec.rb
|
1822
|
-
- spec/mongo/operation/find/legacy_spec.rb
|
1823
|
-
- spec/mongo/operation/command_spec.rb
|
1824
|
-
- spec/mongo/operation/specifiable_spec.rb
|
1825
|
-
- spec/mongo/operation/aggregate/result_spec.rb
|
1826
|
-
- spec/mongo/operation/kill_cursors_spec.rb
|
1827
|
-
- spec/mongo/operation/update/bulk_spec.rb
|
1828
|
-
- spec/mongo/operation/update/op_msg_spec.rb
|
1829
|
-
- spec/mongo/operation/update/command_spec.rb
|
1830
|
-
- spec/mongo/operation/update_spec.rb
|
1831
|
-
- spec/mongo/operation/remove_user_spec.rb
|
1832
|
-
- spec/mongo/monitoring/event/topology_closed_spec.rb
|
1833
|
-
- spec/mongo/monitoring/event/cmap/connection_check_out_failed_spec.rb
|
1834
|
-
- spec/mongo/monitoring/event/cmap/connection_checked_out_spec.rb
|
1835
|
-
- spec/mongo/monitoring/event/cmap/connection_created_spec.rb
|
1836
|
-
- spec/mongo/monitoring/event/cmap/pool_created_spec.rb
|
1837
|
-
- spec/mongo/monitoring/event/cmap/connection_closed_spec.rb
|
1838
|
-
- spec/mongo/monitoring/event/cmap/connection_ready_spec.rb
|
1839
|
-
- spec/mongo/monitoring/event/cmap/pool_closed_spec.rb
|
1840
|
-
- spec/mongo/monitoring/event/cmap/connection_check_out_started_spec.rb
|
1841
|
-
- spec/mongo/monitoring/event/cmap/pool_cleared_spec.rb
|
1842
|
-
- spec/mongo/monitoring/event/cmap/connection_checked_in_spec.rb
|
1843
|
-
- spec/mongo/monitoring/event/topology_changed_spec.rb
|
1844
|
-
- spec/mongo/monitoring/event/command_started_spec.rb
|
1845
|
-
- spec/mongo/monitoring/event/server_heartbeat_succeeded_spec.rb
|
1846
|
-
- spec/mongo/monitoring/event/topology_opening_spec.rb
|
1847
|
-
- spec/mongo/monitoring/event/server_closed_spec.rb
|
1848
|
-
- spec/mongo/monitoring/event/command_failed_spec.rb
|
1849
|
-
- spec/mongo/monitoring/event/secure_spec.rb
|
1850
|
-
- spec/mongo/monitoring/event/server_opening_spec.rb
|
1851
|
-
- spec/mongo/monitoring/event/server_heartbeat_started_spec.rb
|
1852
|
-
- spec/mongo/monitoring/event/command_succeeded_spec.rb
|
1853
|
-
- spec/mongo/monitoring/event/server_heartbeat_failed_spec.rb
|
1854
|
-
- spec/mongo/monitoring/event/server_description_changed_spec.rb
|
1855
|
-
- spec/mongo/monitoring/command_log_subscriber_spec.rb
|
1856
|
-
- spec/mongo/server_spec.rb
|
1857
|
-
- spec/mongo/cluster_time_spec.rb
|
1858
|
-
- spec/mongo/tls_context_hooks_spec.rb
|
1859
|
-
- spec/mongo/monitoring_spec.rb
|
1860
|
-
- spec/mongo/distinguishing_semaphore_spec.rb
|
1861
|
-
- spec/mongo/retryable_spec.rb
|
1862
|
-
- spec/mongo/socket/ssl_spec.rb
|
1863
|
-
- spec/mongo/socket/unix_spec.rb
|
1864
|
-
- spec/mongo/socket/tcp_spec.rb
|
1865
|
-
- spec/mongo/caching_cursor_spec.rb
|
1866
|
-
- spec/mongo/query_cache_spec.rb
|
1867
|
-
- spec/mongo/bulk_write_spec.rb
|
1868
|
-
- spec/mongo/error/notable_spec.rb
|
1869
|
-
- spec/mongo/error/operation_failure_spec.rb
|
1870
|
-
- spec/mongo/error/parser_spec.rb
|
1871
|
-
- spec/mongo/error/bulk_write_error_spec.rb
|
1872
|
-
- spec/mongo/error/crypt_error_spec.rb
|
1873
|
-
- spec/mongo/error/max_bson_size_spec.rb
|
1874
|
-
- spec/mongo/error/no_server_available_spec.rb
|
1875
|
-
- spec/mongo/error/operation_failure_heavy_spec.rb
|
1876
|
-
- spec/mongo/error/unsupported_option_spec.rb
|
1877
|
-
- spec/mongo/query_cache_middleware_spec.rb
|
1878
|
-
- spec/mongo/utils_spec.rb
|
1879
|
-
- spec/mongo/write_concern_spec.rb
|
1880
|
-
- spec/mongo/logger_spec.rb
|
1881
|
-
- spec/mongo/write_concern/acknowledged_spec.rb
|
1882
|
-
- spec/mongo/write_concern/unacknowledged_spec.rb
|
1883
|
-
- spec/mongo/options/redacted_spec.rb
|
1884
|
-
- spec/mongo/server/monitor_spec.rb
|
1885
|
-
- spec/mongo/server/description_query_methods_spec.rb
|
1886
|
-
- spec/mongo/server/description_spec.rb
|
1887
|
-
- spec/mongo/server/app_metadata_spec.rb
|
1888
|
-
- spec/mongo/server/push_monitor_spec.rb
|
1889
|
-
- spec/mongo/server/connection_common_spec.rb
|
1890
|
-
- spec/mongo/server/connection_pool/populator_spec.rb
|
1891
|
-
- spec/mongo/server/description/features_spec.rb
|
1892
|
-
- spec/mongo/server/round_trip_time_averager_spec.rb
|
1893
|
-
- spec/mongo/server/monitor/app_metadata_spec.rb
|
1894
|
-
- spec/mongo/server/monitor/connection_spec.rb
|
1895
|
-
- spec/mongo/server/connection_auth_spec.rb
|
1896
|
-
- spec/mongo/server/connection_spec.rb
|
1897
|
-
- spec/mongo/server/connection_pool_spec.rb
|
1898
|
-
- spec/mongo/collection_spec.rb
|
1899
|
-
- spec/mongo/timeout_spec.rb
|
1900
|
-
- spec/mongo/bulk_write/unordered_combiner_spec.rb
|
1901
|
-
- spec/mongo/bulk_write/result_spec.rb
|
1902
|
-
- spec/mongo/bulk_write/ordered_combiner_spec.rb
|
1903
|
-
- spec/mongo/client_construction_spec.rb
|
1904
|
-
- spec/mongo/uri_option_parsing_spec.rb
|
1905
|
-
- spec/mongo/server_selector/nearest_spec.rb
|
1906
|
-
- spec/mongo/server_selector/primary_preferred_spec.rb
|
1907
|
-
- spec/mongo/server_selector/secondary_preferred_spec.rb
|
1908
|
-
- spec/mongo/server_selector/secondary_spec.rb
|
1909
|
-
- spec/mongo/server_selector/primary_spec.rb
|
1910
|
-
- spec/mongo/id_spec.rb
|
1911
|
-
- spec/README.aws-auth.md
|
1912
|
-
- spec/shared/LICENSE
|
1913
|
-
- spec/shared/bin/s3-upload
|
1914
|
-
- spec/shared/bin/s3-copy
|
1915
|
-
- spec/shared/bin/get-mongodb-download-url
|
1916
|
-
- spec/shared/share/haproxy-2.conf
|
1917
|
-
- spec/shared/share/haproxy-1.conf
|
1918
|
-
- spec/shared/share/Dockerfile.erb
|
1919
|
-
- spec/shared/lib/mrss/constraints.rb
|
1920
|
-
- spec/shared/lib/mrss/utils.rb
|
1921
1823
|
- spec/shared/lib/mrss/spec_organizer.rb
|
1824
|
+
- spec/shared/lib/mrss/event_subscriber.rb
|
1922
1825
|
- spec/shared/lib/mrss/lite_constraints.rb
|
1923
|
-
- spec/shared/lib/mrss/
|
1826
|
+
- spec/shared/lib/mrss/child_process_helper.rb
|
1827
|
+
- spec/shared/lib/mrss/session_registry_legacy.rb
|
1828
|
+
- spec/shared/lib/mrss/session_registry.rb
|
1829
|
+
- spec/shared/lib/mrss/utils.rb
|
1924
1830
|
- spec/shared/lib/mrss/docker_runner.rb
|
1831
|
+
- spec/shared/lib/mrss/constraints.rb
|
1832
|
+
- spec/shared/lib/mrss/server_version_registry.rb
|
1925
1833
|
- spec/shared/lib/mrss/cluster_config.rb
|
1926
|
-
- spec/shared/lib/mrss/child_process_helper.rb
|
1927
|
-
- spec/shared/lib/mrss/event_subscriber.rb
|
1928
1834
|
- spec/shared/shlib/server.sh
|
1929
1835
|
- spec/shared/shlib/distro.sh
|
1836
|
+
- spec/shared/shlib/config.sh
|
1930
1837
|
- spec/shared/shlib/set_env.sh
|
1931
|
-
- spec/
|
1932
|
-
- spec/
|
1933
|
-
- spec/
|
1934
|
-
- spec/
|
1935
|
-
- spec/
|
1936
|
-
- spec/
|
1937
|
-
- spec/
|
1938
|
-
- spec/support/shared/protocol.rb
|
1939
|
-
- spec/support/shared/scram_conversation.rb
|
1940
|
-
- spec/support/shared/auth_context.rb
|
1941
|
-
- spec/support/shared/app_metadata.rb
|
1942
|
-
- spec/support/constraints.rb
|
1943
|
-
- spec/support/keyword_struct.rb
|
1944
|
-
- spec/support/utils.rb
|
1945
|
-
- spec/support/spec_setup.rb
|
1946
|
-
- spec/support/json_ext_formatter.rb
|
1947
|
-
- spec/support/client_registry_macros.rb
|
1948
|
-
- spec/support/aws_utils/orchestrator.rb
|
1949
|
-
- spec/support/aws_utils/base.rb
|
1950
|
-
- spec/support/aws_utils/inspector.rb
|
1951
|
-
- spec/support/aws_utils/provisioner.rb
|
1952
|
-
- spec/support/session_registry.rb
|
1953
|
-
- spec/support/crypt/data_keys/key_document_aws.json
|
1954
|
-
- spec/support/crypt/data_keys/key_document_local.json
|
1955
|
-
- spec/support/crypt/limits/limits-doc.json
|
1956
|
-
- spec/support/crypt/limits/limits-schema.json
|
1957
|
-
- spec/support/crypt/limits/limits-key.json
|
1958
|
-
- spec/support/crypt/external/external-key.json
|
1959
|
-
- spec/support/crypt/external/external-schema.json
|
1960
|
-
- spec/support/crypt/corpus/corpus-key-local.json
|
1961
|
-
- spec/support/crypt/corpus/corpus-key-aws.json
|
1962
|
-
- spec/support/crypt/corpus/corpus.json
|
1963
|
-
- spec/support/crypt/corpus/corpus_encrypted.json
|
1964
|
-
- spec/support/crypt/corpus/corpus-schema.json
|
1965
|
-
- spec/support/crypt/schema_maps/schema_map_aws.json
|
1966
|
-
- spec/support/crypt/schema_maps/schema_map_local_key_alt_names.json
|
1967
|
-
- spec/support/crypt/schema_maps/schema_map_local.json
|
1968
|
-
- spec/support/crypt/schema_maps/schema_map_aws_key_alt_names.json
|
1969
|
-
- spec/support/crypt.rb
|
1970
|
-
- spec/support/monitoring_ext.rb
|
1971
|
-
- spec/support/common_shortcuts.rb
|
1972
|
-
- spec/support/sdam_formatter_integration.rb
|
1973
|
-
- spec/support/ocsp
|
1974
|
-
- spec/support/cluster_tools.rb
|
1975
|
-
- spec/support/background_thread_registry.rb
|
1976
|
-
- spec/support/certificates/multi-ca.crt
|
1977
|
-
- spec/support/certificates/crl_client_revoked.pem
|
1978
|
-
- spec/support/certificates/client-encrypted.key
|
1979
|
-
- spec/support/certificates/atlas-ocsp.crt
|
1980
|
-
- spec/support/certificates/client-second-level.key
|
1981
|
-
- spec/support/certificates/client-x509.key
|
1982
|
-
- spec/support/certificates/README.md
|
1983
|
-
- spec/support/certificates/server-second-level.pem
|
1984
|
-
- spec/support/certificates/client-second-level.pem
|
1985
|
-
- spec/support/certificates/python-ca.crt
|
1986
|
-
- spec/support/certificates/ca.crt
|
1987
|
-
- spec/support/certificates/server-second-level.key
|
1988
|
-
- spec/support/certificates/server-second-level.crt
|
1989
|
-
- spec/support/certificates/client.crt
|
1990
|
-
- spec/support/certificates/client-second-level.crt
|
1991
|
-
- spec/support/certificates/client-int.crt
|
1992
|
-
- spec/support/certificates/client-second-level-bundle.pem
|
1993
|
-
- spec/support/certificates/client.key
|
1994
|
-
- spec/support/certificates/client-x509.crt
|
1995
|
-
- spec/support/certificates/server-int.crt
|
1996
|
-
- spec/support/certificates/client-x509.pem
|
1997
|
-
- spec/support/certificates/server-second-level-bundle.pem
|
1998
|
-
- spec/support/certificates/crl.pem
|
1999
|
-
- spec/support/certificates/client.pem
|
2000
|
-
- spec/support/certificates/server.pem
|
2001
|
-
- spec/support/certificates/atlas-ocsp-ca.crt
|
2002
|
-
- spec/support/aws_utils.rb
|
2003
|
-
- spec/support/local_resource_registry.rb
|
2004
|
-
- spec/support/spec_config.rb
|
2005
|
-
- spec/support/primary_socket.rb
|
2006
|
-
- spec/README.md
|
2007
|
-
- spec/NOTES.aws-auth.md
|
2008
|
-
- spec/spec_helper.rb
|
1838
|
+
- spec/shared/LICENSE
|
1839
|
+
- spec/shared/bin/s3-copy
|
1840
|
+
- spec/shared/bin/s3-upload
|
1841
|
+
- spec/shared/bin/get-mongodb-download-url
|
1842
|
+
- spec/shared/share/haproxy-2.conf
|
1843
|
+
- spec/shared/share/Dockerfile.erb
|
1844
|
+
- spec/shared/share/haproxy-1.conf
|
2009
1845
|
- spec/kerberos/kerberos_spec.rb
|
2010
|
-
- spec/runners/unified.rb
|
2011
|
-
- spec/runners/connection_string.rb
|
2012
|
-
- spec/runners/cmap/verifier.rb
|
2013
|
-
- spec/runners/sdam.rb
|
2014
|
-
- spec/runners/crud.rb
|
2015
|
-
- spec/runners/transactions.rb
|
2016
|
-
- spec/runners/read_write_concern_document.rb
|
2017
|
-
- spec/runners/server_selection.rb
|
2018
|
-
- spec/runners/server_selection_rtt.rb
|
2019
|
-
- spec/runners/change_streams/outcome.rb
|
2020
|
-
- spec/runners/change_streams/spec.rb
|
2021
|
-
- spec/runners/change_streams/test.rb
|
2022
|
-
- spec/runners/gridfs.rb
|
2023
|
-
- spec/runners/transactions/operation.rb
|
2024
|
-
- spec/runners/transactions/spec.rb
|
2025
|
-
- spec/runners/transactions/test.rb
|
2026
|
-
- spec/runners/command_monitoring.rb
|
2027
|
-
- spec/runners/crud/requirement.rb
|
2028
|
-
- spec/runners/crud/verifier.rb
|
2029
|
-
- spec/runners/crud/outcome.rb
|
2030
|
-
- spec/runners/crud/context.rb
|
2031
|
-
- spec/runners/crud/operation.rb
|
2032
|
-
- spec/runners/crud/test_base.rb
|
2033
|
-
- spec/runners/crud/spec.rb
|
2034
|
-
- spec/runners/crud/test.rb
|
2035
|
-
- spec/runners/unified/error.rb
|
2036
|
-
- spec/runners/unified/exceptions.rb
|
2037
|
-
- spec/runners/unified/entity_map.rb
|
2038
|
-
- spec/runners/unified/grid_fs_operations.rb
|
2039
|
-
- spec/runners/unified/ddl_operations.rb
|
2040
|
-
- spec/runners/unified/support_operations.rb
|
2041
|
-
- spec/runners/unified/test_group.rb
|
2042
|
-
- spec/runners/unified/assertions.rb
|
2043
|
-
- spec/runners/unified/event_subscriber.rb
|
2044
|
-
- spec/runners/unified/change_stream_operations.rb
|
2045
|
-
- spec/runners/unified/crud_operations.rb
|
2046
|
-
- spec/runners/unified/test.rb
|
2047
|
-
- spec/runners/auth.rb
|
2048
|
-
- spec/runners/cmap.rb
|
2049
|
-
- spec/runners/sdam/verifier.rb
|
2050
|
-
- spec/solo/clean_exit_spec.rb
|
2051
|
-
- spec/integration/ocsp_verifier_spec.rb
|
2052
|
-
- spec/integration/step_down_spec.rb
|
2053
|
-
- spec/integration/versioned_api_examples_spec.rb
|
2054
|
-
- spec/integration/client_update_spec.rb
|
2055
|
-
- spec/integration/cursor_pinning_spec.rb
|
2056
|
-
- spec/integration/grid_fs_bucket_spec.rb
|
2057
|
-
- spec/integration/get_more_spec.rb
|
2058
|
-
- spec/integration/size_limit_spec.rb
|
2059
|
-
- spec/integration/mmapv1_spec.rb
|
2060
|
-
- spec/integration/secondary_reads_spec.rb
|
2061
|
-
- spec/integration/bson_symbol_spec.rb
|
2062
|
-
- spec/integration/bulk_write_error_message_spec.rb
|
2063
|
-
- spec/integration/sdam_error_handling_spec.rb
|
2064
|
-
- spec/integration/read_preference_spec.rb
|
2065
|
-
- spec/integration/retryable_writes/shared/supports_retries.rb
|
2066
|
-
- spec/integration/retryable_writes/shared/adds_diagnostics.rb
|
2067
|
-
- spec/integration/retryable_writes/shared/only_supports_legacy_retries.rb
|
2068
|
-
- spec/integration/retryable_writes/shared/performs_modern_retries.rb
|
2069
|
-
- spec/integration/retryable_writes/shared/performs_legacy_retries.rb
|
2070
|
-
- spec/integration/retryable_writes/shared/performs_no_retries.rb
|
2071
|
-
- spec/integration/retryable_writes/shared/supports_legacy_retries.rb
|
2072
|
-
- spec/integration/retryable_writes/shared/does_not_support_retries.rb
|
2073
|
-
- spec/integration/retryable_writes/shared/supports_modern_retries.rb
|
2074
|
-
- spec/integration/retryable_writes/retryable_writes_36_and_older_spec.rb
|
2075
|
-
- spec/integration/retryable_writes/retryable_writes_40_and_newer_spec.rb
|
2076
|
-
- spec/integration/transactions_examples_spec.rb
|
2077
|
-
- spec/integration/crud_spec.rb
|
2078
|
-
- spec/integration/srv_monitoring_spec.rb
|
2079
|
-
- spec/integration/server_description_spec.rb
|
2080
|
-
- spec/integration/query_cache_transactions_spec.rb
|
2081
|
-
- spec/integration/connect_single_rs_name_spec.rb
|
2082
|
-
- spec/integration/mongos_pinning_spec.rb
|
2083
|
-
- spec/integration/read_concern_spec.rb
|
2084
|
-
- spec/integration/zstd_compression_spec.rb
|
2085
|
-
- spec/integration/bulk_insert_spec.rb
|
2086
|
-
- spec/integration/map_reduce_spec.rb
|
2087
|
-
- spec/integration/operation_failure_code_spec.rb
|
2088
|
-
- spec/integration/server_monitor_spec.rb
|
2089
|
-
- spec/integration/client_spec.rb
|
2090
|
-
- spec/integration/retryable_errors_spec.rb
|
2091
|
-
- spec/integration/srv_spec.rb
|
2092
|
-
- spec/integration/check_clean_slate_spec.rb
|
2093
|
-
- spec/integration/operation_failure_message_spec.rb
|
2094
|
-
- spec/integration/time_zone_querying_spec.rb
|
2095
|
-
- spec/integration/retryable_writes_errors_spec.rb
|
2096
|
-
- spec/integration/command_monitoring_spec.rb
|
2097
|
-
- spec/integration/client_construction_aws_auth_spec.rb
|
2098
|
-
- spec/integration/x509_auth_spec.rb
|
2099
|
-
- spec/integration/auth_spec.rb
|
2100
|
-
- spec/integration/server_selector_spec.rb
|
2101
|
-
- spec/integration/fork_reconnect_spec.rb
|
2102
|
-
- spec/integration/heartbeat_events_spec.rb
|
2103
|
-
- spec/integration/connection_pool_populator_spec.rb
|
2104
|
-
- spec/integration/server_spec.rb
|
2105
|
-
- spec/integration/docs_examples_spec.rb
|
2106
|
-
- spec/integration/ocsp_verifier_cache_spec.rb
|
2107
|
-
- spec/integration/client_authentication_options_spec.rb
|
2108
|
-
- spec/integration/client_connectivity_spec.rb
|
2109
|
-
- spec/integration/sdam_prose_spec.rb
|
2110
|
-
- spec/integration/shell_examples_spec.rb
|
2111
|
-
- spec/integration/collection_indexes_prose_spec.rb
|
2112
|
-
- spec/integration/ssl_uri_options_spec.rb
|
2113
|
-
- spec/integration/zlib_compression_spec.rb
|
2114
|
-
- spec/integration/cursor_reaping_spec.rb
|
2115
|
-
- spec/integration/snappy_compression_spec.rb
|
2116
|
-
- spec/integration/query_cache_spec.rb
|
2117
|
-
- spec/integration/bulk_write_spec.rb
|
2118
|
-
- spec/integration/truncated_utf8_spec.rb
|
2119
|
-
- spec/integration/command_spec.rb
|
2120
|
-
- spec/integration/client_side_encryption/bson_size_limit_spec.rb
|
2121
|
-
- spec/integration/client_side_encryption/auto_encryption_command_monitoring_spec.rb
|
2122
|
-
- spec/integration/client_side_encryption/auto_encryption_mongocryptd_spawn_spec.rb
|
2123
|
-
- spec/integration/client_side_encryption/bypass_mongocryptd_spawn_spec.rb
|
2124
|
-
- spec/integration/client_side_encryption/explicit_encryption_spec.rb
|
2125
|
-
- spec/integration/client_side_encryption/views_spec.rb
|
2126
|
-
- spec/integration/client_side_encryption/auto_encryption_old_wire_version_spec.rb
|
2127
|
-
- spec/integration/client_side_encryption/auto_encryption_bulk_writes_spec.rb
|
2128
|
-
- spec/integration/client_side_encryption/external_key_vault_spec.rb
|
2129
|
-
- spec/integration/client_side_encryption/custom_endpoint_spec.rb
|
2130
|
-
- spec/integration/client_side_encryption/corpus_spec.rb
|
2131
|
-
- spec/integration/client_side_encryption/client_close_spec.rb
|
2132
|
-
- spec/integration/client_side_encryption/auto_encryption_reconnect_spec.rb
|
2133
|
-
- spec/integration/client_side_encryption/data_key_spec.rb
|
2134
|
-
- spec/integration/client_side_encryption/auto_encryption_spec.rb
|
2135
|
-
- spec/integration/server_selection_spec.rb
|
2136
|
-
- spec/integration/find_options_spec.rb
|
2137
|
-
- spec/integration/ocsp_connectivity_spec.rb
|
2138
|
-
- spec/integration/error_detection_spec.rb
|
2139
|
-
- spec/integration/aws_auth_request_spec.rb
|
2140
|
-
- spec/integration/change_stream_examples_spec.rb
|
2141
|
-
- spec/integration/reconnect_spec.rb
|
2142
|
-
- spec/integration/transaction_pinning_spec.rb
|
2143
|
-
- spec/integration/connection_spec.rb
|
2144
|
-
- spec/integration/awaited_ismaster_spec.rb
|
2145
|
-
- spec/integration/transactions_api_examples_spec.rb
|
2146
|
-
- spec/integration/client_construction_spec.rb
|
2147
|
-
- spec/integration/aws_credentials_retriever_spec.rb
|
2148
|
-
- spec/integration/sdam_events_spec.rb
|
2149
|
-
- spec/integration/change_stream_spec.rb
|
2150
|
-
- spec/stress/connection_pool_stress_spec.rb
|
2151
|
-
- spec/stress/cleanup_spec.rb
|
2152
|
-
- spec/stress/push_monitor_close_spec.rb
|
2153
|
-
- spec/stress/connection_pool_timing_spec.rb
|
2154
|
-
- spec/stress/fork_reconnect_stress_spec.rb
|
2155
|
-
- spec/atlas/operations_spec.rb
|
2156
|
-
- spec/atlas/atlas_connectivity_spec.rb
|
2157
1846
|
- spec/USERS.md
|
2158
|
-
- spec/lite_spec_helper.rb
|
2159
|
-
- spec/spec_tests/retryable_writes_spec.rb
|
2160
|
-
- spec/spec_tests/max_staleness_spec.rb
|
2161
|
-
- spec/spec_tests/uri_options_spec.rb
|
2162
|
-
- spec/spec_tests/connection_string_spec.rb
|
2163
|
-
- spec/spec_tests/change_streams_unified_spec.rb
|
2164
1847
|
- spec/spec_tests/collection_management_spec.rb
|
2165
|
-
- spec/spec_tests/crud_spec.rb
|
2166
1848
|
- spec/spec_tests/load_balancers_spec.rb
|
2167
|
-
- spec/spec_tests/
|
2168
|
-
- spec/spec_tests/sdam_integration_spec.rb
|
2169
|
-
- spec/spec_tests/unified_spec.rb
|
1849
|
+
- spec/spec_tests/read_write_concern_operaton_spec.rb
|
2170
1850
|
- spec/spec_tests/read_write_concern_document_spec.rb
|
1851
|
+
- spec/spec_tests/uri_options_spec.rb
|
1852
|
+
- spec/spec_tests/retryable_writes_spec.rb
|
1853
|
+
- spec/spec_tests/change_streams_unified_spec.rb
|
1854
|
+
- spec/spec_tests/server_selection_rtt_spec.rb
|
1855
|
+
- spec/spec_tests/retryable_reads_spec.rb
|
2171
1856
|
- spec/spec_tests/seed_list_discovery_spec.rb
|
1857
|
+
- spec/spec_tests/sdam_integration_spec.rb
|
1858
|
+
- spec/spec_tests/auth_spec.rb
|
1859
|
+
- spec/spec_tests/gridfs_spec.rb
|
1860
|
+
- spec/spec_tests/command_monitoring_spec.rb
|
2172
1861
|
- spec/spec_tests/versioned_api_spec.rb
|
2173
|
-
- spec/spec_tests/
|
2174
|
-
- spec/spec_tests/
|
2175
|
-
- spec/spec_tests/server_selection_rtt_spec.rb
|
1862
|
+
- spec/spec_tests/client_side_encryption_spec.rb
|
1863
|
+
- spec/spec_tests/retryable_reads_unified_spec.rb
|
2176
1864
|
- spec/spec_tests/sdam_monitoring_spec.rb
|
2177
|
-
- spec/spec_tests/sessions_unified_spec.rb
|
2178
|
-
- spec/spec_tests/data/sessions_unified/snapshot-sessions-not-supported-client-error.yml
|
2179
|
-
- spec/spec_tests/data/sessions_unified/snapshot-sessions.yml
|
2180
|
-
- spec/spec_tests/data/sessions_unified/snapshot-sessions-unsupported-ops.yml
|
2181
|
-
- spec/spec_tests/data/sessions_unified/snapshot-sessions-not-supported-server-error.yml
|
2182
|
-
- spec/spec_tests/data/versioned_api/test-commands-strict-mode.yml
|
2183
|
-
- spec/spec_tests/data/versioned_api/crud-api-version-1-strict.yml
|
2184
|
-
- spec/spec_tests/data/versioned_api/transaction-handling.yml
|
2185
|
-
- spec/spec_tests/data/versioned_api/crud-api-version-1.yml
|
2186
|
-
- spec/spec_tests/data/versioned_api/runcommand-helper-no-api-version-declared.yml
|
2187
|
-
- spec/spec_tests/data/versioned_api/test-commands-deprecation-errors.yml
|
2188
|
-
- spec/spec_tests/data/cmap/pool-checkin-make-available.yml
|
2189
|
-
- spec/spec_tests/data/cmap/pool-checkin.yml
|
2190
|
-
- spec/spec_tests/data/cmap/pool-checkout-no-idle.yml
|
2191
|
-
- spec/spec_tests/data/cmap/wait-queue-fairness.yml
|
2192
|
-
- spec/spec_tests/data/cmap/pool-create-max-size.yml
|
2193
|
-
- spec/spec_tests/data/cmap/connection-must-have-id.yml
|
2194
|
-
- spec/spec_tests/data/cmap/pool-create-with-options.yml
|
2195
|
-
- spec/spec_tests/data/cmap/pool-checkin-destroy-stale.yml
|
2196
|
-
- spec/spec_tests/data/cmap/pool-create.yml
|
2197
|
-
- spec/spec_tests/data/cmap/pool-close-destroy-conns.yml
|
2198
|
-
- spec/spec_tests/data/cmap/pool-checkout-error-closed.yml
|
2199
|
-
- spec/spec_tests/data/cmap/pool-close.yml
|
2200
|
-
- spec/spec_tests/data/cmap/pool-checkin-destroy-closed.yml
|
2201
|
-
- spec/spec_tests/data/cmap/pool-create-min-size.yml
|
2202
|
-
- spec/spec_tests/data/cmap/connection-must-order-ids.yml
|
2203
|
-
- spec/spec_tests/data/cmap/pool-checkout-multiple.yml
|
2204
|
-
- spec/spec_tests/data/cmap/pool-checkout-connection.yml
|
2205
|
-
- spec/spec_tests/data/cmap/pool-checkout-no-stale.yml
|
2206
|
-
- spec/spec_tests/data/cmap/wait-queue-timeout.yml
|
2207
|
-
- spec/spec_tests/data/auth/connection-string.yml
|
2208
|
-
- spec/spec_tests/data/retryable_writes/deleteMany.yml
|
2209
|
-
- spec/spec_tests/data/retryable_writes/deleteOne-serverErrors.yml
|
2210
|
-
- spec/spec_tests/data/retryable_writes/updateOne-errorLabels.yml
|
2211
|
-
- spec/spec_tests/data/retryable_writes/replaceOne.yml
|
2212
|
-
- spec/spec_tests/data/retryable_writes/insertOne.yml
|
2213
|
-
- spec/spec_tests/data/retryable_writes/findOneAndUpdate-serverErrors.yml
|
2214
|
-
- spec/spec_tests/data/retryable_writes/replaceOne-serverErrors.yml
|
2215
|
-
- spec/spec_tests/data/retryable_writes/insertOne-errorLabels.yml
|
2216
|
-
- spec/spec_tests/data/retryable_writes/bulkWrite.yml
|
2217
|
-
- spec/spec_tests/data/retryable_writes/updateOne-serverErrors.yml
|
2218
|
-
- spec/spec_tests/data/retryable_writes/updateMany.yml
|
2219
|
-
- spec/spec_tests/data/retryable_writes/updateOne.yml
|
2220
|
-
- spec/spec_tests/data/retryable_writes/insertMany.yml
|
2221
|
-
- spec/spec_tests/data/retryable_writes/findOneAndUpdate.yml
|
2222
|
-
- spec/spec_tests/data/retryable_writes/findOneAndUpdate-errorLabels.yml
|
2223
|
-
- spec/spec_tests/data/retryable_writes/deleteOne-errorLabels.yml
|
2224
|
-
- spec/spec_tests/data/retryable_writes/findOneAndDelete-serverErrors.yml
|
2225
|
-
- spec/spec_tests/data/retryable_writes/bulkWrite-serverErrors.yml
|
2226
|
-
- spec/spec_tests/data/retryable_writes/findOneAndDelete-errorLabels.yml
|
2227
|
-
- spec/spec_tests/data/retryable_writes/findOneAndReplace-serverErrors.yml
|
2228
|
-
- spec/spec_tests/data/retryable_writes/insertOne-serverErrors.yml
|
2229
|
-
- spec/spec_tests/data/retryable_writes/insertMany-errorLabels.yml
|
2230
|
-
- spec/spec_tests/data/retryable_writes/findOneAndDelete.yml
|
2231
|
-
- spec/spec_tests/data/retryable_writes/insertMany-serverErrors.yml
|
2232
|
-
- spec/spec_tests/data/retryable_writes/bulkWrite-errorLabels.yml
|
2233
|
-
- spec/spec_tests/data/retryable_writes/deleteOne.yml
|
2234
|
-
- spec/spec_tests/data/retryable_writes/findOneAndReplace-errorLabels.yml
|
2235
|
-
- spec/spec_tests/data/retryable_writes/findOneAndReplace.yml
|
2236
|
-
- spec/spec_tests/data/retryable_writes/replaceOne-errorLabels.yml
|
2237
|
-
- spec/spec_tests/data/server_selection/Single/read/SecondaryPreferred.yml
|
2238
|
-
- spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/Secondary_multi_tags.yml
|
2239
|
-
- spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/Nearest_multiple.yml
|
2240
|
-
- spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/PossiblePrimary.yml
|
2241
|
-
- spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/SecondaryPreferred_non_matching.yml
|
2242
|
-
- spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/Secondary.yml
|
2243
|
-
- spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/SecondaryPreferred.yml
|
2244
|
-
- spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/PossiblePrimaryNearest.yml
|
2245
|
-
- spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/Nearest.yml
|
2246
|
-
- spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/PrimaryPreferred_non_matching.yml
|
2247
|
-
- spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/Nearest_non_matching.yml
|
2248
|
-
- spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/PrimaryPreferred.yml
|
2249
|
-
- spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/Secondary_non_matching.yml
|
2250
|
-
- spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/Secondary_multi_tags2.yml
|
2251
|
-
- spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/Primary.yml
|
2252
|
-
- spec/spec_tests/data/server_selection/Sharded/read/Secondary.yml
|
2253
|
-
- spec/spec_tests/data/server_selection/Sharded/read/SecondaryPreferred.yml
|
2254
|
-
- spec/spec_tests/data/server_selection/Sharded/read/Nearest.yml
|
2255
|
-
- spec/spec_tests/data/server_selection/Sharded/read/PrimaryPreferred.yml
|
2256
|
-
- spec/spec_tests/data/server_selection/Sharded/read/Primary.yml
|
2257
|
-
- spec/spec_tests/data/server_selection/Unknown/read/SecondaryPreferred.yml
|
2258
|
-
- spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/Nearest_multiple.yml
|
2259
|
-
- spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/SecondaryPreferred_non_matching.yml
|
2260
|
-
- spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/Secondary.yml
|
2261
|
-
- spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/SecondaryPreferred.yml
|
2262
|
-
- spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/Nearest.yml
|
2263
|
-
- spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/PrimaryPreferred_non_matching.yml
|
2264
|
-
- spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/Nearest_non_matching.yml
|
2265
|
-
- spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/PrimaryPreferred.yml
|
2266
|
-
- spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/Secondary_non_matching.yml
|
2267
|
-
- spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/SecondaryPreferred_tags.yml
|
2268
|
-
- spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/Primary.yml
|
2269
|
-
- spec/spec_tests/data/sdam_integration/find-network-error.yml
|
2270
|
-
- spec/spec_tests/data/sdam_integration/cancel-server-check.yml
|
2271
|
-
- spec/spec_tests/data/sdam_integration/insert-shutdown-error.yml
|
2272
|
-
- spec/spec_tests/data/sdam_integration/hello-timeout.yml
|
2273
|
-
- spec/spec_tests/data/sdam_integration/hello-command-error.yml
|
2274
|
-
- spec/spec_tests/data/sdam_integration/insert-network-error.yml
|
2275
|
-
- spec/spec_tests/data/sdam_integration/connectTimeoutMS.yml
|
2276
|
-
- spec/spec_tests/data/sdam_integration/hello-network-error.yml
|
2277
|
-
- spec/spec_tests/data/sdam_integration/rediscover-quickly-after-step-down.yml
|
2278
|
-
- spec/spec_tests/data/sdam_integration/find-shutdown-error.yml
|
2279
|
-
- spec/spec_tests/data/transactions_api/callback-commits.yml
|
2280
|
-
- spec/spec_tests/data/transactions_api/commit-transienttransactionerror-4.2.yml
|
2281
|
-
- spec/spec_tests/data/transactions_api/callback-aborts.yml
|
2282
|
-
- spec/spec_tests/data/transactions_api/commit-writeconcernerror.yml
|
2283
|
-
- spec/spec_tests/data/transactions_api/commit-transienttransactionerror.yml
|
2284
|
-
- spec/spec_tests/data/transactions_api/callback-retry.yml
|
2285
|
-
- spec/spec_tests/data/transactions_api/commit.yml
|
2286
|
-
- spec/spec_tests/data/transactions_api/transaction-options.yml
|
2287
|
-
- spec/spec_tests/data/transactions_api/commit-retry.yml
|
2288
|
-
- spec/spec_tests/data/uri_options/compression-options.yml
|
2289
|
-
- spec/spec_tests/data/uri_options/ruby-auth-options.yml
|
2290
|
-
- spec/spec_tests/data/uri_options/connection-pool-options.yml
|
2291
|
-
- spec/spec_tests/data/uri_options/ruby-connection-options.yml
|
2292
|
-
- spec/spec_tests/data/uri_options/tls-options.yml
|
2293
|
-
- spec/spec_tests/data/uri_options/auth-options.yml
|
2294
|
-
- spec/spec_tests/data/uri_options/concern-options.yml
|
2295
|
-
- spec/spec_tests/data/uri_options/read-preference-options.yml
|
2296
|
-
- spec/spec_tests/data/uri_options/connection-options.yml
|
2297
|
-
- spec/spec_tests/data/connection_string/valid-host_identifiers.yml
|
2298
|
-
- spec/spec_tests/data/connection_string/valid-db-with-dotted-name.yml
|
2299
|
-
- spec/spec_tests/data/connection_string/valid-unix_socket-absolute.yml
|
2300
|
-
- spec/spec_tests/data/connection_string/valid-auth.yml
|
2301
|
-
- spec/spec_tests/data/connection_string/valid-warnings.yml
|
2302
|
-
- spec/spec_tests/data/connection_string/valid-options.yml
|
2303
|
-
- spec/spec_tests/data/connection_string/invalid-uris.yml
|
2304
|
-
- spec/spec_tests/data/connection_string/valid-unix_socket-relative.yml
|
2305
|
-
- spec/spec_tests/data/sdam_monitoring/replica_set_other_chain.yml
|
2306
|
-
- spec/spec_tests/data/sdam_monitoring/replica_set_with_second_seed_removal.yml
|
2307
|
-
- spec/spec_tests/data/sdam_monitoring/required_replica_set.yml
|
2308
|
-
- spec/spec_tests/data/sdam_monitoring/standalone.yml
|
2309
|
-
- spec/spec_tests/data/sdam_monitoring/load_balancer.yml
|
2310
|
-
- spec/spec_tests/data/sdam_monitoring/replica_set_with_primary.yml
|
2311
|
-
- spec/spec_tests/data/sdam_monitoring/standalone_suppress_equal_description_changes.yml
|
2312
|
-
- spec/spec_tests/data/sdam_monitoring/standalone_repeated.yml
|
2313
|
-
- spec/spec_tests/data/sdam_monitoring/replica_set_with_no_primary.yml
|
2314
|
-
- spec/spec_tests/data/sdam_monitoring/standalone_to_rs_with_me_mismatch.yml
|
2315
|
-
- spec/spec_tests/data/sdam_monitoring/replica_set_with_primary_removal.yml
|
2316
|
-
- spec/spec_tests/data/sdam_monitoring/replica_set_with_primary_and_secondary.yml
|
2317
|
-
- spec/spec_tests/data/sdam_monitoring/replica_set_primary_address_change.yml
|
2318
|
-
- spec/spec_tests/data/sdam_monitoring/replica_set_with_me_mismatch.yml
|
2319
|
-
- spec/spec_tests/data/sdam_monitoring/replica_set_other_change.yml
|
2320
|
-
- spec/spec_tests/data/sdam_monitoring/replica_set_with_removal.yml
|
2321
|
-
- spec/spec_tests/data/sdam_monitoring/discovered_standalone.yml
|
2322
|
-
- spec/spec_tests/data/command_monitoring/deleteMany.yml
|
2323
|
-
- spec/spec_tests/data/command_monitoring/insertOne.yml
|
2324
|
-
- spec/spec_tests/data/command_monitoring/bulkWrite.yml
|
2325
|
-
- spec/spec_tests/data/command_monitoring/updateMany.yml
|
2326
|
-
- spec/spec_tests/data/command_monitoring/command.yml
|
2327
|
-
- spec/spec_tests/data/command_monitoring/updateOne.yml
|
2328
1865
|
- spec/spec_tests/data/command_monitoring/insertMany.yml
|
2329
1866
|
- spec/spec_tests/data/command_monitoring/find.yml
|
2330
|
-
- spec/spec_tests/data/command_monitoring/
|
1867
|
+
- spec/spec_tests/data/command_monitoring/updateMany.yml
|
2331
1868
|
- spec/spec_tests/data/command_monitoring/deleteOne.yml
|
2332
|
-
- spec/spec_tests/data/
|
2333
|
-
- spec/spec_tests/data/
|
2334
|
-
- spec/spec_tests/data/
|
2335
|
-
- spec/spec_tests/data/
|
2336
|
-
- spec/spec_tests/data/
|
2337
|
-
- spec/spec_tests/data/
|
2338
|
-
- spec/spec_tests/data/
|
2339
|
-
- spec/spec_tests/data/
|
2340
|
-
- spec/spec_tests/data/
|
2341
|
-
- spec/spec_tests/data/
|
2342
|
-
- spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/MaxStalenessTooSmall.yml
|
2343
|
-
- spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/PrimaryPreferred_tags.yml
|
2344
|
-
- spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/Incompatible.yml
|
2345
|
-
- spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/Nearest2.yml
|
2346
|
-
- spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/SecondaryPreferred_tags.yml
|
2347
|
-
- spec/spec_tests/data/max_staleness/Sharded/SmallMaxStaleness.yml
|
2348
|
-
- spec/spec_tests/data/max_staleness/Sharded/Incompatible.yml
|
2349
|
-
- spec/spec_tests/data/max_staleness/Unknown/SmallMaxStaleness.yml
|
2350
|
-
- spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/LongHeartbeat.yml
|
2351
|
-
- spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/LongHeartbeat2.yml
|
2352
|
-
- spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/Secondary_tags.yml
|
2353
|
-
- spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/SecondaryPreferred.yml
|
2354
|
-
- spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/LastUpdateTime.yml
|
2355
|
-
- spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/ZeroMaxStaleness.yml
|
2356
|
-
- spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/SecondaryPreferred_tags2.yml
|
2357
|
-
- spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/DefaultNoMaxStaleness.yml
|
2358
|
-
- spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/Nearest_tags.yml
|
2359
|
-
- spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/Nearest.yml
|
2360
|
-
- spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/PrimaryPreferred_incompatible.yml
|
2361
|
-
- spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/Secondary_tags2.yml
|
2362
|
-
- spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/PrimaryPreferred.yml
|
2363
|
-
- spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/MaxStalenessTooSmall.yml
|
2364
|
-
- spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/Incompatible.yml
|
2365
|
-
- spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/Nearest2.yml
|
2366
|
-
- spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/SecondaryPreferred_tags.yml
|
2367
|
-
- spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/MaxStalenessWithModePrimary.yml
|
2368
|
-
- spec/spec_tests/data/crud_unified/estimatedDocumentCount.yml
|
2369
|
-
- spec/spec_tests/data/crud_unified/db-aggregate-write-readPreference.yml
|
2370
|
-
- spec/spec_tests/data/crud_unified/aggregate-let.yml
|
2371
|
-
- spec/spec_tests/data/crud_unified/updateWithPipelines.yml
|
2372
|
-
- spec/spec_tests/data/crud_unified/updateMany-let.yml
|
2373
|
-
- spec/spec_tests/data/crud_unified/findOneAndReplace-let.yml
|
2374
|
-
- spec/spec_tests/data/crud_unified/findOneAndDelete-let.yml
|
2375
|
-
- spec/spec_tests/data/crud_unified/deleteOne-let.yml
|
2376
|
-
- spec/spec_tests/data/crud_unified/aggregate-write-readPreference.yml
|
2377
|
-
- spec/spec_tests/data/crud_unified/find-let.yml
|
2378
|
-
- spec/spec_tests/data/crud_unified/updateOne-let.yml
|
2379
|
-
- spec/spec_tests/data/crud_unified/findOneAndUpdate-let.yml
|
2380
|
-
- spec/spec_tests/data/crud_unified/deleteMany-let.yml
|
2381
|
-
- spec/spec_tests/data/load_balancers/non-lb-connection-establishment.yml
|
2382
|
-
- spec/spec_tests/data/load_balancers/lb-connection-establishment.yml
|
2383
|
-
- spec/spec_tests/data/load_balancers/server-selection.yml
|
2384
|
-
- spec/spec_tests/data/load_balancers/event-monitoring.yml
|
2385
|
-
- spec/spec_tests/data/command_monitoring_unified/redacted-commands.yml
|
2386
|
-
- spec/spec_tests/data/change_streams/change-streams-resume-errorLabels.yml
|
2387
|
-
- spec/spec_tests/data/change_streams/change-streams-errors.yml
|
2388
|
-
- spec/spec_tests/data/change_streams/change-streams.yml
|
2389
|
-
- spec/spec_tests/data/change_streams/change-streams-resume-allowlist.yml
|
2390
|
-
- spec/spec_tests/data/change_streams_unified/change-streams.yml
|
2391
|
-
- spec/spec_tests/data/read_write_concern/document/read-concern.yml
|
2392
|
-
- spec/spec_tests/data/read_write_concern/document/write-concern.yml
|
2393
|
-
- spec/spec_tests/data/read_write_concern/connection-string/read-concern.yml
|
2394
|
-
- spec/spec_tests/data/read_write_concern/connection-string/write-concern.yml
|
2395
|
-
- spec/spec_tests/data/read_write_concern/operation/default-write-concern-4.2.yml
|
2396
|
-
- spec/spec_tests/data/read_write_concern/operation/default-write-concern-3.4.yml
|
2397
|
-
- spec/spec_tests/data/read_write_concern/operation/default-write-concern-2.6.yml
|
2398
|
-
- spec/spec_tests/data/read_write_concern/operation/default-write-concern-3.2.yml
|
2399
|
-
- spec/spec_tests/data/seed_list_discovery/load-balanced/loadBalanced-true-txt.yml
|
2400
|
-
- spec/spec_tests/data/seed_list_discovery/load-balanced/loadBalanced-true-multiple-hosts.yml
|
2401
|
-
- spec/spec_tests/data/seed_list_discovery/load-balanced/loadBalanced-replicaSet-errors.yml
|
2402
|
-
- spec/spec_tests/data/seed_list_discovery/load-balanced/loadBalanced-directConnection.yml
|
2403
|
-
- spec/spec_tests/data/seed_list_discovery/replica-set/one-txt-record.yml
|
2404
|
-
- spec/spec_tests/data/seed_list_discovery/replica-set/longer-parent-in-return.yml
|
2405
|
-
- spec/spec_tests/data/seed_list_discovery/replica-set/direct-connection-true.yml
|
1869
|
+
- spec/spec_tests/data/command_monitoring/insertOne.yml
|
1870
|
+
- spec/spec_tests/data/command_monitoring/updateOne.yml
|
1871
|
+
- spec/spec_tests/data/command_monitoring/unacknowledgedBulkWrite.yml
|
1872
|
+
- spec/spec_tests/data/command_monitoring/bulkWrite.yml
|
1873
|
+
- spec/spec_tests/data/command_monitoring/command.yml
|
1874
|
+
- spec/spec_tests/data/command_monitoring/deleteMany.yml
|
1875
|
+
- spec/spec_tests/data/seed_list_discovery/sharded/srvMaxHosts-equal_to_srv_records.yml
|
1876
|
+
- spec/spec_tests/data/seed_list_discovery/sharded/srvMaxHosts-less_than_srv_records.yml
|
1877
|
+
- spec/spec_tests/data/seed_list_discovery/sharded/srvMaxHosts-greater_than_srv_records.yml
|
1878
|
+
- spec/spec_tests/data/seed_list_discovery/sharded/srvMaxHosts-zero.yml
|
2406
1879
|
- spec/spec_tests/data/seed_list_discovery/replica-set/two-results-default-port.yml
|
2407
|
-
- spec/spec_tests/data/seed_list_discovery/replica-set/
|
2408
|
-
- spec/spec_tests/data/seed_list_discovery/replica-set/
|
2409
|
-
- spec/spec_tests/data/seed_list_discovery/replica-set/parent-part-mismatch3.yml
|
2410
|
-
- spec/spec_tests/data/seed_list_discovery/replica-set/encoded-userinfo-and-db.yml
|
2411
|
-
- spec/spec_tests/data/seed_list_discovery/replica-set/loadBalanced-false-txt.yml
|
2412
|
-
- spec/spec_tests/data/seed_list_discovery/replica-set/returned-parent-wrong.yml
|
2413
|
-
- spec/spec_tests/data/seed_list_discovery/replica-set/txt-record-with-unallowed-option.yml
|
2414
|
-
- spec/spec_tests/data/seed_list_discovery/replica-set/uri-with-admin-database.yml
|
2415
|
-
- spec/spec_tests/data/seed_list_discovery/replica-set/direct-connection-false.yml
|
1880
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/one-txt-record-multiple-strings.yml
|
1881
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/direct-connection-true.yml
|
2416
1882
|
- spec/spec_tests/data/seed_list_discovery/replica-set/two-results-nonstandard-port.yml
|
1883
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/one-result-default-port.yml
|
1884
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/loadBalanced-false-txt.yml
|
1885
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/encoded-userinfo-and-db.yml
|
1886
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/srvMaxHosts-conflicts_with_replicaSet-txt.yml
|
1887
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/no-results.yml
|
1888
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/one-txt-record.yml
|
1889
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/parent-part-mismatch4.yml
|
1890
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/srvMaxHosts-equal_to_srv_records.yml
|
1891
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/longer-parent-in-return.yml
|
2417
1892
|
- spec/spec_tests/data/seed_list_discovery/replica-set/not-enough-parts.yml
|
1893
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/uri-with-auth.yml
|
1894
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/direct-connection-false.yml
|
2418
1895
|
- spec/spec_tests/data/seed_list_discovery/replica-set/txt-record-with-overridden-ssl-option.yml
|
2419
|
-
- spec/spec_tests/data/seed_list_discovery/replica-set/
|
2420
|
-
- spec/spec_tests/data/seed_list_discovery/replica-set/
|
1896
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/parent-part-mismatch5.yml
|
1897
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/parent-part-mismatch3.yml
|
1898
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/srvMaxHosts-conflicts_with_replicaSet.yml
|
1899
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/srvMaxHosts-less_than_srv_records.yml
|
1900
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/srv-service-name.yml
|
1901
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/txt-record-with-unallowed-option.yml
|
2421
1902
|
- spec/spec_tests/data/seed_list_discovery/replica-set/txt-record-not-allowed-option.yml
|
2422
|
-
- spec/spec_tests/data/seed_list_discovery/replica-set/uri-with-two-hosts.yml
|
2423
1903
|
- spec/spec_tests/data/seed_list_discovery/replica-set/parent-part-mismatch2.yml
|
1904
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/uri-with-port.yml
|
1905
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/uri-with-admin-database.yml
|
1906
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/misformatted-option.yml
|
1907
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/srvMaxHosts-zero-txt.yml
|
1908
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/uri-with-two-hosts.yml
|
1909
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/txt-record-with-overridden-uri-option.yml
|
2424
1910
|
- spec/spec_tests/data/seed_list_discovery/replica-set/parent-part-mismatch1.yml
|
2425
|
-
- spec/spec_tests/data/seed_list_discovery/replica-set/parent-part-mismatch5.yml
|
2426
|
-
- spec/spec_tests/data/seed_list_discovery/replica-set/no-results.yml
|
2427
1911
|
- spec/spec_tests/data/seed_list_discovery/replica-set/returned-parent-too-short.yml
|
2428
|
-
- spec/spec_tests/data/seed_list_discovery/replica-set/
|
2429
|
-
- spec/spec_tests/data/seed_list_discovery/replica-set/
|
2430
|
-
- spec/spec_tests/data/seed_list_discovery/replica-set/
|
2431
|
-
- spec/spec_tests/data/seed_list_discovery/replica-set/
|
2432
|
-
- spec/spec_tests/data/
|
2433
|
-
- spec/spec_tests/data/
|
2434
|
-
- spec/spec_tests/data/
|
2435
|
-
- spec/spec_tests/data/
|
2436
|
-
- spec/spec_tests/data/
|
2437
|
-
- spec/spec_tests/data/
|
2438
|
-
- spec/spec_tests/data/
|
2439
|
-
- spec/spec_tests/data/
|
2440
|
-
- spec/spec_tests/data/
|
2441
|
-
- spec/spec_tests/data/
|
2442
|
-
- spec/spec_tests/data/
|
2443
|
-
- spec/spec_tests/data/
|
2444
|
-
- spec/spec_tests/data/
|
2445
|
-
- spec/spec_tests/data/transactions/read-pref.yml
|
2446
|
-
- spec/spec_tests/data/transactions/retryable-writes.yml
|
2447
|
-
- spec/spec_tests/data/transactions/reads.yml
|
2448
|
-
- spec/spec_tests/data/transactions/bulk.yml
|
2449
|
-
- spec/spec_tests/data/transactions/errors.yml
|
2450
|
-
- spec/spec_tests/data/transactions/findOneAndUpdate.yml
|
2451
|
-
- spec/spec_tests/data/transactions/retryable-commit.yml
|
2452
|
-
- spec/spec_tests/data/transactions/create-index.yml
|
2453
|
-
- spec/spec_tests/data/transactions/pin-mongos.yml
|
2454
|
-
- spec/spec_tests/data/transactions/write-concern.yml
|
2455
|
-
- spec/spec_tests/data/transactions/findOneAndDelete.yml
|
2456
|
-
- spec/spec_tests/data/transactions/run-command.yml
|
2457
|
-
- spec/spec_tests/data/transactions/abort.yml
|
2458
|
-
- spec/spec_tests/data/transactions/error-labels.yml
|
2459
|
-
- spec/spec_tests/data/transactions/causal-consistency.yml
|
2460
|
-
- spec/spec_tests/data/transactions/findOneAndReplace.yml
|
2461
|
-
- spec/spec_tests/data/transactions/commit.yml
|
2462
|
-
- spec/spec_tests/data/transactions/transaction-options.yml
|
2463
|
-
- spec/spec_tests/data/transactions/retryable-abort-errorLabels.yml
|
2464
|
-
- spec/spec_tests/data/server_selection_rtt/value_test_2.yml
|
2465
|
-
- spec/spec_tests/data/server_selection_rtt/value_test_3.yml
|
2466
|
-
- spec/spec_tests/data/server_selection_rtt/first_value.yml
|
2467
|
-
- spec/spec_tests/data/server_selection_rtt/value_test_5.yml
|
2468
|
-
- spec/spec_tests/data/server_selection_rtt/value_test_4.yml
|
2469
|
-
- spec/spec_tests/data/server_selection_rtt/first_value_zero.yml
|
2470
|
-
- spec/spec_tests/data/server_selection_rtt/value_test_1.yml
|
2471
|
-
- spec/spec_tests/data/crud/write/deleteMany.yml
|
2472
|
-
- spec/spec_tests/data/crud/write/deleteOne-collation.yml
|
2473
|
-
- spec/spec_tests/data/crud/write/findOneAndUpdate-collation.yml
|
2474
|
-
- spec/spec_tests/data/crud/write/replaceOne.yml
|
2475
|
-
- spec/spec_tests/data/crud/write/findOneAndReplace-upsert.yml
|
2476
|
-
- spec/spec_tests/data/crud/write/findOneAndDelete-collation.yml
|
2477
|
-
- spec/spec_tests/data/crud/write/findOneAndUpdate-arrayFilters.yml
|
2478
|
-
- spec/spec_tests/data/crud/write/insertOne.yml
|
2479
|
-
- spec/spec_tests/data/crud/write/updateMany-arrayFilters.yml
|
2480
|
-
- spec/spec_tests/data/crud/write/updateOne-pre_2.6.yml
|
2481
|
-
- spec/spec_tests/data/crud/write/findOneAndReplace-upsert_pre_2.6.yml
|
2482
|
-
- spec/spec_tests/data/crud/write/updateMany-pre_2.6.yml
|
2483
|
-
- spec/spec_tests/data/crud/write/bulkWrite.yml
|
2484
|
-
- spec/spec_tests/data/crud/write/updateOne-arrayFilters.yml
|
2485
|
-
- spec/spec_tests/data/crud/write/updateMany.yml
|
2486
|
-
- spec/spec_tests/data/crud/write/updateOne.yml
|
2487
|
-
- spec/spec_tests/data/crud/write/insertMany.yml
|
2488
|
-
- spec/spec_tests/data/crud/write/deleteMany-collation.yml
|
2489
|
-
- spec/spec_tests/data/crud/write/findOneAndUpdate.yml
|
2490
|
-
- spec/spec_tests/data/crud/write/updateOne-collation.yml
|
2491
|
-
- spec/spec_tests/data/crud/write/findOneAndDelete.yml
|
2492
|
-
- spec/spec_tests/data/crud/write/replaceOne-upsert.yml
|
2493
|
-
- spec/spec_tests/data/crud/write/deleteOne.yml
|
2494
|
-
- spec/spec_tests/data/crud/write/replaceOne-pre_2.6.yml
|
2495
|
-
- spec/spec_tests/data/crud/write/bulkWrite-collation.yml
|
2496
|
-
- spec/spec_tests/data/crud/write/updateMany-collation.yml
|
2497
|
-
- spec/spec_tests/data/crud/write/findOneAndReplace.yml
|
2498
|
-
- spec/spec_tests/data/crud/write/bulkWrite-arrayFilters.yml
|
2499
|
-
- spec/spec_tests/data/crud/write/findOneAndReplace-collation.yml
|
2500
|
-
- spec/spec_tests/data/crud/write/replaceOne-collation.yml
|
2501
|
-
- spec/spec_tests/data/crud/read/count.yml
|
2502
|
-
- spec/spec_tests/data/crud/read/count-collation.yml
|
2503
|
-
- spec/spec_tests/data/crud/read/count-empty.yml
|
2504
|
-
- spec/spec_tests/data/crud/read/find-collation.yml
|
2505
|
-
- spec/spec_tests/data/crud/read/aggregate-out.yml
|
2506
|
-
- spec/spec_tests/data/crud/read/distinct.yml
|
2507
|
-
- spec/spec_tests/data/crud/read/find.yml
|
2508
|
-
- spec/spec_tests/data/crud/read/aggregate.yml
|
2509
|
-
- spec/spec_tests/data/crud/read/aggregate-collation.yml
|
2510
|
-
- spec/spec_tests/data/crud/read/distinct-collation.yml
|
2511
|
-
- spec/spec_tests/data/unified/valid-fail/operation-failure.yml
|
2512
|
-
- spec/spec_tests/data/unified/valid-pass/poc-transactions-convenient-api.yml
|
2513
|
-
- spec/spec_tests/data/unified/valid-pass/poc-gridfs.yml
|
2514
|
-
- spec/spec_tests/data/unified/valid-pass/poc-change-streams.yml
|
2515
|
-
- spec/spec_tests/data/unified/valid-pass/poc-crud.yml
|
2516
|
-
- spec/spec_tests/data/unified/valid-pass/poc-command-monitoring.yml
|
2517
|
-
- spec/spec_tests/data/unified/valid-pass/poc-transactions-mongos-pin-auto.yml
|
2518
|
-
- spec/spec_tests/data/unified/valid-pass/poc-sessions.yml
|
2519
|
-
- spec/spec_tests/data/unified/valid-pass/poc-transactions.yml
|
2520
|
-
- spec/spec_tests/data/unified/valid-pass/poc-retryable-writes.yml
|
2521
|
-
- spec/spec_tests/data/unified/valid-pass/poc-retryable-reads.yml
|
2522
|
-
- spec/spec_tests/data/client_side_encryption/count.yml
|
2523
|
-
- spec/spec_tests/data/client_side_encryption/replaceOne.yml
|
2524
|
-
- spec/spec_tests/data/client_side_encryption/basic.yml
|
2525
|
-
- spec/spec_tests/data/client_side_encryption/malformedCiphertext.yml
|
2526
|
-
- spec/spec_tests/data/client_side_encryption/keyAltName.yml
|
2527
|
-
- spec/spec_tests/data/client_side_encryption/bypassAutoEncryption.yml
|
2528
|
-
- spec/spec_tests/data/client_side_encryption/delete.yml
|
2529
|
-
- spec/spec_tests/data/client_side_encryption/insert.yml
|
2530
|
-
- spec/spec_tests/data/client_side_encryption/distinct.yml
|
2531
|
-
- spec/spec_tests/data/client_side_encryption/badQueries.yml
|
2532
|
-
- spec/spec_tests/data/client_side_encryption/updateMany.yml
|
2533
|
-
- spec/spec_tests/data/client_side_encryption/bulk.yml
|
2534
|
-
- spec/spec_tests/data/client_side_encryption/updateOne.yml
|
2535
|
-
- spec/spec_tests/data/client_side_encryption/getMore.yml
|
2536
|
-
- spec/spec_tests/data/client_side_encryption/findOneAndUpdate.yml
|
2537
|
-
- spec/spec_tests/data/client_side_encryption/find.yml
|
2538
|
-
- spec/spec_tests/data/client_side_encryption/types.yml
|
2539
|
-
- spec/spec_tests/data/client_side_encryption/countDocuments.yml
|
2540
|
-
- spec/spec_tests/data/client_side_encryption/unsupportedCommand.yml
|
2541
|
-
- spec/spec_tests/data/client_side_encryption/localSchema.yml
|
2542
|
-
- spec/spec_tests/data/client_side_encryption/bypassedCommand.yml
|
2543
|
-
- spec/spec_tests/data/client_side_encryption/findOneAndDelete.yml
|
2544
|
-
- spec/spec_tests/data/client_side_encryption/aggregate.yml
|
2545
|
-
- spec/spec_tests/data/client_side_encryption/explain.yml
|
2546
|
-
- spec/spec_tests/data/client_side_encryption/maxWireVersion.yml
|
2547
|
-
- spec/spec_tests/data/client_side_encryption/localKMS.yml
|
2548
|
-
- spec/spec_tests/data/client_side_encryption/findOneAndReplace.yml
|
2549
|
-
- spec/spec_tests/data/client_side_encryption/badSchema.yml
|
2550
|
-
- spec/spec_tests/data/client_side_encryption/missingKey.yml
|
2551
|
-
- spec/spec_tests/data/retryable_reads/countDocuments-serverErrors.yml
|
2552
|
-
- spec/spec_tests/data/retryable_reads/listDatabaseObjects.yml
|
2553
|
-
- spec/spec_tests/data/retryable_reads/find-serverErrors.yml
|
2554
|
-
- spec/spec_tests/data/retryable_reads/gridfs-downloadByName.yml
|
2555
|
-
- spec/spec_tests/data/retryable_reads/findOne.yml
|
2556
|
-
- spec/spec_tests/data/retryable_reads/count.yml
|
2557
|
-
- spec/spec_tests/data/retryable_reads/listCollectionObjects-serverErrors.yml
|
2558
|
-
- spec/spec_tests/data/retryable_reads/count-serverErrors.yml
|
2559
|
-
- spec/spec_tests/data/retryable_reads/listDatabases-serverErrors.yml
|
2560
|
-
- spec/spec_tests/data/retryable_reads/distinct-serverErrors.yml
|
2561
|
-
- spec/spec_tests/data/retryable_reads/listDatabaseNames.yml
|
2562
|
-
- spec/spec_tests/data/retryable_reads/findOne-serverErrors.yml
|
2563
|
-
- spec/spec_tests/data/retryable_reads/gridfs-downloadByName-serverErrors.yml
|
2564
|
-
- spec/spec_tests/data/retryable_reads/listIndexNames-serverErrors.yml
|
2565
|
-
- spec/spec_tests/data/retryable_reads/listIndexes-serverErrors.yml
|
2566
|
-
- spec/spec_tests/data/retryable_reads/gridfs-download-serverErrors.yml
|
2567
|
-
- spec/spec_tests/data/retryable_reads/estimatedDocumentCount-serverErrors-4.9.yml
|
2568
|
-
- spec/spec_tests/data/retryable_reads/distinct.yml
|
2569
|
-
- spec/spec_tests/data/retryable_reads/listCollections.yml
|
2570
|
-
- spec/spec_tests/data/retryable_reads/estimatedDocumentCount-4.9.yml
|
2571
|
-
- spec/spec_tests/data/retryable_reads/listCollections-serverErrors.yml
|
2572
|
-
- spec/spec_tests/data/retryable_reads/changeStreams-db.coll.watch-serverErrors.yml
|
2573
|
-
- spec/spec_tests/data/retryable_reads/listIndexNames.yml
|
2574
|
-
- spec/spec_tests/data/retryable_reads/changeStreams-client.watch.yml
|
2575
|
-
- spec/spec_tests/data/retryable_reads/find.yml
|
2576
|
-
- spec/spec_tests/data/retryable_reads/listDatabases.yml
|
2577
|
-
- spec/spec_tests/data/retryable_reads/estimatedDocumentCount-pre4.9.yml
|
2578
|
-
- spec/spec_tests/data/retryable_reads/aggregate-serverErrors.yml
|
2579
|
-
- spec/spec_tests/data/retryable_reads/listIndexes.yml
|
2580
|
-
- spec/spec_tests/data/retryable_reads/countDocuments.yml
|
2581
|
-
- spec/spec_tests/data/retryable_reads/changeStreams-client.watch-serverErrors.yml
|
2582
|
-
- spec/spec_tests/data/retryable_reads/aggregate.yml
|
2583
|
-
- spec/spec_tests/data/retryable_reads/aggregate-merge.yml
|
2584
|
-
- spec/spec_tests/data/retryable_reads/changeStreams-db.coll.watch.yml
|
2585
|
-
- spec/spec_tests/data/retryable_reads/mapReduce.yml
|
2586
|
-
- spec/spec_tests/data/retryable_reads/changeStreams-db.watch-serverErrors.yml
|
2587
|
-
- spec/spec_tests/data/retryable_reads/gridfs-download.yml
|
2588
|
-
- spec/spec_tests/data/retryable_reads/listCollectionObjects.yml
|
2589
|
-
- spec/spec_tests/data/retryable_reads/listDatabaseNames-serverErrors.yml
|
2590
|
-
- spec/spec_tests/data/retryable_reads/listDatabaseObjects-serverErrors.yml
|
2591
|
-
- spec/spec_tests/data/retryable_reads/changeStreams-db.watch.yml
|
2592
|
-
- spec/spec_tests/data/retryable_reads/estimatedDocumentCount-serverErrors-pre4.9.yml
|
2593
|
-
- spec/spec_tests/data/retryable_reads/listCollectionNames.yml
|
2594
|
-
- spec/spec_tests/data/retryable_reads/listCollectionNames-serverErrors.yml
|
2595
|
-
- spec/spec_tests/data/transactions_unified/mongos-unpin.yml
|
1912
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/srvMaxHosts-greater_than_srv_records.yml
|
1913
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/two-txt-records.yml
|
1914
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/srvMaxHosts-zero.yml
|
1915
|
+
- spec/spec_tests/data/seed_list_discovery/replica-set/returned-parent-wrong.yml
|
1916
|
+
- spec/spec_tests/data/seed_list_discovery/load-balanced/loadBalanced-true-multiple-hosts.yml
|
1917
|
+
- spec/spec_tests/data/seed_list_discovery/load-balanced/srvMaxHosts-conflicts_with_loadBalanced-true.yml
|
1918
|
+
- spec/spec_tests/data/seed_list_discovery/load-balanced/loadBalanced-replicaSet-errors.yml
|
1919
|
+
- spec/spec_tests/data/seed_list_discovery/load-balanced/loadBalanced-directConnection.yml
|
1920
|
+
- spec/spec_tests/data/seed_list_discovery/load-balanced/loadBalanced-no-results.yml
|
1921
|
+
- spec/spec_tests/data/seed_list_discovery/load-balanced/srvMaxHosts-conflicts_with_loadBalanced-true-txt.yml
|
1922
|
+
- spec/spec_tests/data/seed_list_discovery/load-balanced/srvMaxHosts-zero-txt.yml
|
1923
|
+
- spec/spec_tests/data/seed_list_discovery/load-balanced/loadBalanced-true-txt.yml
|
1924
|
+
- spec/spec_tests/data/seed_list_discovery/load-balanced/srvMaxHosts-zero.yml
|
1925
|
+
- spec/spec_tests/data/load_balancers/event-monitoring.yml
|
1926
|
+
- spec/spec_tests/data/load_balancers/server-selection.yml
|
1927
|
+
- spec/spec_tests/data/load_balancers/lb-connection-establishment.yml
|
1928
|
+
- spec/spec_tests/data/load_balancers/non-lb-connection-establishment.yml
|
2596
1929
|
- spec/spec_tests/data/collection_management/timeseries-collection.yml
|
2597
|
-
- spec/spec_tests/data/
|
2598
|
-
- spec/spec_tests/data/
|
2599
|
-
- spec/spec_tests/data/
|
2600
|
-
- spec/spec_tests/data/
|
1930
|
+
- spec/spec_tests/data/collection_management/clustered-indexes.yml
|
1931
|
+
- spec/spec_tests/data/collection_management/modifyCollection-pre_and_post_images.yml
|
1932
|
+
- spec/spec_tests/data/collection_management/createCollection-pre_and_post_images.yml
|
1933
|
+
- spec/spec_tests/data/sdam_integration/find-network-error.yml
|
1934
|
+
- spec/spec_tests/data/sdam_integration/connectTimeoutMS.yml
|
1935
|
+
- spec/spec_tests/data/sdam_integration/insert-network-error.yml
|
1936
|
+
- spec/spec_tests/data/sdam_integration/rediscover-quickly-after-step-down.yml
|
1937
|
+
- spec/spec_tests/data/sdam_integration/hello-command-error.yml
|
1938
|
+
- spec/spec_tests/data/sdam_integration/cancel-server-check.yml
|
1939
|
+
- spec/spec_tests/data/sdam_integration/hello-network-error.yml
|
1940
|
+
- spec/spec_tests/data/sdam_integration/hello-timeout.yml
|
1941
|
+
- spec/spec_tests/data/sdam_integration/find-shutdown-error.yml
|
1942
|
+
- spec/spec_tests/data/sdam_integration/insert-shutdown-error.yml
|
1943
|
+
- spec/spec_tests/data/connection_string/valid-auth.yml
|
1944
|
+
- spec/spec_tests/data/connection_string/valid-db-with-dotted-name.yml
|
1945
|
+
- spec/spec_tests/data/connection_string/invalid-uris.yml
|
1946
|
+
- spec/spec_tests/data/connection_string/valid-unix_socket-relative.yml
|
1947
|
+
- spec/spec_tests/data/connection_string/valid-host_identifiers.yml
|
1948
|
+
- spec/spec_tests/data/connection_string/valid-warnings.yml
|
1949
|
+
- spec/spec_tests/data/connection_string/valid-options.yml
|
1950
|
+
- spec/spec_tests/data/connection_string/valid-unix_socket-absolute.yml
|
1951
|
+
- spec/spec_tests/data/auth/connection-string.yml
|
1952
|
+
- spec/spec_tests/data/sdam/sharded/too_new.yml
|
1953
|
+
- spec/spec_tests/data/sdam/sharded/too_old.yml
|
1954
|
+
- spec/spec_tests/data/sdam/sharded/ruby_primary_mismatched_me.yml
|
1955
|
+
- spec/spec_tests/data/sdam/sharded/discover_single_mongos.yml
|
1956
|
+
- spec/spec_tests/data/sdam/sharded/ls_timeout_mongos.yml
|
1957
|
+
- spec/spec_tests/data/sdam/sharded/normalize_uri_case.yml
|
1958
|
+
- spec/spec_tests/data/sdam/sharded/non_mongos_removed.yml
|
1959
|
+
- spec/spec_tests/data/sdam/sharded/multiple_mongoses.yml
|
1960
|
+
- spec/spec_tests/data/sdam/sharded/mongos_disconnect.yml
|
1961
|
+
- spec/spec_tests/data/sdam/sharded/compatible.yml
|
1962
|
+
- spec/spec_tests/data/sdam/sharded/ruby_primary_different_address.yml
|
1963
|
+
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-ShutdownInProgress.yml
|
1964
|
+
- spec/spec_tests/data/sdam/errors/post-42-PrimarySteppedDown.yml
|
2601
1965
|
- spec/spec_tests/data/sdam/errors/pre-42-InterruptedDueToReplStateChange.yml
|
1966
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-InterruptedDueToReplStateChange.yml
|
1967
|
+
- spec/spec_tests/data/sdam/errors/stale-topologyVersion-NotWritablePrimary.yml
|
1968
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-InterruptedDueToReplStateChange.yml
|
1969
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-timeout.yml
|
2602
1970
|
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-ShutdownInProgress.yml
|
2603
|
-
- spec/spec_tests/data/sdam/errors/stale-
|
2604
|
-
- spec/spec_tests/data/sdam/errors/
|
2605
|
-
- spec/spec_tests/data/sdam/errors/stale-generation-
|
2606
|
-
- spec/spec_tests/data/sdam/errors/stale-generation-
|
2607
|
-
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-PrimarySteppedDown.yml
|
2608
|
-
- spec/spec_tests/data/sdam/errors/stale-topologyVersion-InterruptedDueToReplStateChange.yml
|
2609
|
-
- spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-NotWritablePrimary.yml
|
1971
|
+
- spec/spec_tests/data/sdam/errors/stale-topologyVersion-NotPrimaryOrSecondary.yml
|
1972
|
+
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-NotPrimaryNoSecondaryOk.yml
|
1973
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-network.yml
|
1974
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-NotWritablePrimary.yml
|
2610
1975
|
- spec/spec_tests/data/sdam/errors/pre-42-ShutdownInProgress.yml
|
2611
1976
|
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-NotWritablePrimary.yml
|
2612
|
-
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-
|
2613
|
-
- spec/spec_tests/data/sdam/errors/
|
2614
|
-
- spec/spec_tests/data/sdam/errors/
|
1977
|
+
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-NotPrimaryNoSecondaryOk.yml
|
1978
|
+
- spec/spec_tests/data/sdam/errors/post-42-NotPrimaryOrSecondary.yml
|
1979
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-InterruptedAtShutdown.yml
|
1980
|
+
- spec/spec_tests/data/sdam/errors/non-stale-network-error.yml
|
2615
1981
|
- spec/spec_tests/data/sdam/errors/stale-topologyVersion-LegacyNotPrimary.yml
|
2616
|
-
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-NotPrimaryNoSecondaryOk.yml
|
2617
|
-
- spec/spec_tests/data/sdam/errors/stale-generation-ShutdownInProgress.yml
|
2618
|
-
- spec/spec_tests/data/sdam/errors/stale-topologyVersion-InterruptedAtShutdown.yml
|
2619
|
-
- spec/spec_tests/data/sdam/errors/post-42-PrimarySteppedDown.yml
|
2620
1982
|
- spec/spec_tests/data/sdam/errors/stale-generation-PrimarySteppedDown.yml
|
2621
|
-
- spec/spec_tests/data/sdam/errors/
|
2622
|
-
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-
|
2623
|
-
- spec/spec_tests/data/sdam/errors/
|
2624
|
-
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-LegacyNotPrimary.yml
|
2625
|
-
- spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-InterruptedDueToReplStateChange.yml
|
2626
|
-
- spec/spec_tests/data/sdam/errors/stale-topologyVersion-NotPrimaryNoSecondaryOk.yml
|
2627
|
-
- spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-timeout.yml
|
2628
|
-
- spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-ShutdownInProgress.yml
|
2629
|
-
- spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-network.yml
|
2630
|
-
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-NotPrimaryNoSecondaryOk.yml
|
1983
|
+
- spec/spec_tests/data/sdam/errors/stale-topologyVersion-PrimarySteppedDown.yml
|
1984
|
+
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-InterruptedAtShutdown.yml
|
1985
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-LegacyNotPrimary.yml
|
2631
1986
|
- spec/spec_tests/data/sdam/errors/non-stale-network-timeout-error.yml
|
2632
|
-
- spec/spec_tests/data/sdam/errors/prefer-error-code.yml
|
2633
|
-
- spec/spec_tests/data/sdam/errors/pre-42-PrimarySteppedDown.yml
|
2634
|
-
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-NotPrimaryOrSecondary.yml
|
2635
|
-
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-NotWritablePrimary.yml
|
2636
|
-
- spec/spec_tests/data/sdam/errors/post-42-InterruptedAtShutdown.yml
|
2637
|
-
- spec/spec_tests/data/sdam/errors/pre-42-LegacyNotPrimary.yml
|
2638
|
-
- spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-InterruptedDueToReplStateChange.yml
|
2639
|
-
- spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-network.yml
|
2640
|
-
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-LegacyNotPrimary.yml
|
2641
|
-
- spec/spec_tests/data/sdam/errors/pre-42-NotPrimaryNoSecondaryOk.yml
|
2642
|
-
- spec/spec_tests/data/sdam/errors/stale-topologyVersion-NotWritablePrimary.yml
|
2643
|
-
- spec/spec_tests/data/sdam/errors/stale-topologyVersion-ShutdownInProgress.yml
|
2644
|
-
- spec/spec_tests/data/sdam/errors/post-42-InterruptedDueToReplStateChange.yml
|
2645
|
-
- spec/spec_tests/data/sdam/errors/stale-topologyVersion-NotPrimaryOrSecondary.yml
|
2646
1987
|
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-InterruptedDueToReplStateChange.yml
|
1988
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-network.yml
|
1989
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-ShutdownInProgress.yml
|
2647
1990
|
- spec/spec_tests/data/sdam/errors/post-42-NotPrimaryNoSecondaryOk.yml
|
2648
|
-
- spec/spec_tests/data/sdam/errors/
|
1991
|
+
- spec/spec_tests/data/sdam/errors/error_handling_handshake.yml
|
1992
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-NotPrimaryNoSecondaryOk.yml
|
1993
|
+
- spec/spec_tests/data/sdam/errors/pre-42-NotPrimaryNoSecondaryOk.yml
|
1994
|
+
- spec/spec_tests/data/sdam/errors/post-42-NotWritablePrimary.yml
|
2649
1995
|
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-ShutdownInProgress.yml
|
2650
1996
|
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-NotPrimaryNoSecondaryOk.yml
|
2651
|
-
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-PrimarySteppedDown.yml
|
2652
|
-
- spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-NotPrimaryOrSecondary.yml
|
2653
|
-
- spec/spec_tests/data/sdam/errors/stale-generation-NotPrimaryOrSecondary.yml
|
2654
|
-
- spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-InterruptedAtShutdown.yml
|
2655
|
-
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-ShutdownInProgress.yml
|
2656
|
-
- spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-LegacyNotPrimary.yml
|
2657
|
-
- spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-PrimarySteppedDown.yml
|
2658
|
-
- spec/spec_tests/data/sdam/errors/pre-42-NotWritablePrimary.yml
|
2659
|
-
- spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-timeout.yml
|
2660
1997
|
- spec/spec_tests/data/sdam/errors/stale-generation-InterruptedAtShutdown.yml
|
2661
|
-
- spec/spec_tests/data/sdam/errors/
|
1998
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-NotPrimaryNoSecondaryOk.yml
|
1999
|
+
- spec/spec_tests/data/sdam/errors/pre-42-InterruptedAtShutdown.yml
|
2000
|
+
- spec/spec_tests/data/sdam/errors/pre-42-PrimarySteppedDown.yml
|
2001
|
+
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-InterruptedDueToReplStateChange.yml
|
2002
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-LegacyNotPrimary.yml
|
2662
2003
|
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-LegacyNotPrimary.yml
|
2663
|
-
- spec/spec_tests/data/sdam/errors/stale-
|
2664
|
-
- spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-
|
2004
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-NotWritablePrimary.yml
|
2005
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-NotPrimaryNoSecondaryOk.yml
|
2006
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-NotPrimaryOrSecondary.yml
|
2007
|
+
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-NotPrimaryOrSecondary.yml
|
2008
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-PrimarySteppedDown.yml
|
2009
|
+
- spec/spec_tests/data/sdam/errors/stale-topologyVersion-NotPrimaryNoSecondaryOk.yml
|
2010
|
+
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-NotWritablePrimary.yml
|
2011
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-NotPrimaryOrSecondary.yml
|
2012
|
+
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-InterruptedDueToReplStateChange.yml
|
2013
|
+
- spec/spec_tests/data/sdam/errors/post-42-InterruptedAtShutdown.yml
|
2014
|
+
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-LegacyNotPrimary.yml
|
2015
|
+
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-PrimarySteppedDown.yml
|
2016
|
+
- spec/spec_tests/data/sdam/errors/post-42-ShutdownInProgress.yml
|
2017
|
+
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-PrimarySteppedDown.yml
|
2018
|
+
- spec/spec_tests/data/sdam/errors/prefer-error-code.yml
|
2019
|
+
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-InterruptedAtShutdown.yml
|
2020
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-NotPrimaryOrSecondary.yml
|
2021
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-InterruptedDueToReplStateChange.yml
|
2022
|
+
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-NotWritablePrimary.yml
|
2023
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-ShutdownInProgress.yml
|
2024
|
+
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-NotPrimaryOrSecondary.yml
|
2665
2025
|
- spec/spec_tests/data/sdam/errors/write_errors_ignored.yml
|
2666
|
-
- spec/spec_tests/data/sdam/errors/stale-
|
2667
|
-
- spec/spec_tests/data/sdam/errors/
|
2668
|
-
- spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-PrimarySteppedDown.yml
|
2669
|
-
- spec/spec_tests/data/sdam/errors/error_handling_handshake.yml
|
2026
|
+
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-LegacyNotPrimary.yml
|
2027
|
+
- spec/spec_tests/data/sdam/errors/pre-42-LegacyNotPrimary.yml
|
2670
2028
|
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-InterruptedAtShutdown.yml
|
2671
|
-
- spec/spec_tests/data/sdam/errors/stale-
|
2672
|
-
- spec/spec_tests/data/sdam/errors/
|
2029
|
+
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-PrimarySteppedDown.yml
|
2030
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-NotWritablePrimary.yml
|
2031
|
+
- spec/spec_tests/data/sdam/errors/pre-42-NotPrimaryOrSecondary.yml
|
2032
|
+
- spec/spec_tests/data/sdam/errors/post-42-InterruptedDueToReplStateChange.yml
|
2673
2033
|
- spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-NotPrimaryOrSecondary.yml
|
2674
|
-
- spec/spec_tests/data/sdam/errors/
|
2675
|
-
- spec/spec_tests/data/sdam/errors/stale-generation-
|
2676
|
-
- spec/spec_tests/data/sdam/errors/stale-
|
2677
|
-
- spec/spec_tests/data/sdam/errors/
|
2678
|
-
- spec/spec_tests/data/sdam/
|
2679
|
-
- spec/spec_tests/data/sdam/
|
2680
|
-
- spec/spec_tests/data/sdam/
|
2681
|
-
- spec/spec_tests/data/sdam/
|
2682
|
-
- spec/spec_tests/data/sdam/
|
2683
|
-
- spec/spec_tests/data/sdam/
|
2684
|
-
- spec/spec_tests/data/sdam/sharded/multiple_mongoses.yml
|
2685
|
-
- spec/spec_tests/data/sdam/sharded/discover_single_mongos.yml
|
2686
|
-
- spec/spec_tests/data/sdam/sharded/ruby_primary_different_address.yml
|
2687
|
-
- spec/spec_tests/data/sdam/sharded/ls_timeout_mongos.yml
|
2688
|
-
- spec/spec_tests/data/sdam/sharded/non_mongos_removed.yml
|
2689
|
-
- spec/spec_tests/data/sdam/single/ruby_primary_mismatched_me.yml
|
2690
|
-
- spec/spec_tests/data/sdam/single/not_ok_response.yml
|
2691
|
-
- spec/spec_tests/data/sdam/single/discover_unavailable_seed.yml
|
2692
|
-
- spec/spec_tests/data/sdam/single/direct_connection_rsarbiter.yml
|
2693
|
-
- spec/spec_tests/data/sdam/single/too_new.yml
|
2694
|
-
- spec/spec_tests/data/sdam/single/too_old.yml
|
2695
|
-
- spec/spec_tests/data/sdam/single/direct_connection_unavailable_seed.yml
|
2696
|
-
- spec/spec_tests/data/sdam/single/discover_standalone.yml
|
2697
|
-
- spec/spec_tests/data/sdam/single/direct_connection_rsprimary.yml
|
2698
|
-
- spec/spec_tests/data/sdam/single/too_old_then_upgraded.yml
|
2699
|
-
- spec/spec_tests/data/sdam/single/direct_connection_wrong_set_name.yml
|
2700
|
-
- spec/spec_tests/data/sdam/single/compatible.yml
|
2701
|
-
- spec/spec_tests/data/sdam/single/ls_timeout_standalone.yml
|
2702
|
-
- spec/spec_tests/data/sdam/single/standalone_removed.yml
|
2703
|
-
- spec/spec_tests/data/sdam/single/direct_connection_mongos.yml
|
2034
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-InterruptedAtShutdown.yml
|
2035
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-ShutdownInProgress.yml
|
2036
|
+
- spec/spec_tests/data/sdam/errors/stale-topologyVersion-ShutdownInProgress.yml
|
2037
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-PrimarySteppedDown.yml
|
2038
|
+
- spec/spec_tests/data/sdam/errors/stale-topologyVersion-InterruptedAtShutdown.yml
|
2039
|
+
- spec/spec_tests/data/sdam/errors/pre-42-NotWritablePrimary.yml
|
2040
|
+
- spec/spec_tests/data/sdam/errors/stale-topologyVersion-InterruptedDueToReplStateChange.yml
|
2041
|
+
- spec/spec_tests/data/sdam/errors/post-42-LegacyNotPrimary.yml
|
2042
|
+
- spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-timeout.yml
|
2043
|
+
- spec/spec_tests/data/sdam/single/too_new.yml
|
2704
2044
|
- spec/spec_tests/data/sdam/single/direct_connection_rssecondary.yml
|
2705
|
-
- spec/spec_tests/data/sdam/single/ruby_primary_different_address.yml
|
2706
|
-
- spec/spec_tests/data/sdam/single/direct_connection_standalone.yml
|
2707
|
-
- spec/spec_tests/data/sdam/single/direct_connection_external_ip.yml
|
2708
2045
|
- spec/spec_tests/data/sdam/single/standalone_using_legacy_hello.yml
|
2046
|
+
- spec/spec_tests/data/sdam/single/direct_connection_standalone.yml
|
2047
|
+
- spec/spec_tests/data/sdam/single/direct_connection_rsarbiter.yml
|
2048
|
+
- spec/spec_tests/data/sdam/single/too_old.yml
|
2049
|
+
- spec/spec_tests/data/sdam/single/direct_connection_wrong_set_name.yml
|
2050
|
+
- spec/spec_tests/data/sdam/single/ruby_primary_mismatched_me.yml
|
2709
2051
|
- spec/spec_tests/data/sdam/single/direct_connection_replicaset.yml
|
2052
|
+
- spec/spec_tests/data/sdam/single/too_old_then_upgraded.yml
|
2053
|
+
- spec/spec_tests/data/sdam/single/standalone_removed.yml
|
2054
|
+
- spec/spec_tests/data/sdam/single/discover_unavailable_seed.yml
|
2055
|
+
- spec/spec_tests/data/sdam/single/not_ok_response.yml
|
2056
|
+
- spec/spec_tests/data/sdam/single/direct_connection_rsprimary.yml
|
2057
|
+
- spec/spec_tests/data/sdam/single/ls_timeout_standalone.yml
|
2058
|
+
- spec/spec_tests/data/sdam/single/direct_connection_mongos.yml
|
2059
|
+
- spec/spec_tests/data/sdam/single/direct_connection_external_ip.yml
|
2060
|
+
- spec/spec_tests/data/sdam/single/direct_connection_unavailable_seed.yml
|
2061
|
+
- spec/spec_tests/data/sdam/single/discover_standalone.yml
|
2062
|
+
- spec/spec_tests/data/sdam/single/compatible.yml
|
2063
|
+
- spec/spec_tests/data/sdam/single/ruby_primary_different_address.yml
|
2064
|
+
- spec/spec_tests/data/sdam/rs/setversion_without_electionid.yml
|
2065
|
+
- spec/spec_tests/data/sdam/rs/too_new.yml
|
2066
|
+
- spec/spec_tests/data/sdam/rs/primary_becomes_mongos.yml
|
2067
|
+
- spec/spec_tests/data/sdam/rs/secondary_ignore_ok_0.yml
|
2068
|
+
- spec/spec_tests/data/sdam/rs/repeated.yml
|
2710
2069
|
- spec/spec_tests/data/sdam/rs/incompatible_arbiter.yml
|
2711
2070
|
- spec/spec_tests/data/sdam/rs/unexpected_mongos.yml
|
2712
|
-
- spec/spec_tests/data/sdam/rs/
|
2713
|
-
- spec/spec_tests/data/sdam/rs/
|
2714
|
-
- spec/spec_tests/data/sdam/rs/
|
2715
|
-
- spec/spec_tests/data/sdam/rs/
|
2071
|
+
- spec/spec_tests/data/sdam/rs/primary_becomes_ghost.yml
|
2072
|
+
- spec/spec_tests/data/sdam/rs/discover_passives_replicaset.yml
|
2073
|
+
- spec/spec_tests/data/sdam/rs/normalize_case_me.yml
|
2074
|
+
- spec/spec_tests/data/sdam/rs/discover_secondary_replicaset.yml
|
2716
2075
|
- spec/spec_tests/data/sdam/rs/too_old.yml
|
2717
|
-
- spec/spec_tests/data/sdam/rs/compatible_unknown.yml
|
2718
|
-
- spec/spec_tests/data/sdam/rs/topology_version_greater.yml
|
2719
|
-
- spec/spec_tests/data/sdam/rs/normalize_case.yml
|
2720
|
-
- spec/spec_tests/data/sdam/rs/primary_becomes_standalone.yml
|
2721
|
-
- spec/spec_tests/data/sdam/rs/response_from_removed.yml
|
2722
|
-
- spec/spec_tests/data/sdam/rs/discover_primary.yml
|
2723
2076
|
- spec/spec_tests/data/sdam/rs/primary_disconnect.yml
|
2724
|
-
- spec/spec_tests/data/sdam/rs/
|
2725
|
-
- spec/spec_tests/data/sdam/rs/primary_reports_new_member.yml
|
2726
|
-
- spec/spec_tests/data/sdam/rs/member_reconfig.yml
|
2727
|
-
- spec/spec_tests/data/sdam/rs/setversion_without_electionid.yml
|
2728
|
-
- spec/spec_tests/data/sdam/rs/primary_mismatched_me_not_removed.yml
|
2729
|
-
- spec/spec_tests/data/sdam/rs/primary_becomes_ghost.yml
|
2077
|
+
- spec/spec_tests/data/sdam/rs/secondary_wrong_set_name.yml
|
2730
2078
|
- spec/spec_tests/data/sdam/rs/discover_passives.yml
|
2731
|
-
- spec/spec_tests/data/sdam/rs/
|
2732
|
-
- spec/spec_tests/data/sdam/rs/
|
2733
|
-
- spec/spec_tests/data/sdam/rs/
|
2734
|
-
- spec/spec_tests/data/sdam/rs/
|
2735
|
-
- spec/spec_tests/data/sdam/rs/secondary_mismatched_me.yml
|
2079
|
+
- spec/spec_tests/data/sdam/rs/discover_ghost.yml
|
2080
|
+
- spec/spec_tests/data/sdam/rs/hosts_differ_from_seeds.yml
|
2081
|
+
- spec/spec_tests/data/sdam/rs/primary_changes_set_name.yml
|
2082
|
+
- spec/spec_tests/data/sdam/rs/discover_rsother.yml
|
2736
2083
|
- spec/spec_tests/data/sdam/rs/primary_hint_from_secondary_with_mismatched_me.yml
|
2737
|
-
- spec/spec_tests/data/sdam/rs/
|
2738
|
-
- spec/spec_tests/data/sdam/rs/
|
2084
|
+
- spec/spec_tests/data/sdam/rs/ruby_primary_address_change.yml
|
2085
|
+
- spec/spec_tests/data/sdam/rs/response_from_removed.yml
|
2086
|
+
- spec/spec_tests/data/sdam/rs/topology_version_equal.yml
|
2087
|
+
- spec/spec_tests/data/sdam/rs/primary_to_no_primary_mismatched_me.yml
|
2088
|
+
- spec/spec_tests/data/sdam/rs/ruby_secondary_wrong_set_name_with_primary_second.yml
|
2089
|
+
- spec/spec_tests/data/sdam/rs/topology_version_less.yml
|
2090
|
+
- spec/spec_tests/data/sdam/rs/stepdown_change_set_name.yml
|
2091
|
+
- spec/spec_tests/data/sdam/rs/discover_hidden_replicaset.yml
|
2092
|
+
- spec/spec_tests/data/sdam/rs/normalize_case.yml
|
2739
2093
|
- spec/spec_tests/data/sdam/rs/incompatible_ghost.yml
|
2740
|
-
- spec/spec_tests/data/sdam/rs/
|
2741
|
-
- spec/spec_tests/data/sdam/rs/
|
2742
|
-
- spec/spec_tests/data/sdam/rs/primary_disconnect_electionid.yml
|
2094
|
+
- spec/spec_tests/data/sdam/rs/discover_secondary.yml
|
2095
|
+
- spec/spec_tests/data/sdam/rs/equal_electionids.yml
|
2743
2096
|
- spec/spec_tests/data/sdam/rs/secondary_wrong_set_name_with_primary.yml
|
2097
|
+
- spec/spec_tests/data/sdam/rs/discover_arbiters.yml
|
2098
|
+
- spec/spec_tests/data/sdam/rs/secondary_mismatched_me.yml
|
2099
|
+
- spec/spec_tests/data/sdam/rs/compatible_unknown.yml
|
2744
2100
|
- spec/spec_tests/data/sdam/rs/wrong_set_name.yml
|
2745
|
-
- spec/spec_tests/data/sdam/rs/
|
2746
|
-
- spec/spec_tests/data/sdam/rs/
|
2747
|
-
- spec/spec_tests/data/sdam/rs/
|
2101
|
+
- spec/spec_tests/data/sdam/rs/null_election_id.yml
|
2102
|
+
- spec/spec_tests/data/sdam/rs/incompatible_other.yml
|
2103
|
+
- spec/spec_tests/data/sdam/rs/primary_disconnect_electionid.yml
|
2104
|
+
- spec/spec_tests/data/sdam/rs/new_primary.yml
|
2105
|
+
- spec/spec_tests/data/sdam/rs/discover_primary_replicaset.yml
|
2106
|
+
- spec/spec_tests/data/sdam/rs/discover_arbiters_replicaset.yml
|
2107
|
+
- spec/spec_tests/data/sdam/rs/new_primary_new_electionid.yml
|
2748
2108
|
- spec/spec_tests/data/sdam/rs/discover_hidden.yml
|
2749
|
-
- spec/spec_tests/data/sdam/rs/
|
2750
|
-
- spec/spec_tests/data/sdam/rs/discover_rsother_replicaset.yml
|
2751
|
-
- spec/spec_tests/data/sdam/rs/equal_electionids.yml
|
2752
|
-
- spec/spec_tests/data/sdam/rs/new_primary_new_setversion.yml
|
2753
|
-
- spec/spec_tests/data/sdam/rs/member_standalone.yml
|
2109
|
+
- spec/spec_tests/data/sdam/rs/primary_mismatched_me.yml
|
2754
2110
|
- spec/spec_tests/data/sdam/rs/replicaset_rsnp.yml
|
2755
|
-
- spec/spec_tests/data/sdam/rs/
|
2111
|
+
- spec/spec_tests/data/sdam/rs/primary_disconnect_setversion.yml
|
2112
|
+
- spec/spec_tests/data/sdam/rs/discover_rsother_replicaset.yml
|
2113
|
+
- spec/spec_tests/data/sdam/rs/member_reconfig.yml
|
2114
|
+
- spec/spec_tests/data/sdam/rs/primary_mismatched_me_not_removed.yml
|
2115
|
+
- spec/spec_tests/data/sdam/rs/new_primary_wrong_set_name.yml
|
2116
|
+
- spec/spec_tests/data/sdam/rs/primary_reports_new_member.yml
|
2756
2117
|
- spec/spec_tests/data/sdam/rs/non_rs_member.yml
|
2757
|
-
- spec/spec_tests/data/sdam/rs/
|
2118
|
+
- spec/spec_tests/data/sdam/rs/primary_becomes_standalone.yml
|
2119
|
+
- spec/spec_tests/data/sdam/rs/discover_primary.yml
|
2120
|
+
- spec/spec_tests/data/sdam/rs/use_setversion_without_electionid.yml
|
2121
|
+
- spec/spec_tests/data/sdam/rs/member_standalone.yml
|
2122
|
+
- spec/spec_tests/data/sdam/rs/discovery.yml
|
2123
|
+
- spec/spec_tests/data/sdam/rs/compatible.yml
|
2124
|
+
- spec/spec_tests/data/sdam/rs/sec_not_auth.yml
|
2758
2125
|
- spec/spec_tests/data/sdam/rs/ls_timeout.yml
|
2759
|
-
- spec/spec_tests/data/sdam/rs/
|
2760
|
-
- spec/spec_tests/data/sdam/rs/
|
2761
|
-
- spec/spec_tests/data/sdam/rs/
|
2762
|
-
- spec/spec_tests/data/sdam/rs/
|
2763
|
-
- spec/spec_tests/data/sdam/
|
2764
|
-
- spec/spec_tests/data/
|
2765
|
-
- spec/spec_tests/data/
|
2766
|
-
- spec/spec_tests/data/
|
2767
|
-
- spec/spec_tests/data/
|
2768
|
-
- spec/spec_tests/data/
|
2769
|
-
- spec/spec_tests/data/
|
2770
|
-
- spec/spec_tests/data/
|
2771
|
-
- spec/spec_tests/data/
|
2772
|
-
- spec/spec_tests/data/
|
2773
|
-
- spec/spec_tests/data/
|
2774
|
-
- spec/spec_tests/data/
|
2775
|
-
- spec/spec_tests/data/
|
2776
|
-
- spec/spec_tests/data/
|
2777
|
-
- spec/spec_tests/data/gridfs
|
2778
|
-
- spec/spec_tests/data/gridfs
|
2779
|
-
- spec/spec_tests/data/
|
2780
|
-
- spec/spec_tests/data/
|
2781
|
-
- spec/spec_tests/data/
|
2782
|
-
- spec/spec_tests/data/
|
2783
|
-
- spec/spec_tests/data/
|
2784
|
-
- spec/spec_tests/data/
|
2785
|
-
- spec/spec_tests/data/
|
2786
|
-
- spec/spec_tests/data/
|
2787
|
-
- spec/spec_tests/data/
|
2788
|
-
- spec/spec_tests/data/
|
2789
|
-
- spec/spec_tests/data/
|
2790
|
-
- spec/spec_tests/data/
|
2791
|
-
- spec/spec_tests/data/
|
2792
|
-
- spec/spec_tests/data/
|
2793
|
-
- spec/spec_tests/data/
|
2794
|
-
- spec/spec_tests/data/
|
2795
|
-
- spec/spec_tests/data/
|
2796
|
-
- spec/spec_tests/data/
|
2797
|
-
- spec/spec_tests/data/
|
2798
|
-
- spec/spec_tests/data/
|
2799
|
-
- spec/spec_tests/data/
|
2800
|
-
- spec/spec_tests/data/
|
2801
|
-
- spec/spec_tests/data/
|
2802
|
-
- spec/spec_tests/data/
|
2803
|
-
- spec/spec_tests/data/
|
2804
|
-
- spec/spec_tests/data/
|
2805
|
-
- spec/spec_tests/data/
|
2806
|
-
- spec/spec_tests/data/
|
2807
|
-
- spec/spec_tests/data/
|
2808
|
-
- spec/spec_tests/data/
|
2809
|
-
- spec/spec_tests/data/
|
2810
|
-
- spec/spec_tests/data/
|
2811
|
-
- spec/spec_tests/data/
|
2812
|
-
- spec/spec_tests/data/
|
2813
|
-
- spec/spec_tests/data/
|
2814
|
-
- spec/spec_tests/data/
|
2815
|
-
- spec/spec_tests/data/
|
2816
|
-
- spec/spec_tests/data/
|
2817
|
-
- spec/spec_tests/data/
|
2818
|
-
- spec/spec_tests/data/
|
2819
|
-
- spec/spec_tests/data/
|
2820
|
-
- spec/spec_tests/data/
|
2821
|
-
- spec/spec_tests/data/
|
2822
|
-
- spec/spec_tests/data/
|
2823
|
-
- spec/spec_tests/data/
|
2824
|
-
- spec/spec_tests/data/
|
2825
|
-
- spec/spec_tests/data/
|
2826
|
-
- spec/spec_tests/
|
2827
|
-
- spec/spec_tests/
|
2828
|
-
- spec/spec_tests/
|
2829
|
-
- spec/spec_tests/
|
2830
|
-
- spec/spec_tests/
|
2831
|
-
- spec/spec_tests/
|
2832
|
-
- spec/spec_tests/
|
2833
|
-
- spec/spec_tests/
|
2834
|
-
- spec/spec_tests/
|
2835
|
-
- spec/spec_tests/
|
2836
|
-
- spec/spec_tests/
|
2837
|
-
- spec/spec_tests/
|
2838
|
-
- spec/spec_tests/
|
2126
|
+
- spec/spec_tests/data/sdam/rs/new_primary_new_setversion.yml
|
2127
|
+
- spec/spec_tests/data/sdam/rs/topology_version_greater.yml
|
2128
|
+
- spec/spec_tests/data/sdam/rs/primary_wrong_set_name.yml
|
2129
|
+
- spec/spec_tests/data/sdam/rs/discover_ghost_replicaset.yml
|
2130
|
+
- spec/spec_tests/data/sdam/load-balanced/discover_load_balancer.yml
|
2131
|
+
- spec/spec_tests/data/retryable_reads/legacy/listDatabases.yml
|
2132
|
+
- spec/spec_tests/data/retryable_reads/legacy/changeStreams-db.watch.yml
|
2133
|
+
- spec/spec_tests/data/retryable_reads/legacy/listDatabaseNames-serverErrors.yml
|
2134
|
+
- spec/spec_tests/data/retryable_reads/legacy/listCollections.yml
|
2135
|
+
- spec/spec_tests/data/retryable_reads/legacy/listCollectionNames.yml
|
2136
|
+
- spec/spec_tests/data/retryable_reads/legacy/listCollections-serverErrors.yml
|
2137
|
+
- spec/spec_tests/data/retryable_reads/legacy/find.yml
|
2138
|
+
- spec/spec_tests/data/retryable_reads/legacy/aggregate-serverErrors.yml
|
2139
|
+
- spec/spec_tests/data/retryable_reads/legacy/countDocuments.yml
|
2140
|
+
- spec/spec_tests/data/retryable_reads/legacy/changeStreams-client.watch.yml
|
2141
|
+
- spec/spec_tests/data/retryable_reads/legacy/listDatabaseObjects.yml
|
2142
|
+
- spec/spec_tests/data/retryable_reads/legacy/changeStreams-db.watch-serverErrors.yml
|
2143
|
+
- spec/spec_tests/data/retryable_reads/legacy/listDatabaseObjects-serverErrors.yml
|
2144
|
+
- spec/spec_tests/data/retryable_reads/legacy/gridfs-download-serverErrors.yml
|
2145
|
+
- spec/spec_tests/data/retryable_reads/legacy/gridfs-downloadByName.yml
|
2146
|
+
- spec/spec_tests/data/retryable_reads/legacy/aggregate-merge.yml
|
2147
|
+
- spec/spec_tests/data/retryable_reads/legacy/count.yml
|
2148
|
+
- spec/spec_tests/data/retryable_reads/legacy/distinct-serverErrors.yml
|
2149
|
+
- spec/spec_tests/data/retryable_reads/legacy/listDatabases-serverErrors.yml
|
2150
|
+
- spec/spec_tests/data/retryable_reads/legacy/estimatedDocumentCount.yml
|
2151
|
+
- spec/spec_tests/data/retryable_reads/legacy/listIndexes-serverErrors.yml
|
2152
|
+
- spec/spec_tests/data/retryable_reads/legacy/count-serverErrors.yml
|
2153
|
+
- spec/spec_tests/data/retryable_reads/legacy/changeStreams-db.coll.watch.yml
|
2154
|
+
- spec/spec_tests/data/retryable_reads/legacy/listCollectionObjects-serverErrors.yml
|
2155
|
+
- spec/spec_tests/data/retryable_reads/legacy/listIndexNames-serverErrors.yml
|
2156
|
+
- spec/spec_tests/data/retryable_reads/legacy/mapReduce.yml
|
2157
|
+
- spec/spec_tests/data/retryable_reads/legacy/countDocuments-serverErrors.yml
|
2158
|
+
- spec/spec_tests/data/retryable_reads/legacy/listIndexNames.yml
|
2159
|
+
- spec/spec_tests/data/retryable_reads/legacy/listDatabaseNames.yml
|
2160
|
+
- spec/spec_tests/data/retryable_reads/legacy/gridfs-download.yml
|
2161
|
+
- spec/spec_tests/data/retryable_reads/legacy/listCollectionObjects.yml
|
2162
|
+
- spec/spec_tests/data/retryable_reads/legacy/listIndexes.yml
|
2163
|
+
- spec/spec_tests/data/retryable_reads/legacy/distinct.yml
|
2164
|
+
- spec/spec_tests/data/retryable_reads/legacy/listCollectionNames-serverErrors.yml
|
2165
|
+
- spec/spec_tests/data/retryable_reads/legacy/aggregate.yml
|
2166
|
+
- spec/spec_tests/data/retryable_reads/legacy/findOne-serverErrors.yml
|
2167
|
+
- spec/spec_tests/data/retryable_reads/legacy/changeStreams-client.watch-serverErrors.yml
|
2168
|
+
- spec/spec_tests/data/retryable_reads/legacy/estimatedDocumentCount-serverErrors.yml
|
2169
|
+
- spec/spec_tests/data/retryable_reads/legacy/findOne.yml
|
2170
|
+
- spec/spec_tests/data/retryable_reads/legacy/gridfs-downloadByName-serverErrors.yml
|
2171
|
+
- spec/spec_tests/data/retryable_reads/legacy/changeStreams-db.coll.watch-serverErrors.yml
|
2172
|
+
- spec/spec_tests/data/retryable_reads/legacy/find-serverErrors.yml
|
2173
|
+
- spec/spec_tests/data/retryable_reads/unified/handshakeError.yml
|
2174
|
+
- spec/spec_tests/data/client_side_encryption/fle2-FindOneAndUpdate.yml
|
2175
|
+
- spec/spec_tests/data/client_side_encryption/replaceOne.yml
|
2176
|
+
- spec/spec_tests/data/client_side_encryption/fle2-validatorAndPartialFieldExpression.yml
|
2177
|
+
- spec/spec_tests/data/client_side_encryption/maxWireVersion.yml
|
2178
|
+
- spec/spec_tests/data/client_side_encryption/fle2-Compact.yml
|
2179
|
+
- spec/spec_tests/data/client_side_encryption/localSchema.yml
|
2180
|
+
- spec/spec_tests/data/client_side_encryption/findOneAndDelete.yml
|
2181
|
+
- spec/spec_tests/data/client_side_encryption/getMore.yml
|
2182
|
+
- spec/spec_tests/data/client_side_encryption/find.yml
|
2183
|
+
- spec/spec_tests/data/client_side_encryption/updateMany.yml
|
2184
|
+
- spec/spec_tests/data/client_side_encryption/explain.yml
|
2185
|
+
- spec/spec_tests/data/client_side_encryption/countDocuments.yml
|
2186
|
+
- spec/spec_tests/data/client_side_encryption/fle2-MissingKey.yml
|
2187
|
+
- spec/spec_tests/data/client_side_encryption/fle2-DecryptExistingData.yml
|
2188
|
+
- spec/spec_tests/data/client_side_encryption/keyAltName.yml
|
2189
|
+
- spec/spec_tests/data/client_side_encryption/bulk.yml
|
2190
|
+
- spec/spec_tests/data/client_side_encryption/malformedCiphertext.yml
|
2191
|
+
- spec/spec_tests/data/client_side_encryption/localKMS.yml
|
2192
|
+
- spec/spec_tests/data/client_side_encryption/updateOne.yml
|
2193
|
+
- spec/spec_tests/data/client_side_encryption/noSchema.yml
|
2194
|
+
- spec/spec_tests/data/client_side_encryption/fle2-Delete.yml
|
2195
|
+
- spec/spec_tests/data/client_side_encryption/fle2-InsertFind-Indexed.yml
|
2196
|
+
- spec/spec_tests/data/client_side_encryption/gcpKMS.yml
|
2197
|
+
- spec/spec_tests/data/client_side_encryption/fle2-EncryptedFields-vs-EncryptedFieldsMap.yml
|
2198
|
+
- spec/spec_tests/data/client_side_encryption/unsupportedCommand.yml
|
2199
|
+
- spec/spec_tests/data/client_side_encryption/badQueries.yml
|
2200
|
+
- spec/spec_tests/data/client_side_encryption/fle2-EncryptedFieldsMap-defaults.yml
|
2201
|
+
- spec/spec_tests/data/client_side_encryption/count.yml
|
2202
|
+
- spec/spec_tests/data/client_side_encryption/basic.yml
|
2203
|
+
- spec/spec_tests/data/client_side_encryption/fle2-BypassQueryAnalysis.yml
|
2204
|
+
- spec/spec_tests/data/client_side_encryption/findOneAndReplace.yml
|
2205
|
+
- spec/spec_tests/data/client_side_encryption/azureKMS.yml
|
2206
|
+
- spec/spec_tests/data/client_side_encryption/badSchema.yml
|
2207
|
+
- spec/spec_tests/data/client_side_encryption/bypassAutoEncryption.yml
|
2208
|
+
- spec/spec_tests/data/client_side_encryption/fle2-NoEncryption.yml
|
2209
|
+
- spec/spec_tests/data/client_side_encryption/delete.yml
|
2210
|
+
- spec/spec_tests/data/client_side_encryption/missingKey.yml
|
2211
|
+
- spec/spec_tests/data/client_side_encryption/bypassedCommand.yml
|
2212
|
+
- spec/spec_tests/data/client_side_encryption/distinct.yml
|
2213
|
+
- spec/spec_tests/data/client_side_encryption/fle2-EncryptedFields-vs-jsonSchema.yml
|
2214
|
+
- spec/spec_tests/data/client_side_encryption/fle2-InsertFind-Unindexed.yml
|
2215
|
+
- spec/spec_tests/data/client_side_encryption/aggregate.yml
|
2216
|
+
- spec/spec_tests/data/client_side_encryption/findOneAndUpdate.yml
|
2217
|
+
- spec/spec_tests/data/client_side_encryption/types.yml
|
2218
|
+
- spec/spec_tests/data/client_side_encryption/insert.yml
|
2219
|
+
- spec/spec_tests/data/client_side_encryption/fle2-CreateCollection.yml
|
2220
|
+
- spec/spec_tests/data/client_side_encryption/fle2-Update.yml
|
2221
|
+
- spec/spec_tests/data/sessions_unified/snapshot-sessions-not-supported-client-error.yml
|
2222
|
+
- spec/spec_tests/data/sessions_unified/snapshot-sessions-not-supported-server-error.yml
|
2223
|
+
- spec/spec_tests/data/sessions_unified/snapshot-sessions.yml
|
2224
|
+
- spec/spec_tests/data/sessions_unified/driver-sessions-server-support.yml
|
2225
|
+
- spec/spec_tests/data/sessions_unified/snapshot-sessions-unsupported-ops.yml
|
2226
|
+
- spec/spec_tests/data/server_selection/Single/read/SecondaryPreferred.yml
|
2227
|
+
- spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/Nearest_non_matching.yml
|
2228
|
+
- spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/Nearest_multiple.yml
|
2229
|
+
- spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/Secondary.yml
|
2230
|
+
- spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/Secondary_non_matching.yml
|
2231
|
+
- spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/PrimaryPreferred.yml
|
2232
|
+
- spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/Primary.yml
|
2233
|
+
- spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/SecondaryPreferred_non_matching.yml
|
2234
|
+
- spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/SecondaryPreferred_tags.yml
|
2235
|
+
- spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/SecondaryPreferred.yml
|
2236
|
+
- spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/Nearest.yml
|
2237
|
+
- spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/PrimaryPreferred_non_matching.yml
|
2238
|
+
- spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/Secondary_multi_tags2.yml
|
2239
|
+
- spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/PossiblePrimaryNearest.yml
|
2240
|
+
- spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/PossiblePrimary.yml
|
2241
|
+
- spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/Nearest_non_matching.yml
|
2242
|
+
- spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/Nearest_multiple.yml
|
2243
|
+
- spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/Secondary.yml
|
2244
|
+
- spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/Secondary_non_matching.yml
|
2245
|
+
- spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/PrimaryPreferred.yml
|
2246
|
+
- spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/Secondary_multi_tags.yml
|
2247
|
+
- spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/Primary.yml
|
2248
|
+
- spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/SecondaryPreferred_non_matching.yml
|
2249
|
+
- spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/SecondaryPreferred.yml
|
2250
|
+
- spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/Nearest.yml
|
2251
|
+
- spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/PrimaryPreferred_non_matching.yml
|
2252
|
+
- spec/spec_tests/data/server_selection/Sharded/read/Secondary.yml
|
2253
|
+
- spec/spec_tests/data/server_selection/Sharded/read/PrimaryPreferred.yml
|
2254
|
+
- spec/spec_tests/data/server_selection/Sharded/read/Primary.yml
|
2255
|
+
- spec/spec_tests/data/server_selection/Sharded/read/SecondaryPreferred.yml
|
2256
|
+
- spec/spec_tests/data/server_selection/Sharded/read/Nearest.yml
|
2257
|
+
- spec/spec_tests/data/server_selection/Unknown/write/ghost.yml
|
2258
|
+
- spec/spec_tests/data/server_selection/Unknown/read/ghost.yml
|
2259
|
+
- spec/spec_tests/data/server_selection/Unknown/read/SecondaryPreferred.yml
|
2260
|
+
- spec/spec_tests/data/max_staleness/Single/SmallMaxStaleness.yml
|
2261
|
+
- spec/spec_tests/data/max_staleness/Single/Incompatible.yml
|
2262
|
+
- spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/LastUpdateTime.yml
|
2263
|
+
- spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/SecondaryPreferred_tags2.yml
|
2264
|
+
- spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/ZeroMaxStaleness.yml
|
2265
|
+
- spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/Nearest2.yml
|
2266
|
+
- spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/MaxStalenessTooSmall.yml
|
2267
|
+
- spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/PrimaryPreferred.yml
|
2268
|
+
- spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/LongHeartbeat2.yml
|
2269
|
+
- spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/Nearest_tags.yml
|
2270
|
+
- spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/PrimaryPreferred_incompatible.yml
|
2271
|
+
- spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/Secondary_tags2.yml
|
2272
|
+
- spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/LongHeartbeat.yml
|
2273
|
+
- spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/Incompatible.yml
|
2274
|
+
- spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/DefaultNoMaxStaleness.yml
|
2275
|
+
- spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/Secondary_tags.yml
|
2276
|
+
- spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/SecondaryPreferred_tags.yml
|
2277
|
+
- spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/SecondaryPreferred.yml
|
2278
|
+
- spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/Nearest.yml
|
2279
|
+
- spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/MaxStalenessWithModePrimary.yml
|
2280
|
+
- spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/LastUpdateTime.yml
|
2281
|
+
- spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/NoKnownServers.yml
|
2282
|
+
- spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/ZeroMaxStaleness.yml
|
2283
|
+
- spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/Nearest2.yml
|
2284
|
+
- spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/MaxStalenessTooSmall.yml
|
2285
|
+
- spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/Secondary.yml
|
2286
|
+
- spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/PrimaryPreferred.yml
|
2287
|
+
- spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/Incompatible.yml
|
2288
|
+
- spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/DefaultNoMaxStaleness.yml
|
2289
|
+
- spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/PrimaryPreferred_tags.yml
|
2290
|
+
- spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/SecondaryPreferred_tags.yml
|
2291
|
+
- spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/SecondaryPreferred.yml
|
2292
|
+
- spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/Nearest.yml
|
2293
|
+
- spec/spec_tests/data/max_staleness/Sharded/SmallMaxStaleness.yml
|
2294
|
+
- spec/spec_tests/data/max_staleness/Sharded/Incompatible.yml
|
2295
|
+
- spec/spec_tests/data/max_staleness/Unknown/SmallMaxStaleness.yml
|
2296
|
+
- spec/spec_tests/data/versioned_api/test-commands-strict-mode.yml
|
2297
|
+
- spec/spec_tests/data/versioned_api/test-commands-deprecation-errors.yml
|
2298
|
+
- spec/spec_tests/data/versioned_api/runcommand-helper-no-api-version-declared.yml
|
2299
|
+
- spec/spec_tests/data/versioned_api/crud-api-version-1.yml
|
2300
|
+
- spec/spec_tests/data/versioned_api/crud-api-version-1-strict.yml
|
2301
|
+
- spec/spec_tests/data/versioned_api/transaction-handling.yml
|
2302
|
+
- spec/spec_tests/data/server_selection_rtt/first_value.yml
|
2303
|
+
- spec/spec_tests/data/server_selection_rtt/value_test_3.yml
|
2304
|
+
- spec/spec_tests/data/server_selection_rtt/value_test_1.yml
|
2305
|
+
- spec/spec_tests/data/server_selection_rtt/value_test_5.yml
|
2306
|
+
- spec/spec_tests/data/server_selection_rtt/first_value_zero.yml
|
2307
|
+
- spec/spec_tests/data/server_selection_rtt/value_test_2.yml
|
2308
|
+
- spec/spec_tests/data/server_selection_rtt/value_test_4.yml
|
2309
|
+
- spec/spec_tests/data/crud/write/replaceOne.yml
|
2310
|
+
- spec/spec_tests/data/crud/write/findOneAndUpdate-collation.yml
|
2311
|
+
- spec/spec_tests/data/crud/write/insertMany.yml
|
2312
|
+
- spec/spec_tests/data/crud/write/findOneAndDelete.yml
|
2313
|
+
- spec/spec_tests/data/crud/write/updateMany.yml
|
2314
|
+
- spec/spec_tests/data/crud/write/deleteOne.yml
|
2315
|
+
- spec/spec_tests/data/crud/write/insertOne.yml
|
2316
|
+
- spec/spec_tests/data/crud/write/replaceOne-collation.yml
|
2317
|
+
- spec/spec_tests/data/crud/write/updateOne.yml
|
2318
|
+
- spec/spec_tests/data/crud/write/bulkWrite-collation.yml
|
2319
|
+
- spec/spec_tests/data/crud/write/replaceOne-pre_2.6.yml
|
2320
|
+
- spec/spec_tests/data/crud/write/bulkWrite.yml
|
2321
|
+
- spec/spec_tests/data/crud/write/deleteOne-collation.yml
|
2322
|
+
- spec/spec_tests/data/crud/write/findOneAndReplace-upsert.yml
|
2323
|
+
- spec/spec_tests/data/crud/write/updateMany-pre_2.6.yml
|
2324
|
+
- spec/spec_tests/data/crud/write/findOneAndReplace.yml
|
2325
|
+
- spec/spec_tests/data/crud/write/findOneAndReplace-collation.yml
|
2326
|
+
- spec/spec_tests/data/crud/write/findOneAndUpdate-arrayFilters.yml
|
2327
|
+
- spec/spec_tests/data/crud/write/deleteMany-collation.yml
|
2328
|
+
- spec/spec_tests/data/crud/write/updateOne-pre_2.6.yml
|
2329
|
+
- spec/spec_tests/data/crud/write/updateOne-collation.yml
|
2330
|
+
- spec/spec_tests/data/crud/write/replaceOne-upsert.yml
|
2331
|
+
- spec/spec_tests/data/crud/write/updateOne-arrayFilters.yml
|
2332
|
+
- spec/spec_tests/data/crud/write/findOneAndReplace-upsert_pre_2.6.yml
|
2333
|
+
- spec/spec_tests/data/crud/write/updateMany-arrayFilters.yml
|
2334
|
+
- spec/spec_tests/data/crud/write/findOneAndUpdate.yml
|
2335
|
+
- spec/spec_tests/data/crud/write/deleteMany.yml
|
2336
|
+
- spec/spec_tests/data/crud/write/findOneAndDelete-collation.yml
|
2337
|
+
- spec/spec_tests/data/crud/write/updateMany-collation.yml
|
2338
|
+
- spec/spec_tests/data/crud/write/bulkWrite-arrayFilters.yml
|
2339
|
+
- spec/spec_tests/data/crud/read/find.yml
|
2340
|
+
- spec/spec_tests/data/crud/read/count-empty.yml
|
2341
|
+
- spec/spec_tests/data/crud/read/count-collation.yml
|
2342
|
+
- spec/spec_tests/data/crud/read/count.yml
|
2343
|
+
- spec/spec_tests/data/crud/read/aggregate-out.yml
|
2344
|
+
- spec/spec_tests/data/crud/read/find-collation.yml
|
2345
|
+
- spec/spec_tests/data/crud/read/distinct-collation.yml
|
2346
|
+
- spec/spec_tests/data/crud/read/distinct.yml
|
2347
|
+
- spec/spec_tests/data/crud/read/aggregate.yml
|
2348
|
+
- spec/spec_tests/data/crud/read/aggregate-collation.yml
|
2349
|
+
- spec/spec_tests/data/uri_options/compression-options.yml
|
2350
|
+
- spec/spec_tests/data/uri_options/concern-options.yml
|
2351
|
+
- spec/spec_tests/data/uri_options/connection-pool-options.yml
|
2352
|
+
- spec/spec_tests/data/uri_options/tls-options.yml
|
2353
|
+
- spec/spec_tests/data/uri_options/ruby-auth-options.yml
|
2354
|
+
- spec/spec_tests/data/uri_options/srv-options.yml
|
2355
|
+
- spec/spec_tests/data/uri_options/ruby-connection-options.yml
|
2356
|
+
- spec/spec_tests/data/uri_options/connection-options.yml
|
2357
|
+
- spec/spec_tests/data/uri_options/auth-options.yml
|
2358
|
+
- spec/spec_tests/data/uri_options/read-preference-options.yml
|
2359
|
+
- spec/spec_tests/data/cmap/connection-must-have-id.yml
|
2360
|
+
- spec/spec_tests/data/cmap/connection-must-order-ids.yml
|
2361
|
+
- spec/spec_tests/data/cmap/pool-checkin-destroy-stale.yml
|
2362
|
+
- spec/spec_tests/data/cmap/pool-create-min-size.yml
|
2363
|
+
- spec/spec_tests/data/cmap/pool-checkin-make-available.yml
|
2364
|
+
- spec/spec_tests/data/cmap/pool-checkout-no-stale.yml
|
2365
|
+
- spec/spec_tests/data/cmap/pool-create-with-options.yml
|
2366
|
+
- spec/spec_tests/data/cmap/pool-close.yml
|
2367
|
+
- spec/spec_tests/data/cmap/pool-checkout-no-idle.yml
|
2368
|
+
- spec/spec_tests/data/cmap/pool-checkout-error-closed.yml
|
2369
|
+
- spec/spec_tests/data/cmap/pool-checkin-destroy-closed.yml
|
2370
|
+
- spec/spec_tests/data/cmap/wait-queue-fairness.yml
|
2371
|
+
- spec/spec_tests/data/cmap/wait-queue-timeout.yml
|
2372
|
+
- spec/spec_tests/data/cmap/pool-close-destroy-conns.yml
|
2373
|
+
- spec/spec_tests/data/cmap/pool-create-max-size.yml
|
2374
|
+
- spec/spec_tests/data/cmap/pool-checkout-multiple.yml
|
2375
|
+
- spec/spec_tests/data/cmap/pool-checkout-connection.yml
|
2376
|
+
- spec/spec_tests/data/cmap/pool-checkin.yml
|
2377
|
+
- spec/spec_tests/data/cmap/pool-create.yml
|
2378
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-deleteMany-hint-unacknowledged.yml
|
2379
|
+
- spec/spec_tests/data/crud_unified/findOneAndUpdate-hint-clientError.yml
|
2380
|
+
- spec/spec_tests/data/crud_unified/replaceOne-dots_and_dollars.yml
|
2381
|
+
- spec/spec_tests/data/crud_unified/find-comment.yml
|
2382
|
+
- spec/spec_tests/data/crud_unified/updateOne-comment.yml
|
2383
|
+
- spec/spec_tests/data/crud_unified/updateOne-validation.yml
|
2384
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-replaceOne-dots_and_dollars.yml
|
2385
|
+
- spec/spec_tests/data/crud_unified/findOneAndDelete-hint-clientError.yml
|
2386
|
+
- spec/spec_tests/data/crud_unified/deleteMany-hint-clientError.yml
|
2387
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-update-validation.yml
|
2388
|
+
- spec/spec_tests/data/crud_unified/findOneAndReplace-hint-clientError.yml
|
2389
|
+
- spec/spec_tests/data/crud_unified/deleteMany-hint-unacknowledged.yml
|
2390
|
+
- spec/spec_tests/data/crud_unified/find.yml
|
2391
|
+
- spec/spec_tests/data/crud_unified/updateMany-hint.yml
|
2392
|
+
- spec/spec_tests/data/crud_unified/replaceOne-hint.yml
|
2393
|
+
- spec/spec_tests/data/crud_unified/db-aggregate.yml
|
2394
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-replaceOne-let.yml
|
2395
|
+
- spec/spec_tests/data/crud_unified/findOneAndUpdate-hint-serverError.yml
|
2396
|
+
- spec/spec_tests/data/crud_unified/findOneAndReplace-let.yml
|
2397
|
+
- spec/spec_tests/data/crud_unified/aggregate-let.yml
|
2398
|
+
- spec/spec_tests/data/crud_unified/deleteOne-hint.yml
|
2399
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-deleteOne-let.yml
|
2400
|
+
- spec/spec_tests/data/crud_unified/insertMany-comment.yml
|
2401
|
+
- spec/spec_tests/data/crud_unified/findOneAndUpdate-dots_and_dollars.yml
|
2402
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-deleteMany-let.yml
|
2403
|
+
- spec/spec_tests/data/crud_unified/findOneAndReplace-hint-serverError.yml
|
2404
|
+
- spec/spec_tests/data/crud_unified/findOneAndReplace-hint.yml
|
2405
|
+
- spec/spec_tests/data/crud_unified/findOneAndDelete-hint-unacknowledged.yml
|
2406
|
+
- spec/spec_tests/data/crud_unified/deleteMany-hint.yml
|
2407
|
+
- spec/spec_tests/data/crud_unified/findOneAndDelete-hint-serverError.yml
|
2408
|
+
- spec/spec_tests/data/crud_unified/aggregate-write-readPreference.yml
|
2409
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-updateMany-let.yml
|
2410
|
+
- spec/spec_tests/data/crud_unified/deleteMany-let.yml
|
2411
|
+
- spec/spec_tests/data/crud_unified/updateOne-dots_and_dollars.yml
|
2412
|
+
- spec/spec_tests/data/crud_unified/insertOne-dots_and_dollars.yml
|
2413
|
+
- spec/spec_tests/data/crud_unified/updateOne-hint-unacknowledged.yml
|
2414
|
+
- spec/spec_tests/data/crud_unified/replaceOne-let.yml
|
2415
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-updateOne-dots_and_dollars.yml
|
2416
|
+
- spec/spec_tests/data/crud_unified/findOneAndDelete-hint.yml
|
2417
|
+
- spec/spec_tests/data/crud_unified/aggregate-merge.yml
|
2418
|
+
- spec/spec_tests/data/crud_unified/findOneAndUpdate-comment.yml
|
2419
|
+
- spec/spec_tests/data/crud_unified/insertMany-dots_and_dollars.yml
|
2420
|
+
- spec/spec_tests/data/crud_unified/countDocuments-comment.yml
|
2421
|
+
- spec/spec_tests/data/crud_unified/find-allowdiskuse-clientError.yml
|
2422
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-delete-hint.yml
|
2423
|
+
- spec/spec_tests/data/crud_unified/findOneAndReplace-dots_and_dollars.yml
|
2424
|
+
- spec/spec_tests/data/crud_unified/insertOne-comment.yml
|
2425
|
+
- spec/spec_tests/data/crud_unified/estimatedDocumentCount.yml
|
2426
|
+
- spec/spec_tests/data/crud_unified/db-aggregate-write-readPreference.yml
|
2427
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-update-hint-clientError.yml
|
2428
|
+
- spec/spec_tests/data/crud_unified/updateMany-validation.yml
|
2429
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-updateMany-hint-unacknowledged.yml
|
2430
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-comment.yml
|
2431
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-delete-hint-clientError.yml
|
2432
|
+
- spec/spec_tests/data/crud_unified/deleteOne-hint-serverError.yml
|
2433
|
+
- spec/spec_tests/data/crud_unified/replaceOne-hint-unacknowledged.yml
|
2434
|
+
- spec/spec_tests/data/crud_unified/findOneAndReplace-hint-unacknowledged.yml
|
2435
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-updateOne-hint-unacknowledged.yml
|
2436
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-delete-hint-serverError.yml
|
2437
|
+
- spec/spec_tests/data/crud_unified/updateMany-comment.yml
|
2438
|
+
- spec/spec_tests/data/crud_unified/findOneAndDelete-comment.yml
|
2439
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-updateMany-dots_and_dollars.yml
|
2440
|
+
- spec/spec_tests/data/crud_unified/updateOne-hint-serverError.yml
|
2441
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-insertOne-dots_and_dollars.yml
|
2442
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-arrayFilters-clientError.yml
|
2443
|
+
- spec/spec_tests/data/crud_unified/updateMany-hint-clientError.yml
|
2444
|
+
- spec/spec_tests/data/crud_unified/deleteOne-comment.yml
|
2445
|
+
- spec/spec_tests/data/crud_unified/updateOne-hint.yml
|
2446
|
+
- spec/spec_tests/data/crud_unified/findOneAndUpdate-let.yml
|
2447
|
+
- spec/spec_tests/data/crud_unified/deleteOne-hint-unacknowledged.yml
|
2448
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-update-hint.yml
|
2449
|
+
- spec/spec_tests/data/crud_unified/findOneAndDelete-let.yml
|
2450
|
+
- spec/spec_tests/data/crud_unified/findOneAndUpdate-hint-unacknowledged.yml
|
2451
|
+
- spec/spec_tests/data/crud_unified/deleteOne-let.yml
|
2452
|
+
- spec/spec_tests/data/crud_unified/updateMany-hint-unacknowledged.yml
|
2453
|
+
- spec/spec_tests/data/crud_unified/updateMany-hint-serverError.yml
|
2454
|
+
- spec/spec_tests/data/crud_unified/updateOne-let.yml
|
2455
|
+
- spec/spec_tests/data/crud_unified/replaceOne-validation.yml
|
2456
|
+
- spec/spec_tests/data/crud_unified/replaceOne-comment.yml
|
2457
|
+
- spec/spec_tests/data/crud_unified/aggregate-allowdiskuse.yml
|
2458
|
+
- spec/spec_tests/data/crud_unified/deleteMany-comment.yml
|
2459
|
+
- spec/spec_tests/data/crud_unified/find-allowdiskuse-serverError.yml
|
2460
|
+
- spec/spec_tests/data/crud_unified/findOneAndReplace-comment.yml
|
2461
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-updateOne-let.yml
|
2462
|
+
- spec/spec_tests/data/crud_unified/deleteOne-hint-clientError.yml
|
2463
|
+
- spec/spec_tests/data/crud_unified/find-allowdiskuse.yml
|
2464
|
+
- spec/spec_tests/data/crud_unified/estimatedDocumentCount-comment.yml
|
2465
|
+
- spec/spec_tests/data/crud_unified/findOneAndUpdate-hint.yml
|
2466
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-deleteOne-hint-unacknowledged.yml
|
2467
|
+
- spec/spec_tests/data/crud_unified/aggregate.yml
|
2468
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-replaceOne-hint-unacknowledged.yml
|
2469
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-update-hint-serverError.yml
|
2470
|
+
- spec/spec_tests/data/crud_unified/find-let.yml
|
2471
|
+
- spec/spec_tests/data/crud_unified/updateWithPipelines.yml
|
2472
|
+
- spec/spec_tests/data/crud_unified/deleteMany-hint-serverError.yml
|
2473
|
+
- spec/spec_tests/data/crud_unified/updateMany-let.yml
|
2474
|
+
- spec/spec_tests/data/crud_unified/updateMany-dots_and_dollars.yml
|
2475
|
+
- spec/spec_tests/data/crud_unified/bulkWrite-arrayFilters.yml
|
2476
|
+
- spec/spec_tests/data/crud_unified/aggregate-out-readConcern.yml
|
2477
|
+
- spec/spec_tests/data/crud_unified/updateOne-hint-clientError.yml
|
2478
|
+
- spec/spec_tests/data/command_monitoring_unified/redacted-commands.yml
|
2479
|
+
- spec/spec_tests/data/command_monitoring_unified/server-connection-id.yml
|
2480
|
+
- spec/spec_tests/data/command_monitoring_unified/pre-42-server-connection-id.yml
|
2481
|
+
- spec/spec_tests/data/transactions_api/callback-commits.yml
|
2482
|
+
- spec/spec_tests/data/transactions_api/commit-transienttransactionerror.yml
|
2483
|
+
- spec/spec_tests/data/transactions_api/callback-retry.yml
|
2484
|
+
- spec/spec_tests/data/transactions_api/transaction-options.yml
|
2485
|
+
- spec/spec_tests/data/transactions_api/commit-writeconcernerror.yml
|
2486
|
+
- spec/spec_tests/data/transactions_api/commit.yml
|
2487
|
+
- spec/spec_tests/data/transactions_api/callback-aborts.yml
|
2488
|
+
- spec/spec_tests/data/transactions_api/commit-transienttransactionerror-4.2.yml
|
2489
|
+
- spec/spec_tests/data/transactions_api/commit-retry.yml
|
2490
|
+
- spec/spec_tests/data/transactions_unified/mongos-unpin.yml
|
2491
|
+
- spec/spec_tests/data/gridfs/download_by_name.yml
|
2492
|
+
- spec/spec_tests/data/gridfs/download.yml
|
2493
|
+
- spec/spec_tests/data/gridfs/upload.yml
|
2494
|
+
- spec/spec_tests/data/gridfs/delete.yml
|
2495
|
+
- spec/spec_tests/data/read_write_concern/operation/default-write-concern-3.2.yml
|
2496
|
+
- spec/spec_tests/data/read_write_concern/operation/default-write-concern-3.4.yml
|
2497
|
+
- spec/spec_tests/data/read_write_concern/operation/default-write-concern-4.2.yml
|
2498
|
+
- spec/spec_tests/data/read_write_concern/operation/default-write-concern-2.6.yml
|
2499
|
+
- spec/spec_tests/data/read_write_concern/connection-string/write-concern.yml
|
2500
|
+
- spec/spec_tests/data/read_write_concern/connection-string/read-concern.yml
|
2501
|
+
- spec/spec_tests/data/read_write_concern/document/write-concern.yml
|
2502
|
+
- spec/spec_tests/data/read_write_concern/document/read-concern.yml
|
2503
|
+
- spec/spec_tests/data/transactions/retryable-writes.yml
|
2504
|
+
- spec/spec_tests/data/transactions/write-concern.yml
|
2505
|
+
- spec/spec_tests/data/transactions/findOneAndDelete.yml
|
2506
|
+
- spec/spec_tests/data/transactions/update.yml
|
2507
|
+
- spec/spec_tests/data/transactions/transaction-options-repl.yml
|
2508
|
+
- spec/spec_tests/data/transactions/isolation.yml
|
2509
|
+
- spec/spec_tests/data/transactions/errors.yml
|
2510
|
+
- spec/spec_tests/data/transactions/causal-consistency.yml
|
2511
|
+
- spec/spec_tests/data/transactions/bulk.yml
|
2512
|
+
- spec/spec_tests/data/transactions/transaction-options.yml
|
2513
|
+
- spec/spec_tests/data/transactions/abort.yml
|
2514
|
+
- spec/spec_tests/data/transactions/read-pref.yml
|
2515
|
+
- spec/spec_tests/data/transactions/count.yml
|
2516
|
+
- spec/spec_tests/data/transactions/create-collection.yml
|
2517
|
+
- spec/spec_tests/data/transactions/findOneAndReplace.yml
|
2518
|
+
- spec/spec_tests/data/transactions/retryable-commit-errorLabels.yml
|
2519
|
+
- spec/spec_tests/data/transactions/reads.yml
|
2520
|
+
- spec/spec_tests/data/transactions/errors-client.yml
|
2521
|
+
- spec/spec_tests/data/transactions/commit.yml
|
2522
|
+
- spec/spec_tests/data/transactions/run-command.yml
|
2523
|
+
- spec/spec_tests/data/transactions/retryable-abort.yml
|
2524
|
+
- spec/spec_tests/data/transactions/delete.yml
|
2525
|
+
- spec/spec_tests/data/transactions/mongos-pin-auto.yml
|
2526
|
+
- spec/spec_tests/data/transactions/error-labels.yml
|
2527
|
+
- spec/spec_tests/data/transactions/retryable-commit.yml
|
2528
|
+
- spec/spec_tests/data/transactions/read-concern.yml
|
2529
|
+
- spec/spec_tests/data/transactions/create-index.yml
|
2530
|
+
- spec/spec_tests/data/transactions/findOneAndUpdate.yml
|
2531
|
+
- spec/spec_tests/data/transactions/mongos-recovery-token.yml
|
2532
|
+
- spec/spec_tests/data/transactions/insert.yml
|
2533
|
+
- spec/spec_tests/data/transactions/pin-mongos.yml
|
2534
|
+
- spec/spec_tests/data/transactions/retryable-abort-errorLabels.yml
|
2535
|
+
- spec/spec_tests/data/retryable_writes/legacy/updateOne-errorLabels.yml
|
2536
|
+
- spec/spec_tests/data/retryable_writes/legacy/replaceOne.yml
|
2537
|
+
- spec/spec_tests/data/retryable_writes/legacy/insertMany.yml
|
2538
|
+
- spec/spec_tests/data/retryable_writes/legacy/insertOne-errorLabels.yml
|
2539
|
+
- spec/spec_tests/data/retryable_writes/legacy/findOneAndDelete.yml
|
2540
|
+
- spec/spec_tests/data/retryable_writes/legacy/updateMany.yml
|
2541
|
+
- spec/spec_tests/data/retryable_writes/legacy/findOneAndUpdate-serverErrors.yml
|
2542
|
+
- spec/spec_tests/data/retryable_writes/legacy/updateOne-serverErrors.yml
|
2543
|
+
- spec/spec_tests/data/retryable_writes/legacy/deleteOne.yml
|
2544
|
+
- spec/spec_tests/data/retryable_writes/legacy/insertOne.yml
|
2545
|
+
- spec/spec_tests/data/retryable_writes/legacy/updateOne.yml
|
2546
|
+
- spec/spec_tests/data/retryable_writes/legacy/bulkWrite-errorLabels.yml
|
2547
|
+
- spec/spec_tests/data/retryable_writes/legacy/replaceOne-errorLabels.yml
|
2548
|
+
- spec/spec_tests/data/retryable_writes/legacy/findOneAndReplace-serverErrors.yml
|
2549
|
+
- spec/spec_tests/data/retryable_writes/legacy/findOneAndUpdate-errorLabels.yml
|
2550
|
+
- spec/spec_tests/data/retryable_writes/legacy/deleteOne-errorLabels.yml
|
2551
|
+
- spec/spec_tests/data/retryable_writes/legacy/replaceOne-serverErrors.yml
|
2552
|
+
- spec/spec_tests/data/retryable_writes/legacy/bulkWrite.yml
|
2553
|
+
- spec/spec_tests/data/retryable_writes/legacy/findOneAndDelete-errorLabels.yml
|
2554
|
+
- spec/spec_tests/data/retryable_writes/legacy/findOneAndReplace.yml
|
2555
|
+
- spec/spec_tests/data/retryable_writes/legacy/deleteOne-serverErrors.yml
|
2556
|
+
- spec/spec_tests/data/retryable_writes/legacy/bulkWrite-serverErrors.yml
|
2557
|
+
- spec/spec_tests/data/retryable_writes/legacy/insertMany-errorLabels.yml
|
2558
|
+
- spec/spec_tests/data/retryable_writes/legacy/insertMany-serverErrors.yml
|
2559
|
+
- spec/spec_tests/data/retryable_writes/legacy/insertOne-serverErrors.yml
|
2560
|
+
- spec/spec_tests/data/retryable_writes/legacy/findOneAndUpdate.yml
|
2561
|
+
- spec/spec_tests/data/retryable_writes/legacy/deleteMany.yml
|
2562
|
+
- spec/spec_tests/data/retryable_writes/legacy/findOneAndDelete-serverErrors.yml
|
2563
|
+
- spec/spec_tests/data/retryable_writes/legacy/findOneAndReplace-errorLabels.yml
|
2564
|
+
- spec/spec_tests/data/retryable_writes/unified/handshakeError.yml
|
2565
|
+
- spec/spec_tests/data/retryable_writes/unified/bulkWrite-serverErrors.yml
|
2566
|
+
- spec/spec_tests/data/retryable_writes/unified/insertOne-serverErrors.yml
|
2567
|
+
- spec/spec_tests/data/sdam_monitoring/replica_set_with_primary.yml
|
2568
|
+
- spec/spec_tests/data/sdam_monitoring/replica_set_other_change.yml
|
2569
|
+
- spec/spec_tests/data/sdam_monitoring/replica_set_other_chain.yml
|
2570
|
+
- spec/spec_tests/data/sdam_monitoring/load_balancer.yml
|
2571
|
+
- spec/spec_tests/data/sdam_monitoring/standalone_repeated.yml
|
2572
|
+
- spec/spec_tests/data/sdam_monitoring/required_replica_set.yml
|
2573
|
+
- spec/spec_tests/data/sdam_monitoring/standalone_to_rs_with_me_mismatch.yml
|
2574
|
+
- spec/spec_tests/data/sdam_monitoring/replica_set_with_primary_removal.yml
|
2575
|
+
- spec/spec_tests/data/sdam_monitoring/replica_set_with_primary_and_secondary.yml
|
2576
|
+
- spec/spec_tests/data/sdam_monitoring/standalone_suppress_equal_description_changes.yml
|
2577
|
+
- spec/spec_tests/data/sdam_monitoring/standalone.yml
|
2578
|
+
- spec/spec_tests/data/sdam_monitoring/replica_set_primary_address_change.yml
|
2579
|
+
- spec/spec_tests/data/sdam_monitoring/replica_set_with_me_mismatch.yml
|
2580
|
+
- spec/spec_tests/data/sdam_monitoring/replica_set_with_second_seed_removal.yml
|
2581
|
+
- spec/spec_tests/data/sdam_monitoring/replica_set_with_no_primary.yml
|
2582
|
+
- spec/spec_tests/data/sdam_monitoring/discovered_standalone.yml
|
2583
|
+
- spec/spec_tests/data/sdam_monitoring/replica_set_with_removal.yml
|
2584
|
+
- spec/spec_tests/data/change_streams_unified/change-streams-resume-allowlist.yml
|
2585
|
+
- spec/spec_tests/data/change_streams_unified/change-streams-pre_and_post_images.yml
|
2586
|
+
- spec/spec_tests/data/change_streams_unified/change-streams-resume-errorLabels.yml
|
2587
|
+
- spec/spec_tests/data/change_streams_unified/change-streams.yml
|
2588
|
+
- spec/spec_tests/data/change_streams_unified/change-streams-errors.yml
|
2589
|
+
- spec/spec_tests/data/unified/invalid/expectedEventsForClient-ignoreExtraEvents-type.yml
|
2590
|
+
- spec/spec_tests/data/unified/valid-fail/operation-failure.yml
|
2591
|
+
- spec/spec_tests/data/unified/valid-fail/operation-unsupported.yml
|
2592
|
+
- spec/spec_tests/data/unified/valid-pass/expectedEventsForClient-ignoreExtraEvents.yml
|
2593
|
+
- spec/spec_tests/data/unified/valid-pass/poc-retryable-writes.yml
|
2594
|
+
- spec/spec_tests/data/unified/valid-pass/poc-transactions-convenient-api.yml
|
2595
|
+
- spec/spec_tests/data/unified/valid-pass/poc-gridfs.yml
|
2596
|
+
- spec/spec_tests/data/unified/valid-pass/poc-crud.yml
|
2597
|
+
- spec/spec_tests/data/unified/valid-pass/poc-command-monitoring.yml
|
2598
|
+
- spec/spec_tests/data/unified/valid-pass/poc-retryable-reads.yml
|
2599
|
+
- spec/spec_tests/data/unified/valid-pass/poc-transactions-mongos-pin-auto.yml
|
2600
|
+
- spec/spec_tests/data/unified/valid-pass/poc-sessions.yml
|
2601
|
+
- spec/spec_tests/data/unified/valid-pass/poc-transactions.yml
|
2602
|
+
- spec/spec_tests/data/unified/valid-pass/poc-change-streams.yml
|
2603
|
+
- spec/spec_tests/transactions_spec.rb
|
2604
|
+
- spec/spec_tests/connection_string_spec.rb
|
2605
|
+
- spec/spec_tests/crud_unified_spec.rb
|
2606
|
+
- spec/spec_tests/command_monitoring_unified_spec.rb
|
2607
|
+
- spec/spec_tests/max_staleness_spec.rb
|
2608
|
+
- spec/spec_tests/unified_spec.rb
|
2609
|
+
- spec/spec_tests/transactions_unified_spec.rb
|
2610
|
+
- spec/spec_tests/sdam_spec.rb
|
2611
|
+
- spec/spec_tests/sessions_unified_spec.rb
|
2612
|
+
- spec/spec_tests/retryable_writes_unified_spec.rb
|
2613
|
+
- spec/spec_tests/cmap_spec.rb
|
2614
|
+
- spec/spec_tests/crud_spec.rb
|
2615
|
+
- spec/spec_tests/server_selection_spec.rb
|
2616
|
+
- spec/spec_tests/transactions_api_spec.rb
|
2617
|
+
- spec/spec_tests/read_write_concern_connection_string_spec.rb
|
2618
|
+
- spec/NOTES.aws-auth.md
|
2619
|
+
- spec/stress/connection_pool_timing_spec.rb
|
2620
|
+
- spec/stress/fork_reconnect_stress_spec.rb
|
2621
|
+
- spec/stress/push_monitor_close_spec.rb
|
2622
|
+
- spec/stress/cleanup_spec.rb
|
2623
|
+
- spec/stress/connection_pool_stress_spec.rb
|
2624
|
+
- spec/mongo/cluster_spec.rb
|
2625
|
+
- spec/mongo/monitoring/command_log_subscriber_spec.rb
|
2626
|
+
- spec/mongo/monitoring/event/topology_changed_spec.rb
|
2627
|
+
- spec/mongo/monitoring/event/command_started_spec.rb
|
2628
|
+
- spec/mongo/monitoring/event/server_closed_spec.rb
|
2629
|
+
- spec/mongo/monitoring/event/command_succeeded_spec.rb
|
2630
|
+
- spec/mongo/monitoring/event/secure_spec.rb
|
2631
|
+
- spec/mongo/monitoring/event/server_heartbeat_succeeded_spec.rb
|
2632
|
+
- spec/mongo/monitoring/event/server_heartbeat_started_spec.rb
|
2633
|
+
- spec/mongo/monitoring/event/server_heartbeat_failed_spec.rb
|
2634
|
+
- spec/mongo/monitoring/event/cmap/connection_checked_out_spec.rb
|
2635
|
+
- spec/mongo/monitoring/event/cmap/connection_checked_in_spec.rb
|
2636
|
+
- spec/mongo/monitoring/event/cmap/connection_ready_spec.rb
|
2637
|
+
- spec/mongo/monitoring/event/cmap/connection_check_out_failed_spec.rb
|
2638
|
+
- spec/mongo/monitoring/event/cmap/connection_closed_spec.rb
|
2639
|
+
- spec/mongo/monitoring/event/cmap/pool_cleared_spec.rb
|
2640
|
+
- spec/mongo/monitoring/event/cmap/connection_created_spec.rb
|
2641
|
+
- spec/mongo/monitoring/event/cmap/pool_created_spec.rb
|
2642
|
+
- spec/mongo/monitoring/event/cmap/pool_closed_spec.rb
|
2643
|
+
- spec/mongo/monitoring/event/cmap/connection_check_out_started_spec.rb
|
2644
|
+
- spec/mongo/monitoring/event/topology_closed_spec.rb
|
2645
|
+
- spec/mongo/monitoring/event/server_opening_spec.rb
|
2646
|
+
- spec/mongo/monitoring/event/command_failed_spec.rb
|
2647
|
+
- spec/mongo/monitoring/event/topology_opening_spec.rb
|
2648
|
+
- spec/mongo/monitoring/event/server_description_changed_spec.rb
|
2649
|
+
- spec/mongo/client_encryption_spec.rb
|
2650
|
+
- spec/mongo/write_concern/unacknowledged_spec.rb
|
2651
|
+
- spec/mongo/write_concern/acknowledged_spec.rb
|
2652
|
+
- spec/mongo/tls_context_hooks_spec.rb
|
2653
|
+
- spec/mongo/query_cache_spec.rb
|
2654
|
+
- spec/mongo/cursor/builder/get_more_command_spec.rb
|
2655
|
+
- spec/mongo/cursor/builder/op_get_more_spec.rb
|
2656
|
+
- spec/mongo/collection_ddl_spec.rb
|
2657
|
+
- spec/mongo/bulk_write_spec.rb
|
2658
|
+
- spec/mongo/cursor_spec.rb
|
2659
|
+
- spec/mongo/error/crypt_error_spec.rb
|
2660
|
+
- spec/mongo/error/parser_spec.rb
|
2661
|
+
- spec/mongo/error/notable_spec.rb
|
2662
|
+
- spec/mongo/error/bulk_write_error_spec.rb
|
2663
|
+
- spec/mongo/error/operation_failure_spec.rb
|
2664
|
+
- spec/mongo/error/unsupported_option_spec.rb
|
2665
|
+
- spec/mongo/error/operation_failure_heavy_spec.rb
|
2666
|
+
- spec/mongo/error/max_bson_size_spec.rb
|
2667
|
+
- spec/mongo/error/no_server_available_spec.rb
|
2668
|
+
- spec/mongo/config_spec.rb
|
2669
|
+
- spec/mongo/write_concern_spec.rb
|
2670
|
+
- spec/mongo/server_spec.rb
|
2671
|
+
- spec/mongo/session_transaction_spec.rb
|
2672
|
+
- spec/mongo/protocol/update_spec.rb
|
2673
|
+
- spec/mongo/protocol/insert_spec.rb
|
2674
|
+
- spec/mongo/protocol/caching_hash_spec.rb
|
2675
|
+
- spec/mongo/protocol/delete_spec.rb
|
2676
|
+
- spec/mongo/protocol/reply_spec.rb
|
2677
|
+
- spec/mongo/protocol/compressed_spec.rb
|
2678
|
+
- spec/mongo/protocol/get_more_spec.rb
|
2679
|
+
- spec/mongo/protocol/query_spec.rb
|
2680
|
+
- spec/mongo/protocol/msg_spec.rb
|
2681
|
+
- spec/mongo/protocol/registry_spec.rb
|
2682
|
+
- spec/mongo/protocol/kill_cursors_spec.rb
|
2683
|
+
- spec/mongo/logger_spec.rb
|
2684
|
+
- spec/mongo/auth/aws/request_region_spec.rb
|
2685
|
+
- spec/mongo/auth/aws/request_spec.rb
|
2686
|
+
- spec/mongo/auth/ldap/conversation_spec.rb
|
2687
|
+
- spec/mongo/auth/scram_negotiation_spec.rb
|
2688
|
+
- spec/mongo/auth/scram/conversation_spec.rb
|
2689
|
+
- spec/mongo/auth/stringprep/profiles/sasl_spec.rb
|
2690
|
+
- spec/mongo/auth/user/view_spec.rb
|
2691
|
+
- spec/mongo/auth/cr_spec.rb
|
2692
|
+
- spec/mongo/auth/ldap_spec.rb
|
2693
|
+
- spec/mongo/auth/invalid_mechanism_spec.rb
|
2694
|
+
- spec/mongo/auth/gssapi/conversation_spec.rb
|
2695
|
+
- spec/mongo/auth/scram_spec.rb
|
2696
|
+
- spec/mongo/auth/x509_spec.rb
|
2697
|
+
- spec/mongo/auth/user_spec.rb
|
2698
|
+
- spec/mongo/auth/stringprep_spec.rb
|
2699
|
+
- spec/mongo/auth/scram256/conversation_spec.rb
|
2700
|
+
- spec/mongo/auth/x509/conversation_spec.rb
|
2701
|
+
- spec/mongo/operation/find/legacy_spec.rb
|
2702
|
+
- spec/mongo/operation/find/builder/flags_spec.rb
|
2703
|
+
- spec/mongo/operation/find/builder/modifiers_spec.rb
|
2704
|
+
- spec/mongo/operation/update_spec.rb
|
2705
|
+
- spec/mongo/operation/create_index_spec.rb
|
2706
|
+
- spec/mongo/operation/insert_spec.rb
|
2707
|
+
- spec/mongo/operation/insert/op_msg_spec.rb
|
2708
|
+
- spec/mongo/operation/insert/command_spec.rb
|
2709
|
+
- spec/mongo/operation/insert/bulk_spec.rb
|
2710
|
+
- spec/mongo/operation/read_preference_legacy_spec.rb
|
2711
|
+
- spec/mongo/operation/map_reduce_spec.rb
|
2712
|
+
- spec/mongo/operation/command_spec.rb
|
2713
|
+
- spec/mongo/operation/update/op_msg_spec.rb
|
2714
|
+
- spec/mongo/operation/update/command_spec.rb
|
2715
|
+
- spec/mongo/operation/update/bulk_spec.rb
|
2716
|
+
- spec/mongo/operation/indexes_spec.rb
|
2717
|
+
- spec/mongo/operation/result_spec.rb
|
2718
|
+
- spec/mongo/operation/aggregate_spec.rb
|
2719
|
+
- spec/mongo/operation/remove_user_spec.rb
|
2720
|
+
- spec/mongo/operation/collections_info_spec.rb
|
2721
|
+
- spec/mongo/operation/specifiable_spec.rb
|
2722
|
+
- spec/mongo/operation/read_preference_op_msg_spec.rb
|
2723
|
+
- spec/mongo/operation/create/op_msg_spec.rb
|
2724
|
+
- spec/mongo/operation/delete/op_msg_spec.rb
|
2725
|
+
- spec/mongo/operation/delete/command_spec.rb
|
2726
|
+
- spec/mongo/operation/delete/bulk_spec.rb
|
2727
|
+
- spec/mongo/operation/drop_index_spec.rb
|
2728
|
+
- spec/mongo/operation/delete_spec.rb
|
2729
|
+
- spec/mongo/operation/get_more_spec.rb
|
2730
|
+
- spec/mongo/operation/create_user_spec.rb
|
2731
|
+
- spec/mongo/operation/limited_spec.rb
|
2732
|
+
- spec/mongo/operation/update_user_spec.rb
|
2733
|
+
- spec/mongo/operation/aggregate/result_spec.rb
|
2734
|
+
- spec/mongo/auth_spec.rb
|
2735
|
+
- spec/mongo/monitoring_spec.rb
|
2736
|
+
- spec/mongo/uri/srv_protocol_spec.rb
|
2737
|
+
- spec/mongo/server_selector_spec.rb
|
2738
|
+
- spec/mongo/bulk_write/result_spec.rb
|
2739
|
+
- spec/mongo/bulk_write/unordered_combiner_spec.rb
|
2740
|
+
- spec/mongo/bulk_write/ordered_combiner_spec.rb
|
2741
|
+
- spec/mongo/srv/result_spec.rb
|
2742
|
+
- spec/mongo/srv/monitor_spec.rb
|
2743
|
+
- spec/mongo/cluster_time_spec.rb
|
2744
|
+
- spec/mongo/socket_spec.rb
|
2745
|
+
- spec/mongo/collection_spec.rb
|
2746
|
+
- spec/mongo/semaphore_spec.rb
|
2747
|
+
- spec/mongo/distinguishing_semaphore_spec.rb
|
2748
|
+
- spec/mongo/database_spec.rb
|
2749
|
+
- spec/mongo/grid/stream_spec.rb
|
2750
|
+
- spec/mongo/grid/file_spec.rb
|
2751
|
+
- spec/mongo/grid/fs_bucket_spec.rb
|
2752
|
+
- spec/mongo/grid/stream/read_spec.rb
|
2753
|
+
- spec/mongo/grid/stream/write_spec.rb
|
2754
|
+
- spec/mongo/grid/file/chunk_spec.rb
|
2755
|
+
- spec/mongo/grid/file/info_spec.rb
|
2756
|
+
- spec/mongo/session/session_pool_spec.rb
|
2757
|
+
- spec/mongo/session/server_session_spec.rb
|
2758
|
+
- spec/mongo/options/redacted_spec.rb
|
2759
|
+
- spec/mongo/cluster/topology/sharded_spec.rb
|
2760
|
+
- spec/mongo/cluster/topology/single_spec.rb
|
2761
|
+
- spec/mongo/cluster/topology/unknown_spec.rb
|
2762
|
+
- spec/mongo/cluster/topology/replica_set_spec.rb
|
2763
|
+
- spec/mongo/cluster/topology_spec.rb
|
2764
|
+
- spec/mongo/cluster/cursor_reaper_spec.rb
|
2765
|
+
- spec/mongo/cluster/socket_reaper_spec.rb
|
2766
|
+
- spec/mongo/cluster/periodic_executor_spec.rb
|
2767
|
+
- spec/mongo/collection_crud_spec.rb
|
2768
|
+
- spec/mongo/session_spec.rb
|
2769
|
+
- spec/mongo/utils_spec.rb
|
2770
|
+
- spec/mongo/lint_spec.rb
|
2771
|
+
- spec/mongo/timeout_spec.rb
|
2772
|
+
- spec/mongo/event/publisher_spec.rb
|
2773
|
+
- spec/mongo/event/subscriber_spec.rb
|
2774
|
+
- spec/mongo/collection/view/aggregation_spec.rb
|
2775
|
+
- spec/mongo/collection/view/explainable_spec.rb
|
2776
|
+
- spec/mongo/collection/view/change_stream_resume_spec.rb
|
2777
|
+
- spec/mongo/collection/view/map_reduce_spec.rb
|
2778
|
+
- spec/mongo/collection/view/readable_spec.rb
|
2779
|
+
- spec/mongo/collection/view/writable_spec.rb
|
2780
|
+
- spec/mongo/collection/view/change_stream_spec.rb
|
2781
|
+
- spec/mongo/collection/view/iterable_spec.rb
|
2782
|
+
- spec/mongo/collection/view/builder/op_query_spec.rb
|
2783
|
+
- spec/mongo/collection/view/builder/find_command_spec.rb
|
2784
|
+
- spec/mongo/collection/view/immutable_spec.rb
|
2785
|
+
- spec/mongo/collection/view_spec.rb
|
2786
|
+
- spec/mongo/query_cache_middleware_spec.rb
|
2787
|
+
- spec/mongo/address/ipv6_spec.rb
|
2788
|
+
- spec/mongo/address/ipv4_spec.rb
|
2789
|
+
- spec/mongo/address/validator_spec.rb
|
2790
|
+
- spec/mongo/address/unix_spec.rb
|
2791
|
+
- spec/mongo/crypt/handle_spec.rb
|
2792
|
+
- spec/mongo/crypt/auto_encryption_context_spec.rb
|
2793
|
+
- spec/mongo/crypt/auto_decryption_context_spec.rb
|
2794
|
+
- spec/mongo/crypt/explicit_decryption_context_spec.rb
|
2795
|
+
- spec/mongo/crypt/kms_spec.rb
|
2796
|
+
- spec/mongo/crypt/status_spec.rb
|
2797
|
+
- spec/mongo/crypt/hooks_spec.rb
|
2798
|
+
- spec/mongo/crypt/explicit_encryption_context_spec.rb
|
2799
|
+
- spec/mongo/crypt/binding_unloaded_spec.rb
|
2800
|
+
- spec/mongo/crypt/helpers/mongo_crypt_spec_helper.rb
|
2801
|
+
- spec/mongo/crypt/data_key_context_spec.rb
|
2802
|
+
- spec/mongo/crypt/auto_encrypter_spec.rb
|
2803
|
+
- spec/mongo/crypt/binding/version_spec.rb
|
2804
|
+
- spec/mongo/crypt/binding/status_spec.rb
|
2805
|
+
- spec/mongo/crypt/binding/context_spec.rb
|
2806
|
+
- spec/mongo/crypt/binding/helpers_spec.rb
|
2807
|
+
- spec/mongo/crypt/binding/mongocrypt_spec.rb
|
2808
|
+
- spec/mongo/crypt/binding/binary_spec.rb
|
2809
|
+
- spec/mongo/crypt/kms/credentials_spec.rb
|
2810
|
+
- spec/mongo/crypt/encryption_io_spec.rb
|
2811
|
+
- spec/mongo/crypt/binary_spec.rb
|
2812
|
+
- spec/mongo/client_spec.rb
|
2813
|
+
- spec/mongo/retryable_spec.rb
|
2814
|
+
- spec/mongo/server_selector/primary_spec.rb
|
2815
|
+
- spec/mongo/server_selector/primary_preferred_spec.rb
|
2816
|
+
- spec/mongo/server_selector/nearest_spec.rb
|
2817
|
+
- spec/mongo/server_selector/secondary_spec.rb
|
2818
|
+
- spec/mongo/server_selector/secondary_preferred_spec.rb
|
2819
|
+
- spec/mongo/socket/ssl_spec.rb
|
2820
|
+
- spec/mongo/socket/tcp_spec.rb
|
2821
|
+
- spec/mongo/socket/unix_spec.rb
|
2822
|
+
- spec/mongo/config/options_spec.rb
|
2823
|
+
- spec/mongo/address_spec.rb
|
2824
|
+
- spec/mongo/index/view_spec.rb
|
2825
|
+
- spec/mongo/caching_cursor_spec.rb
|
2826
|
+
- spec/mongo/uri_spec.rb
|
2827
|
+
- spec/mongo/bson_spec.rb
|
2828
|
+
- spec/mongo/server/connection_common_spec.rb
|
2829
|
+
- spec/mongo/server/description_query_methods_spec.rb
|
2830
|
+
- spec/mongo/server/push_monitor_spec.rb
|
2831
|
+
- spec/mongo/server/description_spec.rb
|
2832
|
+
- spec/mongo/server/description/features_spec.rb
|
2833
|
+
- spec/mongo/server/connection_pool_spec.rb
|
2834
|
+
- spec/mongo/server/monitor_spec.rb
|
2835
|
+
- spec/mongo/server/connection_auth_spec.rb
|
2836
|
+
- spec/mongo/server/round_trip_time_averager_spec.rb
|
2837
|
+
- spec/mongo/server/app_metadata_spec.rb
|
2838
|
+
- spec/mongo/server/monitor/app_metadata_spec.rb
|
2839
|
+
- spec/mongo/server/monitor/connection_spec.rb
|
2840
|
+
- spec/mongo/server/connection_pool/populator_spec.rb
|
2841
|
+
- spec/mongo/server/connection_spec.rb
|
2842
|
+
- spec/mongo/id_spec.rb
|
2843
|
+
- spec/mongo/client_construction_spec.rb
|
2844
|
+
- spec/mongo/uri_option_parsing_spec.rb
|
2845
|
+
- spec/spec_helper.rb
|
2846
|
+
- spec/support/shared/protocol.rb
|
2847
|
+
- spec/support/shared/auth_context.rb
|
2848
|
+
- spec/support/shared/scram_conversation.rb
|
2849
|
+
- spec/support/shared/server_selector.rb
|
2850
|
+
- spec/support/shared/app_metadata.rb
|
2851
|
+
- spec/support/shared/session.rb
|
2852
|
+
- spec/support/aws_utils/provisioner.rb
|
2853
|
+
- spec/support/aws_utils/inspector.rb
|
2854
|
+
- spec/support/aws_utils/base.rb
|
2855
|
+
- spec/support/aws_utils/orchestrator.rb
|
2856
|
+
- spec/support/ocsp
|
2857
|
+
- spec/support/sdam_formatter_integration.rb
|
2858
|
+
- spec/support/local_resource_registry.rb
|
2859
|
+
- spec/support/monitoring_ext.rb
|
2860
|
+
- spec/support/crypt.rb
|
2861
|
+
- spec/support/background_thread_registry.rb
|
2862
|
+
- spec/support/client_registry_macros.rb
|
2863
|
+
- spec/support/authorization.rb
|
2864
|
+
- spec/support/utils.rb
|
2865
|
+
- spec/support/certificates/client-second-level.pem
|
2866
|
+
- spec/support/certificates/client.crt
|
2867
|
+
- spec/support/certificates/client-second-level-bundle.pem
|
2868
|
+
- spec/support/certificates/server-int.crt
|
2869
|
+
- spec/support/certificates/atlas-ocsp-ca.crt
|
2870
|
+
- spec/support/certificates/client-x509.crt
|
2871
|
+
- spec/support/certificates/client-second-level.key
|
2872
|
+
- spec/support/certificates/client.pem
|
2873
|
+
- spec/support/certificates/client-second-level.crt
|
2874
|
+
- spec/support/certificates/client-int.crt
|
2875
|
+
- spec/support/certificates/client.key
|
2876
|
+
- spec/support/certificates/multi-ca.crt
|
2877
|
+
- spec/support/certificates/server.pem
|
2878
|
+
- spec/support/certificates/client-encrypted.key
|
2879
|
+
- spec/support/certificates/server-second-level-bundle.pem
|
2880
|
+
- spec/support/certificates/client-x509.pem
|
2881
|
+
- spec/support/certificates/crl.pem
|
2882
|
+
- spec/support/certificates/crl_client_revoked.pem
|
2883
|
+
- spec/support/certificates/ca.crt
|
2884
|
+
- spec/support/certificates/server-second-level.pem
|
2885
|
+
- spec/support/certificates/client-x509.key
|
2886
|
+
- spec/support/certificates/README.md
|
2887
|
+
- spec/support/certificates/server-second-level.key
|
2888
|
+
- spec/support/certificates/server-second-level.crt
|
2889
|
+
- spec/support/certificates/python-ca.crt
|
2890
|
+
- spec/support/certificates/atlas-ocsp.crt
|
2891
|
+
- spec/support/common_shortcuts.rb
|
2892
|
+
- spec/support/matchers.rb
|
2893
|
+
- spec/support/aws_utils.rb
|
2894
|
+
- spec/support/constraints.rb
|
2895
|
+
- spec/support/client_registry.rb
|
2896
|
+
- spec/support/json_ext_formatter.rb
|
2897
|
+
- spec/support/spec_config.rb
|
2898
|
+
- spec/support/crypt/limits/limits-schema.json
|
2899
|
+
- spec/support/crypt/limits/limits-doc.json
|
2900
|
+
- spec/support/crypt/limits/limits-key.json
|
2901
|
+
- spec/support/crypt/encryptedFields.json
|
2902
|
+
- spec/support/crypt/schema_maps/schema_map_kmip.json
|
2903
|
+
- spec/support/crypt/schema_maps/schema_map_azure.json
|
2904
|
+
- spec/support/crypt/schema_maps/schema_map_azure_key_alt_names.json
|
2905
|
+
- spec/support/crypt/schema_maps/schema_map_kmip_key_alt_names.json
|
2906
|
+
- spec/support/crypt/schema_maps/schema_map_aws.json
|
2907
|
+
- spec/support/crypt/schema_maps/schema_map_local.json
|
2908
|
+
- spec/support/crypt/schema_maps/schema_map_aws_key_alt_names.json
|
2909
|
+
- spec/support/crypt/schema_maps/schema_map_gcp.json
|
2910
|
+
- spec/support/crypt/schema_maps/schema_map_local_key_alt_names.json
|
2911
|
+
- spec/support/crypt/schema_maps/schema_map_gcp_key_alt_names.json
|
2912
|
+
- spec/support/crypt/keys/key1-document.json
|
2913
|
+
- spec/support/crypt/corpus/corpus-key-aws.json
|
2914
|
+
- spec/support/crypt/corpus/corpus-schema.json
|
2915
|
+
- spec/support/crypt/corpus/corpus.json
|
2916
|
+
- spec/support/crypt/corpus/corpus-key-local.json
|
2917
|
+
- spec/support/crypt/corpus/corpus-key-azure.json
|
2918
|
+
- spec/support/crypt/corpus/corpus-key-kmip.json
|
2919
|
+
- spec/support/crypt/corpus/corpus-key-gcp.json
|
2920
|
+
- spec/support/crypt/corpus/corpus-encrypted.json
|
2921
|
+
- spec/support/crypt/external/external-key.json
|
2922
|
+
- spec/support/crypt/external/external-schema.json
|
2923
|
+
- spec/support/crypt/data_keys/key_document_kmip.json
|
2924
|
+
- spec/support/crypt/data_keys/key_document_local.json
|
2925
|
+
- spec/support/crypt/data_keys/key_document_aws.json
|
2926
|
+
- spec/support/crypt/data_keys/key_document_gcp.json
|
2927
|
+
- spec/support/crypt/data_keys/key_document_azure.json
|
2928
|
+
- spec/support/dns.rb
|
2929
|
+
- spec/support/spec_setup.rb
|
2930
|
+
- spec/support/macros.rb
|
2931
|
+
- spec/support/cluster_tools.rb
|
2932
|
+
- spec/support/keyword_struct.rb
|
2933
|
+
- spec/support/mongos_macros.rb
|
2934
|
+
- spec/support/primary_socket.rb
|
2935
|
+
- spec/support/using_hash.rb
|
2936
|
+
- spec/lite_spec_helper.rb
|
2937
|
+
- spec/integration/read_preference_spec.rb
|
2938
|
+
- spec/integration/client_connectivity_spec.rb
|
2939
|
+
- spec/integration/client_update_spec.rb
|
2940
|
+
- spec/integration/query_cache_spec.rb
|
2941
|
+
- spec/integration/server_description_spec.rb
|
2942
|
+
- spec/integration/client_construction_aws_auth_spec.rb
|
2943
|
+
- spec/integration/query_cache_transactions_spec.rb
|
2944
|
+
- spec/integration/reconnect_spec.rb
|
2945
|
+
- spec/integration/server_monitor_spec.rb
|
2946
|
+
- spec/integration/awaited_ismaster_spec.rb
|
2947
|
+
- spec/integration/bulk_write_spec.rb
|
2948
|
+
- spec/integration/ocsp_connectivity_spec.rb
|
2949
|
+
- spec/integration/read_concern_spec.rb
|
2950
|
+
- spec/integration/connect_single_rs_name_spec.rb
|
2951
|
+
- spec/integration/aws_credentials_retriever_spec.rb
|
2952
|
+
- spec/integration/snapshot_query_examples_spec.rb
|
2953
|
+
- spec/integration/map_reduce_spec.rb
|
2954
|
+
- spec/integration/zstd_compression_spec.rb
|
2955
|
+
- spec/integration/command_spec.rb
|
2956
|
+
- spec/integration/server_spec.rb
|
2957
|
+
- spec/integration/step_down_spec.rb
|
2958
|
+
- spec/integration/collection_indexes_prose_spec.rb
|
2959
|
+
- spec/integration/retryable_writes_errors_spec.rb
|
2960
|
+
- spec/integration/operation_failure_message_spec.rb
|
2961
|
+
- spec/integration/cursor_pinning_spec.rb
|
2962
|
+
- spec/integration/change_stream_spec.rb
|
2963
|
+
- spec/integration/mmapv1_spec.rb
|
2964
|
+
- spec/integration/sdam_error_handling_spec.rb
|
2965
|
+
- spec/integration/ssl_uri_options_spec.rb
|
2966
|
+
- spec/integration/auth_spec.rb
|
2967
|
+
- spec/integration/client_side_encryption/corpus_spec.rb
|
2968
|
+
- spec/integration/client_side_encryption/auto_encryption_spec.rb
|
2969
|
+
- spec/integration/client_side_encryption/kms_tls_spec.rb
|
2970
|
+
- spec/integration/client_side_encryption/client_close_spec.rb
|
2971
|
+
- spec/integration/client_side_encryption/kms_tls_options_spec.rb
|
2972
|
+
- spec/integration/client_side_encryption/external_key_vault_spec.rb
|
2973
|
+
- spec/integration/client_side_encryption/auto_encryption_old_wire_version_spec.rb
|
2974
|
+
- spec/integration/client_side_encryption/custom_endpoint_spec.rb
|
2975
|
+
- spec/integration/client_side_encryption/queryable_encryption_examples_spec.rb
|
2976
|
+
- spec/integration/client_side_encryption/auto_encryption_mongocryptd_spawn_spec.rb
|
2977
|
+
- spec/integration/client_side_encryption/explicit_encryption_spec.rb
|
2978
|
+
- spec/integration/client_side_encryption/data_key_spec.rb
|
2979
|
+
- spec/integration/client_side_encryption/auto_encryption_reconnect_spec.rb
|
2980
|
+
- spec/integration/client_side_encryption/views_spec.rb
|
2981
|
+
- spec/integration/client_side_encryption/explicit_queryable_encryption_spec.rb
|
2982
|
+
- spec/integration/client_side_encryption/bson_size_limit_spec.rb
|
2983
|
+
- spec/integration/client_side_encryption/auto_encryption_bulk_writes_spec.rb
|
2984
|
+
- spec/integration/client_side_encryption/auto_encryption_command_monitoring_spec.rb
|
2985
|
+
- spec/integration/client_side_encryption/bypass_mongocryptd_spawn_spec.rb
|
2986
|
+
- spec/integration/size_limit_spec.rb
|
2987
|
+
- spec/integration/operation_failure_code_spec.rb
|
2988
|
+
- spec/integration/server_selector_spec.rb
|
2989
|
+
- spec/integration/command_monitoring_spec.rb
|
2990
|
+
- spec/integration/mongos_pinning_spec.rb
|
2991
|
+
- spec/integration/change_stream_examples_spec.rb
|
2992
|
+
- spec/integration/aws_lambda_examples_spec.rb
|
2993
|
+
- spec/integration/bulk_write_error_message_spec.rb
|
2994
|
+
- spec/integration/snappy_compression_spec.rb
|
2995
|
+
- spec/integration/x509_auth_spec.rb
|
2996
|
+
- spec/integration/zlib_compression_spec.rb
|
2997
|
+
- spec/integration/transactions_api_examples_spec.rb
|
2998
|
+
- spec/integration/srv_monitoring_spec.rb
|
2999
|
+
- spec/integration/time_zone_querying_spec.rb
|
3000
|
+
- spec/integration/docs_examples_spec.rb
|
3001
|
+
- spec/integration/error_detection_spec.rb
|
3002
|
+
- spec/integration/transactions_examples_spec.rb
|
3003
|
+
- spec/integration/transaction_pinning_spec.rb
|
3004
|
+
- spec/integration/sdam_prose_spec.rb
|
3005
|
+
- spec/integration/bson_symbol_spec.rb
|
3006
|
+
- spec/integration/versioned_api_examples_spec.rb
|
3007
|
+
- spec/integration/shell_examples_spec.rb
|
3008
|
+
- spec/integration/srv_spec.rb
|
3009
|
+
- spec/integration/secondary_reads_spec.rb
|
3010
|
+
- spec/integration/connection_pool_populator_spec.rb
|
3011
|
+
- spec/integration/check_clean_slate_spec.rb
|
3012
|
+
- spec/integration/heartbeat_events_spec.rb
|
3013
|
+
- spec/integration/ocsp_verifier_cache_spec.rb
|
3014
|
+
- spec/integration/bulk_insert_spec.rb
|
3015
|
+
- spec/integration/get_more_spec.rb
|
3016
|
+
- spec/integration/retryable_writes/shared/only_supports_legacy_retries.rb
|
3017
|
+
- spec/integration/retryable_writes/shared/supports_retries.rb
|
3018
|
+
- spec/integration/retryable_writes/shared/does_not_support_retries.rb
|
3019
|
+
- spec/integration/retryable_writes/shared/supports_modern_retries.rb
|
3020
|
+
- spec/integration/retryable_writes/shared/performs_legacy_retries.rb
|
3021
|
+
- spec/integration/retryable_writes/shared/supports_legacy_retries.rb
|
3022
|
+
- spec/integration/retryable_writes/shared/adds_diagnostics.rb
|
3023
|
+
- spec/integration/retryable_writes/shared/performs_modern_retries.rb
|
3024
|
+
- spec/integration/retryable_writes/shared/performs_no_retries.rb
|
3025
|
+
- spec/integration/retryable_writes/retryable_writes_36_and_older_spec.rb
|
3026
|
+
- spec/integration/retryable_writes/retryable_writes_40_and_newer_spec.rb
|
3027
|
+
- spec/integration/client_spec.rb
|
3028
|
+
- spec/integration/client_authentication_options_spec.rb
|
3029
|
+
- spec/integration/fork_reconnect_spec.rb
|
3030
|
+
- spec/integration/grid_fs_bucket_spec.rb
|
3031
|
+
- spec/integration/ocsp_verifier_spec.rb
|
3032
|
+
- spec/integration/retryable_errors_spec.rb
|
3033
|
+
- spec/integration/aws_auth_request_spec.rb
|
3034
|
+
- spec/integration/cursor_reaping_spec.rb
|
3035
|
+
- spec/integration/sdam_events_spec.rb
|
3036
|
+
- spec/integration/connection_spec.rb
|
3037
|
+
- spec/integration/truncated_utf8_spec.rb
|
3038
|
+
- spec/integration/client_construction_spec.rb
|
3039
|
+
- spec/integration/crud_spec.rb
|
3040
|
+
- spec/integration/server_selection_spec.rb
|
3041
|
+
- spec/atlas/operations_spec.rb
|
3042
|
+
- spec/atlas/atlas_connectivity_spec.rb
|
3043
|
+
- spec/solo/clean_exit_spec.rb
|
3044
|
+
- spec/README.md
|
3045
|
+
- spec/runners/transactions.rb
|
3046
|
+
- spec/runners/server_selection.rb
|
3047
|
+
- spec/runners/change_streams/spec.rb
|
3048
|
+
- spec/runners/change_streams/test.rb
|
3049
|
+
- spec/runners/change_streams/outcome.rb
|
3050
|
+
- spec/runners/server_selection_rtt.rb
|
3051
|
+
- spec/runners/connection_string.rb
|
3052
|
+
- spec/runners/read_write_concern_document.rb
|
3053
|
+
- spec/runners/sdam/verifier.rb
|
3054
|
+
- spec/runners/command_monitoring.rb
|
3055
|
+
- spec/runners/cmap.rb
|
3056
|
+
- spec/runners/unified.rb
|
3057
|
+
- spec/runners/crud/spec.rb
|
3058
|
+
- spec/runners/crud/requirement.rb
|
3059
|
+
- spec/runners/crud/verifier.rb
|
3060
|
+
- spec/runners/crud/operation.rb
|
3061
|
+
- spec/runners/crud/context.rb
|
3062
|
+
- spec/runners/crud/test_base.rb
|
3063
|
+
- spec/runners/crud/test.rb
|
3064
|
+
- spec/runners/crud/outcome.rb
|
3065
|
+
- spec/runners/auth.rb
|
3066
|
+
- spec/runners/cmap/verifier.rb
|
3067
|
+
- spec/runners/transactions/spec.rb
|
3068
|
+
- spec/runners/transactions/operation.rb
|
3069
|
+
- spec/runners/transactions/test.rb
|
3070
|
+
- spec/runners/sdam.rb
|
3071
|
+
- spec/runners/crud.rb
|
3072
|
+
- spec/runners/gridfs.rb
|
3073
|
+
- spec/runners/unified/test_group.rb
|
3074
|
+
- spec/runners/unified/event_subscriber.rb
|
3075
|
+
- spec/runners/unified/ddl_operations.rb
|
3076
|
+
- spec/runners/unified/change_stream_operations.rb
|
3077
|
+
- spec/runners/unified/entity_map.rb
|
3078
|
+
- spec/runners/unified/error.rb
|
3079
|
+
- spec/runners/unified/support_operations.rb
|
3080
|
+
- spec/runners/unified/grid_fs_operations.rb
|
3081
|
+
- spec/runners/unified/assertions.rb
|
3082
|
+
- spec/runners/unified/crud_operations.rb
|
3083
|
+
- spec/runners/unified/exceptions.rb
|
3084
|
+
- spec/runners/unified/test.rb
|
3085
|
+
- spec/README.aws-auth.md
|