mongo 2.19.1 → 2.21.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +40 -1
- data/Rakefile +83 -174
- data/lib/mongo/address.rb +22 -3
- data/lib/mongo/auth/aws/credentials_retriever.rb +70 -17
- data/lib/mongo/auth/base.rb +1 -1
- data/lib/mongo/bulk_write.rb +35 -2
- data/lib/mongo/client.rb +38 -6
- data/lib/mongo/client_encryption.rb +6 -3
- data/lib/mongo/cluster/reapers/cursor_reaper.rb +6 -1
- data/lib/mongo/cluster/sdam_flow.rb +20 -7
- data/lib/mongo/cluster/topology/base.rb +16 -0
- data/lib/mongo/cluster.rb +41 -5
- data/lib/mongo/collection/helpers.rb +1 -1
- data/lib/mongo/collection/view/aggregation/behavior.rb +131 -0
- data/lib/mongo/collection/view/aggregation.rb +33 -99
- data/lib/mongo/collection/view/builder/aggregation.rb +1 -7
- data/lib/mongo/collection/view/change_stream.rb +80 -27
- data/lib/mongo/collection/view/iterable.rb +92 -60
- data/lib/mongo/collection/view/map_reduce.rb +25 -8
- data/lib/mongo/collection/view/readable.rb +79 -30
- data/lib/mongo/collection/view/writable.rb +109 -48
- data/lib/mongo/collection/view.rb +44 -3
- data/lib/mongo/collection.rb +185 -26
- data/lib/mongo/config.rb +2 -2
- data/lib/mongo/crypt/auto_encrypter.rb +4 -6
- data/lib/mongo/crypt/binding.rb +4 -4
- data/lib/mongo/crypt/context.rb +20 -14
- data/lib/mongo/crypt/encryption_io.rb +56 -26
- data/lib/mongo/crypt/explicit_encrypter.rb +49 -20
- data/lib/mongo/crypt/explicit_encryption_context.rb +17 -11
- data/lib/mongo/crypt/kms/azure/credentials_retriever.rb +22 -6
- data/lib/mongo/crypt/kms/gcp/credentials_retriever.rb +29 -4
- data/lib/mongo/csot_timeout_holder.rb +119 -0
- data/lib/mongo/cursor/kill_spec.rb +5 -2
- data/lib/mongo/cursor/nontailable.rb +27 -0
- data/lib/mongo/cursor.rb +86 -24
- data/lib/mongo/cursor_host.rb +82 -0
- data/lib/mongo/database/view.rb +81 -14
- data/lib/mongo/database.rb +88 -18
- data/lib/mongo/error/operation_failure.rb +209 -204
- data/lib/mongo/error/server_timeout_error.rb +12 -0
- data/lib/mongo/error/socket_timeout_error.rb +3 -1
- data/lib/mongo/error/timeout_error.rb +23 -0
- data/lib/mongo/error/transactions_not_supported.rb +34 -0
- data/lib/mongo/error.rb +3 -0
- data/lib/mongo/grid/fs_bucket.rb +48 -9
- data/lib/mongo/grid/stream/read.rb +15 -1
- data/lib/mongo/grid/stream/write.rb +21 -4
- data/lib/mongo/index/view.rb +77 -16
- data/lib/mongo/monitoring/event/secure.rb +1 -1
- data/lib/mongo/operation/context.rb +40 -2
- data/lib/mongo/operation/create_search_indexes/op_msg.rb +31 -0
- data/lib/mongo/operation/create_search_indexes.rb +15 -0
- data/lib/mongo/operation/delete/op_msg.rb +2 -1
- data/lib/mongo/operation/drop_search_index/op_msg.rb +33 -0
- data/lib/mongo/operation/drop_search_index.rb +15 -0
- data/lib/mongo/operation/find/op_msg.rb +45 -0
- data/lib/mongo/operation/get_more/op_msg.rb +33 -0
- data/lib/mongo/operation/insert/op_msg.rb +3 -2
- data/lib/mongo/operation/insert/result.rb +4 -2
- data/lib/mongo/operation/list_collections/result.rb +1 -1
- data/lib/mongo/operation/map_reduce/result.rb +1 -1
- data/lib/mongo/operation/op_msg_base.rb +3 -1
- data/lib/mongo/operation/result.rb +26 -5
- data/lib/mongo/operation/shared/executable.rb +55 -28
- data/lib/mongo/operation/shared/op_msg_executable.rb +4 -1
- data/lib/mongo/operation/shared/response_handling.rb +25 -27
- data/lib/mongo/operation/shared/sessions_supported.rb +1 -1
- data/lib/mongo/operation/shared/specifiable.rb +7 -0
- data/lib/mongo/operation/shared/timed.rb +52 -0
- data/lib/mongo/operation/shared/write.rb +4 -1
- data/lib/mongo/operation/update/op_msg.rb +2 -1
- data/lib/mongo/operation/update_search_index/op_msg.rb +34 -0
- data/lib/mongo/operation/update_search_index.rb +15 -0
- data/lib/mongo/operation.rb +4 -0
- data/lib/mongo/protocol/message.rb +1 -4
- data/lib/mongo/protocol/msg.rb +2 -2
- data/lib/mongo/retryable/base_worker.rb +28 -3
- data/lib/mongo/retryable/read_worker.rb +78 -36
- data/lib/mongo/retryable/write_worker.rb +59 -25
- data/lib/mongo/retryable.rb +8 -2
- data/lib/mongo/search_index/view.rb +232 -0
- data/lib/mongo/server/app_metadata/environment.rb +64 -9
- data/lib/mongo/server/app_metadata.rb +5 -4
- data/lib/mongo/server/connection.rb +11 -5
- data/lib/mongo/server/connection_base.rb +22 -2
- data/lib/mongo/server/connection_pool.rb +32 -14
- data/lib/mongo/server/description/features.rb +2 -1
- data/lib/mongo/server/description.rb +18 -5
- data/lib/mongo/server/monitor.rb +7 -4
- data/lib/mongo/server/pending_connection.rb +25 -8
- data/lib/mongo/server/{round_trip_time_averager.rb → round_trip_time_calculator.rb} +25 -7
- data/lib/mongo/server.rb +11 -6
- data/lib/mongo/server_selector/base.rb +54 -12
- data/lib/mongo/session/server_session/dirtyable.rb +52 -0
- data/lib/mongo/session/server_session.rb +3 -0
- data/lib/mongo/session/session_pool.rb +12 -18
- data/lib/mongo/session.rb +110 -9
- data/lib/mongo/socket/ssl.rb +131 -18
- data/lib/mongo/socket/tcp.rb +40 -6
- data/lib/mongo/socket.rb +154 -25
- data/lib/mongo/uri/options_mapper.rb +1 -0
- data/lib/mongo/uri.rb +0 -4
- data/lib/mongo/version.rb +1 -5
- data/lib/mongo.rb +2 -0
- data/mongo.gemspec +9 -18
- data/spec/atlas/atlas_connectivity_spec.rb +9 -9
- data/spec/atlas/operations_spec.rb +5 -5
- data/spec/faas/ruby-sam-app/Gemfile +9 -0
- data/spec/faas/ruby-sam-app/mongodb/Gemfile +4 -0
- data/spec/faas/ruby-sam-app/mongodb/app.rb +149 -0
- data/spec/faas/ruby-sam-app/template.yaml +48 -0
- data/spec/integration/client_side_encryption/auto_encryption_mongocryptd_spawn_spec.rb +2 -1
- data/spec/integration/client_side_encryption/auto_encryption_spec.rb +494 -487
- data/spec/integration/client_side_encryption/corpus_spec.rb +10 -2
- data/spec/integration/client_side_encryption/on_demand_aws_credentials_spec.rb +1 -1
- data/spec/integration/client_side_encryption/range_explicit_encryption_prose_spec.rb +67 -20
- data/spec/integration/client_side_operations_timeout/encryption_prose_spec.rb +131 -0
- data/spec/integration/connection_pool_populator_spec.rb +2 -0
- data/spec/integration/cursor_pinning_spec.rb +15 -60
- data/spec/integration/cursor_reaping_spec.rb +1 -1
- data/spec/integration/docs_examples_spec.rb +1 -1
- data/spec/integration/find_options_spec.rb +227 -0
- data/spec/integration/operation_failure_code_spec.rb +1 -1
- data/spec/integration/operation_failure_message_spec.rb +3 -3
- data/spec/integration/retryable_errors_spec.rb +2 -2
- data/spec/integration/retryable_reads_errors_spec.rb +196 -31
- data/spec/integration/retryable_writes_errors_spec.rb +156 -0
- data/spec/integration/sdam_error_handling_spec.rb +4 -1
- data/spec/integration/search_indexes_prose_spec.rb +172 -0
- data/spec/integration/server_spec.rb +4 -3
- data/spec/integration/transactions_api_examples_spec.rb +2 -0
- data/spec/kerberos/kerberos_spec.rb +4 -0
- data/spec/lite_spec_helper.rb +34 -20
- data/spec/mongo/auth/user/view_spec.rb +1 -1
- data/spec/mongo/caching_cursor_spec.rb +1 -1
- data/spec/mongo/client_encryption_spec.rb +1 -0
- data/spec/mongo/client_spec.rb +158 -4
- data/spec/mongo/cluster_spec.rb +36 -0
- data/spec/mongo/collection/view/aggregation_spec.rb +20 -40
- data/spec/mongo/collection/view/change_stream_spec.rb +3 -3
- data/spec/mongo/collection/view/explainable_spec.rb +2 -0
- data/spec/mongo/collection_crud_spec.rb +2 -1
- data/spec/mongo/collection_spec.rb +5 -6
- data/spec/mongo/crypt/auto_encrypter_spec.rb +14 -12
- data/spec/mongo/crypt/data_key_context_spec.rb +3 -1
- data/spec/mongo/crypt/explicit_encryption_context_spec.rb +2 -2
- data/spec/mongo/crypt/handle_spec.rb +1 -1
- data/spec/mongo/cursor_spec.rb +26 -9
- data/spec/mongo/error/operation_failure_heavy_spec.rb +2 -2
- data/spec/mongo/operation/context_spec.rb +79 -0
- data/spec/mongo/operation/create/op_msg_spec.rb +106 -110
- data/spec/mongo/operation/delete/op_msg_spec.rb +6 -5
- data/spec/mongo/operation/find/op_msg_spec.rb +66 -0
- data/spec/mongo/operation/get_more/op_msg_spec.rb +65 -0
- data/spec/mongo/operation/insert/op_msg_spec.rb +128 -131
- data/spec/mongo/operation/insert_spec.rb +1 -1
- data/spec/mongo/operation/shared/csot/examples.rb +113 -0
- data/spec/mongo/query_cache_spec.rb +243 -225
- data/spec/mongo/retryable/write_worker_spec.rb +39 -0
- data/spec/mongo/retryable_spec.rb +1 -0
- data/spec/mongo/server/app_metadata/environment_spec.rb +135 -0
- data/spec/mongo/server/app_metadata_spec.rb +12 -2
- data/spec/mongo/server/connection_spec.rb +26 -0
- data/spec/mongo/server/round_trip_time_calculator_spec.rb +120 -0
- data/spec/mongo/session/session_pool_spec.rb +1 -16
- data/spec/mongo/session_transaction_spec.rb +15 -0
- data/spec/mongo/socket/ssl_spec.rb +0 -10
- data/spec/mongo/uri_spec.rb +0 -9
- data/spec/runners/change_streams/test.rb +2 -2
- data/spec/runners/crud/operation.rb +1 -1
- data/spec/runners/crud/test.rb +0 -8
- data/spec/runners/crud/verifier.rb +3 -1
- data/spec/runners/crud.rb +1 -1
- data/spec/runners/transactions/operation.rb +4 -6
- data/spec/runners/transactions/test.rb +12 -3
- data/spec/runners/unified/ambiguous_operations.rb +13 -0
- data/spec/runners/unified/assertions.rb +20 -3
- data/spec/runners/unified/change_stream_operations.rb +14 -24
- data/spec/runners/unified/crud_operations.rb +82 -47
- data/spec/runners/unified/ddl_operations.rb +38 -7
- data/spec/runners/unified/grid_fs_operations.rb +37 -2
- data/spec/runners/unified/search_index_operations.rb +63 -0
- data/spec/runners/unified/support_operations.rb +46 -9
- data/spec/runners/unified/test.rb +33 -12
- data/spec/runners/unified.rb +1 -1
- data/spec/solo/clean_exit_spec.rb +2 -0
- data/spec/spec_helper.rb +1 -1
- data/spec/spec_tests/client_side_operations_timeout_spec.rb +15 -0
- data/spec/spec_tests/data/change_streams_unified/change-streams-clusterTime.yml +3 -1
- data/spec/spec_tests/data/change_streams_unified/change-streams-disambiguatedPaths.yml +3 -1
- data/spec/spec_tests/data/change_streams_unified/change-streams-errors.yml +3 -1
- data/spec/spec_tests/data/change_streams_unified/change-streams-pre_and_post_images.yml +1 -1
- data/spec/spec_tests/data/change_streams_unified/change-streams-resume-allowlist.yml +1 -1
- data/spec/spec_tests/data/change_streams_unified/change-streams-resume-errorLabels.yml +1 -1
- data/spec/spec_tests/data/change_streams_unified/change-streams-showExpandedEvents.yml +1 -1
- data/spec/spec_tests/data/client_side_encryption/badQueries.yml +2 -1
- data/spec/spec_tests/data/client_side_encryption/explain.yml +2 -2
- data/spec/spec_tests/data/client_side_encryption/fle2v2-BypassQueryAnalysis.yml +1 -0
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Compact.yml +1 -0
- data/spec/spec_tests/data/client_side_encryption/fle2v2-CreateCollection.yml +1 -0
- data/spec/spec_tests/data/client_side_encryption/fle2v2-DecryptExistingData.yml +1 -0
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Delete.yml +1 -0
- data/spec/spec_tests/data/client_side_encryption/fle2v2-EncryptedFields-vs-EncryptedFieldsMap.yml +1 -0
- data/spec/spec_tests/data/client_side_encryption/fle2v2-EncryptedFields-vs-jsonSchema.yml +1 -0
- data/spec/spec_tests/data/client_side_encryption/fle2v2-EncryptedFieldsMap-defaults.yml +1 -0
- data/spec/spec_tests/data/client_side_encryption/fle2v2-FindOneAndUpdate.yml +1 -0
- data/spec/spec_tests/data/client_side_encryption/fle2v2-InsertFind-Indexed.yml +1 -0
- data/spec/spec_tests/data/client_side_encryption/fle2v2-InsertFind-Unindexed.yml +1 -0
- data/spec/spec_tests/data/client_side_encryption/fle2v2-MissingKey.yml +1 -0
- data/spec/spec_tests/data/client_side_encryption/fle2v2-NoEncryption.yml +1 -0
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Update.yml +1 -0
- data/spec/spec_tests/data/client_side_encryption/fle2v2-validatorAndPartialFieldExpression.yml +2 -1
- data/spec/spec_tests/data/client_side_encryption/timeoutMS.yml +67 -0
- data/spec/spec_tests/data/client_side_operations_timeout/bulkWrite.yml +87 -0
- data/spec/spec_tests/data/client_side_operations_timeout/change-streams.yml +358 -0
- data/spec/spec_tests/data/client_side_operations_timeout/close-cursors.yml +129 -0
- data/spec/spec_tests/data/client_side_operations_timeout/command-execution.yml +250 -0
- data/spec/spec_tests/data/client_side_operations_timeout/convenient-transactions.yml +113 -0
- data/spec/spec_tests/data/client_side_operations_timeout/cursors.yml +70 -0
- data/spec/spec_tests/data/client_side_operations_timeout/deprecated-options.yml +3982 -0
- data/spec/spec_tests/data/client_side_operations_timeout/error-transformations.yml +96 -0
- data/spec/spec_tests/data/client_side_operations_timeout/global-timeoutMS.yml +3236 -0
- data/spec/spec_tests/data/client_side_operations_timeout/gridfs-advanced.yml +207 -0
- data/spec/spec_tests/data/client_side_operations_timeout/gridfs-delete.yml +152 -0
- data/spec/spec_tests/data/client_side_operations_timeout/gridfs-download.yml +182 -0
- data/spec/spec_tests/data/client_side_operations_timeout/gridfs-find.yml +100 -0
- data/spec/spec_tests/data/client_side_operations_timeout/gridfs-upload.yml +249 -0
- data/spec/spec_tests/data/client_side_operations_timeout/legacy-timeouts.yml +204 -0
- data/spec/spec_tests/data/client_side_operations_timeout/non-tailable-cursors.yml +307 -0
- data/spec/spec_tests/data/client_side_operations_timeout/override-collection-timeoutMS.yml +1877 -0
- data/spec/spec_tests/data/client_side_operations_timeout/override-operation-timeoutMS.yml +1918 -0
- data/spec/spec_tests/data/client_side_operations_timeout/retryability-legacy-timeouts.yml +1676 -0
- data/spec/spec_tests/data/client_side_operations_timeout/retryability-timeoutMS.yml +2824 -0
- data/spec/spec_tests/data/client_side_operations_timeout/sessions-inherit-timeoutMS.yml +168 -0
- data/spec/spec_tests/data/client_side_operations_timeout/sessions-override-operation-timeoutMS.yml +171 -0
- data/spec/spec_tests/data/client_side_operations_timeout/sessions-override-timeoutMS.yml +168 -0
- data/spec/spec_tests/data/client_side_operations_timeout/tailable-awaitData.yml +247 -0
- data/spec/spec_tests/data/client_side_operations_timeout/tailable-non-awaitData.yml +181 -0
- data/spec/spec_tests/data/connection_string/invalid-uris.yml +0 -10
- data/spec/spec_tests/data/connection_string/valid-options.yml +13 -0
- data/spec/spec_tests/data/crud_unified/aggregate-write-readPreference.yml +6 -0
- data/spec/spec_tests/data/crud_unified/db-aggregate-write-readPreference.yml +6 -0
- data/spec/spec_tests/data/crud_unified/find-test-all-options.yml +377 -0
- data/spec/spec_tests/data/index_management/createSearchIndex.yml +64 -0
- data/spec/spec_tests/data/index_management/createSearchIndexes.yml +86 -0
- data/spec/spec_tests/data/index_management/dropSearchIndex.yml +43 -0
- data/spec/spec_tests/data/index_management/listSearchIndexes.yml +91 -0
- data/spec/spec_tests/data/index_management/updateSearchIndex.yml +46 -0
- data/spec/spec_tests/data/retryable_writes/unified/bulkWrite-serverErrors.yml +3 -6
- data/spec/spec_tests/data/retryable_writes/unified/insertOne-serverErrors.yml +3 -6
- data/spec/spec_tests/data/run_command_unified/runCommand.yml +319 -0
- data/spec/spec_tests/data/sessions_unified/driver-sessions-dirty-session-errors.yml +351 -0
- data/spec/spec_tests/data/unified/valid-pass/poc-crud.yml +1 -1
- data/spec/spec_tests/data/unified/valid-pass/poc-retryable-writes.yml +7 -7
- data/spec/spec_tests/data/unified/valid-pass/poc-sessions.yml +3 -4
- data/spec/spec_tests/data/unified/valid-pass/poc-transactions-convenient-api.yml +1 -1
- data/spec/spec_tests/data/unified/valid-pass/poc-transactions-mongos-pin-auto.yml +1 -1
- data/spec/spec_tests/data/unified/valid-pass/poc-transactions.yml +3 -3
- data/spec/spec_tests/index_management_unified_spec.rb +13 -0
- data/spec/spec_tests/run_command_unified_spec.rb +13 -0
- data/spec/spec_tests/sdam_unified_spec.rb +2 -0
- data/spec/spec_tests/server_selection_rtt_spec.rb +6 -6
- data/spec/spec_tests/transactions_unified_spec.rb +2 -1
- data/spec/support/certificates/atlas-ocsp-ca.crt +89 -79
- data/spec/support/certificates/atlas-ocsp.crt +117 -122
- data/spec/support/certificates/retrieve-atlas-cert +1 -1
- data/spec/support/cluster_tools.rb +3 -3
- data/spec/support/common_shortcuts.rb +2 -2
- data/spec/support/constraints.rb +6 -0
- data/spec/support/crypt/encrypted_fields/range-encryptedFields-Date.json +1 -1
- data/spec/support/crypt/encrypted_fields/range-encryptedFields-DecimalNoPrecision.json +1 -1
- data/spec/support/crypt/encrypted_fields/range-encryptedFields-DecimalPrecision.json +1 -1
- data/spec/support/crypt/encrypted_fields/range-encryptedFields-DoubleNoPrecision.json +1 -1
- data/spec/support/crypt/encrypted_fields/range-encryptedFields-DoublePrecision.json +1 -1
- data/spec/support/crypt/encrypted_fields/range-encryptedFields-Int.json +1 -1
- data/spec/support/crypt/encrypted_fields/range-encryptedFields-Long.json +1 -1
- data/spec/support/ocsp +1 -1
- data/spec/support/recording_logger.rb +27 -0
- data/spec/support/shared/session.rb +2 -2
- data/spec/support/spec_config.rb +5 -0
- data/spec/support/spec_setup.rb +2 -2
- data/spec/support/utils.rb +3 -1
- metadata +1329 -1368
- checksums.yaml.gz.sig +0 -0
- data/spec/mongo/server/round_trip_time_averager_spec.rb +0 -48
- data/spec/shared/LICENSE +0 -20
- data/spec/shared/bin/get-mongodb-download-url +0 -17
- data/spec/shared/bin/s3-copy +0 -45
- data/spec/shared/bin/s3-upload +0 -69
- data/spec/shared/lib/mrss/child_process_helper.rb +0 -80
- data/spec/shared/lib/mrss/cluster_config.rb +0 -231
- data/spec/shared/lib/mrss/constraints.rb +0 -378
- data/spec/shared/lib/mrss/docker_runner.rb +0 -295
- data/spec/shared/lib/mrss/eg_config_utils.rb +0 -51
- data/spec/shared/lib/mrss/event_subscriber.rb +0 -210
- data/spec/shared/lib/mrss/lite_constraints.rb +0 -238
- data/spec/shared/lib/mrss/server_version_registry.rb +0 -113
- data/spec/shared/lib/mrss/session_registry.rb +0 -69
- data/spec/shared/lib/mrss/session_registry_legacy.rb +0 -60
- data/spec/shared/lib/mrss/spec_organizer.rb +0 -179
- data/spec/shared/lib/mrss/utils.rb +0 -37
- data/spec/shared/share/Dockerfile.erb +0 -330
- data/spec/shared/share/haproxy-1.conf +0 -16
- data/spec/shared/share/haproxy-2.conf +0 -17
- data/spec/shared/shlib/config.sh +0 -27
- data/spec/shared/shlib/distro.sh +0 -74
- data/spec/shared/shlib/server.sh +0 -416
- data/spec/shared/shlib/set_env.sh +0 -169
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Date-Aggregate.yml +0 -241
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Date-Correctness.yml +0 -422
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Date-Delete.yml +0 -182
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Date-FindOneAndUpdate.yml +0 -239
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Date-InsertFind.yml +0 -235
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Date-Update.yml +0 -252
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Decimal-Aggregate.yml +0 -1687
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Decimal-Correctness.yml +0 -293
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Decimal-Delete.yml +0 -905
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Decimal-FindOneAndUpdate.yml +0 -1684
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Decimal-InsertFind.yml +0 -1680
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Decimal-Update.yml +0 -1697
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-DecimalPrecision-Aggregate.yml +0 -329
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-DecimalPrecision-Correctness.yml +0 -424
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-DecimalPrecision-Delete.yml +0 -226
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-DecimalPrecision-FindOneAndUpdate.yml +0 -327
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-DecimalPrecision-InsertFind.yml +0 -319
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-DecimalPrecision-Update.yml +0 -336
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Double-Aggregate.yml +0 -913
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Double-Correctness.yml +0 -292
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Double-Delete.yml +0 -518
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Double-FindOneAndUpdate.yml +0 -911
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Double-InsertFind.yml +0 -907
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Double-Update.yml +0 -924
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-DoublePrecision-Aggregate.yml +0 -325
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-DoublePrecision-Correctness.yml +0 -424
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-DoublePrecision-Delete.yml +0 -224
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-DoublePrecision-FindOneAndUpdate.yml +0 -323
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-DoublePrecision-InsertFind.yml +0 -319
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-DoublePrecision-Update.yml +0 -338
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Int-Aggregate.yml +0 -241
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Int-Correctness.yml +0 -423
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Int-Delete.yml +0 -182
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Int-FindOneAndUpdate.yml +0 -239
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Int-InsertFind.yml +0 -235
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Int-Update.yml +0 -254
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Long-Aggregate.yml +0 -241
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Long-Correctness.yml +0 -422
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Long-Delete.yml +0 -182
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Long-FindOneAndUpdate.yml +0 -239
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Long-InsertFind.yml +0 -235
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Long-Update.yml +0 -254
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-WrongType.yml +0 -43
- data/spec/spec_tests/data/cmap/pool-clear-interrupt-immediately.yml +0 -49
- data.tar.gz.sig +0 -0
- metadata.gz.sig +0 -2
@@ -3,8 +3,10 @@ description: "retryable-writes bulkWrite serverErrors"
|
|
3
3
|
schemaVersion: "1.0"
|
4
4
|
|
5
5
|
runOnRequirements:
|
6
|
-
- minServerVersion: "
|
6
|
+
- minServerVersion: "4.0"
|
7
7
|
topologies: [ replicaset ]
|
8
|
+
- minServerVersion: "4.1.7"
|
9
|
+
topologies: [ sharded ]
|
8
10
|
|
9
11
|
createEntities:
|
10
12
|
- client:
|
@@ -29,11 +31,6 @@ initialData:
|
|
29
31
|
|
30
32
|
tests:
|
31
33
|
- description: "BulkWrite succeeds after retryable writeConcernError in first batch"
|
32
|
-
runOnRequirements:
|
33
|
-
- minServerVersion: "4.0"
|
34
|
-
topologies: [ replicaset ]
|
35
|
-
- minServerVersion: "4.1.7"
|
36
|
-
topologies: [ sharded ]
|
37
34
|
operations:
|
38
35
|
- name: failPoint
|
39
36
|
object: testRunner
|
@@ -3,8 +3,10 @@ description: "retryable-writes insertOne serverErrors"
|
|
3
3
|
schemaVersion: "1.0"
|
4
4
|
|
5
5
|
runOnRequirements:
|
6
|
-
- minServerVersion: "
|
6
|
+
- minServerVersion: "4.0"
|
7
7
|
topologies: [ replicaset ]
|
8
|
+
- minServerVersion: "4.1.7"
|
9
|
+
topologies: [ sharded ]
|
8
10
|
|
9
11
|
createEntities:
|
10
12
|
- client:
|
@@ -29,11 +31,6 @@ initialData:
|
|
29
31
|
|
30
32
|
tests:
|
31
33
|
- description: "InsertOne succeeds after retryable writeConcernError"
|
32
|
-
runOnRequirements:
|
33
|
-
- minServerVersion: "4.0"
|
34
|
-
topologies: [ replicaset ]
|
35
|
-
- minServerVersion: "4.1.7"
|
36
|
-
topologies: [ sharded ]
|
37
34
|
operations:
|
38
35
|
- name: failPoint
|
39
36
|
object: testRunner
|
@@ -0,0 +1,319 @@
|
|
1
|
+
description: runCommand
|
2
|
+
|
3
|
+
schemaVersion: "1.3"
|
4
|
+
|
5
|
+
createEntities:
|
6
|
+
- client:
|
7
|
+
id: &client client
|
8
|
+
useMultipleMongoses: false
|
9
|
+
observeEvents: [commandStartedEvent]
|
10
|
+
- database:
|
11
|
+
id: &db db
|
12
|
+
client: *client
|
13
|
+
databaseName: *db
|
14
|
+
- collection:
|
15
|
+
id: &collection collection
|
16
|
+
database: *db
|
17
|
+
collectionName: *collection
|
18
|
+
- database:
|
19
|
+
id: &dbWithRC dbWithRC
|
20
|
+
client: *client
|
21
|
+
databaseName: *dbWithRC
|
22
|
+
databaseOptions:
|
23
|
+
readConcern: { level: 'local' }
|
24
|
+
- database:
|
25
|
+
id: &dbWithWC dbWithWC
|
26
|
+
client: *client
|
27
|
+
databaseName: *dbWithWC
|
28
|
+
databaseOptions:
|
29
|
+
writeConcern: { w: 0 }
|
30
|
+
- session:
|
31
|
+
id: &session session
|
32
|
+
client: *client
|
33
|
+
# Stable API test
|
34
|
+
- client:
|
35
|
+
id: &clientWithStableApi clientWithStableApi
|
36
|
+
observeEvents: [commandStartedEvent]
|
37
|
+
serverApi:
|
38
|
+
version: "1"
|
39
|
+
strict: true
|
40
|
+
- database:
|
41
|
+
id: &dbWithStableApi dbWithStableApi
|
42
|
+
client: *clientWithStableApi
|
43
|
+
databaseName: *dbWithStableApi
|
44
|
+
|
45
|
+
initialData:
|
46
|
+
- collectionName: *collection
|
47
|
+
databaseName: *db
|
48
|
+
documents: []
|
49
|
+
|
50
|
+
tests:
|
51
|
+
- description: always attaches $db and implicit lsid to given command and omits default readPreference
|
52
|
+
operations:
|
53
|
+
- name: runCommand
|
54
|
+
object: *db
|
55
|
+
arguments:
|
56
|
+
commandName: ping
|
57
|
+
command: { ping: 1 }
|
58
|
+
expectResult: { ok: 1 }
|
59
|
+
expectEvents:
|
60
|
+
- client: *client
|
61
|
+
events:
|
62
|
+
- commandStartedEvent:
|
63
|
+
command:
|
64
|
+
ping: 1
|
65
|
+
$db: *db
|
66
|
+
lsid: { $$exists: true }
|
67
|
+
$readPreference: { $$exists: false }
|
68
|
+
commandName: ping
|
69
|
+
|
70
|
+
- description: always gossips the $clusterTime on the sent command
|
71
|
+
runOnRequirements:
|
72
|
+
# Only replicasets and sharded clusters have a $clusterTime
|
73
|
+
- topologies: [ replicaset, sharded ]
|
74
|
+
operations:
|
75
|
+
# We have to run one command to obtain a clusterTime to gossip
|
76
|
+
- name: runCommand
|
77
|
+
object: *db
|
78
|
+
arguments:
|
79
|
+
commandName: ping
|
80
|
+
command: { ping: 1 }
|
81
|
+
expectResult: { ok: 1 }
|
82
|
+
- name: runCommand
|
83
|
+
object: *db
|
84
|
+
arguments:
|
85
|
+
commandName: ping
|
86
|
+
command: { ping: 1 }
|
87
|
+
expectResult: { ok: 1 }
|
88
|
+
expectEvents:
|
89
|
+
- client: *client
|
90
|
+
events:
|
91
|
+
- commandStartedEvent:
|
92
|
+
commandName: ping
|
93
|
+
# Only check the shape of the second ping which should have the $clusterTime received from the first operation
|
94
|
+
- commandStartedEvent:
|
95
|
+
command:
|
96
|
+
ping: 1
|
97
|
+
$clusterTime: { $$exists: true }
|
98
|
+
commandName: ping
|
99
|
+
|
100
|
+
- description: attaches the provided session lsid to given command
|
101
|
+
operations:
|
102
|
+
- name: runCommand
|
103
|
+
object: *db
|
104
|
+
arguments:
|
105
|
+
commandName: ping
|
106
|
+
command: { ping: 1 }
|
107
|
+
session: *session
|
108
|
+
expectResult: { ok: 1 }
|
109
|
+
expectEvents:
|
110
|
+
- client: *client
|
111
|
+
events:
|
112
|
+
- commandStartedEvent:
|
113
|
+
command:
|
114
|
+
ping: 1
|
115
|
+
lsid: { $$sessionLsid: *session }
|
116
|
+
$db: *db
|
117
|
+
commandName: ping
|
118
|
+
|
119
|
+
- description: attaches the provided $readPreference to given command
|
120
|
+
runOnRequirements:
|
121
|
+
# Exclude single topology, which is most likely a standalone server
|
122
|
+
- topologies: [ replicaset, load-balanced, sharded ]
|
123
|
+
operations:
|
124
|
+
- name: runCommand
|
125
|
+
object: *db
|
126
|
+
arguments:
|
127
|
+
commandName: ping
|
128
|
+
command: { ping: 1 }
|
129
|
+
readPreference: &readPreference { mode: 'nearest' }
|
130
|
+
expectResult: { ok: 1 }
|
131
|
+
expectEvents:
|
132
|
+
- client: *client
|
133
|
+
events:
|
134
|
+
- commandStartedEvent:
|
135
|
+
command:
|
136
|
+
ping: 1
|
137
|
+
$readPreference: *readPreference
|
138
|
+
$db: *db
|
139
|
+
commandName: ping
|
140
|
+
|
141
|
+
- description: does not attach $readPreference to given command on standalone
|
142
|
+
runOnRequirements:
|
143
|
+
# This test assumes that the single topology contains a standalone server;
|
144
|
+
# however, it is possible for a single topology to contain a direct
|
145
|
+
# connection to another server type.
|
146
|
+
# See: https://github.com/mongodb/specifications/blob/master/source/server-selection/server-selection.rst#topology-type-single
|
147
|
+
- topologies: [ single ]
|
148
|
+
operations:
|
149
|
+
- name: runCommand
|
150
|
+
object: *db
|
151
|
+
arguments:
|
152
|
+
commandName: ping
|
153
|
+
command: { ping: 1 }
|
154
|
+
readPreference: { mode: 'nearest' }
|
155
|
+
expectResult: { ok: 1 }
|
156
|
+
expectEvents:
|
157
|
+
- client: *client
|
158
|
+
events:
|
159
|
+
- commandStartedEvent:
|
160
|
+
command:
|
161
|
+
ping: 1
|
162
|
+
$readPreference: { $$exists: false }
|
163
|
+
$db: *db
|
164
|
+
commandName: ping
|
165
|
+
|
166
|
+
- description: does not attach primary $readPreference to given command
|
167
|
+
operations:
|
168
|
+
- name: runCommand
|
169
|
+
object: *db
|
170
|
+
arguments:
|
171
|
+
commandName: ping
|
172
|
+
command: { ping: 1 }
|
173
|
+
readPreference: { mode: 'primary' }
|
174
|
+
expectResult: { ok: 1 }
|
175
|
+
expectEvents:
|
176
|
+
- client: *client
|
177
|
+
events:
|
178
|
+
- commandStartedEvent:
|
179
|
+
command:
|
180
|
+
ping: 1
|
181
|
+
$readPreference: { $$exists: false }
|
182
|
+
$db: *db
|
183
|
+
commandName: ping
|
184
|
+
|
185
|
+
- description: does not inherit readConcern specified at the db level
|
186
|
+
operations:
|
187
|
+
- name: runCommand
|
188
|
+
object: *dbWithRC
|
189
|
+
# Test with a command that supports a readConcern option.
|
190
|
+
# expectResult is intentionally omitted because some drivers
|
191
|
+
# may automatically convert command responses into cursors.
|
192
|
+
arguments:
|
193
|
+
commandName: aggregate
|
194
|
+
command: { aggregate: *collection, pipeline: [], cursor: {} }
|
195
|
+
expectEvents:
|
196
|
+
- client: *client
|
197
|
+
events:
|
198
|
+
- commandStartedEvent:
|
199
|
+
command:
|
200
|
+
aggregate: *collection
|
201
|
+
readConcern: { $$exists: false }
|
202
|
+
$db: *dbWithRC
|
203
|
+
commandName: aggregate
|
204
|
+
|
205
|
+
- description: does not inherit writeConcern specified at the db level
|
206
|
+
operations:
|
207
|
+
- name: runCommand
|
208
|
+
object: *dbWithWC
|
209
|
+
arguments:
|
210
|
+
commandName: insert
|
211
|
+
command:
|
212
|
+
insert: *collection
|
213
|
+
documents: [ { foo: 'bar' } ]
|
214
|
+
ordered: true
|
215
|
+
expectResult: { ok: 1 }
|
216
|
+
expectEvents:
|
217
|
+
- client: *client
|
218
|
+
events:
|
219
|
+
- commandStartedEvent:
|
220
|
+
command:
|
221
|
+
insert: *collection
|
222
|
+
writeConcern: { $$exists: false }
|
223
|
+
$db: *dbWithWC
|
224
|
+
commandName: insert
|
225
|
+
|
226
|
+
- description: does not retry retryable errors on given command
|
227
|
+
runOnRequirements:
|
228
|
+
- minServerVersion: "4.2"
|
229
|
+
operations:
|
230
|
+
- name: failPoint
|
231
|
+
object: testRunner
|
232
|
+
arguments:
|
233
|
+
client: *client
|
234
|
+
failPoint:
|
235
|
+
configureFailPoint: failCommand
|
236
|
+
mode: { times: 1 }
|
237
|
+
data:
|
238
|
+
failCommands: [ping]
|
239
|
+
closeConnection: true
|
240
|
+
- name: runCommand
|
241
|
+
object: *db
|
242
|
+
arguments:
|
243
|
+
commandName: ping
|
244
|
+
command: { ping: 1 }
|
245
|
+
expectError:
|
246
|
+
isClientError: true
|
247
|
+
|
248
|
+
- description: attaches transaction fields to given command
|
249
|
+
runOnRequirements:
|
250
|
+
- minServerVersion: "4.0"
|
251
|
+
topologies: [ replicaset ]
|
252
|
+
- minServerVersion: "4.2"
|
253
|
+
topologies: [ sharded, load-balanced ]
|
254
|
+
operations:
|
255
|
+
- name: withTransaction
|
256
|
+
object: *session
|
257
|
+
arguments:
|
258
|
+
callback:
|
259
|
+
- name: runCommand
|
260
|
+
object: *db
|
261
|
+
arguments:
|
262
|
+
session: *session
|
263
|
+
commandName: insert
|
264
|
+
command:
|
265
|
+
insert: *collection
|
266
|
+
documents: [ { foo: 'transaction' } ]
|
267
|
+
ordered: true
|
268
|
+
expectResult: { $$unsetOrMatches: { insertedId: { $$unsetOrMatches: 1 } } }
|
269
|
+
expectEvents:
|
270
|
+
- client: *client
|
271
|
+
events:
|
272
|
+
- commandStartedEvent:
|
273
|
+
command:
|
274
|
+
insert: *collection
|
275
|
+
documents: [ { foo: 'transaction' } ]
|
276
|
+
ordered: true
|
277
|
+
lsid: { $$sessionLsid: *session }
|
278
|
+
txnNumber: 1
|
279
|
+
startTransaction: true
|
280
|
+
autocommit: false
|
281
|
+
# omitted fields
|
282
|
+
readConcern: { $$exists: false }
|
283
|
+
writeConcern: { $$exists: false }
|
284
|
+
commandName: insert
|
285
|
+
databaseName: *db
|
286
|
+
- commandStartedEvent:
|
287
|
+
command:
|
288
|
+
commitTransaction: 1
|
289
|
+
lsid: { $$sessionLsid: *session }
|
290
|
+
txnNumber: 1
|
291
|
+
autocommit: false
|
292
|
+
# omitted fields
|
293
|
+
writeConcern: { $$exists: false }
|
294
|
+
readConcern: { $$exists: false }
|
295
|
+
commandName: commitTransaction
|
296
|
+
databaseName: admin
|
297
|
+
|
298
|
+
- description: attaches apiVersion fields to given command when stableApi is configured on the client
|
299
|
+
runOnRequirements:
|
300
|
+
- minServerVersion: "5.0"
|
301
|
+
operations:
|
302
|
+
- name: runCommand
|
303
|
+
object: *dbWithStableApi
|
304
|
+
arguments:
|
305
|
+
commandName: ping
|
306
|
+
command:
|
307
|
+
ping: 1
|
308
|
+
expectResult: { ok: 1 }
|
309
|
+
expectEvents:
|
310
|
+
- client: *clientWithStableApi
|
311
|
+
events:
|
312
|
+
- commandStartedEvent:
|
313
|
+
command:
|
314
|
+
ping: 1
|
315
|
+
$db: *dbWithStableApi
|
316
|
+
apiVersion: "1"
|
317
|
+
apiStrict: true
|
318
|
+
apiDeprecationErrors: { $$unsetOrMatches: false }
|
319
|
+
commandName: ping
|
@@ -0,0 +1,351 @@
|
|
1
|
+
description: "driver-sessions-dirty-session-errors"
|
2
|
+
|
3
|
+
schemaVersion: "1.0"
|
4
|
+
|
5
|
+
runOnRequirements:
|
6
|
+
- minServerVersion: "4.0"
|
7
|
+
topologies: [ replicaset ]
|
8
|
+
- minServerVersion: "4.1.8"
|
9
|
+
topologies: [ sharded ]
|
10
|
+
|
11
|
+
createEntities:
|
12
|
+
- client:
|
13
|
+
id: &client0 client0
|
14
|
+
useMultipleMongoses: false
|
15
|
+
observeEvents: [ commandStartedEvent ]
|
16
|
+
- database:
|
17
|
+
id: &database0 database0
|
18
|
+
client: *client0
|
19
|
+
databaseName: &database0Name session-tests
|
20
|
+
- collection:
|
21
|
+
id: &collection0 collection0
|
22
|
+
database: *database0
|
23
|
+
collectionName: &collection0Name test
|
24
|
+
- session:
|
25
|
+
id: &session0 session0
|
26
|
+
client: *client0
|
27
|
+
|
28
|
+
initialData:
|
29
|
+
- collectionName: *collection0Name
|
30
|
+
databaseName: *database0Name
|
31
|
+
documents:
|
32
|
+
- { _id: 1 }
|
33
|
+
|
34
|
+
tests:
|
35
|
+
- description: "Dirty explicit session is discarded (insert)"
|
36
|
+
operations:
|
37
|
+
- name: failPoint
|
38
|
+
object: testRunner
|
39
|
+
arguments:
|
40
|
+
client: *client0
|
41
|
+
failPoint:
|
42
|
+
configureFailPoint: failCommand
|
43
|
+
mode: { times: 1 }
|
44
|
+
data:
|
45
|
+
failCommands: [ insert ]
|
46
|
+
closeConnection: true
|
47
|
+
- name: assertSessionNotDirty
|
48
|
+
object: testRunner
|
49
|
+
arguments:
|
50
|
+
session: *session0
|
51
|
+
- name: insertOne
|
52
|
+
object: *collection0
|
53
|
+
arguments:
|
54
|
+
session: *session0
|
55
|
+
document: { _id: 2 }
|
56
|
+
expectResult: { $$unsetOrMatches: { insertedId: { $$unsetOrMatches: 2 } } }
|
57
|
+
- name: assertSessionDirty
|
58
|
+
object: testRunner
|
59
|
+
arguments:
|
60
|
+
session: *session0
|
61
|
+
- name: insertOne
|
62
|
+
object: *collection0
|
63
|
+
arguments:
|
64
|
+
session: *session0
|
65
|
+
document: { _id: 3 }
|
66
|
+
expectResult: { $$unsetOrMatches: { insertedId: { $$unsetOrMatches: 3 } } }
|
67
|
+
- name: assertSessionDirty
|
68
|
+
object: testRunner
|
69
|
+
arguments:
|
70
|
+
session: *session0
|
71
|
+
- name: endSession
|
72
|
+
object: *session0
|
73
|
+
- &find_with_implicit_session
|
74
|
+
name: find
|
75
|
+
object: *collection0
|
76
|
+
arguments:
|
77
|
+
filter: { _id: -1 }
|
78
|
+
expectResult: []
|
79
|
+
- name: assertDifferentLsidOnLastTwoCommands
|
80
|
+
object: testRunner
|
81
|
+
arguments:
|
82
|
+
client: *client0
|
83
|
+
expectEvents:
|
84
|
+
- client: *client0
|
85
|
+
events:
|
86
|
+
- commandStartedEvent: &insert_attempt
|
87
|
+
command:
|
88
|
+
insert: *collection0Name
|
89
|
+
documents:
|
90
|
+
- { _id: 2 }
|
91
|
+
ordered: true
|
92
|
+
lsid: { $$sessionLsid: *session0 }
|
93
|
+
txnNumber: 1
|
94
|
+
commandName: insert
|
95
|
+
databaseName: *database0Name
|
96
|
+
- commandStartedEvent: *insert_attempt
|
97
|
+
- commandStartedEvent:
|
98
|
+
command:
|
99
|
+
insert: *collection0Name
|
100
|
+
documents:
|
101
|
+
- { _id: 3 }
|
102
|
+
ordered: true
|
103
|
+
lsid: { $$sessionLsid: *session0 }
|
104
|
+
txnNumber: 2
|
105
|
+
commandName: insert
|
106
|
+
databaseName: *database0Name
|
107
|
+
- commandStartedEvent: &find_with_implicit_session_event
|
108
|
+
command:
|
109
|
+
find: *collection0Name
|
110
|
+
filter: { _id: -1 }
|
111
|
+
# There is no explicit session to use with $$sessionLsid, so
|
112
|
+
# just assert an arbitrary lsid document
|
113
|
+
lsid: { $$type: object }
|
114
|
+
commandName: find
|
115
|
+
databaseName: *database0Name
|
116
|
+
outcome:
|
117
|
+
- collectionName: *collection0Name
|
118
|
+
databaseName: *database0Name
|
119
|
+
documents:
|
120
|
+
- { _id: 1 }
|
121
|
+
- { _id: 2 }
|
122
|
+
- { _id: 3 }
|
123
|
+
|
124
|
+
- description: "Dirty explicit session is discarded (findAndModify)"
|
125
|
+
operations:
|
126
|
+
- name: failPoint
|
127
|
+
object: testRunner
|
128
|
+
arguments:
|
129
|
+
client: *client0
|
130
|
+
failPoint:
|
131
|
+
configureFailPoint: failCommand
|
132
|
+
mode: { times: 1 }
|
133
|
+
data:
|
134
|
+
failCommands: [ findAndModify ]
|
135
|
+
closeConnection: true
|
136
|
+
- name: assertSessionNotDirty
|
137
|
+
object: testRunner
|
138
|
+
arguments:
|
139
|
+
session: *session0
|
140
|
+
- name: findOneAndUpdate
|
141
|
+
object: *collection0
|
142
|
+
arguments:
|
143
|
+
session: *session0
|
144
|
+
filter: { _id: 1 }
|
145
|
+
update: { $inc: { x: 1 } }
|
146
|
+
returnDocument: Before
|
147
|
+
expectResult: { _id: 1 }
|
148
|
+
- name: assertSessionDirty
|
149
|
+
object: testRunner
|
150
|
+
arguments:
|
151
|
+
session: *session0
|
152
|
+
- name: endSession
|
153
|
+
object: *session0
|
154
|
+
- *find_with_implicit_session
|
155
|
+
- name: assertDifferentLsidOnLastTwoCommands
|
156
|
+
object: testRunner
|
157
|
+
arguments:
|
158
|
+
client: *client0
|
159
|
+
expectEvents:
|
160
|
+
- client: *client0
|
161
|
+
events:
|
162
|
+
- commandStartedEvent: &findAndModify_attempt
|
163
|
+
command:
|
164
|
+
findAndModify: *collection0Name
|
165
|
+
query: { _id: 1 }
|
166
|
+
update: { $inc: { x: 1 } }
|
167
|
+
new: false
|
168
|
+
lsid: { $$sessionLsid: *session0 }
|
169
|
+
txnNumber: 1
|
170
|
+
readConcern: { $$exists: false }
|
171
|
+
writeConcern: { $$exists: false }
|
172
|
+
commandName: findAndModify
|
173
|
+
databaseName: *database0Name
|
174
|
+
- commandStartedEvent: *findAndModify_attempt
|
175
|
+
- commandStartedEvent: *find_with_implicit_session_event
|
176
|
+
outcome:
|
177
|
+
- collectionName: *collection0Name
|
178
|
+
databaseName: *database0Name
|
179
|
+
documents:
|
180
|
+
- { _id: 1, x: 1 }
|
181
|
+
|
182
|
+
- description: "Dirty implicit session is discarded (insert)"
|
183
|
+
operations:
|
184
|
+
- name: failPoint
|
185
|
+
object: testRunner
|
186
|
+
arguments:
|
187
|
+
client: *client0
|
188
|
+
failPoint:
|
189
|
+
configureFailPoint: failCommand
|
190
|
+
mode: { times: 1 }
|
191
|
+
data:
|
192
|
+
failCommands: [ insert ]
|
193
|
+
closeConnection: true
|
194
|
+
- name: insertOne
|
195
|
+
object: *collection0
|
196
|
+
arguments:
|
197
|
+
document: { _id: 2 }
|
198
|
+
expectResult: { $$unsetOrMatches: { insertedId: { $$unsetOrMatches: 2 } } }
|
199
|
+
- *find_with_implicit_session
|
200
|
+
- name: assertDifferentLsidOnLastTwoCommands
|
201
|
+
object: testRunner
|
202
|
+
arguments:
|
203
|
+
client: *client0
|
204
|
+
expectEvents:
|
205
|
+
- client: *client0
|
206
|
+
events:
|
207
|
+
- commandStartedEvent: &insert_attempt
|
208
|
+
command:
|
209
|
+
insert: *collection0Name
|
210
|
+
documents:
|
211
|
+
- { _id: 2 }
|
212
|
+
ordered: true
|
213
|
+
lsid: { $$type: object }
|
214
|
+
txnNumber: 1
|
215
|
+
commandName: insert
|
216
|
+
databaseName: *database0Name
|
217
|
+
- commandStartedEvent: *insert_attempt
|
218
|
+
- commandStartedEvent: *find_with_implicit_session_event
|
219
|
+
outcome:
|
220
|
+
- collectionName: *collection0Name
|
221
|
+
databaseName: *database0Name
|
222
|
+
documents:
|
223
|
+
- { _id: 1 }
|
224
|
+
- { _id: 2 }
|
225
|
+
|
226
|
+
- description: "Dirty implicit session is discarded (findAndModify)"
|
227
|
+
operations:
|
228
|
+
- name: failPoint
|
229
|
+
object: testRunner
|
230
|
+
arguments:
|
231
|
+
client: *client0
|
232
|
+
failPoint:
|
233
|
+
configureFailPoint: failCommand
|
234
|
+
mode: { times: 1 }
|
235
|
+
data:
|
236
|
+
failCommands: [ findAndModify ]
|
237
|
+
closeConnection: true
|
238
|
+
- name: findOneAndUpdate
|
239
|
+
object: *collection0
|
240
|
+
arguments:
|
241
|
+
filter: { _id: 1 }
|
242
|
+
update: { $inc: { x: 1 } }
|
243
|
+
returnDocument: Before
|
244
|
+
expectResult: { _id: 1 }
|
245
|
+
- *find_with_implicit_session
|
246
|
+
- name: assertDifferentLsidOnLastTwoCommands
|
247
|
+
object: testRunner
|
248
|
+
arguments:
|
249
|
+
client: *client0
|
250
|
+
expectEvents:
|
251
|
+
- client: *client0
|
252
|
+
events:
|
253
|
+
- commandStartedEvent: &findAndModify_attempt
|
254
|
+
command:
|
255
|
+
findAndModify: *collection0Name
|
256
|
+
query: { _id: 1 }
|
257
|
+
update: { $inc: { x: 1 } }
|
258
|
+
new: false
|
259
|
+
lsid: { $$type: object }
|
260
|
+
txnNumber: 1
|
261
|
+
readConcern: { $$exists: false }
|
262
|
+
writeConcern: { $$exists: false }
|
263
|
+
commandName: findAndModify
|
264
|
+
databaseName: *database0Name
|
265
|
+
- commandStartedEvent: *findAndModify_attempt
|
266
|
+
- commandStartedEvent: *find_with_implicit_session_event
|
267
|
+
outcome:
|
268
|
+
- collectionName: *collection0Name
|
269
|
+
databaseName: *database0Name
|
270
|
+
documents:
|
271
|
+
- { _id: 1, x: 1 }
|
272
|
+
|
273
|
+
- description: "Dirty implicit session is discarded (read returning cursor)"
|
274
|
+
operations:
|
275
|
+
- name: failPoint
|
276
|
+
object: testRunner
|
277
|
+
arguments:
|
278
|
+
client: *client0
|
279
|
+
failPoint:
|
280
|
+
configureFailPoint: failCommand
|
281
|
+
mode: { times: 1 }
|
282
|
+
data:
|
283
|
+
failCommands: [ aggregate ]
|
284
|
+
closeConnection: true
|
285
|
+
- name: aggregate
|
286
|
+
object: *collection0
|
287
|
+
arguments:
|
288
|
+
pipeline: [ { $project: { _id: 1 } } ]
|
289
|
+
expectResult: [ { _id: 1 } ]
|
290
|
+
- *find_with_implicit_session
|
291
|
+
- name: assertDifferentLsidOnLastTwoCommands
|
292
|
+
object: testRunner
|
293
|
+
arguments:
|
294
|
+
client: *client0
|
295
|
+
expectEvents:
|
296
|
+
- client: *client0
|
297
|
+
events:
|
298
|
+
- commandStartedEvent: &aggregate_attempt
|
299
|
+
command:
|
300
|
+
aggregate: *collection0Name
|
301
|
+
pipeline: [ { $project: { _id: 1 } } ]
|
302
|
+
lsid: { $$type: object }
|
303
|
+
commandName: aggregate
|
304
|
+
databaseName: *database0Name
|
305
|
+
- commandStartedEvent: *aggregate_attempt
|
306
|
+
- commandStartedEvent: *find_with_implicit_session_event
|
307
|
+
outcome:
|
308
|
+
- collectionName: *collection0Name
|
309
|
+
databaseName: *database0Name
|
310
|
+
documents:
|
311
|
+
- { _id: 1 }
|
312
|
+
|
313
|
+
- description: "Dirty implicit session is discarded (read not returning cursor)"
|
314
|
+
operations:
|
315
|
+
- name: failPoint
|
316
|
+
object: testRunner
|
317
|
+
arguments:
|
318
|
+
client: *client0
|
319
|
+
failPoint:
|
320
|
+
configureFailPoint: failCommand
|
321
|
+
mode: { times: 1 }
|
322
|
+
data:
|
323
|
+
failCommands: [ aggregate ]
|
324
|
+
closeConnection: true
|
325
|
+
- name: countDocuments
|
326
|
+
object: *collection0
|
327
|
+
arguments:
|
328
|
+
filter: {}
|
329
|
+
expectResult: 1
|
330
|
+
- *find_with_implicit_session
|
331
|
+
- name: assertDifferentLsidOnLastTwoCommands
|
332
|
+
object: testRunner
|
333
|
+
arguments:
|
334
|
+
client: *client0
|
335
|
+
expectEvents:
|
336
|
+
- client: *client0
|
337
|
+
events:
|
338
|
+
- commandStartedEvent: &countDocuments_attempt
|
339
|
+
command:
|
340
|
+
aggregate: *collection0Name
|
341
|
+
pipeline: [ { $match: {} }, { $group: { _id: 1, n: { $sum: 1 } } } ]
|
342
|
+
lsid: { $$type: object }
|
343
|
+
commandName: aggregate
|
344
|
+
databaseName: *database0Name
|
345
|
+
- commandStartedEvent: *countDocuments_attempt
|
346
|
+
- commandStartedEvent: *find_with_implicit_session_event
|
347
|
+
outcome:
|
348
|
+
- collectionName: *collection0Name
|
349
|
+
databaseName: *database0Name
|
350
|
+
documents:
|
351
|
+
- { _id: 1 }
|