Sha256: 9ac24bfc41c56b8285b709588a0303154055dfc67de88855b5090b2a644a1b0b

Contents?: true

Size: 1.37 KB

Versions: 2

Compression:

Stored size: 1.37 KB

Contents

# Requires libmongocrypt 1.8.0.
runOn:
  - minServerVersion: "7.0.0"
    maxServerVersion: "7.99.99"
    # Skip QEv2 (also referred to as FLE2v2) tests on Serverless. Unskip once Serverless enables the QEv2 protocol.
    # FLE 2 Encrypted collections are not supported on standalone.
    topology: [ "replicaset", "sharded", "load-balanced" ]
database_name: &database_name "default"
collection_name: &collection_name "default"
data: []
key_vault_data: []
encrypted_fields: {
  "fields": []
}
tests:
  - description: "insert with no encryption succeeds"
    clientOptions:
      autoEncryptOpts:
        kmsProviders:
          local: {'key': {'$binary': {'base64': 'Mng0NCt4ZHVUYUJCa1kxNkVyNUR1QURhZ2h2UzR2d2RrZzh0cFBwM3R6NmdWMDFBMUN3YkQ5aXRRMkhGRGdQV09wOGVNYUMxT2k3NjZKelhaQmRCZGJkTXVyZG9uSjFk', 'subType': '00'}}}
    operations:
      - name: insertOne
        arguments:
          document: &doc0 {
            _id: 1,
            foo: "bar"
          }
    expectations:
      - command_started_event:
          command:
            listCollections: 1
            filter:
              name: *collection_name
          command_name: listCollections
      - command_started_event:
          command:
            insert: *collection_name
            documents:
              - *doc0
            ordered: true
          command_name: insert
    outcome:
      collection:
        data:
          - *doc0

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
mongo-2.21.0 spec/spec_tests/data/client_side_encryption/fle2v2-NoEncryption.yml
mongo-2.20.1 spec/spec_tests/data/client_side_encryption/fle2v2-NoEncryption.yml