mongo 2.11.6 → 2.12.0.rc0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +2 -2
- data.tar.gz.sig +0 -0
- data/CONTRIBUTING.md +1 -1
- data/lib/mongo.rb +3 -0
- data/lib/mongo/address.rb +13 -2
- data/lib/mongo/auth.rb +1 -0
- data/lib/mongo/auth/credential_cache.rb +51 -0
- data/lib/mongo/auth/scram/conversation.rb +20 -16
- data/lib/mongo/auth/user.rb +0 -8
- data/lib/mongo/auth/user/view.rb +4 -4
- data/lib/mongo/background_thread.rb +1 -1
- data/lib/mongo/bulk_write.rb +5 -5
- data/lib/mongo/client.rb +126 -11
- data/lib/mongo/client_encryption.rb +103 -0
- data/lib/mongo/cluster.rb +2 -2
- data/lib/mongo/cluster/reapers/cursor_reaper.rb +18 -6
- data/lib/mongo/cluster/sdam_flow.rb +54 -58
- data/lib/mongo/cluster/srv_monitor.rb +1 -1
- data/lib/mongo/collection.rb +3 -3
- data/lib/mongo/collection/view.rb +1 -1
- data/lib/mongo/collection/view/aggregation.rb +1 -1
- data/lib/mongo/collection/view/change_stream.rb +12 -3
- data/lib/mongo/collection/view/iterable.rb +14 -5
- data/lib/mongo/collection/view/map_reduce.rb +2 -2
- data/lib/mongo/collection/view/readable.rb +7 -9
- data/lib/mongo/collection/view/writable.rb +7 -7
- data/lib/mongo/crypt.rb +33 -0
- data/lib/mongo/crypt/auto_decryption_context.rb +42 -0
- data/lib/mongo/crypt/auto_encrypter.rb +169 -0
- data/lib/mongo/crypt/auto_encryption_context.rb +44 -0
- data/lib/mongo/crypt/binary.rb +155 -0
- data/lib/mongo/crypt/binding.rb +1162 -0
- data/lib/mongo/crypt/context.rb +135 -0
- data/lib/mongo/crypt/data_key_context.rb +162 -0
- data/lib/mongo/crypt/encryption_io.rb +283 -0
- data/lib/mongo/crypt/explicit_decryption_context.rb +40 -0
- data/lib/mongo/crypt/explicit_encrypter.rb +117 -0
- data/lib/mongo/crypt/explicit_encryption_context.rb +89 -0
- data/lib/mongo/crypt/handle.rb +293 -0
- data/lib/mongo/crypt/hooks.rb +90 -0
- data/lib/mongo/crypt/kms_context.rb +67 -0
- data/lib/mongo/crypt/status.rb +131 -0
- data/lib/mongo/cursor.rb +64 -32
- data/lib/mongo/database.rb +13 -6
- data/lib/mongo/database/view.rb +13 -4
- data/lib/mongo/dbref.rb +9 -2
- data/lib/mongo/error.rb +5 -1
- data/lib/mongo/error/crypt_error.rb +31 -0
- data/lib/mongo/error/{failed_stringprep_validation.rb → failed_string_prep_validation.rb} +0 -0
- data/lib/mongo/error/invalid_cursor_operation.rb +27 -0
- data/lib/mongo/error/kms_error.rb +22 -0
- data/lib/mongo/error/max_bson_size.rb +14 -3
- data/lib/mongo/error/mongocryptd_spawn_error.rb +22 -0
- data/lib/mongo/error/no_server_available.rb +8 -3
- data/lib/mongo/error/operation_failure.rb +1 -0
- data/lib/mongo/grid/file.rb +0 -5
- data/lib/mongo/grid/file/chunk.rb +0 -2
- data/lib/mongo/grid/file/info.rb +2 -1
- data/lib/mongo/grid/fs_bucket.rb +13 -15
- data/lib/mongo/grid/stream/write.rb +3 -9
- data/lib/mongo/index/view.rb +3 -3
- data/lib/mongo/monitoring/event/command_started.rb +6 -1
- data/lib/mongo/operation/collections_info.rb +6 -3
- data/lib/mongo/operation/delete/op_msg.rb +1 -1
- data/lib/mongo/operation/find/op_msg.rb +4 -1
- data/lib/mongo/operation/get_more/op_msg.rb +4 -1
- data/lib/mongo/operation/insert/command.rb +2 -2
- data/lib/mongo/operation/insert/legacy.rb +2 -2
- data/lib/mongo/operation/insert/op_msg.rb +3 -3
- data/lib/mongo/operation/result.rb +36 -27
- data/lib/mongo/operation/shared/executable.rb +10 -8
- data/lib/mongo/operation/shared/executable_no_validate.rb +2 -2
- data/lib/mongo/operation/shared/op_msg_or_command.rb +2 -2
- data/lib/mongo/operation/shared/op_msg_or_find_command.rb +2 -2
- data/lib/mongo/operation/shared/op_msg_or_list_indexes_command.rb +2 -2
- data/lib/mongo/operation/shared/write.rb +17 -10
- data/lib/mongo/operation/update/op_msg.rb +1 -1
- data/lib/mongo/protocol/compressed.rb +6 -5
- data/lib/mongo/protocol/insert.rb +3 -1
- data/lib/mongo/protocol/message.rb +72 -8
- data/lib/mongo/protocol/msg.rb +191 -37
- data/lib/mongo/protocol/query.rb +7 -9
- data/lib/mongo/protocol/serializers.rb +6 -2
- data/lib/mongo/server.rb +10 -4
- data/lib/mongo/server/connection.rb +20 -9
- data/lib/mongo/server/connection_base.rb +81 -12
- data/lib/mongo/server/connection_common.rb +61 -0
- data/lib/mongo/server/connection_pool.rb +37 -1
- data/lib/mongo/server/description.rb +9 -11
- data/lib/mongo/server/monitor.rb +2 -0
- data/lib/mongo/server/monitor/connection.rb +3 -18
- data/lib/mongo/server/pending_connection.rb +2 -1
- data/lib/mongo/session.rb +2 -2
- data/lib/mongo/session/session_pool.rb +8 -3
- data/lib/mongo/socket.rb +29 -16
- data/lib/mongo/socket/ssl.rb +23 -8
- data/lib/mongo/socket/tcp.rb +12 -3
- data/lib/mongo/timeout.rb +49 -0
- data/lib/mongo/uri.rb +30 -1
- data/lib/mongo/version.rb +1 -1
- data/mongo.gemspec +1 -1
- data/spec/README.md +134 -7
- data/spec/integration/auth_spec.rb +53 -0
- data/spec/integration/{client_options_spec.rb → client_authentication_options_spec.rb} +10 -10
- data/spec/integration/client_construction_spec.rb +76 -1
- data/spec/integration/client_side_encryption/auto_encryption_bulk_writes_spec.rb +351 -0
- data/spec/integration/client_side_encryption/auto_encryption_command_monitoring_spec.rb +301 -0
- data/spec/integration/client_side_encryption/auto_encryption_mongocryptd_spawn_spec.rb +71 -0
- data/spec/integration/client_side_encryption/auto_encryption_old_wire_version_spec.rb +76 -0
- data/spec/integration/client_side_encryption/auto_encryption_reconnect_spec.rb +216 -0
- data/spec/integration/client_side_encryption/auto_encryption_spec.rb +600 -0
- data/spec/integration/client_side_encryption/bson_size_limit_spec.rb +183 -0
- data/spec/integration/client_side_encryption/bypass_mongocryptd_spawn_spec.rb +74 -0
- data/spec/integration/client_side_encryption/client_close_spec.rb +59 -0
- data/spec/integration/client_side_encryption/corpus_spec.rb +228 -0
- data/spec/integration/client_side_encryption/custom_endpoint_spec.rb +132 -0
- data/spec/integration/client_side_encryption/data_key_spec.rb +163 -0
- data/spec/integration/client_side_encryption/explicit_encryption_spec.rb +114 -0
- data/spec/integration/client_side_encryption/external_key_vault_spec.rb +137 -0
- data/spec/integration/client_side_encryption/views_spec.rb +42 -0
- data/spec/integration/client_update_spec.rb +120 -0
- data/spec/integration/command_monitoring_spec.rb +3 -1
- data/spec/integration/command_spec.rb +44 -10
- data/spec/integration/connection_spec.rb +57 -0
- data/spec/integration/reconnect_spec.rb +7 -6
- data/spec/integration/size_limit_spec.rb +94 -0
- data/spec/integration/srv_monitoring_spec.rb +14 -6
- data/spec/lite_spec_helper.rb +31 -22
- data/spec/mongo/auth/cr_spec.rb +8 -0
- data/spec/mongo/auth/ldap_spec.rb +5 -1
- data/spec/mongo/auth/scram/conversation_spec.rb +5 -6
- data/spec/mongo/auth/scram/negotiation_spec.rb +74 -75
- data/spec/mongo/auth/scram_spec.rb +45 -35
- data/spec/mongo/auth/x509_spec.rb +5 -1
- data/spec/mongo/client_construction_spec.rb +206 -3
- data/spec/mongo/client_encryption_spec.rb +408 -0
- data/spec/mongo/cluster/cursor_reaper_spec.rb +12 -8
- data/spec/mongo/cluster/socket_reaper_spec.rb +14 -3
- data/spec/mongo/collection/view/aggregation_spec.rb +0 -2
- data/spec/mongo/collection/view/change_stream_spec.rb +7 -7
- data/spec/mongo/collection/view/map_reduce_spec.rb +3 -3
- data/spec/mongo/collection/view_spec.rb +1 -1
- data/spec/mongo/collection_spec.rb +4 -33
- data/spec/mongo/crypt/auto_decryption_context_spec.rb +90 -0
- data/spec/mongo/crypt/auto_encrypter_spec.rb +182 -0
- data/spec/mongo/crypt/auto_encryption_context_spec.rb +107 -0
- data/spec/mongo/crypt/binary_spec.rb +115 -0
- data/spec/mongo/crypt/binding/binary_spec.rb +56 -0
- data/spec/mongo/crypt/binding/context_spec.rb +257 -0
- data/spec/mongo/crypt/binding/helpers_spec.rb +46 -0
- data/spec/mongo/crypt/binding/mongocrypt_spec.rb +144 -0
- data/spec/mongo/crypt/binding/status_spec.rb +99 -0
- data/spec/mongo/crypt/binding/version_spec.rb +22 -0
- data/spec/mongo/crypt/binding_unloaded_spec.rb +20 -0
- data/spec/mongo/crypt/data_key_context_spec.rb +213 -0
- data/spec/mongo/crypt/encryption_io_spec.rb +136 -0
- data/spec/mongo/crypt/explicit_decryption_context_spec.rb +72 -0
- data/spec/mongo/crypt/explicit_encryption_context_spec.rb +170 -0
- data/spec/mongo/crypt/handle_spec.rb +198 -0
- data/spec/mongo/crypt/helpers/mongo_crypt_spec_helper.rb +108 -0
- data/spec/mongo/crypt/status_spec.rb +152 -0
- data/spec/mongo/cursor_spec.rb +24 -4
- data/spec/mongo/database_spec.rb +20 -0
- data/spec/mongo/error/crypt_error_spec.rb +26 -0
- data/spec/mongo/error/max_bson_size_spec.rb +35 -0
- data/spec/mongo/error/no_server_available_spec.rb +11 -1
- data/spec/mongo/error/operation_failure_spec.rb +6 -6
- data/spec/mongo/operation/aggregate_spec.rb +1 -1
- data/spec/mongo/operation/collections_info_spec.rb +1 -1
- data/spec/mongo/operation/command_spec.rb +3 -3
- data/spec/mongo/operation/create_index_spec.rb +3 -3
- data/spec/mongo/operation/create_user_spec.rb +3 -3
- data/spec/mongo/operation/delete/bulk_spec.rb +6 -6
- data/spec/mongo/operation/delete/op_msg_spec.rb +1 -6
- data/spec/mongo/operation/delete_spec.rb +7 -7
- data/spec/mongo/operation/drop_index_spec.rb +2 -2
- data/spec/mongo/operation/find/legacy_spec.rb +1 -1
- data/spec/mongo/operation/get_more_spec.rb +1 -1
- data/spec/mongo/operation/indexes_spec.rb +1 -1
- data/spec/mongo/operation/insert/bulk_spec.rb +7 -7
- data/spec/mongo/operation/insert/op_msg_spec.rb +3 -6
- data/spec/mongo/operation/insert_spec.rb +12 -12
- data/spec/mongo/operation/map_reduce_spec.rb +2 -2
- data/spec/mongo/operation/remove_user_spec.rb +3 -3
- data/spec/mongo/operation/update/bulk_spec.rb +6 -6
- data/spec/mongo/operation/update/op_msg_spec.rb +3 -6
- data/spec/mongo/operation/update_spec.rb +7 -7
- data/spec/mongo/operation/update_user_spec.rb +1 -1
- data/spec/mongo/protocol/compressed_spec.rb +2 -3
- data/spec/mongo/protocol/delete_spec.rb +9 -8
- data/spec/mongo/protocol/get_more_spec.rb +9 -8
- data/spec/mongo/protocol/insert_spec.rb +9 -8
- data/spec/mongo/protocol/kill_cursors_spec.rb +6 -5
- data/spec/mongo/protocol/msg_spec.rb +57 -53
- data/spec/mongo/protocol/query_spec.rb +12 -12
- data/spec/mongo/protocol/registry_spec.rb +1 -1
- data/spec/mongo/protocol/reply_spec.rb +1 -1
- data/spec/mongo/protocol/update_spec.rb +10 -9
- data/spec/mongo/server/connection_pool_spec.rb +1 -1
- data/spec/mongo/server/connection_spec.rb +28 -7
- data/spec/mongo/socket_spec.rb +1 -1
- data/spec/mongo/timeout_spec.rb +85 -0
- data/spec/mongo/uri/srv_protocol_spec.rb +2 -2
- data/spec/mongo/uri_spec.rb +52 -5
- data/spec/mongo/write_concern_spec.rb +13 -1
- data/spec/{support → runners}/auth.rb +14 -1
- data/spec/{support → runners}/change_streams.rb +1 -1
- data/spec/{support → runners}/change_streams/operation.rb +0 -0
- data/spec/{support → runners}/cmap.rb +1 -1
- data/spec/{support → runners}/cmap/verifier.rb +0 -0
- data/spec/{support → runners}/command_monitoring.rb +0 -0
- data/spec/runners/connection_string.rb +358 -4
- data/spec/{support → runners}/crud.rb +9 -9
- data/spec/{support → runners}/crud/context.rb +0 -0
- data/spec/{support → runners}/crud/operation.rb +7 -3
- data/spec/{support → runners}/crud/outcome.rb +0 -0
- data/spec/{support → runners}/crud/requirement.rb +1 -1
- data/spec/{support → runners}/crud/spec.rb +12 -1
- data/spec/{support → runners}/crud/test.rb +0 -0
- data/spec/{support → runners}/crud/test_base.rb +0 -0
- data/spec/{support → runners}/crud/verifier.rb +10 -12
- data/spec/{support → runners}/gridfs.rb +0 -0
- data/spec/{support → runners}/sdam_monitoring.rb +0 -0
- data/spec/{support → runners}/server_discovery_and_monitoring.rb +0 -0
- data/spec/{support → runners}/server_selection.rb +0 -0
- data/spec/{support → runners}/server_selection_rtt.rb +0 -0
- data/spec/{support → runners}/transactions.rb +4 -4
- data/spec/{support → runners}/transactions/context.rb +0 -0
- data/spec/{support → runners}/transactions/operation.rb +0 -0
- data/spec/{support → runners}/transactions/spec.rb +0 -0
- data/spec/{support → runners}/transactions/test.rb +37 -5
- data/spec/spec_helper.rb +0 -5
- data/spec/spec_tests/auth_spec.rb +3 -3
- data/spec/spec_tests/client_side_encryption_spec.rb +13 -0
- data/spec/spec_tests/connection_string_spec.rb +1 -1
- data/spec/spec_tests/data/auth/connection-string.yml +13 -0
- data/spec/spec_tests/data/client_side_encryption/aggregate.yml +134 -0
- data/spec/spec_tests/data/client_side_encryption/badQueries.yml +526 -0
- data/spec/spec_tests/data/client_side_encryption/badSchema.yml +73 -0
- data/spec/spec_tests/data/client_side_encryption/basic.yml +116 -0
- data/spec/spec_tests/data/client_side_encryption/bulk.yml +85 -0
- data/spec/spec_tests/data/client_side_encryption/bypassAutoEncryption.yml +100 -0
- data/spec/spec_tests/data/client_side_encryption/bypassedCommand.yml +42 -0
- data/spec/spec_tests/data/client_side_encryption/count.yml +61 -0
- data/spec/spec_tests/data/client_side_encryption/countDocuments.yml +59 -0
- data/spec/spec_tests/data/client_side_encryption/delete.yml +105 -0
- data/spec/spec_tests/data/client_side_encryption/distinct.yml +73 -0
- data/spec/spec_tests/data/client_side_encryption/explain.yml +64 -0
- data/spec/spec_tests/data/client_side_encryption/find.yml +119 -0
- data/spec/spec_tests/data/client_side_encryption/findOneAndDelete.yml +57 -0
- data/spec/spec_tests/data/client_side_encryption/findOneAndReplace.yml +57 -0
- data/spec/spec_tests/data/client_side_encryption/findOneAndUpdate.yml +57 -0
- data/spec/spec_tests/data/client_side_encryption/getMore.yml +68 -0
- data/spec/spec_tests/data/client_side_encryption/insert.yml +102 -0
- data/spec/spec_tests/data/client_side_encryption/keyAltName.yml +71 -0
- data/spec/spec_tests/data/client_side_encryption/localKMS.yml +54 -0
- data/spec/spec_tests/data/client_side_encryption/localSchema.yml +72 -0
- data/spec/spec_tests/data/client_side_encryption/malformedCiphertext.yml +69 -0
- data/spec/spec_tests/data/client_side_encryption/maxWireVersion.yml +20 -0
- data/spec/spec_tests/data/client_side_encryption/missingKey.yml +49 -0
- data/spec/spec_tests/data/client_side_encryption/replaceOne.yml +61 -0
- data/spec/spec_tests/data/client_side_encryption/types.yml +527 -0
- data/spec/spec_tests/data/client_side_encryption/unsupportedCommand.yml +25 -0
- data/spec/spec_tests/data/client_side_encryption/updateMany.yml +77 -0
- data/spec/spec_tests/data/client_side_encryption/updateOne.yml +168 -0
- data/spec/spec_tests/data/read_write_concern/connection-string/write-concern.yml +1 -4
- data/spec/spec_tests/data/retryable_writes/insertOne-serverErrors.yml +21 -0
- data/spec/spec_tests/data/sdam/rs/incompatible_ghost.yml +2 -4
- data/spec/spec_tests/data/sdam/rs/incompatible_other.yml +1 -1
- data/spec/spec_tests/data/sdam/rs/primary_mismatched_me_not_removed.yml +73 -0
- data/spec/spec_tests/data/sdam/rs/primary_to_no_primary_mismatched_me.yml +1 -2
- data/spec/spec_tests/data/sdam/rs/repeated.yml +101 -0
- data/spec/spec_tests/data/sdam/rs/{primary_address_change.yml → ruby_primary_address_change.yml} +2 -0
- data/spec/spec_tests/data/sdam/rs/{secondary_wrong_set_name_with_primary_second.yml → ruby_secondary_wrong_set_name_with_primary_second.yml} +0 -0
- data/spec/spec_tests/data/sdam/sharded/ruby_discovered_single_mongos.yml +27 -0
- data/spec/spec_tests/data/sdam/sharded/{primary_address_change.yml → ruby_primary_different_address.yml} +1 -1
- data/spec/spec_tests/data/sdam/sharded/{primary_mismatched_me.yml → ruby_primary_mismatched_me.yml} +1 -1
- data/spec/spec_tests/data/sdam/single/{primary_address_change.yml → ruby_primary_different_address.yml} +1 -1
- data/spec/spec_tests/data/sdam/single/{primary_mismatched_me.yml → ruby_primary_mismatched_me.yml} +1 -1
- data/spec/spec_tests/data/sdam_monitoring/{replica_set_with_primary_change.yml → replica_set_primary_address_change.yml} +27 -5
- data/spec/spec_tests/data/sdam_monitoring/replica_set_with_me_mismatch.yml +26 -74
- data/spec/spec_tests/data/sdam_monitoring/replica_set_with_removal.yml +20 -16
- data/spec/spec_tests/data/sdam_monitoring/standalone_suppress_equal_description_changes.yml +73 -0
- data/spec/spec_tests/data/transactions/pin-mongos.yml +2 -3
- data/spec/spec_tests/data/uri_options/auth-options.yml +10 -0
- data/spec/spec_tests/data/uri_options/tls-options.yml +75 -4
- data/spec/spec_tests/read_write_concern_connection_string_spec.rb +1 -1
- data/spec/spec_tests/uri_options_spec.rb +6 -8
- data/spec/stress/connection_pool_timing_spec.rb +6 -3
- data/spec/support/certificates/README.md +4 -0
- data/spec/support/certificates/server-second-level-bundle.pem +77 -77
- data/spec/support/certificates/server-second-level.crt +52 -52
- data/spec/support/certificates/server-second-level.key +25 -25
- data/spec/support/certificates/server-second-level.pem +77 -77
- data/spec/support/client_registry.rb +19 -3
- data/spec/support/cluster_config.rb +9 -1
- data/spec/support/common_shortcuts.rb +12 -0
- data/spec/support/constraints.rb +16 -0
- data/spec/support/crypt.rb +140 -0
- data/spec/support/crypt/corpus/corpus-key-aws.json +33 -0
- data/spec/support/crypt/corpus/corpus-key-local.json +31 -0
- data/spec/support/crypt/corpus/corpus-schema.json +2057 -0
- data/spec/support/crypt/corpus/corpus.json +3657 -0
- data/spec/support/crypt/corpus/corpus_encrypted.json +4152 -0
- data/spec/support/crypt/data_keys/key_document_aws.json +34 -0
- data/spec/support/crypt/data_keys/key_document_local.json +31 -0
- data/spec/support/crypt/external/external-key.json +31 -0
- data/spec/support/crypt/external/external-schema.json +19 -0
- data/spec/support/crypt/limits/limits-doc.json +102 -0
- data/spec/support/crypt/limits/limits-key.json +31 -0
- data/spec/support/crypt/limits/limits-schema.json +1405 -0
- data/spec/support/crypt/schema_maps/schema_map_aws.json +17 -0
- data/spec/support/crypt/schema_maps/schema_map_aws_key_alt_names.json +12 -0
- data/spec/support/crypt/schema_maps/schema_map_local.json +18 -0
- data/spec/support/crypt/schema_maps/schema_map_local_key_alt_names.json +12 -0
- data/spec/support/lite_constraints.rb +17 -1
- data/spec/support/matchers.rb +19 -0
- data/spec/support/shared/protocol.rb +2 -0
- data/spec/support/spec_config.rb +43 -13
- data/spec/support/utils.rb +132 -10
- metadata +277 -81
- metadata.gz.sig +0 -0
- data/spec/integration/grid_fs_bucket_spec.rb +0 -48
- data/spec/integration/zlib_compression_spec.rb +0 -25
- data/spec/spec_tests/data/sdam/sharded/single_mongos.yml +0 -33
- data/spec/support/connection_string.rb +0 -354
@@ -0,0 +1,25 @@
|
|
1
|
+
runOn:
|
2
|
+
- minServerVersion: "4.1.10"
|
3
|
+
database_name: &database_name "default"
|
4
|
+
collection_name: &collection_name "default"
|
5
|
+
|
6
|
+
data:
|
7
|
+
- &doc0_encrypted { _id: 1, x: 1, encrypted_string: {'$binary': {'base64': 'AQAAAAAAAAAAAAAAAAAAAAACwj+3zkv2VM+aTfk60RqhXq6a/77WlLwu/BxXFkL7EppGsju/m8f0x5kBDD3EZTtGALGXlym5jnpZAoSIkswHoA==', 'subType': '06'}} }
|
8
|
+
- &doc1_encrypted { _id: 2, x: 2, encrypted_string: {'$binary': {'base64': 'AQAAAAAAAAAAAAAAAAAAAAACDdw4KFz3ZLquhsbt7RmDjD0N67n0uSXx7IGnQNCLeIKvot6s/ouI21Eo84IOtb6lhwUNPlSEBNY0/hbszWAKJg==', 'subType': '06'}} }
|
9
|
+
json_schema: {'properties': {'encrypted_w_altname': {'encrypt': {'keyId': '/altname', 'bsonType': 'string', 'algorithm': 'AEAD_AES_256_CBC_HMAC_SHA_512-Random'}}, 'encrypted_string': {'encrypt': {'keyId': [{'$binary': {'base64': 'AAAAAAAAAAAAAAAAAAAAAA==', 'subType': '04'}}], 'bsonType': 'string', 'algorithm': 'AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic'}}, 'random': {'encrypt': {'keyId': [{'$binary': {'base64': 'AAAAAAAAAAAAAAAAAAAAAA==', 'subType': '04'}}], 'bsonType': 'string', 'algorithm': 'AEAD_AES_256_CBC_HMAC_SHA_512-Random'}}, 'encrypted_string_equivalent': {'encrypt': {'keyId': [{'$binary': {'base64': 'AAAAAAAAAAAAAAAAAAAAAA==', 'subType': '04'}}], 'bsonType': 'string', 'algorithm': 'AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic'}}}, 'bsonType': 'object'}
|
10
|
+
key_vault_data: [{'status': 1, '_id': {'$binary': {'base64': 'AAAAAAAAAAAAAAAAAAAAAA==', 'subType': '04'}}, 'masterKey': {'provider': 'aws', 'key': 'arn:aws:kms:us-east-1:579766882180:key/89fcc2c4-08b0-4bd9-9f25-e30687b580d0', 'region': 'us-east-1'}, 'updateDate': {'$date': {'$numberLong': '1552949630483'}}, 'keyMaterial': {'$binary': {'base64': 'AQICAHhQNmWG2CzOm1dq3kWLM+iDUZhEqnhJwH9wZVpuZ94A8gEqnsxXlR51T5EbEVezUqqKAAAAwjCBvwYJKoZIhvcNAQcGoIGxMIGuAgEAMIGoBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDHa4jo6yp0Z18KgbUgIBEIB74sKxWtV8/YHje5lv5THTl0HIbhSwM6EqRlmBiFFatmEWaeMk4tO4xBX65eq670I5TWPSLMzpp8ncGHMmvHqRajNBnmFtbYxN3E3/WjxmdbOOe+OXpnGJPcGsftc7cB2shRfA4lICPnE26+oVNXT6p0Lo20nY5XC7jyCO', 'subType': '00'}}, 'creationDate': {'$date': {'$numberLong': '1552949630483'}}, 'keyAltNames': ['altname', 'another_altname']}]
|
11
|
+
|
12
|
+
tests:
|
13
|
+
- description: "mapReduce deterministic encryption (unsupported)"
|
14
|
+
clientOptions:
|
15
|
+
autoEncryptOpts:
|
16
|
+
kmsProviders:
|
17
|
+
aws: {} # Credentials filled in from environment.
|
18
|
+
operations:
|
19
|
+
- name: mapReduce
|
20
|
+
arguments:
|
21
|
+
map: { $code: "function inc() { return emit(0, this.x + 1) }" }
|
22
|
+
reduce: { $code: "function sum(key, values) { return values.reduce((acc, x) => acc + x); }" }
|
23
|
+
out: { inline: 1 }
|
24
|
+
result:
|
25
|
+
errorContains: "command not supported for auto encryption: mapReduce"
|
@@ -0,0 +1,77 @@
|
|
1
|
+
runOn:
|
2
|
+
- minServerVersion: "4.1.10"
|
3
|
+
database_name: &database_name "default"
|
4
|
+
collection_name: &collection_name "default"
|
5
|
+
|
6
|
+
data:
|
7
|
+
- &doc0_encrypted { _id: 1, encrypted_string: {'$binary': {'base64': 'AQAAAAAAAAAAAAAAAAAAAAACwj+3zkv2VM+aTfk60RqhXq6a/77WlLwu/BxXFkL7EppGsju/m8f0x5kBDD3EZTtGALGXlym5jnpZAoSIkswHoA==', 'subType': '06'}} }
|
8
|
+
- &doc1_encrypted { _id: 2, encrypted_string: {'$binary': {'base64': 'AQAAAAAAAAAAAAAAAAAAAAACDdw4KFz3ZLquhsbt7RmDjD0N67n0uSXx7IGnQNCLeIKvot6s/ouI21Eo84IOtb6lhwUNPlSEBNY0/hbszWAKJg==', 'subType': '06'}} }
|
9
|
+
json_schema: {'properties': {'encrypted_w_altname': {'encrypt': {'keyId': '/altname', 'bsonType': 'string', 'algorithm': 'AEAD_AES_256_CBC_HMAC_SHA_512-Random'}}, 'encrypted_string': {'encrypt': {'keyId': [{'$binary': {'base64': 'AAAAAAAAAAAAAAAAAAAAAA==', 'subType': '04'}}], 'bsonType': 'string', 'algorithm': 'AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic'}}, 'random': {'encrypt': {'keyId': [{'$binary': {'base64': 'AAAAAAAAAAAAAAAAAAAAAA==', 'subType': '04'}}], 'bsonType': 'string', 'algorithm': 'AEAD_AES_256_CBC_HMAC_SHA_512-Random'}}, 'encrypted_string_equivalent': {'encrypt': {'keyId': [{'$binary': {'base64': 'AAAAAAAAAAAAAAAAAAAAAA==', 'subType': '04'}}], 'bsonType': 'string', 'algorithm': 'AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic'}}}, 'bsonType': 'object'}
|
10
|
+
key_vault_data: [{'status': 1, '_id': {'$binary': {'base64': 'AAAAAAAAAAAAAAAAAAAAAA==', 'subType': '04'}}, 'masterKey': {'provider': 'aws', 'key': 'arn:aws:kms:us-east-1:579766882180:key/89fcc2c4-08b0-4bd9-9f25-e30687b580d0', 'region': 'us-east-1'}, 'updateDate': {'$date': {'$numberLong': '1552949630483'}}, 'keyMaterial': {'$binary': {'base64': 'AQICAHhQNmWG2CzOm1dq3kWLM+iDUZhEqnhJwH9wZVpuZ94A8gEqnsxXlR51T5EbEVezUqqKAAAAwjCBvwYJKoZIhvcNAQcGoIGxMIGuAgEAMIGoBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDHa4jo6yp0Z18KgbUgIBEIB74sKxWtV8/YHje5lv5THTl0HIbhSwM6EqRlmBiFFatmEWaeMk4tO4xBX65eq670I5TWPSLMzpp8ncGHMmvHqRajNBnmFtbYxN3E3/WjxmdbOOe+OXpnGJPcGsftc7cB2shRfA4lICPnE26+oVNXT6p0Lo20nY5XC7jyCO', 'subType': '00'}}, 'creationDate': {'$date': {'$numberLong': '1552949630483'}}, 'keyAltNames': ['altname', 'another_altname']}]
|
11
|
+
|
12
|
+
tests:
|
13
|
+
- description: "updateMany with deterministic encryption"
|
14
|
+
clientOptions:
|
15
|
+
autoEncryptOpts:
|
16
|
+
kmsProviders:
|
17
|
+
aws: {} # Credentials filled in from environment.
|
18
|
+
operations:
|
19
|
+
- name: updateMany
|
20
|
+
arguments:
|
21
|
+
filter: { encrypted_string: { $in: [ "string0", "string1" ] } }
|
22
|
+
update: { $set: { encrypted_string: "string2", random: "abc" } }
|
23
|
+
result:
|
24
|
+
matchedCount: 2
|
25
|
+
modifiedCount: 2
|
26
|
+
upsertedCount: 0
|
27
|
+
expectations:
|
28
|
+
# Auto encryption will request the collection info.
|
29
|
+
- command_started_event:
|
30
|
+
command:
|
31
|
+
listCollections: 1
|
32
|
+
filter:
|
33
|
+
name: *collection_name
|
34
|
+
command_name: listCollections
|
35
|
+
- command_started_event:
|
36
|
+
command:
|
37
|
+
listCollections: 1
|
38
|
+
filter:
|
39
|
+
name: "datakeys"
|
40
|
+
$db: admin
|
41
|
+
command_name: listCollections
|
42
|
+
# Then key is fetched from the key vault.
|
43
|
+
- command_started_event:
|
44
|
+
command:
|
45
|
+
find: datakeys
|
46
|
+
filter: {"$or": [{"_id": {"$in": [ {'$binary': {'base64': 'AAAAAAAAAAAAAAAAAAAAAA==', 'subType': '04'}} ] }}, {"keyAltNames": {"$in": []}}]}
|
47
|
+
$db: admin
|
48
|
+
readConcern: { level: "majority" }
|
49
|
+
command_name: find
|
50
|
+
- command_started_event:
|
51
|
+
command:
|
52
|
+
update: *collection_name
|
53
|
+
updates:
|
54
|
+
- q: { encrypted_string: { $in: [ {'$binary': {'base64': 'AQAAAAAAAAAAAAAAAAAAAAACwj+3zkv2VM+aTfk60RqhXq6a/77WlLwu/BxXFkL7EppGsju/m8f0x5kBDD3EZTtGALGXlym5jnpZAoSIkswHoA==', 'subType': '06'}}, {'$binary': {'base64': 'AQAAAAAAAAAAAAAAAAAAAAACDdw4KFz3ZLquhsbt7RmDjD0N67n0uSXx7IGnQNCLeIKvot6s/ouI21Eo84IOtb6lhwUNPlSEBNY0/hbszWAKJg==', 'subType': '06'}} ] } }
|
55
|
+
u: { $set: { encrypted_string: {'$binary': {'base64': 'AQAAAAAAAAAAAAAAAAAAAAACQ76HWOut3DZtQuV90hp1aaCpZn95vZIaWmn+wrBehcEtcFwyJlBdlyzDzZTWPZCPgiFq72Wvh6Y7VbpU9NAp3A==', 'subType': '06'}}, random: { $$type: "binData" } } }
|
56
|
+
multi: true
|
57
|
+
upsert: false
|
58
|
+
ordered: true
|
59
|
+
command_name: update
|
60
|
+
outcome:
|
61
|
+
collection:
|
62
|
+
# Outcome is checked using a separate MongoClient without auto encryption.
|
63
|
+
data:
|
64
|
+
- { _id: 1, encrypted_string: {'$binary': {'base64': 'AQAAAAAAAAAAAAAAAAAAAAACQ76HWOut3DZtQuV90hp1aaCpZn95vZIaWmn+wrBehcEtcFwyJlBdlyzDzZTWPZCPgiFq72Wvh6Y7VbpU9NAp3A==', 'subType': '06'}}, random: { $$type: "binData" } }
|
65
|
+
- { _id: 2, encrypted_string: {'$binary': {'base64': 'AQAAAAAAAAAAAAAAAAAAAAACQ76HWOut3DZtQuV90hp1aaCpZn95vZIaWmn+wrBehcEtcFwyJlBdlyzDzZTWPZCPgiFq72Wvh6Y7VbpU9NAp3A==', 'subType': '06'}}, random: { $$type: "binData" } }
|
66
|
+
- description: "updateMany fails when filtering on a random field"
|
67
|
+
clientOptions:
|
68
|
+
autoEncryptOpts:
|
69
|
+
kmsProviders:
|
70
|
+
aws: {} # Credentials filled in from environment.
|
71
|
+
operations:
|
72
|
+
- name: updateMany
|
73
|
+
arguments:
|
74
|
+
filter: { random: "abc" }
|
75
|
+
update: { $set: { encrypted_string: "string1" } }
|
76
|
+
result:
|
77
|
+
errorContains: "Cannot query on fields encrypted with the randomized encryption"
|
@@ -0,0 +1,168 @@
|
|
1
|
+
runOn:
|
2
|
+
- minServerVersion: "4.1.10"
|
3
|
+
database_name: &database_name "default"
|
4
|
+
collection_name: &collection_name "default"
|
5
|
+
|
6
|
+
data:
|
7
|
+
- &doc0_encrypted { _id: 1, encrypted_string: {'$binary': {'base64': 'AQAAAAAAAAAAAAAAAAAAAAACwj+3zkv2VM+aTfk60RqhXq6a/77WlLwu/BxXFkL7EppGsju/m8f0x5kBDD3EZTtGALGXlym5jnpZAoSIkswHoA==', 'subType': '06'}} }
|
8
|
+
json_schema: {'properties': {'encrypted_w_altname': {'encrypt': {'keyId': '/altname', 'bsonType': 'string', 'algorithm': 'AEAD_AES_256_CBC_HMAC_SHA_512-Random'}}, 'encrypted_string': {'encrypt': {'keyId': [{'$binary': {'base64': 'AAAAAAAAAAAAAAAAAAAAAA==', 'subType': '04'}}], 'bsonType': 'string', 'algorithm': 'AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic'}}, 'random': {'encrypt': {'keyId': [{'$binary': {'base64': 'AAAAAAAAAAAAAAAAAAAAAA==', 'subType': '04'}}], 'bsonType': 'string', 'algorithm': 'AEAD_AES_256_CBC_HMAC_SHA_512-Random'}}, 'encrypted_string_equivalent': {'encrypt': {'keyId': [{'$binary': {'base64': 'AAAAAAAAAAAAAAAAAAAAAA==', 'subType': '04'}}], 'bsonType': 'string', 'algorithm': 'AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic'}}}, 'bsonType': 'object'}
|
9
|
+
key_vault_data: [{'status': 1, '_id': {'$binary': {'base64': 'AAAAAAAAAAAAAAAAAAAAAA==', 'subType': '04'}}, 'masterKey': {'provider': 'aws', 'key': 'arn:aws:kms:us-east-1:579766882180:key/89fcc2c4-08b0-4bd9-9f25-e30687b580d0', 'region': 'us-east-1'}, 'updateDate': {'$date': {'$numberLong': '1552949630483'}}, 'keyMaterial': {'$binary': {'base64': 'AQICAHhQNmWG2CzOm1dq3kWLM+iDUZhEqnhJwH9wZVpuZ94A8gEqnsxXlR51T5EbEVezUqqKAAAAwjCBvwYJKoZIhvcNAQcGoIGxMIGuAgEAMIGoBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDHa4jo6yp0Z18KgbUgIBEIB74sKxWtV8/YHje5lv5THTl0HIbhSwM6EqRlmBiFFatmEWaeMk4tO4xBX65eq670I5TWPSLMzpp8ncGHMmvHqRajNBnmFtbYxN3E3/WjxmdbOOe+OXpnGJPcGsftc7cB2shRfA4lICPnE26+oVNXT6p0Lo20nY5XC7jyCO', 'subType': '00'}}, 'creationDate': {'$date': {'$numberLong': '1552949630483'}}, 'keyAltNames': ['altname', 'another_altname']}]
|
10
|
+
|
11
|
+
tests:
|
12
|
+
- description: "updateOne with deterministic encryption"
|
13
|
+
clientOptions:
|
14
|
+
autoEncryptOpts:
|
15
|
+
kmsProviders:
|
16
|
+
aws: {} # Credentials filled in from environment.
|
17
|
+
operations:
|
18
|
+
- name: updateOne
|
19
|
+
arguments:
|
20
|
+
filter: { encrypted_string: "string0" }
|
21
|
+
update: { $set: { encrypted_string: "string1", random: "abc" } }
|
22
|
+
result:
|
23
|
+
matchedCount: 1
|
24
|
+
modifiedCount: 1
|
25
|
+
upsertedCount: 0
|
26
|
+
expectations:
|
27
|
+
# Auto encryption will request the collection info.
|
28
|
+
- command_started_event:
|
29
|
+
command:
|
30
|
+
listCollections: 1
|
31
|
+
filter:
|
32
|
+
name: *collection_name
|
33
|
+
command_name: listCollections
|
34
|
+
- command_started_event:
|
35
|
+
command:
|
36
|
+
listCollections: 1
|
37
|
+
filter:
|
38
|
+
name: "datakeys"
|
39
|
+
$db: admin
|
40
|
+
command_name: listCollections
|
41
|
+
# Then key is fetched from the key vault.
|
42
|
+
- command_started_event:
|
43
|
+
command:
|
44
|
+
find: datakeys
|
45
|
+
filter: {"$or": [{"_id": {"$in": [ {'$binary': {'base64': 'AAAAAAAAAAAAAAAAAAAAAA==', 'subType': '04'}} ] }}, {"keyAltNames": {"$in": []}}]}
|
46
|
+
$db: admin
|
47
|
+
readConcern: { level: "majority" }
|
48
|
+
command_name: find
|
49
|
+
- command_started_event:
|
50
|
+
command:
|
51
|
+
update: *collection_name
|
52
|
+
updates:
|
53
|
+
- q: { encrypted_string: { $eq: {'$binary': {'base64': 'AQAAAAAAAAAAAAAAAAAAAAACwj+3zkv2VM+aTfk60RqhXq6a/77WlLwu/BxXFkL7EppGsju/m8f0x5kBDD3EZTtGALGXlym5jnpZAoSIkswHoA==', 'subType': '06'}} } }
|
54
|
+
u: { $set: {encrypted_string: {'$binary': {'base64': 'AQAAAAAAAAAAAAAAAAAAAAACDdw4KFz3ZLquhsbt7RmDjD0N67n0uSXx7IGnQNCLeIKvot6s/ouI21Eo84IOtb6lhwUNPlSEBNY0/hbszWAKJg==', 'subType': '06'}}, random: { $$type: "binData" } } }
|
55
|
+
ordered: true
|
56
|
+
command_name: update
|
57
|
+
outcome:
|
58
|
+
collection:
|
59
|
+
# Outcome is checked using a separate MongoClient without auto encryption.
|
60
|
+
data:
|
61
|
+
- { _id: 1, encrypted_string: {'$binary': {'base64': 'AQAAAAAAAAAAAAAAAAAAAAACDdw4KFz3ZLquhsbt7RmDjD0N67n0uSXx7IGnQNCLeIKvot6s/ouI21Eo84IOtb6lhwUNPlSEBNY0/hbszWAKJg==', 'subType': '06'}}, random: { $$type: "binData"} }
|
62
|
+
- description: "updateOne fails when filtering on a random field"
|
63
|
+
clientOptions:
|
64
|
+
autoEncryptOpts:
|
65
|
+
kmsProviders:
|
66
|
+
aws: {} # Credentials filled in from environment.
|
67
|
+
operations:
|
68
|
+
- name: updateOne
|
69
|
+
arguments:
|
70
|
+
filter: { random: "abc" }
|
71
|
+
update: { $set: { encrypted_string: "string1" } }
|
72
|
+
result:
|
73
|
+
errorContains: "Cannot query on fields encrypted with the randomized encryption"
|
74
|
+
- description: "$unset works with an encrypted field"
|
75
|
+
clientOptions:
|
76
|
+
autoEncryptOpts:
|
77
|
+
kmsProviders:
|
78
|
+
aws: {} # Credentials filled in from environment.
|
79
|
+
operations:
|
80
|
+
- name: updateOne
|
81
|
+
arguments:
|
82
|
+
filter: { }
|
83
|
+
update: { $unset: { encrypted_string: "" } }
|
84
|
+
result:
|
85
|
+
matchedCount: 1
|
86
|
+
modifiedCount: 1
|
87
|
+
upsertedCount: 0
|
88
|
+
expectations:
|
89
|
+
# Auto encryption will request the collection info.
|
90
|
+
- command_started_event:
|
91
|
+
command:
|
92
|
+
listCollections: 1
|
93
|
+
filter:
|
94
|
+
name: *collection_name
|
95
|
+
command_name: listCollections
|
96
|
+
- command_started_event:
|
97
|
+
command:
|
98
|
+
update: *collection_name
|
99
|
+
updates:
|
100
|
+
- q: { }
|
101
|
+
u: { $unset: {encrypted_string: "" } }
|
102
|
+
ordered: true
|
103
|
+
command_name: update
|
104
|
+
outcome:
|
105
|
+
collection:
|
106
|
+
# Outcome is checked using a separate MongoClient without auto encryption.
|
107
|
+
data:
|
108
|
+
- { _id: 1 }
|
109
|
+
- description: "$rename works if target value has same encryption options"
|
110
|
+
clientOptions:
|
111
|
+
autoEncryptOpts:
|
112
|
+
kmsProviders:
|
113
|
+
aws: {} # Credentials filled in from environment.
|
114
|
+
operations:
|
115
|
+
- name: updateOne
|
116
|
+
arguments:
|
117
|
+
filter: { }
|
118
|
+
update: { $rename: { encrypted_string: "encrypted_string_equivalent" } }
|
119
|
+
result:
|
120
|
+
matchedCount: 1
|
121
|
+
modifiedCount: 1
|
122
|
+
upsertedCount: 0
|
123
|
+
expectations:
|
124
|
+
# Auto encryption will request the collection info.
|
125
|
+
- command_started_event:
|
126
|
+
command:
|
127
|
+
listCollections: 1
|
128
|
+
filter:
|
129
|
+
name: *collection_name
|
130
|
+
command_name: listCollections
|
131
|
+
- command_started_event:
|
132
|
+
command:
|
133
|
+
update: *collection_name
|
134
|
+
updates:
|
135
|
+
- q: { }
|
136
|
+
u: { $rename: {encrypted_string: "encrypted_string_equivalent" } }
|
137
|
+
ordered: true
|
138
|
+
command_name: update
|
139
|
+
outcome:
|
140
|
+
collection:
|
141
|
+
# Outcome is checked using a separate MongoClient without auto encryption.
|
142
|
+
data:
|
143
|
+
- { _id: 1, encrypted_string_equivalent: {'$binary': {'base64': 'AQAAAAAAAAAAAAAAAAAAAAACwj+3zkv2VM+aTfk60RqhXq6a/77WlLwu/BxXFkL7EppGsju/m8f0x5kBDD3EZTtGALGXlym5jnpZAoSIkswHoA==', 'subType': '06'}} }
|
144
|
+
- description: "$rename fails if target value has different encryption options"
|
145
|
+
clientOptions:
|
146
|
+
autoEncryptOpts:
|
147
|
+
kmsProviders:
|
148
|
+
aws: {} # Credentials filled in from environment.
|
149
|
+
operations:
|
150
|
+
- name: updateOne
|
151
|
+
arguments:
|
152
|
+
filter: { }
|
153
|
+
update: { $rename: { encrypted_string: "random" } }
|
154
|
+
result:
|
155
|
+
errorContains: "$rename between two encrypted fields must have the same metadata or both be unencrypted"
|
156
|
+
- description: "an invalid update (no $ operators) is validated and errors"
|
157
|
+
skipReason: "The Ruby Driver supports this kind of update command"
|
158
|
+
clientOptions:
|
159
|
+
autoEncryptOpts:
|
160
|
+
kmsProviders:
|
161
|
+
aws: {} # Credentials filled in from environment.
|
162
|
+
operations:
|
163
|
+
- name: updateOne
|
164
|
+
arguments:
|
165
|
+
filter: { }
|
166
|
+
update: { encrypted_string: "random" }
|
167
|
+
result:
|
168
|
+
errorContains: "" # Note, drivers differ in the error message. Just ensure an error is thrown.
|
@@ -74,9 +74,6 @@ tests:
|
|
74
74
|
-
|
75
75
|
description: "Acknowledged with w as 0 and journal true"
|
76
76
|
uri: "mongodb://localhost/?w=0&journal=true"
|
77
|
-
|
78
|
-
# The spec says this SHOULD be disallowed - not a requirement.
|
79
|
-
# https://jira.mongodb.org/browse/SPEC-1460
|
80
|
-
valid: true
|
77
|
+
valid: false
|
81
78
|
warning: false
|
82
79
|
writeConcern: { w: 0, journal: true }
|
@@ -262,6 +262,27 @@ tests:
|
|
262
262
|
- { _id: 1, x: 11 }
|
263
263
|
- { _id: 2, x: 22 }
|
264
264
|
- { _id: 3, x: 33 }
|
265
|
+
-
|
266
|
+
description: "InsertOne succeeds after ExceededTimeLimit"
|
267
|
+
failPoint:
|
268
|
+
configureFailPoint: failCommand
|
269
|
+
mode: { times: 1 }
|
270
|
+
data:
|
271
|
+
failCommands: ["insert"]
|
272
|
+
errorCode: 262
|
273
|
+
closeConnection: false
|
274
|
+
operation:
|
275
|
+
name: "insertOne"
|
276
|
+
arguments:
|
277
|
+
document: { _id: 3, x: 33 }
|
278
|
+
outcome:
|
279
|
+
result:
|
280
|
+
insertedId: 3
|
281
|
+
collection:
|
282
|
+
data:
|
283
|
+
- { _id: 1, x: 11 }
|
284
|
+
- { _id: 2, x: 22 }
|
285
|
+
- { _id: 3, x: 33 }
|
265
286
|
-
|
266
287
|
description: "InsertOne fails after Interrupted"
|
267
288
|
failPoint:
|
@@ -1,4 +1,4 @@
|
|
1
|
-
description: "
|
1
|
+
description: "Incompatible ghost"
|
2
2
|
uri: "mongodb://a,b/?replicaSet=rs"
|
3
3
|
phases:
|
4
4
|
- responses:
|
@@ -14,8 +14,6 @@ phases:
|
|
14
14
|
- "b:27017"
|
15
15
|
- ok: 1
|
16
16
|
isreplicaset: true
|
17
|
-
setName: "rs"
|
18
|
-
hosts: ["a:27017", "b:27017"]
|
19
17
|
minWireVersion: 0
|
20
18
|
maxWireVersion: 1
|
21
19
|
outcome:
|
@@ -25,7 +23,7 @@ phases:
|
|
25
23
|
setName: "rs"
|
26
24
|
"b:27017":
|
27
25
|
type: "RSGhost"
|
28
|
-
setName:
|
26
|
+
setName:
|
29
27
|
topologyType: "ReplicaSetWithPrimary"
|
30
28
|
setName: "rs"
|
31
29
|
logicalSessionTimeoutMinutes: ~
|
@@ -0,0 +1,73 @@
|
|
1
|
+
description: Primary mismatched me is not removed
|
2
|
+
uri: mongodb://localhost:27017,localhost:27018/?replicaSet=rs
|
3
|
+
|
4
|
+
phases: [
|
5
|
+
{
|
6
|
+
responses: [
|
7
|
+
["localhost:27017", {
|
8
|
+
ok: 1,
|
9
|
+
hosts: [
|
10
|
+
"localhost:27017",
|
11
|
+
"localhost:27018"
|
12
|
+
],
|
13
|
+
ismaster: true,
|
14
|
+
setName: "rs",
|
15
|
+
primary: "localhost:27017",
|
16
|
+
# me does not match the primary responder's address, but the server
|
17
|
+
# is still added because we don't me mismatch check the primary and all
|
18
|
+
# servers from a primary ismaster are added to the working server set
|
19
|
+
me: "a:27017",
|
20
|
+
minWireVersion: 0,
|
21
|
+
maxWireVersion: 7
|
22
|
+
}]
|
23
|
+
],
|
24
|
+
outcome: {
|
25
|
+
servers: {
|
26
|
+
"localhost:27017": {
|
27
|
+
type: "RSPrimary",
|
28
|
+
setName: "rs"
|
29
|
+
},
|
30
|
+
"localhost:27018": {
|
31
|
+
type: "Unknown",
|
32
|
+
setName: null
|
33
|
+
}
|
34
|
+
},
|
35
|
+
topologyType: "ReplicaSetWithPrimary",
|
36
|
+
logicalSessionTimeoutMinutes: null,
|
37
|
+
setName: "rs"
|
38
|
+
}
|
39
|
+
},
|
40
|
+
{
|
41
|
+
responses: [
|
42
|
+
["localhost:27018", {
|
43
|
+
ok: 1,
|
44
|
+
hosts: [
|
45
|
+
"localhost:27017",
|
46
|
+
"localhost:27018"
|
47
|
+
],
|
48
|
+
ismaster: false,
|
49
|
+
secondary: true,
|
50
|
+
setName: "rs",
|
51
|
+
primary: "localhost:27017",
|
52
|
+
me: "localhost:27018",
|
53
|
+
minWireVersion: 0,
|
54
|
+
maxWireVersion: 7
|
55
|
+
}]
|
56
|
+
],
|
57
|
+
outcome: {
|
58
|
+
servers: {
|
59
|
+
"localhost:27017": {
|
60
|
+
type: "RSPrimary",
|
61
|
+
setName: "rs"
|
62
|
+
},
|
63
|
+
"localhost:27018": {
|
64
|
+
type: "RSSecondary",
|
65
|
+
setName: "rs"
|
66
|
+
}
|
67
|
+
},
|
68
|
+
topologyType: "ReplicaSetWithPrimary",
|
69
|
+
logicalSessionTimeoutMinutes: null,
|
70
|
+
setName: "rs"
|
71
|
+
}
|
72
|
+
}
|
73
|
+
]
|
@@ -42,8 +42,7 @@ phases:
|
|
42
42
|
maxWireVersion: 6
|
43
43
|
outcome:
|
44
44
|
# Hosts from primary description (c:27017 and d:27017) added to the topoolgy.
|
45
|
-
# Hosts not in primary description (a:27017 and b:27017)
|
46
|
-
# the topology.
|
45
|
+
# Hosts not in primary description (a:27017 and b:27017) removed from the topology.
|
47
46
|
servers:
|
48
47
|
c:27017:
|
49
48
|
type: Unknown
|
@@ -0,0 +1,101 @@
|
|
1
|
+
description: Repeated ismaster response must be processed
|
2
|
+
|
3
|
+
uri: "mongodb://a,b/?replicaSet=rs"
|
4
|
+
|
5
|
+
phases:
|
6
|
+
# Phase 1 - a says it's not primary and suggests c may be the primary
|
7
|
+
- responses:
|
8
|
+
-
|
9
|
+
- "a:27017"
|
10
|
+
- ok: 1
|
11
|
+
ismaster: false
|
12
|
+
secondary: true
|
13
|
+
hidden: true
|
14
|
+
hosts: ["a:27017", "c:27017"]
|
15
|
+
setName: "rs"
|
16
|
+
minWireVersion: 0
|
17
|
+
maxWireVersion: 6
|
18
|
+
outcome:
|
19
|
+
servers:
|
20
|
+
"a:27017":
|
21
|
+
type: "RSOther"
|
22
|
+
setName: "rs"
|
23
|
+
|
24
|
+
"b:27017":
|
25
|
+
type: Unknown
|
26
|
+
|
27
|
+
"c:27017":
|
28
|
+
type: Unknown
|
29
|
+
topologyType: "ReplicaSetNoPrimary"
|
30
|
+
logicalSessionTimeoutMinutes: ~
|
31
|
+
setName: "rs"
|
32
|
+
|
33
|
+
# Phase 2 - c says it's a standalone, is removed
|
34
|
+
- responses:
|
35
|
+
-
|
36
|
+
- "c:27017"
|
37
|
+
- ok: 1
|
38
|
+
ismaster: true
|
39
|
+
minWireVersion: 0
|
40
|
+
maxWireVersion: 6
|
41
|
+
outcome:
|
42
|
+
servers:
|
43
|
+
"a:27017":
|
44
|
+
type: "RSOther"
|
45
|
+
setName: "rs"
|
46
|
+
|
47
|
+
"b:27017":
|
48
|
+
type: Unknown
|
49
|
+
topologyType: "ReplicaSetNoPrimary"
|
50
|
+
logicalSessionTimeoutMinutes: ~
|
51
|
+
setName: "rs"
|
52
|
+
|
53
|
+
# Phase 3 - response from a is repeated, and must be processed; c added again
|
54
|
+
- responses:
|
55
|
+
-
|
56
|
+
- "a:27017"
|
57
|
+
- ok: 1
|
58
|
+
ismaster: false
|
59
|
+
secondary: true
|
60
|
+
hidden: true
|
61
|
+
hosts: ["a:27017", "c:27017"]
|
62
|
+
setName: "rs"
|
63
|
+
minWireVersion: 0
|
64
|
+
maxWireVersion: 6
|
65
|
+
outcome:
|
66
|
+
servers:
|
67
|
+
"a:27017":
|
68
|
+
type: "RSOther"
|
69
|
+
setName: "rs"
|
70
|
+
|
71
|
+
"b:27017":
|
72
|
+
type: Unknown
|
73
|
+
|
74
|
+
"c:27017":
|
75
|
+
type: Unknown
|
76
|
+
topologyType: "ReplicaSetNoPrimary"
|
77
|
+
logicalSessionTimeoutMinutes: ~
|
78
|
+
setName: "rs"
|
79
|
+
|
80
|
+
# Phase 4 - c is now a primary
|
81
|
+
- responses:
|
82
|
+
-
|
83
|
+
- "c:27017"
|
84
|
+
- ok: 1
|
85
|
+
ismaster: true
|
86
|
+
hosts: ["a:27017", "c:27017"]
|
87
|
+
setName: "rs"
|
88
|
+
minWireVersion: 0
|
89
|
+
maxWireVersion: 6
|
90
|
+
outcome:
|
91
|
+
servers:
|
92
|
+
"a:27017":
|
93
|
+
type: "RSOther"
|
94
|
+
setName: "rs"
|
95
|
+
|
96
|
+
"c:27017":
|
97
|
+
type: RSPrimary
|
98
|
+
setName: rs
|
99
|
+
topologyType: "ReplicaSetWithPrimary"
|
100
|
+
logicalSessionTimeoutMinutes: ~
|
101
|
+
setName: "rs"
|