Sha256: fe1a6675f55f905cb726013eb5847c28a7709aa7ffc353e992b100d260638b35

Contents?: true

Size: 1.99 KB

Versions: 34

Compression:

Stored size: 1.99 KB

Contents

data:
  - { _id: 1, x: 11 }
  - { _id: 2, x: 22 }
  - { _id: 3, x: 33 }

collection_name: &collection_name "test"
database_name: &database_name "ruby-driver"

tests:
  -
    description: "A successful mixed bulk write"
    operation:
      name: "bulkWrite"
      arguments:
        requests:
          - insertOne: 
              document: { _id: 4, x: 44 }
          - updateOne:
              filter: { _id: 3 }
              update: { $set: { x: 333 } }
    expectations:
      -
        command_started_event:
          command:
            insert: *collection_name
            documents:
              - { _id: 4, x: 44 }
            ordered: true
          command_name: "insert"
          database_name: *database_name
      -
        command_succeeded_event:
          reply: { ok: 1.0, n: 1 }
          command_name: "insert"
      -
        command_started_event:
          command:
            update: *collection_name
            updates:
              - { q: {_id: 3 }, u: { $set: { x: 333 } }, upsert: false, multi: false }
            ordered: true
          command_name: "update"
          database_name: *database_name
      -
        command_succeeded_event:
          reply: { ok: 1.0, n: 1 }
          command_name: "update"
  -
    description: "A successful unordered bulk write with an unacknowledged write concern"
    comment: "On a 2.4 server, no GLE is sent and requires a client-side manufactored reply"
    operation:
      name: "bulkWrite"
      arguments:
        requests:
          - insertOne: 
              document: { _id: 4, x: 44 }
        ordered: false
        writeConcern: { w: 0 }
    expectations:
      -
        command_started_event:
          command:
            insert: *collection_name
            documents:
              - { _id: 4, x: 44 }
            ordered: false
            writeConcern: { w: 0 }
          command_name: "insert"
          database_name: *database_name
      -
        command_succeeded_event:
          reply: { ok: 1.0 }
          command_name: "insert"

Version data entries

34 entries across 31 versions & 3 rubygems

Version Path
mongo-2.5.3 spec/support/command_monitoring/bulkWrite.yml
mongo-2.5.2 spec/support/command_monitoring/bulkWrite.yml
tdiary-5.0.8 vendor/bundle/gems/mongo-2.5.1/spec/support/command_monitoring/bulkWrite.yml
mongo-2.5.1 spec/support/command_monitoring/bulkWrite.yml
mongo-2.5.0 spec/support/command_monitoring/bulkWrite.yml
mongo-2.5.0.beta spec/support/command_monitoring/bulkWrite.yml
mongo-2.4.3 spec/support/command_monitoring/bulkWrite.yml
tdiary-5.0.5 vendor/bundle/gems/tdiary-5.0.4/vendor/bundle/gems/mongo-2.4.1/spec/support/command_monitoring/bulkWrite.yml
tdiary-5.0.5 vendor/bundle/gems/mongo-2.4.2/spec/support/command_monitoring/bulkWrite.yml
tdiary-5.0.5 vendor/bundle/gems/mongo-2.4.1/spec/support/command_monitoring/bulkWrite.yml
mongo-2.4.2 spec/support/command_monitoring/bulkWrite.yml
tdiary-5.0.4 vendor/bundle/gems/mongo-2.4.1/spec/support/command_monitoring/bulkWrite.yml
mongo-2.4.1 spec/support/command_monitoring/bulkWrite.yml
mongo-2.4.0 spec/support/command_monitoring/bulkWrite.yml
mongo-2.3.1 spec/support/command_monitoring/bulkWrite.yml
mongo-2.4.0.rc1 spec/support/command_monitoring/bulkWrite.yml
mongo-2.4.0.rc0 spec/support/command_monitoring/bulkWrite.yml
mongo-2.3.0 spec/support/command_monitoring/bulkWrite.yml
mongo-2.2.7 spec/support/command_monitoring/bulkWrite.yml
mongo-2.2.6 spec/support/command_monitoring/bulkWrite.yml