mongo 2.20.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 +3 -0
- data/Rakefile +2 -2
- 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.rb +14 -4
- 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 +76 -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 +43 -3
- data/lib/mongo/collection.rb +158 -23
- 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.rb +2 -0
- data/lib/mongo/grid/fs_bucket.rb +45 -12
- 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/operation/context.rb +40 -2
- data/lib/mongo/operation/create_search_indexes/op_msg.rb +2 -2
- data/lib/mongo/operation/delete/op_msg.rb +2 -1
- data/lib/mongo/operation/drop_search_index/op_msg.rb +2 -2
- 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 +12 -1
- data/lib/mongo/operation/shared/op_msg_executable.rb +4 -1
- data/lib/mongo/operation/shared/response_handling.rb +3 -3
- data/lib/mongo/operation/shared/sessions_supported.rb +1 -1
- 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 +2 -2
- data/lib/mongo/operation.rb +1 -0
- data/lib/mongo/protocol/message.rb +1 -4
- data/lib/mongo/protocol/msg.rb +2 -2
- data/lib/mongo/retryable/read_worker.rb +69 -29
- data/lib/mongo/retryable/write_worker.rb +49 -18
- data/lib/mongo/retryable.rb +8 -2
- 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 +1 -1
- data/lib/mongo/server/description.rb +18 -5
- data/lib/mongo/server/monitor.rb +7 -4
- data/lib/mongo/server/pending_connection.rb +7 -3
- 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 +25 -9
- data/lib/mongo/session.rb +78 -9
- data/lib/mongo/socket/ssl.rb +109 -17
- 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/version.rb +1 -1
- data/lib/mongo.rb +1 -0
- data/spec/atlas/atlas_connectivity_spec.rb +4 -0
- data/spec/atlas/operations_spec.rb +4 -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/on_demand_aws_credentials_spec.rb +1 -1
- data/spec/integration/client_side_encryption/range_explicit_encryption_prose_spec.rb +66 -22
- 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/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/sdam_error_handling_spec.rb +2 -1
- data/spec/integration/search_indexes_prose_spec.rb +4 -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 +3 -1
- 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/collection/view/aggregation_spec.rb +14 -39
- data/spec/mongo/collection/view/change_stream_spec.rb +3 -3
- 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/shared/csot/examples.rb +113 -0
- data/spec/mongo/query_cache_spec.rb +243 -225
- data/spec/mongo/retryable_spec.rb +1 -0
- data/spec/mongo/server/round_trip_time_calculator_spec.rb +120 -0
- data/spec/mongo/socket/ssl_spec.rb +0 -10
- data/spec/runners/change_streams/test.rb +2 -2
- data/spec/runners/crud/operation.rb +1 -1
- data/spec/runners/crud/verifier.rb +3 -1
- data/spec/runners/transactions/operation.rb +4 -6
- data/spec/runners/unified/ambiguous_operations.rb +13 -0
- data/spec/runners/unified/assertions.rb +4 -0
- data/spec/runners/unified/change_stream_operations.rb +14 -24
- data/spec/runners/unified/crud_operations.rb +82 -59
- data/spec/runners/unified/ddl_operations.rb +38 -7
- data/spec/runners/unified/grid_fs_operations.rb +37 -2
- data/spec/runners/unified/support_operations.rb +43 -4
- data/spec/runners/unified/test.rb +22 -10
- data/spec/runners/unified.rb +1 -1
- data/spec/solo/clean_exit_spec.rb +2 -0
- 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/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/crud_unified/aggregate-write-readPreference.yml +4 -0
- data/spec/spec_tests/data/crud_unified/db-aggregate-write-readPreference.yml +4 -0
- data/spec/spec_tests/data/crud_unified/find-test-all-options.yml +29 -0
- data/spec/spec_tests/server_selection_rtt_spec.rb +6 -6
- data/spec/support/certificates/atlas-ocsp-ca.crt +81 -83
- data/spec/support/certificates/atlas-ocsp.crt +107 -107
- data/spec/support/cluster_tools.rb +3 -3
- data/spec/support/common_shortcuts.rb +2 -2
- 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/shared/session.rb +2 -2
- data/spec/support/spec_setup.rb +2 -2
- data/spec/support/utils.rb +3 -1
- metadata +78 -91
- data/spec/mongo/server/round_trip_time_averager_spec.rb +0 -48
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Date-Aggregate.yml +0 -242
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Date-Correctness.yml +0 -423
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Date-Delete.yml +0 -183
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Date-FindOneAndUpdate.yml +0 -240
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Date-InsertFind.yml +0 -236
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Date-Update.yml +0 -253
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Decimal-Aggregate.yml +0 -1688
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Decimal-Correctness.yml +0 -294
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Decimal-Delete.yml +0 -906
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Decimal-FindOneAndUpdate.yml +0 -1685
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Decimal-InsertFind.yml +0 -1681
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Decimal-Update.yml +0 -1698
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-DecimalPrecision-Aggregate.yml +0 -330
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-DecimalPrecision-Correctness.yml +0 -425
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-DecimalPrecision-Delete.yml +0 -227
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-DecimalPrecision-FindOneAndUpdate.yml +0 -328
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-DecimalPrecision-InsertFind.yml +0 -320
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-DecimalPrecision-Update.yml +0 -337
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Double-Aggregate.yml +0 -914
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Double-Correctness.yml +0 -293
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Double-Delete.yml +0 -519
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Double-FindOneAndUpdate.yml +0 -912
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Double-InsertFind.yml +0 -908
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Double-Update.yml +0 -925
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-DoublePrecision-Aggregate.yml +0 -326
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-DoublePrecision-Correctness.yml +0 -425
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-DoublePrecision-Delete.yml +0 -225
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-DoublePrecision-FindOneAndUpdate.yml +0 -324
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-DoublePrecision-InsertFind.yml +0 -320
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-DoublePrecision-Update.yml +0 -339
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Int-Aggregate.yml +0 -242
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Int-Correctness.yml +0 -424
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Int-Delete.yml +0 -183
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Int-FindOneAndUpdate.yml +0 -240
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Int-InsertFind.yml +0 -236
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Int-Update.yml +0 -255
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Long-Aggregate.yml +0 -242
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Long-Correctness.yml +0 -423
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Long-Delete.yml +0 -183
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Long-FindOneAndUpdate.yml +0 -240
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Long-InsertFind.yml +0 -236
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Long-Update.yml +0 -255
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-WrongType.yml +0 -44
@@ -1,339 +0,0 @@
|
|
1
|
-
|
2
|
-
# Requires libmongocrypt 1.8.0.
|
3
|
-
runOn:
|
4
|
-
- minServerVersion: "7.0.0"
|
5
|
-
maxServerVersion: "7.99.99"
|
6
|
-
# Skip QEv2 (also referred to as FLE2v2) tests on Serverless. Unskip once Serverless enables the QEv2 protocol.
|
7
|
-
# FLE 2 Encrypted collections are not supported on standalone.
|
8
|
-
topology: [ "replicaset", "sharded", "load-balanced" ]
|
9
|
-
database_name: &database_name "default"
|
10
|
-
collection_name: &collection_name "default"
|
11
|
-
data: []
|
12
|
-
encrypted_fields: &encrypted_fields {'fields': [{'keyId': {'$binary': {'base64': 'EjRWeBI0mHYSNBI0VniQEg==', 'subType': '04'}}, 'path': 'encryptedDoublePrecision', 'bsonType': 'double', 'queries': {'queryType': 'rangePreview', 'contention': {'$numberLong': '0'}, 'sparsity': {'$numberLong': '1'}, 'min': {'$numberDouble': '0.0'}, 'max': {'$numberDouble': '200.0'}, 'precision': {'$numberInt': '2'}}}]}
|
13
|
-
key_vault_data: [ {'_id': {'$binary': {'base64': 'EjRWeBI0mHYSNBI0VniQEg==', 'subType': '04'}}, 'keyMaterial': {'$binary': {'base64': 'sHe0kz57YW7v8g9VP9sf/+K1ex4JqKc5rf/URX3n3p8XdZ6+15uXPaSayC6adWbNxkFskuMCOifDoTT+rkqMtFkDclOy884RuGGtUysq3X7zkAWYTKi8QAfKkajvVbZl2y23UqgVasdQu3OVBQCrH/xY00nNAs/52e958nVjBuzQkSb1T8pKJAyjZsHJ60+FtnfafDZSTAIBJYn7UWBCwQ==', 'subType': '00'}}, 'creationDate': {'$date': {'$numberLong': '1648914851981'}}, 'updateDate': {'$date': {'$numberLong': '1648914851981'}}, 'status': {'$numberInt': '0'}, 'masterKey': {'provider': 'local'}} ]
|
14
|
-
tests:
|
15
|
-
- description: "FLE2 Range DoublePrecision. Update."
|
16
|
-
clientOptions:
|
17
|
-
autoEncryptOpts:
|
18
|
-
kmsProviders:
|
19
|
-
local: {'key': {'$binary': {'base64': 'Mng0NCt4ZHVUYUJCa1kxNkVyNUR1QURhZ2h2UzR2d2RrZzh0cFBwM3R6NmdWMDFBMUN3YkQ5aXRRMkhGRGdQV09wOGVNYUMxT2k3NjZKelhaQmRCZGJkTXVyZG9uSjFk', 'subType': '00'}}}
|
20
|
-
operations:
|
21
|
-
- name: insertOne
|
22
|
-
arguments:
|
23
|
-
document: &doc0 { _id: 0, encryptedDoublePrecision: { $numberDouble: "0" } }
|
24
|
-
- name: insertOne
|
25
|
-
arguments:
|
26
|
-
document: &doc1 { _id: 1, encryptedDoublePrecision: { $numberDouble: "1" } }
|
27
|
-
- name: updateOne
|
28
|
-
arguments:
|
29
|
-
filter: { encryptedDoublePrecision: { $gt: { $numberDouble: "0" } } }
|
30
|
-
update: { "$set": { "encryptedDoublePrecision": { $numberDouble: "2" } }}
|
31
|
-
result:
|
32
|
-
matchedCount: 1
|
33
|
-
modifiedCount: 1
|
34
|
-
upsertedCount: 0
|
35
|
-
expectations:
|
36
|
-
- command_started_event:
|
37
|
-
command:
|
38
|
-
listCollections: 1
|
39
|
-
filter:
|
40
|
-
name: *collection_name
|
41
|
-
command_name: listCollections
|
42
|
-
- command_started_event:
|
43
|
-
command:
|
44
|
-
find: datakeys
|
45
|
-
filter: {
|
46
|
-
"$or": [
|
47
|
-
{
|
48
|
-
"_id": {
|
49
|
-
"$in": [
|
50
|
-
{'$binary': {'base64': 'EjRWeBI0mHYSNBI0VniQEg==', 'subType': '04'}}
|
51
|
-
]
|
52
|
-
}
|
53
|
-
},
|
54
|
-
{
|
55
|
-
"keyAltNames": {
|
56
|
-
"$in": []
|
57
|
-
}
|
58
|
-
}
|
59
|
-
]
|
60
|
-
}
|
61
|
-
$db: keyvault
|
62
|
-
readConcern: { level: "majority" }
|
63
|
-
command_name: find
|
64
|
-
- command_started_event:
|
65
|
-
command:
|
66
|
-
insert: *collection_name
|
67
|
-
documents:
|
68
|
-
- &doc0_encrypted { "_id": 0, "encryptedDoublePrecision": { $$type: "binData" } }
|
69
|
-
ordered: true
|
70
|
-
encryptionInformation:
|
71
|
-
type: 1
|
72
|
-
schema:
|
73
|
-
default.default:
|
74
|
-
# libmongocrypt applies escCollection and ecocCollection to outgoing command.
|
75
|
-
escCollection: "enxcol_.default.esc"
|
76
|
-
ecocCollection: "enxcol_.default.ecoc"
|
77
|
-
<<: *encrypted_fields
|
78
|
-
command_name: insert
|
79
|
-
- command_started_event:
|
80
|
-
command:
|
81
|
-
insert: *collection_name
|
82
|
-
documents:
|
83
|
-
- &doc1_encrypted { "_id": 1, "encryptedDoublePrecision": { $$type: "binData" } }
|
84
|
-
ordered: true
|
85
|
-
encryptionInformation:
|
86
|
-
type: 1
|
87
|
-
schema:
|
88
|
-
default.default:
|
89
|
-
# libmongocrypt applies escCollection and ecocCollection to outgoing command.
|
90
|
-
escCollection: "enxcol_.default.esc"
|
91
|
-
ecocCollection: "enxcol_.default.ecoc"
|
92
|
-
<<: *encrypted_fields
|
93
|
-
command_name: insert
|
94
|
-
- command_started_event:
|
95
|
-
command_name: update
|
96
|
-
command:
|
97
|
-
|
98
|
-
"update": "default"
|
99
|
-
"ordered": true
|
100
|
-
"updates": [
|
101
|
-
{
|
102
|
-
"q": {
|
103
|
-
"encryptedDoublePrecision": {
|
104
|
-
"$gt": {
|
105
|
-
"$binary": {
|
106
|
-
"base64": "DdIJAAADcGF5bG9hZACiCQAABGcAjgkAAAMwAH0AAAAFZAAgAAAAAHdJ2Vnb4MMzqVYVssjSdDy8XU4GVzMTfGifGETgQ2mYBXMAIAAAAAD7cFfKJGIXo6PjyeX2ria02CckW7dWFDoY/3FyBdm1NQVsACAAAAAAhEPSNv4M023A3hzNFuy83+hIKuZ2mKRY954N++aEOBUAAzEAfQAAAAVkACAAAAAAlmvfDrZoydUet4eCVMq7z6a58Ea+1HLJOWxN5lNcrWEFcwAgAAAAAEBo5AWZyC41b9ayjWNQSL4iYEAIwR/JG+ssN8bdoK9RBWwAIAAAAACEndE0SLxFSElOrNnqeX0EPmgDio3udZjVREy4JLS3sQADMgB9AAAABWQAIAAAAABbiLaoxAA6rinMJw1hC8ZUiq6UU1AQaPFn/py/Y06WuQVzACAAAAAAhtDasFkvYE7SCNu1je/hxdE9TJtAvvH3NtdEbKzNbCUFbAAgAAAAAIGepU1RSCF8sWODHEpKglsoqw3VBBH4a/URGxgGzbq2AAMzAH0AAAAFZAAgAAAAALORWwSr+tYNxcil2KIGSbNhTHvcPbdj+rLVQNx21S/KBXMAIAAAAAD6diZBkPEJ1cQy06LAxdbNK8Nlxbb44fH4Wk3Y3260nQVsACAAAAAA1eYAZBFHlDiaDAljWi8blGQ2nvvZa5AO5doeo0SFZsgAAzQAfQAAAAVkACAAAAAAG5XMK96PjClNlUvg82j4pMY1YxsznZfj4uNweD394FoFcwAgAAAAAKHgQLdGJHkrfFg9nB93Ac+3VgBw6aU44MTkKIQ91dZoBWwAIAAAAAAPxXmi+SDJ+40A0KdwfRczexlZQrHjIA+D3oUB0EY9tAADNQB9AAAABWQAIAAAAAA6M++b9I0YFemmWBAWAE3glu2Ah3Ta1FBxAQEIWS0toAVzACAAAAAANXYTqPf1Y6X3Ns6YQIX0C3FKCyWUo+Kk+fNcQvc0WSoFbAAgAAAAAA+uJUw1ICYgyeygSRe206VTWVtUnhdci3iHbyP5YtEVAAM2AH0AAAAFZAAgAAAAAKl8bV1riH/uyJ+X0HHd3+18k2cJl2dQFXCdoagutFcaBXMAIAAAAABm8F2Ew9f0VOABdcF+lP0Bi+zWvEUPniWgrxPq/Sx3uwVsACAAAAAAJfFErjZ6BPhsw5LjJLqNtKDLJ4zV0eIZppQpd9b0wZoAAzcAfQAAAAVkACAAAAAAsYZD8JEP6kYsPncFnNZwJxhu4YtUTKPNcjHtv67H+rYFcwAgAAAAAI4LqZcRkvbs/2F62Flu0pixNcor4WmBD0DHGaf039wLBWwAIAAAAAD4wUR3xd9lKltcqqo8LYvdMQWzCRobkV/ppKB/yn5dUgADOAB9AAAABWQAIAAAAAC0vdAi+dmoIXvZ5LqUqvyKV9/tHqSI2SWiSJO5pTnA2wVzACAAAAAAS2qvf9fvfVUH5WtsVxjxmskpGjYTQV34LwvQQw1y9wIFbAAgAAAAAE0+FKuK7HxbypvCeEJzMTcjOWE0ScYOlTBMUNlIv55hAAM5AH0AAAAFZAAgAAAAAH31lb/srBcrOXkzddCwAnclsR5/3QijEVgECs2JjOWBBXMAIAAAAABg7+prDT73YcCvLE5QbuIrqGcjLc5pQD2Miq0d29yrxgVsACAAAAAAetRiPwDSFWBzpWSWkOKWM6fKStRJ8SyObnpc79ux8p0AAzEwAH0AAAAFZAAgAAAAAOK8brUuc2onBNDRtfYMR736dHj4dQqXod8JG7tAMTsDBXMAIAAAAAAW6SrGAL6Bx0s7ZlsYULFfOAiYIGhEWu6md3r+Rk40awVsACAAAAAAIHYXP8RLcCboUmHN3+OlnEw1DxaLSnbTB9PdF228fFAAAzExAH0AAAAFZAAgAAAAAFdthRhe2Q8CvxGIhjTJZv0Lk97GkHciTPxZ/mckLoNaBXMAIAAAAAAqOxsAr23LOVB0DIHbPf9UDJJRFXY2YoKbjhRqw5psbQVsACAAAAAA0G2GD8ZQjDBntjLpW4rqwKRS6HiUjL03g1N6chANozcAAzEyAH0AAAAFZAAgAAAAAMWymwwbvIeMqmnKWWifUqoCxOsdpnonM2qdLPyjqJO/BXMAIAAAAAB6IDmmpUhBD2zpRj8/y/kmOSXcjuIU14sNh6GKSsg2uwVsACAAAAAAWMFPNOk3EMSQDS9JGPSMIQP0oNGVugxXKKUrIPPlhHgAAzEzAH0AAAAFZAAgAAAAAPcLmtq+V1e+MRlZ7NHq1+mrRVBQje5zj685ZvdsfKvSBXMAIAAAAABdHz/3w2k5km97QN9m7oLFYJaVJneNlMboIlz5yUASQAVsACAAAAAAWbp8JVJnx8fEVAJFa7WMfMa7wXeP5M3C8MX20J/i9n0AAzE0AH0AAAAFZAAgAAAAAJaRYmo8zqI2BEUzdSwp4tVRpPmVWsfydkYN3UHh6TMuBXMAIAAAAAAeD6mDnQeLlbC9i0sVgE8+RH6y+e94OJQ0tJ0PvblVSgVsACAAAAAAWp4jvretbDEsqEMzP/WLTnwOiJwCtfrCiB6m8k+yEMoAAzE1AH0AAAAFZAAgAAAAAAZZ538coNPwyRjhEwr5P8Xw32oWOJF+R+nfCGgy2qO3BXMAIAAAAACOPLnJlKwGNPDBReRKnHfteq0wFb3ezhrc7BVXs8RUHwVsACAAAAAA+lGesNk3+SyB/60rSvdQ2aN2vfJPR7llJVhufGTNhHkAAzE2AH0AAAAFZAAgAAAAAFH9l9GGA1I52atJV5jNUf1lx8jBjoEoVoME97v5GFJiBXMAIAAAAAC1qH3Kd78Dr9NGbw7y9D/XYBwv5h1LLO8la5OU7g8UkQVsACAAAAAArZ6atJCYrVfHB8dSNPOFf6nnDADBMJcIEj8ljPvxHp8AAzE3AH0AAAAFZAAgAAAAADtbVEI2tdkrowEMdkacD2w0Y3T3Ofi7PH6HmA6sP0c/BXMAIAAAAADuBSROnZHA+NgUPH8d0LnWFiDsM2bY8bzjC1+elSsIygVsACAAAAAAR0G2m+uANoWknkr/NerFcG+fECVxNIs0cqbY1t/U/0MAAzE4AH0AAAAFZAAgAAAAAAh3WpeMVlikPFYj9hLj+fmIqVt6omCSF75W3TPExyWpBXMAIAAAAAAsQkRmwqeVj2gGE03orb6PtrIzDt6dDU3hgSQi8E2wKgVsACAAAAAA3GHaRE2RAcaBRd8VzmYzWeBD2Gmy91eTK1k8YdWObZcAABJjbQAAAAAAAAAAAAAQcGF5bG9hZElkAAAAAAAQZmlyc3RPcGVyYXRvcgABAAAAAA==",
|
107
|
-
"subType": "06"
|
108
|
-
}
|
109
|
-
}
|
110
|
-
}
|
111
|
-
},
|
112
|
-
"u": {
|
113
|
-
"$set": {
|
114
|
-
"encryptedDoublePrecision": { $$type: "binData" }
|
115
|
-
}
|
116
|
-
}
|
117
|
-
}
|
118
|
-
]
|
119
|
-
encryptionInformation:
|
120
|
-
type: 1
|
121
|
-
schema:
|
122
|
-
"default.default":
|
123
|
-
# libmongocrypt applies escCollection and ecocCollection to outgoing command.
|
124
|
-
escCollection: "enxcol_.default.esc"
|
125
|
-
ecocCollection: "enxcol_.default.ecoc"
|
126
|
-
<<: *encrypted_fields
|
127
|
-
"$db": "default"
|
128
|
-
|
129
|
-
|
130
|
-
outcome:
|
131
|
-
collection:
|
132
|
-
# Outcome is checked using a separate MongoClient without auto encryption.
|
133
|
-
data:
|
134
|
-
-
|
135
|
-
{
|
136
|
-
"_id": 0,
|
137
|
-
"encryptedDoublePrecision": { $$type: "binData" },
|
138
|
-
"__safeContent__": [
|
139
|
-
{
|
140
|
-
"$binary": {
|
141
|
-
"base64": "5nRutVIyq7URVOVtbE4vM01APSIajAVnsShMwjBlzkM=",
|
142
|
-
"subType": "00"
|
143
|
-
}
|
144
|
-
},
|
145
|
-
{
|
146
|
-
"$binary": {
|
147
|
-
"base64": "Dri0CXmL78L2DOgk9w0DwxHOMGMzih7m6l59vgy+WWo=",
|
148
|
-
"subType": "00"
|
149
|
-
}
|
150
|
-
},
|
151
|
-
{
|
152
|
-
"$binary": {
|
153
|
-
"base64": "x7GR49EN0t3WXQDihkrbonK7qNIBYC87tpL/XEUyIYc=",
|
154
|
-
"subType": "00"
|
155
|
-
}
|
156
|
-
},
|
157
|
-
{
|
158
|
-
"$binary": {
|
159
|
-
"base64": "JfYUqWF+OoGjiYkRI4L5iPlF+T1Eleul7Fki22jp4Qc=",
|
160
|
-
"subType": "00"
|
161
|
-
}
|
162
|
-
},
|
163
|
-
{
|
164
|
-
"$binary": {
|
165
|
-
"base64": "q1RyGfIgsaQHoZFRw+DD28V26rN5hweApPLwExncvT8=",
|
166
|
-
"subType": "00"
|
167
|
-
}
|
168
|
-
},
|
169
|
-
{
|
170
|
-
"$binary": {
|
171
|
-
"base64": "L2PFeKGvLS6C+DLudR6fGlBq3ERPvjWvRyNRIA2HVb0=",
|
172
|
-
"subType": "00"
|
173
|
-
}
|
174
|
-
},
|
175
|
-
{
|
176
|
-
"$binary": {
|
177
|
-
"base64": "CWxaNqL3iP1yCixDkcmf9bmW3E5VeN8TJkg1jJe528s=",
|
178
|
-
"subType": "00"
|
179
|
-
}
|
180
|
-
},
|
181
|
-
{
|
182
|
-
"$binary": {
|
183
|
-
"base64": "+vC6araOEo+fpW7PSIP40/EnzBCj1d2N10Jr3rrXJJM=",
|
184
|
-
"subType": "00"
|
185
|
-
}
|
186
|
-
},
|
187
|
-
{
|
188
|
-
"$binary": {
|
189
|
-
"base64": "6SV63Mf51Z6A6p2X3rCnJKCu6ku3Oeb45mBYbz+IoAo=",
|
190
|
-
"subType": "00"
|
191
|
-
}
|
192
|
-
},
|
193
|
-
{
|
194
|
-
"$binary": {
|
195
|
-
"base64": "RjBYT2h3ZAoHxhf8DU6/dFbDkEBZp0IxREcsRTu2MXs=",
|
196
|
-
"subType": "00"
|
197
|
-
}
|
198
|
-
},
|
199
|
-
{
|
200
|
-
"$binary": {
|
201
|
-
"base64": "b7d8mRzD1kI1tdc7uNL+YAUonJ6pODLsRLkArfEKSkM=",
|
202
|
-
"subType": "00"
|
203
|
-
}
|
204
|
-
},
|
205
|
-
{
|
206
|
-
"$binary": {
|
207
|
-
"base64": "Xg8C1/A0KJaXOw4i+26Rv03/CydaaunOzXh0CIT+gn8=",
|
208
|
-
"subType": "00"
|
209
|
-
}
|
210
|
-
},
|
211
|
-
{
|
212
|
-
"$binary": {
|
213
|
-
"base64": "UoKUDw2wJYToUCcFaIs03YQSTksYR0MIOTJllwODqKc=",
|
214
|
-
"subType": "00"
|
215
|
-
}
|
216
|
-
},
|
217
|
-
{
|
218
|
-
"$binary": {
|
219
|
-
"base64": "c/5cwAT0C5jber2xlJnWD3a5tVDy0nRtr5HG02hoFOY=",
|
220
|
-
"subType": "00"
|
221
|
-
}
|
222
|
-
},
|
223
|
-
{
|
224
|
-
"$binary": {
|
225
|
-
"base64": "wSUrRXavAGaajNeqC5mEUH1K67oYl5Wy9RNIzKjwLAM=",
|
226
|
-
"subType": "00"
|
227
|
-
}
|
228
|
-
},
|
229
|
-
{
|
230
|
-
"$binary": {
|
231
|
-
"base64": "6vrp4wWDtHEgHWR99I70WVDzevg1Fk/Pw5U8gUDa0OU=",
|
232
|
-
"subType": "00"
|
233
|
-
}
|
234
|
-
}
|
235
|
-
]
|
236
|
-
}
|
237
|
-
-
|
238
|
-
{
|
239
|
-
"_id": 1,
|
240
|
-
"encryptedDoublePrecision": { $$type: "binData" },
|
241
|
-
"__safeContent__": [
|
242
|
-
{
|
243
|
-
"$binary": {
|
244
|
-
"base64": "DLCAJs+W2PL2DV5YChCL6dYrQNr+j4p3L7xhVaub4ic=",
|
245
|
-
"subType": "00"
|
246
|
-
}
|
247
|
-
},
|
248
|
-
{
|
249
|
-
"$binary": {
|
250
|
-
"base64": "V6knyt7Zq2CG3++l75UtBx2m32iGAPjHiAe439Bf02w=",
|
251
|
-
"subType": "00"
|
252
|
-
}
|
253
|
-
},
|
254
|
-
{
|
255
|
-
"$binary": {
|
256
|
-
"base64": "F08nMDWDZc+DbWM7XCEJNNCEYyinRmrvGP7EWhmp4is=",
|
257
|
-
"subType": "00"
|
258
|
-
}
|
259
|
-
},
|
260
|
-
{
|
261
|
-
"$binary": {
|
262
|
-
"base64": "cXH4688amcDc8kZOJq4UP8cE3R58Zl7e+Qo/1jyspps=",
|
263
|
-
"subType": "00"
|
264
|
-
}
|
265
|
-
},
|
266
|
-
{
|
267
|
-
"$binary": {
|
268
|
-
"base64": "uURBxvTp3FBCVkd+LPqyuY7d6rMW6SGIJQEPY/wtkZI=",
|
269
|
-
"subType": "00"
|
270
|
-
}
|
271
|
-
},
|
272
|
-
{
|
273
|
-
"$binary": {
|
274
|
-
"base64": "jG3hax1L3RBp9t38vUt53FsBxgr/+Si/vVISpAylYpE=",
|
275
|
-
"subType": "00"
|
276
|
-
}
|
277
|
-
},
|
278
|
-
{
|
279
|
-
"$binary": {
|
280
|
-
"base64": "kwtIW8MhH9Ky5xNjBx8gFA/SHh2YVphie7g5FGBzals=",
|
281
|
-
"subType": "00"
|
282
|
-
}
|
283
|
-
},
|
284
|
-
{
|
285
|
-
"$binary": {
|
286
|
-
"base64": "FHflwFuEMu4xX0ZApHi+pdlBH+oevAtXckCUb5Wv0xU=",
|
287
|
-
"subType": "00"
|
288
|
-
}
|
289
|
-
},
|
290
|
-
{
|
291
|
-
"$binary": {
|
292
|
-
"base64": "0OKSXELxPP85SBVwDGf3LtMEQCJ8TTkFUl/+6jlkdb0=",
|
293
|
-
"subType": "00"
|
294
|
-
}
|
295
|
-
},
|
296
|
-
{
|
297
|
-
"$binary": {
|
298
|
-
"base64": "25j9sQXZCihCmHKvTHgaBsAVZFcGPn7JjHdrCGlwyyw=",
|
299
|
-
"subType": "00"
|
300
|
-
}
|
301
|
-
},
|
302
|
-
{
|
303
|
-
"$binary": {
|
304
|
-
"base64": "uEw0lpQtBppR3vqV9j9+NQRSBF1BzZukb8c9IhyWvxc=",
|
305
|
-
"subType": "00"
|
306
|
-
}
|
307
|
-
},
|
308
|
-
{
|
309
|
-
"$binary": {
|
310
|
-
"base64": "zVhZ7Q59O087ji49oMJvBIgeir2oqvUpnh4p53GcTow=",
|
311
|
-
"subType": "00"
|
312
|
-
}
|
313
|
-
},
|
314
|
-
{
|
315
|
-
"$binary": {
|
316
|
-
"base64": "dowrzKs+qJhRMZyKDbhjXbuX43FbmUKOaw9I8YlOZDw=",
|
317
|
-
"subType": "00"
|
318
|
-
}
|
319
|
-
},
|
320
|
-
{
|
321
|
-
"$binary": {
|
322
|
-
"base64": "ep5B6cska6THLIF7Mn3tn3RvV9EiwLSt0eZM/CLRUDc=",
|
323
|
-
"subType": "00"
|
324
|
-
}
|
325
|
-
},
|
326
|
-
{
|
327
|
-
"$binary": {
|
328
|
-
"base64": "URNp/YmmDh5wIZUfAzzgPyJeMNiVx9PMsz52DZRujGY=",
|
329
|
-
"subType": "00"
|
330
|
-
}
|
331
|
-
},
|
332
|
-
{
|
333
|
-
"$binary": {
|
334
|
-
"base64": "wlM4IAQhhKQEzoVqS8b1Ddd50GB95OFb9LnzOwyjCP4=",
|
335
|
-
"subType": "00"
|
336
|
-
}
|
337
|
-
}
|
338
|
-
]
|
339
|
-
}
|
@@ -1,242 +0,0 @@
|
|
1
|
-
|
2
|
-
# Requires libmongocrypt 1.8.0.
|
3
|
-
runOn:
|
4
|
-
- minServerVersion: "7.0.0"
|
5
|
-
maxServerVersion: "7.99.99"
|
6
|
-
# Skip QEv2 (also referred to as FLE2v2) tests on Serverless. Unskip once Serverless enables the QEv2 protocol.
|
7
|
-
# FLE 2 Encrypted collections are not supported on standalone.
|
8
|
-
topology: [ "replicaset", "sharded", "load-balanced" ]
|
9
|
-
database_name: &database_name "default"
|
10
|
-
collection_name: &collection_name "default"
|
11
|
-
data: []
|
12
|
-
encrypted_fields: &encrypted_fields {'fields': [{'keyId': {'$binary': {'base64': 'EjRWeBI0mHYSNBI0VniQEg==', 'subType': '04'}}, 'path': 'encryptedInt', 'bsonType': 'int', 'queries': {'queryType': 'rangePreview', 'contention': {'$numberLong': '0'}, 'sparsity': {'$numberLong': '1'}, 'min': {'$numberInt': '0'}, 'max': {'$numberInt': '200'}}}]}
|
13
|
-
key_vault_data: [ {'_id': {'$binary': {'base64': 'EjRWeBI0mHYSNBI0VniQEg==', 'subType': '04'}}, 'keyMaterial': {'$binary': {'base64': 'sHe0kz57YW7v8g9VP9sf/+K1ex4JqKc5rf/URX3n3p8XdZ6+15uXPaSayC6adWbNxkFskuMCOifDoTT+rkqMtFkDclOy884RuGGtUysq3X7zkAWYTKi8QAfKkajvVbZl2y23UqgVasdQu3OVBQCrH/xY00nNAs/52e958nVjBuzQkSb1T8pKJAyjZsHJ60+FtnfafDZSTAIBJYn7UWBCwQ==', 'subType': '00'}}, 'creationDate': {'$date': {'$numberLong': '1648914851981'}}, 'updateDate': {'$date': {'$numberLong': '1648914851981'}}, 'status': {'$numberInt': '0'}, 'masterKey': {'provider': 'local'}} ]
|
14
|
-
tests:
|
15
|
-
- description: "FLE2 Range Int. Aggregate."
|
16
|
-
clientOptions:
|
17
|
-
autoEncryptOpts:
|
18
|
-
kmsProviders:
|
19
|
-
local: {'key': {'$binary': {'base64': 'Mng0NCt4ZHVUYUJCa1kxNkVyNUR1QURhZ2h2UzR2d2RrZzh0cFBwM3R6NmdWMDFBMUN3YkQ5aXRRMkhGRGdQV09wOGVNYUMxT2k3NjZKelhaQmRCZGJkTXVyZG9uSjFk', 'subType': '00'}}}
|
20
|
-
operations:
|
21
|
-
- name: insertOne
|
22
|
-
arguments:
|
23
|
-
document: &doc0 { _id: 0, encryptedInt: { $numberInt: "0" } }
|
24
|
-
- name: insertOne
|
25
|
-
arguments:
|
26
|
-
document: &doc1 { _id: 1, encryptedInt: { $numberInt: "1" } }
|
27
|
-
- name: aggregate
|
28
|
-
arguments:
|
29
|
-
pipeline: [{ $match: { "encryptedInt": { $gt: {$numberInt: "0" }} } }]
|
30
|
-
result: [*doc1]
|
31
|
-
expectations:
|
32
|
-
- command_started_event:
|
33
|
-
command:
|
34
|
-
listCollections: 1
|
35
|
-
filter:
|
36
|
-
name: *collection_name
|
37
|
-
command_name: listCollections
|
38
|
-
- command_started_event:
|
39
|
-
command:
|
40
|
-
find: datakeys
|
41
|
-
filter: {
|
42
|
-
"$or": [
|
43
|
-
{
|
44
|
-
"_id": {
|
45
|
-
"$in": [
|
46
|
-
{'$binary': {'base64': 'EjRWeBI0mHYSNBI0VniQEg==', 'subType': '04'}}
|
47
|
-
]
|
48
|
-
}
|
49
|
-
},
|
50
|
-
{
|
51
|
-
"keyAltNames": {
|
52
|
-
"$in": []
|
53
|
-
}
|
54
|
-
}
|
55
|
-
]
|
56
|
-
}
|
57
|
-
$db: keyvault
|
58
|
-
readConcern: { level: "majority" }
|
59
|
-
command_name: find
|
60
|
-
- command_started_event:
|
61
|
-
command:
|
62
|
-
insert: *collection_name
|
63
|
-
documents:
|
64
|
-
- &doc0_encrypted { "_id": 0, "encryptedInt": { $$type: "binData" } }
|
65
|
-
ordered: true
|
66
|
-
encryptionInformation:
|
67
|
-
type: 1
|
68
|
-
schema:
|
69
|
-
default.default:
|
70
|
-
# libmongocrypt applies escCollection and ecocCollection to outgoing command.
|
71
|
-
escCollection: "enxcol_.default.esc"
|
72
|
-
ecocCollection: "enxcol_.default.ecoc"
|
73
|
-
<<: *encrypted_fields
|
74
|
-
command_name: insert
|
75
|
-
- command_started_event:
|
76
|
-
command:
|
77
|
-
insert: *collection_name
|
78
|
-
documents:
|
79
|
-
- &doc1_encrypted { "_id": 1, "encryptedInt": { $$type: "binData" } }
|
80
|
-
ordered: true
|
81
|
-
encryptionInformation:
|
82
|
-
type: 1
|
83
|
-
schema:
|
84
|
-
default.default:
|
85
|
-
# libmongocrypt applies escCollection and ecocCollection to outgoing command.
|
86
|
-
escCollection: "enxcol_.default.esc"
|
87
|
-
ecocCollection: "enxcol_.default.ecoc"
|
88
|
-
<<: *encrypted_fields
|
89
|
-
command_name: insert
|
90
|
-
- command_started_event:
|
91
|
-
command:
|
92
|
-
aggregate: *collection_name
|
93
|
-
pipeline: [
|
94
|
-
{
|
95
|
-
"$match": {
|
96
|
-
"encryptedInt": {
|
97
|
-
"$gt": {
|
98
|
-
"$binary": {
|
99
|
-
"base64": "DUkFAAADcGF5bG9hZAAZBQAABGcABQUAAAMwAH0AAAAFZAAgAAAAALGGQ/CRD+pGLD53BZzWcCcYbuGLVEyjzXIx7b+ux/q2BXMAIAAAAACOC6mXEZL27P9hethZbtKYsTXKK+FpgQ9Axxmn9N/cCwVsACAAAAAA+MFEd8XfZSpbXKqqPC2L3TEFswkaG5Ff6aSgf8p+XVIAAzEAfQAAAAVkACAAAAAAtL3QIvnZqCF72eS6lKr8ilff7R6kiNklokiTuaU5wNsFcwAgAAAAAEtqr3/X731VB+VrbFcY8ZrJKRo2E0Fd+C8L0EMNcvcCBWwAIAAAAABNPhSriux8W8qbwnhCczE3IzlhNEnGDpUwTFDZSL+eYQADMgB9AAAABWQAIAAAAAB99ZW/7KwXKzl5M3XQsAJ3JbEef90IoxFYBArNiYzlgQVzACAAAAAAYO/qaw0+92HAryxOUG7iK6hnIy3OaUA9jIqtHdvcq8YFbAAgAAAAAHrUYj8A0hVgc6VklpDiljOnykrUSfEsjm56XO/bsfKdAAMzAH0AAAAFZAAgAAAAAOK8brUuc2onBNDRtfYMR736dHj4dQqXod8JG7tAMTsDBXMAIAAAAAAW6SrGAL6Bx0s7ZlsYULFfOAiYIGhEWu6md3r+Rk40awVsACAAAAAAIHYXP8RLcCboUmHN3+OlnEw1DxaLSnbTB9PdF228fFAAAzQAfQAAAAVkACAAAAAAV22FGF7ZDwK/EYiGNMlm/QuT3saQdyJM/Fn+ZyQug1oFcwAgAAAAACo7GwCvbcs5UHQMgds9/1QMklEVdjZigpuOFGrDmmxtBWwAIAAAAADQbYYPxlCMMGe2MulbiurApFLoeJSMvTeDU3pyEA2jNwADNQB9AAAABWQAIAAAAADFspsMG7yHjKppyllon1KqAsTrHaZ6JzNqnSz8o6iTvwVzACAAAAAAeiA5pqVIQQ9s6UY/P8v5Jjkl3I7iFNeLDYehikrINrsFbAAgAAAAAFjBTzTpNxDEkA0vSRj0jCED9KDRlboMVyilKyDz5YR4AAM2AH0AAAAFZAAgAAAAAPcLmtq+V1e+MRlZ7NHq1+mrRVBQje5zj685ZvdsfKvSBXMAIAAAAABdHz/3w2k5km97QN9m7oLFYJaVJneNlMboIlz5yUASQAVsACAAAAAAWbp8JVJnx8fEVAJFa7WMfMa7wXeP5M3C8MX20J/i9n0AAzcAfQAAAAVkACAAAAAAYfLwnoxK6XAGQrJFy8+TIJoq38ldBaO75h4zA4ZX5tQFcwAgAAAAAC2wk8UcJH5X5XGnDBYmel6srpBkzBhHtt3Jw1u5TSJ1BWwAIAAAAAA9/YU9eI3D7QbXKIw/3/gzWJ6MZrCYhG0j1wNKgRQp5wADOAB9AAAABWQAIAAAAADGvyrtKkIcaV17ynZA7b2k5Pz6OhvxdWNkDvDWJIja8wVzACAAAAAAOLypVKNxf/wR1G8OZjUUsTQzDYeNNhhITxGMSp7euS4FbAAgAAAAAA9EsxoV1B2DcQ1NJRwuxXnvVR+vkD0wbbDYEI/zFEnDAAM5AH0AAAAFZAAgAAAAAEocREw1L0g+roFUchJI2Yd0M0ME2bnErNUYnpyJP1SqBXMAIAAAAAAcE2/JK/8MoSeOchIuAkKh1X3ImoA7p8ujAZIfvIDo6QVsACAAAAAA+W0+zgLr85/PD7P9a94wk6MgNgrizx/XU9aCxAkp1IwAABJjbQAAAAAAAAAAAAAQcGF5bG9hZElkAAAAAAAQZmlyc3RPcGVyYXRvcgABAAAAAA==",
|
100
|
-
"subType": "06"
|
101
|
-
}
|
102
|
-
}
|
103
|
-
}
|
104
|
-
}
|
105
|
-
}
|
106
|
-
]
|
107
|
-
cursor: {}
|
108
|
-
encryptionInformation:
|
109
|
-
type: 1
|
110
|
-
schema:
|
111
|
-
default.default:
|
112
|
-
# libmongocrypt applies escCollection and ecocCollection to outgoing command.
|
113
|
-
escCollection: "enxcol_.default.esc"
|
114
|
-
ecocCollection: "enxcol_.default.ecoc"
|
115
|
-
<<: *encrypted_fields
|
116
|
-
command_name: aggregate
|
117
|
-
outcome:
|
118
|
-
collection:
|
119
|
-
# Outcome is checked using a separate MongoClient without auto encryption.
|
120
|
-
data:
|
121
|
-
-
|
122
|
-
{
|
123
|
-
"_id": 0,
|
124
|
-
"encryptedInt": { $$type: "binData" },
|
125
|
-
"__safeContent__": [
|
126
|
-
{
|
127
|
-
"$binary": {
|
128
|
-
"base64": "5nRutVIyq7URVOVtbE4vM01APSIajAVnsShMwjBlzkM=",
|
129
|
-
"subType": "00"
|
130
|
-
}
|
131
|
-
},
|
132
|
-
{
|
133
|
-
"$binary": {
|
134
|
-
"base64": "RjBYT2h3ZAoHxhf8DU6/dFbDkEBZp0IxREcsRTu2MXs=",
|
135
|
-
"subType": "00"
|
136
|
-
}
|
137
|
-
},
|
138
|
-
{
|
139
|
-
"$binary": {
|
140
|
-
"base64": "x7GR49EN0t3WXQDihkrbonK7qNIBYC87tpL/XEUyIYc=",
|
141
|
-
"subType": "00"
|
142
|
-
}
|
143
|
-
},
|
144
|
-
{
|
145
|
-
"$binary": {
|
146
|
-
"base64": "JfYUqWF+OoGjiYkRI4L5iPlF+T1Eleul7Fki22jp4Qc=",
|
147
|
-
"subType": "00"
|
148
|
-
}
|
149
|
-
},
|
150
|
-
{
|
151
|
-
"$binary": {
|
152
|
-
"base64": "q1RyGfIgsaQHoZFRw+DD28V26rN5hweApPLwExncvT8=",
|
153
|
-
"subType": "00"
|
154
|
-
}
|
155
|
-
},
|
156
|
-
{
|
157
|
-
"$binary": {
|
158
|
-
"base64": "L2PFeKGvLS6C+DLudR6fGlBq3ERPvjWvRyNRIA2HVb0=",
|
159
|
-
"subType": "00"
|
160
|
-
}
|
161
|
-
},
|
162
|
-
{
|
163
|
-
"$binary": {
|
164
|
-
"base64": "CWxaNqL3iP1yCixDkcmf9bmW3E5VeN8TJkg1jJe528s=",
|
165
|
-
"subType": "00"
|
166
|
-
}
|
167
|
-
},
|
168
|
-
{
|
169
|
-
"$binary": {
|
170
|
-
"base64": "+vC6araOEo+fpW7PSIP40/EnzBCj1d2N10Jr3rrXJJM=",
|
171
|
-
"subType": "00"
|
172
|
-
}
|
173
|
-
},
|
174
|
-
{
|
175
|
-
"$binary": {
|
176
|
-
"base64": "6SV63Mf51Z6A6p2X3rCnJKCu6ku3Oeb45mBYbz+IoAo=",
|
177
|
-
"subType": "00"
|
178
|
-
}
|
179
|
-
}
|
180
|
-
]
|
181
|
-
}
|
182
|
-
-
|
183
|
-
{
|
184
|
-
"_id": 1,
|
185
|
-
"encryptedInt": { $$type: "binData" },
|
186
|
-
"__safeContent__": [
|
187
|
-
{
|
188
|
-
"$binary": {
|
189
|
-
"base64": "bE1vqWj3KNyM7cCYUv/cnYm8BPaUL3eMp5syTHq6NF4=",
|
190
|
-
"subType": "00"
|
191
|
-
}
|
192
|
-
},
|
193
|
-
{
|
194
|
-
"$binary": {
|
195
|
-
"base64": "25j9sQXZCihCmHKvTHgaBsAVZFcGPn7JjHdrCGlwyyw=",
|
196
|
-
"subType": "00"
|
197
|
-
}
|
198
|
-
},
|
199
|
-
{
|
200
|
-
"$binary": {
|
201
|
-
"base64": "FA74j21GUEJb1DJBOpR9nVnjaDZnd8yAQNuaW9Qi26g=",
|
202
|
-
"subType": "00"
|
203
|
-
}
|
204
|
-
},
|
205
|
-
{
|
206
|
-
"$binary": {
|
207
|
-
"base64": "kJv//KVkbrobIBf+QeWC5jxn20mx/P0R1N6aCSMgKM8=",
|
208
|
-
"subType": "00"
|
209
|
-
}
|
210
|
-
},
|
211
|
-
{
|
212
|
-
"$binary": {
|
213
|
-
"base64": "zB+Whi9IUUGxfLEe+lGuIzLX4LFbIhaIAm5lRk65QTc=",
|
214
|
-
"subType": "00"
|
215
|
-
}
|
216
|
-
},
|
217
|
-
{
|
218
|
-
"$binary": {
|
219
|
-
"base64": "ybO1QU3CgvhO8JgRXH+HxKszWcpl5aGDYYVa75fHa1g=",
|
220
|
-
"subType": "00"
|
221
|
-
}
|
222
|
-
},
|
223
|
-
{
|
224
|
-
"$binary": {
|
225
|
-
"base64": "X3Y3eSAbbMg//JgiHHiFpYOpV61t8kkDexI+CQyitH4=",
|
226
|
-
"subType": "00"
|
227
|
-
}
|
228
|
-
},
|
229
|
-
{
|
230
|
-
"$binary": {
|
231
|
-
"base64": "SlNHXyqVFGDPrX/2ppwog6l4pwj3PKda2TkZbqgfSfA=",
|
232
|
-
"subType": "00"
|
233
|
-
}
|
234
|
-
},
|
235
|
-
{
|
236
|
-
"$binary": {
|
237
|
-
"base64": "McjV8xwTF3xI7863DYOBdyvIv6UpzThl6v9vBRk05bI=",
|
238
|
-
"subType": "00"
|
239
|
-
}
|
240
|
-
}
|
241
|
-
]
|
242
|
-
}
|