File: primary_preferred_spec.rb

package info (click to toggle)
ruby-mongo 2.5.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,332 kB
  • sloc: ruby: 45,579; makefile: 5
file content (365 lines) | stat: -rw-r--r-- 10,222 bytes parent folder | download | duplicates (4)
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
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
require 'spec_helper'

describe Mongo::ServerSelector::PrimaryPreferred do

  let(:name) { :primary_preferred }

  include_context 'server selector'

  it_behaves_like 'a server selector mode' do
    let(:slave_ok) { true }
  end

  it_behaves_like 'a server selector accepting tag sets'
  it_behaves_like 'a server selector with sensitive data in its options'

  describe '#initialize' do

    context 'when max_staleness is provided' do

      let(:options) do
        { max_staleness: 95 }
      end

      it 'sets the max_staleness option' do
        expect(selector.max_staleness).to eq(options[:max_staleness])
      end
    end
  end

  describe '#==' do

    context 'when max staleness is the same' do

      let(:options) do
        { max_staleness: 95 }
      end

      let(:other) do
        described_class.new(options)
      end

      it 'returns true' do
        expect(selector).to eq(other)
      end
    end

    context 'when max staleness is different' do

      let(:other_options) do
        { max_staleness: 100 }
      end

      let(:other) do
        described_class.new(other_options)
      end

      it 'returns false' do
        expect(selector).not_to eq(other)
      end
    end
  end

  describe '#to_mongos' do

    context 'tag sets not provided' do

      it 'returns a read preference formatted for mongos' do
        expect(selector.to_mongos).to eq({ :mode => 'primaryPreferred' })
      end
    end

    context 'tag set provided' do
      let(:tag_sets) { [tag_set] }

      it 'returns a read preference formatted for mongos' do
        expect(selector.to_mongos).to eq(
          { :mode => 'primaryPreferred', :tags => tag_sets}
        )
      end
    end

    context 'max staleness not provided' do

      let(:expected) do
        { :mode => 'primaryPreferred' }
      end

      it 'returns a read preference formatted for mongos' do
        expect(selector.to_mongos).to eq(expected)
      end
    end

    context 'max staleness provided' do

      let(:max_staleness) do
        100
      end

      let(:expected) do
        { :mode => 'primaryPreferred', maxStalenessSeconds: 100 }
      end

      it 'returns a read preference formatted for mongos' do
        expect(selector.to_mongos).to eq(expected)
      end
    end
  end

  describe '#select' do

    context 'no candidates' do
      let(:candidates) { [] }

      it 'returns an empty array' do
        expect(selector.send(:select, candidates)).to be_empty
      end
    end

    context 'single primary candidate' do
      let(:candidates) { [primary] }

      it 'returns an array with the primary' do
        expect(selector.send(:select, candidates)).to eq( [primary] )
      end
    end

    context 'single secondary candidate' do
      let(:candidates) { [secondary] }

      it 'returns an array with the secondary' do
        expect(selector.send(:select, candidates)).to eq( [secondary] )
      end
    end

    context 'primary and secondary candidates' do
      let(:candidates) { [secondary, primary] }
      let(:expected) { [primary] }

      it 'returns an array with the primary' do
        expect(selector.send(:select, candidates)).to eq(expected)
      end
    end

    context 'secondary and primary candidates' do
      let(:candidates) { [secondary, primary] }
      let(:expected) { [primary] }

      it 'returns an array with the primary' do
        expect(selector.send(:select, candidates)).to eq(expected)
      end
    end

    context 'tag sets provided' do
      let(:tag_sets) { [tag_set] }

      let(:matching_primary) do
        make_server(:primary, :tags => server_tags, address: default_address )
      end

      let(:matching_secondary) do
        make_server(:secondary, :tags => server_tags, address: default_address )
      end

      context 'single candidate' do

        context 'primary' do
          let(:candidates) { [primary] }

          it 'returns array with primary' do
            expect(selector.send(:select, candidates)).to eq([primary])
          end
        end

        context 'matching_primary' do
          let(:candidates) { [matching_primary] }

          it 'returns array with matching primary' do
            expect(selector.send(:select, candidates)).to eq([matching_primary])
          end
        end

        context 'matching secondary' do
          let(:candidates) { [matching_secondary] }

          it 'returns array with matching secondary' do
            expect(selector.send(:select, candidates)).to eq([matching_secondary])
          end
        end

        context 'secondary' do
          let(:candidates) { [secondary] }

          it 'returns an empty array' do
            expect(selector.send(:select, candidates)).to be_empty
          end
        end
      end

      context 'multiple candidates' do

        context 'no matching secondaries' do
          let(:candidates) { [primary, secondary, secondary] }

          it 'returns an array with the primary' do
            expect(selector.send(:select, candidates)).to eq([primary])
          end
        end

        context 'one matching primary' do
          let(:candidates) { [matching_primary, secondary, secondary] }

          it 'returns an array of the primary' do
            expect(selector.send(:select, candidates)).to eq([matching_primary])
          end
        end

        context 'one matching secondary' do
          let(:candidates) { [primary, matching_secondary, secondary] }
          let(:expected) { [primary] }

          it 'returns an array of the primary' do
            expect(selector.send(:select, candidates)).to eq(expected)
          end
        end

        context 'two matching secondaries' do
          let(:candidates) { [primary, matching_secondary, matching_secondary] }
          let(:expected) { [primary] }

          it 'returns an array of the primary ' do
            expect(selector.send(:select, candidates)).to eq(expected)
          end
        end

        context 'one matching primary, one matching secondary' do
          let(:candidates) { [primary, matching_secondary, secondary] }
          let(:expected) { [primary] }

          it 'returns an array of the primary' do
            expect(selector.send(:select, candidates)).to eq(expected)
          end
        end
      end
    end

    context 'high latency servers' do
      let(:far_primary) { make_server(:primary, :average_round_trip_time => 0.100, address: default_address) }
      let(:far_secondary) { make_server(:secondary, :average_round_trip_time => 0.113, address: default_address) }

      context 'single candidate' do

        context 'far primary' do
          let(:candidates) { [far_primary] }

          it 'returns array with far primary' do
            expect(selector.send(:select, candidates)).to eq([far_primary])
          end
        end

        context 'far secondary' do
          let(:candidates) { [far_secondary] }

          it 'returns array with far primary' do
            expect(selector.send(:select, candidates)).to eq([far_secondary])
          end

        end
      end

      context 'multiple candidates' do

        context 'primary available' do

          context 'local primary, local secondary' do
            let(:candidates) { [primary, secondary] }
            let(:expected) { [primary] }

            it 'returns an array of the primary' do
              expect(selector.send(:select, candidates)).to eq(expected)
            end
          end

          context 'local primary, far secondary' do
            let(:candidates) { [primary, far_secondary] }
            let(:expected) { [primary] }

            it 'returns an array of the primary' do
              expect(selector.send(:select, candidates)).to eq(expected)
            end
          end

          context 'far primary, local secondary' do
            let(:candidates) { [far_primary, secondary] }
            let(:expected) { [far_primary] }

            it 'returns an array of the far primary' do
              expect(selector.send(:select, candidates)).to eq(expected)
            end
          end

          context 'far primary, far secondary' do
            let(:candidates) { [far_primary, far_secondary] }
            let(:expected) { [far_primary] }

            it 'returns an array of the far primary' do
              expect(selector.send(:select, candidates)).to eq(expected)
            end
          end

          context 'two local servers, one far server' do

            context 'local primary, local secondary, far secondary' do
              let(:candidates) { [primary, secondary, far_secondary] }
              let(:expected) { [primary] }

              it 'returns an array of the primary' do
                expect(selector.send(:select, candidates)).to eq(expected)
              end
            end

            context 'two local secondaries' do
              let(:candidates) { [far_primary, secondary, secondary] }
              let(:expected) { [far_primary] }

              it 'returns an array with primary' do
                expect(selector.send(:select, candidates)).to eq(expected)
              end
            end
          end
        end

        context 'primary not available' do

          context 'one secondary' do
            let(:candidates) { [secondary] }
            let(:expected) { [secondary] }

            it 'returns an array with the secondary' do
              expect(selector.send(:select, candidates)).to eq(expected)
            end
          end

          context 'one local secondary, one far secondary' do
            let(:candidates) { [secondary, far_secondary] }
            let(:expected) { [secondary] }

            it 'returns an array of the secondary' do
              expect(selector.send(:select, candidates)).to eq(expected)
            end
          end

          context 'two local secondaries, one far secondary' do
            let(:candidates) { [secondary, secondary, far_secondary] }
            let(:expected) { [secondary, secondary] }

            it 'returns an array of the secondary' do
              expect(selector.send(:select, candidates)).to eq(expected)
            end
          end
        end
      end
    end
  end
end