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 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245
|
require 'spec_helper'
describe Mongo::Operation::ReadPreference do
let(:selector) do
{ name: 'test' }
end
let(:options) do
{}
end
let(:cluster_double) do
double('cluster')
end
let(:single?) do
true
end
let(:mongos?) do
false
end
let(:read_pref) do
Mongo::ServerSelector.get
end
let(:operation) do
Class.new do
include Mongo::Operation::ReadPreference
end.new.tap do |rp|
allow(rp).to receive(:read).and_return(read_pref)
allow(rp).to receive(:selector).and_return(selector)
allow(rp).to receive(:options).and_return(options)
end
end
let(:server) do
double('server').tap do |c|
allow(c).to receive(:cluster).and_return(cluster_double)
allow(cluster_double).to receive(:single?).and_return(single?)
allow(c).to receive(:mongos?).and_return(mongos?)
end
end
shared_context 'a selector updater' do
let(:read_pref) do
Mongo::ServerSelector.get(:mode => mode)
end
let(:expected) do
{ :$query => selector, :$readPreference => read_pref.to_mongos }
end
it 'returns a special selector' do
expect(operation.send(:update_selector_for_read_pref, operation.send(:selector), server)).to eq(expected)
end
context 'when the selector already has $query in it' do
let(:selector) do
{ :$query => { :name => 'test' },
:$orderby => { :name => -1 } }
end
let(:expected) do
selector.merge(:$readPreference => read_pref.to_mongos)
end
it 'returns an unaltered special selector' do
expect(operation.send(:update_selector_for_read_pref, operation.send(:selector), server)).to eq(expected)
end
end
end
shared_context 'not a selector updater' do
let(:read_pref) do
Mongo::ServerSelector.get(:mode => mode)
end
it 'returns a selector' do
expect(operation.send(:update_selector_for_read_pref, operation.send(:selector), server)).to eq(selector)
end
end
context 'when the server is a mongos' do
let(:mongos?) do
true
end
context 'when the read preference mode is primary' do
let(:mode) do
:primary
end
it_behaves_like 'not a selector updater'
end
context 'when the read preference mode is primary_preferred' do
let(:mode) do
:primary_preferred
end
it_behaves_like 'a selector updater'
end
context 'when the read preference mode is secondary' do
let(:mode) do
:secondary
end
it_behaves_like 'a selector updater'
end
context 'when the read preference mode is secondary_preferred' do
let(:mode) do
:secondary_preferred
end
it_behaves_like 'not a selector updater'
end
context 'when the read preference mode is nearest' do
let(:mode) do
:nearest
end
it_behaves_like 'a selector updater'
end
end
context 'when the server is not a mongos' do
let(:mongos?) do
false
end
let(:mode) do
:secondary_preferred
end
it_behaves_like 'not a selector updater'
end
context 'when the topology is Single' do
let(:single?) do
true
end
context 'when the server is a mongos' do
let(:mongos?) do
true
end
let(:expected) do
{ }
end
it 'does not set the slave_ok flag' do
expect(operation.send(:update_options_for_slave_ok, operation.send(:options), server)).to eq(expected)
end
end
context 'when the server is not a mongos' do
let(:mongos?) do
false
end
let(:expected) do
{ :flags => [ :slave_ok ] }
end
it 'sets the slave_ok flag' do
expect(operation.send(:update_options_for_slave_ok, operation.send(:options), server)).to eq(expected)
end
end
end
context 'when the topology is not Single' do
let(:single?) do
false
end
context 'when there is no read preference set' do
let(:read_pref) do
Mongo::ServerSelector.get
end
let(:expected) do
{ }
end
it 'does not set the slave_ok flag' do
expect(operation.send(:update_options_for_slave_ok, operation.send(:options), server)).to eq(expected)
end
end
context 'when there is a read preference' do
context 'when the read preference requires the slave_ok flag' do
let(:read_pref) do
Mongo::ServerSelector.get(:mode => :secondary)
end
let(:expected) do
{ :flags => [ :slave_ok ] }
end
it 'sets the slave_ok flag' do
expect(operation.send(:update_options_for_slave_ok, operation.send(:options), server)).to eq(expected)
end
end
context 'when the read preference does not require the slave_ok flag' do
let(:read_pref) do
Mongo::ServerSelector.get(:mode => :primary)
end
let(:expected) do
{ }
end
it 'does not set the slave_ok flag' do
expect(operation.send(:update_options_for_slave_ok, operation.send(:options), server)).to eq(expected)
end
end
end
end
end
|