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
|
require 'spec_helper'
describe Mongo::Retryable do
let(:klass) do
Class.new do
include Mongo::Retryable
attr_reader :cluster
attr_reader :operation
def initialize(operation, cluster)
@operation = operation
@cluster = cluster
end
def max_read_retries
cluster.max_read_retries
end
def read_retry_interval
cluster.read_retry_interval
end
def read
read_with_retry do
operation.execute
end
end
def write
write_with_retry(nil, nil) do
operation.execute
end
end
end
end
let(:operation) do
double('operation')
end
let(:cluster) do
double('cluster', next_primary: server_selector)
end
let(:server_selector) do
double('server_selector', select_server: double('server'))
end
let(:retryable) do
klass.new(operation, cluster)
end
describe '#read_with_retry' do
context 'when no exception occurs' do
before do
expect(operation).to receive(:execute).and_return(true)
end
it 'executes the operation once' do
expect(retryable.read).to be true
end
end
context 'when a socket error occurs' do
before do
expect(operation).to receive(:execute).and_raise(Mongo::Error::SocketError).ordered
expect(cluster).to receive(:max_read_retries).and_return(1).ordered
expect(cluster).to receive(:scan!).and_return(true).ordered
expect(operation).to receive(:execute).and_return(true).ordered
end
it 'executes the operation twice' do
expect(retryable.read).to be true
end
end
context 'when a socket timeout error occurs' do
before do
expect(operation).to receive(:execute).and_raise(Mongo::Error::SocketTimeoutError).ordered
expect(cluster).to receive(:max_read_retries).and_return(1).ordered
expect(cluster).to receive(:scan!).and_return(true).ordered
expect(operation).to receive(:execute).and_return(true).ordered
end
it 'executes the operation twice' do
expect(retryable.read).to be true
end
end
context 'when an operation failure occurs' do
context 'when the cluster is not a mongos' do
before do
expect(operation).to receive(:execute).and_raise(Mongo::Error::OperationFailure).ordered
expect(cluster).to receive(:sharded?).and_return(false)
end
it 'raises an exception' do
expect {
retryable.read
}.to raise_error(Mongo::Error::OperationFailure)
end
end
context 'when the cluster is a mongos' do
context 'when the operation failure is not retryable' do
let(:error) do
Mongo::Error::OperationFailure.new('not authorized')
end
before do
expect(operation).to receive(:execute).and_raise(error).ordered
expect(cluster).to receive(:sharded?).and_return(true)
end
it 'raises the exception' do
expect {
retryable.read
}.to raise_error(Mongo::Error::OperationFailure)
end
end
context 'when the operation failure is retryable' do
let(:error) do
Mongo::Error::OperationFailure.new('no master')
end
context 'when the retry succeeds' do
before do
expect(operation).to receive(:execute).and_raise(error).ordered
expect(cluster).to receive(:sharded?).and_return(true)
expect(cluster).to receive(:max_read_retries).and_return(1).ordered
expect(cluster).to receive(:read_retry_interval).and_return(0.1).ordered
expect(operation).to receive(:execute).and_return(true).ordered
end
it 'returns the result' do
expect(retryable.read).to be true
end
end
context 'when the retry fails once and then succeeds' do
before do
expect(operation).to receive(:execute).and_raise(error).ordered
expect(cluster).to receive(:sharded?).and_return(true)
expect(cluster).to receive(:max_read_retries).and_return(2).ordered
expect(cluster).to receive(:read_retry_interval).and_return(0.1).ordered
expect(operation).to receive(:execute).and_raise(error).ordered
expect(cluster).to receive(:sharded?).and_return(true)
expect(cluster).to receive(:max_read_retries).and_return(2).ordered
expect(cluster).to receive(:read_retry_interval).and_return(0.1).ordered
expect(operation).to receive(:execute).and_return(true).ordered
end
it 'returns the result' do
expect(retryable.read).to be true
end
end
end
end
end
end
describe '#write_with_retry' do
context 'when no exception occurs' do
before do
expect(operation).to receive(:execute).and_return(true)
end
it 'executes the operation once' do
expect(retryable.write).to be true
end
end
context 'when a not master error occurs' do
before do
expect(operation).to receive(:execute).and_raise(Mongo::Error::OperationFailure.new('not master')).ordered
expect(cluster).to receive(:scan!).and_return(true).ordered
expect(operation).to receive(:execute).and_return(true).ordered
end
it 'executes the operation twice' do
expect(retryable.write).to be true
end
end
context 'when a not primary error occurs' do
before do
expect(operation).to receive(:execute).and_raise(Mongo::Error::OperationFailure.new('Not primary')).ordered
expect(cluster).to receive(:scan!).and_return(true).ordered
expect(operation).to receive(:execute).and_return(true).ordered
end
it 'executes the operation twice' do
expect(retryable.write).to be true
end
end
context 'when a normal operation failure occurs' do
before do
expect(operation).to receive(:execute).and_raise(Mongo::Error::OperationFailure).ordered
end
it 'raises an exception' do
expect {
retryable.write
}.to raise_error(Mongo::Error::OperationFailure)
end
end
end
end
|