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 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159
|
require 'spec_helper'
describe Mongo::WriteConcern do
describe '#get' do
context 'when no options are set' do
let(:options) do
{ }
end
it 'returns an Acknowledged write concern object' do
expect(Mongo::WriteConcern.get(options)).to be_a(Mongo::WriteConcern::Acknowledged)
end
end
context 'when the value is a WriteConcern object' do
let(:value) do
Mongo::WriteConcern.get({})
end
it 'returns the object' do
expect(Mongo::WriteConcern.get(value)).to be(value)
end
end
context 'when the value is nil' do
it 'returns nil' do
expect(Mongo::WriteConcern.get(nil)).to be(nil)
end
end
context 'when w is 0' do
context 'when no other options are provided' do
let(:options) do
{ w: 0 }
end
it 'returns an Unacknowledged write concern object' do
expect(Mongo::WriteConcern.get(options)).to be_a(Mongo::WriteConcern::Unacknowledged)
end
end
context 'when j is also provided' do
context 'when j is false' do
let(:options) do
{ w: 0, j: false }
end
it 'returns an Unacknowledged write concern object' do
expect(Mongo::WriteConcern.get(options)).to be_a(Mongo::WriteConcern::Unacknowledged)
end
end
context 'when j is true' do
let(:options) do
{ w: 0, j: true }
end
it 'raises an exception' do
expect {
Mongo::WriteConcern.get(options)
}.to raise_error(Mongo::Error::InvalidWriteConcern)
end
end
context 'when fsync is true' do
let(:options) do
{ w: 0, fsync: true }
end
it 'raises an exception' do
expect {
Mongo::WriteConcern.get(options)
}.to raise_error(Mongo::Error::InvalidWriteConcern)
end
end
end
context 'when wtimeout is also provided' do
let(:options) do
{ w: 0, wimteout: 100 }
end
it 'returns an Unacknowledged write concern object' do
expect(Mongo::WriteConcern.get(options)).to be_a(Mongo::WriteConcern::Unacknowledged)
end
end
end
context 'when w is less than 0' do
let(:options) do
{ w: -1 }
end
it 'raises an exception' do
expect {
Mongo::WriteConcern.get(options)
}.to raise_error(Mongo::Error::InvalidWriteConcern)
end
end
context 'when w is greater than 0' do
let(:options) do
{ w: 2, journal: true }
end
it 'returns an Acknowledged write concern object' do
expect(Mongo::WriteConcern.get(options)).to be_a(Mongo::WriteConcern::Acknowledged)
end
it 'sets the options' do
expect(Mongo::WriteConcern.get(options).options).to eq(options)
end
end
context 'when w is a string' do
let(:options) do
{ w: 'majority', journal: true }
end
it 'returns an Acknowledged write concern object' do
expect(Mongo::WriteConcern.get(options)).to be_a(Mongo::WriteConcern::Acknowledged)
end
it 'sets the options' do
expect(Mongo::WriteConcern.get(options).options).to eq(options)
end
end
context 'when w is a symbol' do
let(:options) do
{ w: :majority, journal: true }
end
it 'returns an Acknowledged write concern object' do
expect(Mongo::WriteConcern.get(options)).to be_a(Mongo::WriteConcern::Acknowledged)
end
it 'sets w to a string' do
expect(Mongo::WriteConcern.get(options).options[:w]).to eq('majority')
end
end
end
end
|