1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
|
# rubocop:todo all
require 'spec_helper'
describe 'BulkWriteError message' do
let(:client) { authorized_client }
let(:collection_name) { 'bulk_write_error_message_spec' }
let(:collection) { client[collection_name] }
before do
collection.delete_many
end
context 'a bulk write with one error' do
it 'reports code name, code and message' do
begin
collection.insert_many([
{_id: 1},
{_id: 1},
{_id: 1},
], ordered: true)
fail('Should have raised')
rescue Mongo::Error::BulkWriteError => e
e.message.should =~ %r,\A\[11000\]: (insertDocument :: caused by :: 11000 )?E11000 duplicate key error (collection|index):,
end
end
end
context 'a bulk write with multiple errors' do
it 'reports code name, code and message' do
begin
collection.insert_many([
{_id: 1},
{_id: 1},
{_id: 1},
], ordered: false)
fail('Should have raised')
rescue Mongo::Error::BulkWriteError => e
e.message.should =~ %r,\AMultiple errors: \[11000\]: (insertDocument :: caused by :: 11000 )?E11000 duplicate key error (collection|index):.*\[11000\]: (insertDocument :: caused by :: 11000 )?E11000 duplicate key error (collection|index):,
end
end
end
context 'a bulk write with validation errors' do
let(:collection_name) { 'bulk_write_error_validation_message_spec' }
let(:collection) do
client[:collection_name].drop
client[:collection_name,
{
'validator' => {
'x' => { '$type' => 'string' },
}
}].create
client[:collection_name]
end
it 'reports code name, code, message, and details' do
begin
collection.insert_one({_id:1, x:"1"})
collection.insert_many([
{_id: 1, x:"1"},
{_id: 2, x:1},
], ordered: false)
fail('Should have raised')
rescue Mongo::Error::BulkWriteError => e
e.message.should =~ %r,\AMultiple errors: \[11000\]: (insertDocument :: caused by :: 11000 )?E11000 duplicate key error (collection|index):.*\; \[121\]: Document failed validation( -- .*)?,
# The duplicate key error should not print details because it's not a
# WriteError or a WriteConcernError
e.message.scan(/ -- /).length.should be <= 1
end
end
end
end
|