File: find_options_spec.rb

package info (click to toggle)
ruby-mongo 2.21.3-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 14,764 kB
  • sloc: ruby: 108,806; makefile: 5; sh: 2
file content (227 lines) | stat: -rw-r--r-- 6,027 bytes parent folder | download
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

require 'spec_helper'

describe 'Find operation options' do
  require_mri
  require_no_auth
  min_server_fcv '4.4'

  let(:subscriber) { Mrss::EventSubscriber.new }

  let(:seeds) do
    [ SpecConfig.instance.addresses.first ]
  end

  let(:client_options) do
    {}
  end

  let(:collection_options) do
    {}
  end

  let(:client) do
    ClientRegistry.instance.new_local_client(
      seeds,
      SpecConfig.instance.test_options
        .merge(database: SpecConfig.instance.test_db)
        .merge(client_options)
    ).tap do |client|
      client.subscribe(Mongo::Monitoring::COMMAND, subscriber)
    end
  end

  let(:collection) do
    client['find_options', collection_options]
  end

  let(:find_command) do
    subscriber.started_events.find { |cmd| cmd.command_name == 'find' }
  end

  let(:should_create_collection) { true }

  before do
    client['find_options'].drop
    collection.create if should_create_collection
    collection.insert_many([ { a: 1 }, { a: 2 }, { a: 3 } ])
  end

  describe 'collation' do
    let(:client_options) do
      {}
    end

    let(:collation) do
      { 'locale' => 'en_US' }
    end

    context 'when defined on the collection' do
      let(:collection_options) do
        { collation: collation }
      end

      it 'uses the collation defined on the collection' do
        collection.find.to_a
        expect(find_command.command['collation']).to be_nil
      end
    end

    context 'when defined on the operation' do
      let(:collection_options) do
        {}
      end

      it 'uses the collation defined on the collection' do
        collection.find({}, collation: collation).to_a
        expect(find_command.command['collation']).to eq(collation)
      end
    end

    context 'when defined on both collection and operation' do
      let(:collection_options) do
        { 'locale' => 'de_AT' }
      end

      let(:should_create_collection) { false }

      it 'uses the collation defined on the collection' do
        collection.find({}, collation: collation).to_a
        expect(find_command.command['collation']).to eq(collation)
      end
    end
  end

  describe 'read concern' do
    context 'when defined on the client' do
      let(:client_options) do
        { read_concern: { level: :local } }
      end

      let(:collection_options) do
        {}
      end

      it 'uses the read concern defined on the client' do
        collection.find.to_a
        expect(find_command.command['readConcern']).to eq('level' => 'local')
      end

      context 'when defined on the collection' do
        let(:collection_options) do
          { read_concern: { level: :majority } }
        end

        it 'uses the read concern defined on the collection' do
          collection.find.to_a
          expect(find_command.command['readConcern']).to eq('level' => 'majority')
        end

        context 'when defined on the operation' do
          let(:operation_read_concern) do
            { level: :available }
          end

          it 'uses the read concern defined on the operation' do
            collection.find({}, read_concern: operation_read_concern).to_a
            expect(find_command.command['readConcern']).to eq('level' => 'available')
          end
        end
      end

      context 'when defined on the operation' do
        let(:collection_options) do
          {}
        end

        let(:operation_read_concern) do
          { level: :available }
        end

        it 'uses the read concern defined on the operation' do
          collection.find({}, read_concern: operation_read_concern).to_a
          expect(find_command.command['readConcern']).to eq('level' => 'available')
        end
      end
    end

    context 'when defined on the collection' do
      let(:client_options) do
        {}
      end

      let(:collection_options) do
        { read_concern: { level: :majority } }
      end

      it 'uses the read concern defined on the collection' do
        collection.find.to_a
        expect(find_command.command['readConcern']).to eq('level' => 'majority')
      end

      context 'when defined on the operation' do
        let(:operation_read_concern) do
          { level: :available }
        end

        it 'uses the read concern defined on the operation' do
          collection.find({}, read_concern: operation_read_concern).to_a
          expect(find_command.command['readConcern']).to eq('level' => 'available')
        end
      end
    end
  end

  describe 'read preference' do
    require_topology :replica_set

    context 'when defined on the client' do
      let(:client_options) do
        { read: { mode: :secondary } }
      end

      let(:collection_options) do
        {}
      end

      it 'uses the read preference defined on the client' do
        collection.find.to_a
        expect(find_command.command['$readPreference']).to eq('mode' => 'secondary')
      end

      context 'when defined on the collection' do
        let(:collection_options) do
          { read: { mode: :secondary_preferred } }
        end

        it 'uses the read concern defined on the collection' do
          collection.find.to_a
          expect(find_command.command['$readPreference']).to eq('mode' => 'secondaryPreferred')
        end
      end
    end
  end

  describe 'cursor type' do
    let(:collection_options) do
      { capped: true, size: 1000 }
    end

    context 'when cursor type is :tailable' do
      it 'sets the cursor type to tailable' do
        collection.find({}, cursor_type: :tailable).first
        expect(find_command.command['tailable']).to be true
        expect(find_command.command['awaitData']).to be_falsey
      end
    end

    context 'when cursor type is :tailable_await' do
      it 'sets the cursor type to tailable' do
        collection.find({}, cursor_type: :tailable_await).first
        expect(find_command.command['tailable']).to be true
        expect(find_command.command['awaitData']).to be true
      end
    end
  end
end