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 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227
|
# frozen_string_literal: true
# rubocop:todo all
require 'lite_spec_helper'
describe Mongo::WriteConcern do
describe '#get' do
let(:wc) { Mongo::WriteConcern.get(options) }
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
context 'when j is given as a string' 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
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, j: 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', j: 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, j: 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
context 'when options are provided with string keys' do
context 'acknowledged write concern' do
let(:options) do
{ 'w' => 2, 'j' => true }
end
it 'converts keys to symbols' do
expect(wc).to be_a(Mongo::WriteConcern::Acknowledged)
expect(wc.options[:w]).to eq(2)
expect(wc.options[:j]).to be true
end
end
context 'unacknowledged write concern' do
let(:options) do
{ 'w' => 0 }
end
it 'converts keys to symbols' do
expect(wc).to be_a(Mongo::WriteConcern::Unacknowledged)
expect(wc.options[:w]).to eq(0)
end
context 'and j is true' do
let(:options) do
{ 'w' => 0, j: true }
end
it 'raises an exception' do
expect do
wc
end.to raise_error(Mongo::Error::InvalidWriteConcern, /:j cannot be true when :w is 0/)
end
end
end
end
context 'when :journal option is given' do
let(:options) do
{ 'w' => 1, journal: true }
end
it 'raises an exception' do
expect do
wc
end.to raise_error(Mongo::Error::InvalidWriteConcern, /use :j for journal/)
end
end
end
end
|