mongo 2.13.2 → 2.14.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (174) hide show
  1. checksums.yaml +4 -4
  2. checksums.yaml.gz.sig +0 -0
  3. data.tar.gz.sig +0 -0
  4. data/lib/mongo.rb +9 -0
  5. data/lib/mongo/address.rb +1 -1
  6. data/lib/mongo/address/ipv4.rb +1 -1
  7. data/lib/mongo/address/ipv6.rb +1 -1
  8. data/lib/mongo/bulk_write.rb +17 -0
  9. data/lib/mongo/caching_cursor.rb +74 -0
  10. data/lib/mongo/client.rb +47 -8
  11. data/lib/mongo/cluster.rb +3 -3
  12. data/lib/mongo/cluster/topology/single.rb +1 -1
  13. data/lib/mongo/collection.rb +26 -0
  14. data/lib/mongo/collection/view.rb +24 -20
  15. data/lib/mongo/collection/view/aggregation.rb +25 -4
  16. data/lib/mongo/collection/view/builder/find_command.rb +38 -18
  17. data/lib/mongo/collection/view/explainable.rb +27 -8
  18. data/lib/mongo/collection/view/iterable.rb +72 -12
  19. data/lib/mongo/collection/view/readable.rb +12 -2
  20. data/lib/mongo/collection/view/writable.rb +15 -1
  21. data/lib/mongo/crypt/encryption_io.rb +6 -6
  22. data/lib/mongo/cursor.rb +1 -0
  23. data/lib/mongo/database.rb +6 -0
  24. data/lib/mongo/database/view.rb +1 -1
  25. data/lib/mongo/error.rb +2 -0
  26. data/lib/mongo/error/invalid_read_concern.rb +28 -0
  27. data/lib/mongo/error/server_certificate_revoked.rb +22 -0
  28. data/lib/mongo/error/unsupported_option.rb +14 -12
  29. data/lib/mongo/lint.rb +2 -1
  30. data/lib/mongo/logger.rb +3 -3
  31. data/lib/mongo/operation.rb +2 -0
  32. data/lib/mongo/operation/aggregate/result.rb +9 -8
  33. data/lib/mongo/operation/collections_info/command.rb +0 -5
  34. data/lib/mongo/operation/collections_info/result.rb +3 -16
  35. data/lib/mongo/operation/delete/bulk_result.rb +2 -0
  36. data/lib/mongo/operation/delete/result.rb +3 -0
  37. data/lib/mongo/operation/explain/command.rb +4 -0
  38. data/lib/mongo/operation/explain/legacy.rb +4 -0
  39. data/lib/mongo/operation/explain/op_msg.rb +6 -0
  40. data/lib/mongo/operation/explain/result.rb +3 -0
  41. data/lib/mongo/operation/find/legacy/result.rb +2 -0
  42. data/lib/mongo/operation/find/result.rb +3 -0
  43. data/lib/mongo/operation/get_more/result.rb +3 -0
  44. data/lib/mongo/operation/indexes/result.rb +5 -0
  45. data/lib/mongo/operation/insert/bulk_result.rb +5 -0
  46. data/lib/mongo/operation/insert/result.rb +5 -0
  47. data/lib/mongo/operation/list_collections/result.rb +5 -0
  48. data/lib/mongo/operation/map_reduce/result.rb +10 -0
  49. data/lib/mongo/operation/parallel_scan/result.rb +4 -0
  50. data/lib/mongo/operation/result.rb +35 -6
  51. data/lib/mongo/operation/shared/bypass_document_validation.rb +1 -0
  52. data/lib/mongo/operation/shared/causal_consistency_supported.rb +1 -0
  53. data/lib/mongo/operation/shared/collections_info_or_list_collections.rb +2 -0
  54. data/lib/mongo/operation/shared/executable.rb +1 -0
  55. data/lib/mongo/operation/shared/idable.rb +2 -1
  56. data/lib/mongo/operation/shared/limited.rb +1 -0
  57. data/lib/mongo/operation/shared/object_id_generator.rb +1 -0
  58. data/lib/mongo/operation/shared/result/aggregatable.rb +1 -0
  59. data/lib/mongo/operation/shared/sessions_supported.rb +1 -0
  60. data/lib/mongo/operation/shared/specifiable.rb +1 -0
  61. data/lib/mongo/operation/shared/write.rb +1 -0
  62. data/lib/mongo/operation/shared/write_concern_supported.rb +1 -0
  63. data/lib/mongo/operation/update/legacy/result.rb +7 -0
  64. data/lib/mongo/operation/update/result.rb +8 -0
  65. data/lib/mongo/operation/users_info/result.rb +3 -0
  66. data/lib/mongo/query_cache.rb +242 -0
  67. data/lib/mongo/retryable.rb +8 -1
  68. data/lib/mongo/server.rb +5 -1
  69. data/lib/mongo/server/connection_common.rb +2 -2
  70. data/lib/mongo/server/connection_pool.rb +3 -0
  71. data/lib/mongo/server/monitor.rb +1 -1
  72. data/lib/mongo/server/monitor/connection.rb +3 -3
  73. data/lib/mongo/server/pending_connection.rb +2 -2
  74. data/lib/mongo/server/push_monitor.rb +1 -1
  75. data/lib/mongo/server_selector/base.rb +5 -1
  76. data/lib/mongo/session.rb +3 -0
  77. data/lib/mongo/socket.rb +6 -4
  78. data/lib/mongo/socket/ocsp_cache.rb +97 -0
  79. data/lib/mongo/socket/ocsp_verifier.rb +368 -0
  80. data/lib/mongo/socket/ssl.rb +45 -24
  81. data/lib/mongo/srv/monitor.rb +7 -13
  82. data/lib/mongo/srv/resolver.rb +14 -10
  83. data/lib/mongo/timeout.rb +2 -0
  84. data/lib/mongo/uri.rb +21 -390
  85. data/lib/mongo/uri/options_mapper.rb +582 -0
  86. data/lib/mongo/uri/srv_protocol.rb +3 -2
  87. data/lib/mongo/utils.rb +12 -1
  88. data/lib/mongo/version.rb +1 -1
  89. data/spec/NOTES.aws-auth.md +12 -7
  90. data/spec/README.md +56 -1
  91. data/spec/integration/bson_symbol_spec.rb +2 -4
  92. data/spec/integration/bulk_write_spec.rb +48 -0
  93. data/spec/integration/client_authentication_options_spec.rb +55 -28
  94. data/spec/integration/connection_pool_populator_spec.rb +3 -1
  95. data/spec/integration/cursor_reaping_spec.rb +53 -17
  96. data/spec/integration/ocsp_connectivity_spec.rb +26 -0
  97. data/spec/integration/ocsp_verifier_cache_spec.rb +188 -0
  98. data/spec/integration/ocsp_verifier_spec.rb +334 -0
  99. data/spec/integration/query_cache_spec.rb +1045 -0
  100. data/spec/integration/query_cache_transactions_spec.rb +179 -0
  101. data/spec/integration/retryable_writes/retryable_writes_40_and_newer_spec.rb +1 -0
  102. data/spec/integration/retryable_writes/shared/performs_legacy_retries.rb +2 -0
  103. data/spec/integration/sdam_error_handling_spec.rb +68 -17
  104. data/spec/integration/sdam_events_spec.rb +5 -8
  105. data/spec/integration/server_selection_spec.rb +36 -0
  106. data/spec/integration/srv_monitoring_spec.rb +38 -3
  107. data/spec/integration/srv_spec.rb +56 -0
  108. data/spec/lite_spec_helper.rb +4 -2
  109. data/spec/mongo/address_spec.rb +1 -1
  110. data/spec/mongo/caching_cursor_spec.rb +70 -0
  111. data/spec/mongo/client_construction_spec.rb +54 -1
  112. data/spec/mongo/client_encryption_spec.rb +10 -16
  113. data/spec/mongo/client_spec.rb +40 -0
  114. data/spec/mongo/cluster/topology/single_spec.rb +14 -5
  115. data/spec/mongo/cluster_spec.rb +3 -0
  116. data/spec/mongo/collection/view/explainable_spec.rb +87 -4
  117. data/spec/mongo/collection/view/map_reduce_spec.rb +2 -0
  118. data/spec/mongo/collection_spec.rb +60 -0
  119. data/spec/mongo/crypt/auto_decryption_context_spec.rb +1 -1
  120. data/spec/mongo/crypt/auto_encryption_context_spec.rb +1 -1
  121. data/spec/mongo/crypt/data_key_context_spec.rb +1 -1
  122. data/spec/mongo/crypt/explicit_decryption_context_spec.rb +1 -1
  123. data/spec/mongo/crypt/explicit_encryption_context_spec.rb +1 -1
  124. data/spec/mongo/database_spec.rb +44 -64
  125. data/spec/mongo/error/no_server_available_spec.rb +1 -1
  126. data/spec/mongo/logger_spec.rb +13 -11
  127. data/spec/mongo/query_cache_spec.rb +279 -0
  128. data/spec/mongo/server/app_metadata_shared.rb +1 -1
  129. data/spec/mongo/server/connection_pool_spec.rb +7 -3
  130. data/spec/mongo/server/connection_spec.rb +14 -7
  131. data/spec/mongo/socket/ssl_spec.rb +1 -1
  132. data/spec/mongo/socket_spec.rb +1 -1
  133. data/spec/mongo/uri/srv_protocol_spec.rb +64 -33
  134. data/spec/mongo/uri_option_parsing_spec.rb +11 -11
  135. data/spec/mongo/uri_spec.rb +68 -41
  136. data/spec/mongo/utils_spec.rb +39 -0
  137. data/spec/runners/auth.rb +3 -0
  138. data/spec/runners/connection_string.rb +35 -124
  139. data/spec/spec_tests/cmap_spec.rb +7 -3
  140. data/spec/spec_tests/data/change_streams/change-streams-errors.yml +0 -1
  141. data/spec/spec_tests/data/change_streams/change-streams.yml +0 -1
  142. data/spec/spec_tests/data/cmap/pool-checkout-connection.yml +6 -2
  143. data/spec/spec_tests/data/cmap/pool-create-min-size.yml +3 -0
  144. data/spec/spec_tests/data/connection_string/valid-warnings.yml +24 -0
  145. data/spec/spec_tests/data/sdam_monitoring/discovered_standalone.yml +1 -3
  146. data/spec/spec_tests/data/sdam_monitoring/standalone.yml +2 -2
  147. data/spec/spec_tests/data/sdam_monitoring/standalone_repeated.yml +2 -2
  148. data/spec/spec_tests/data/sdam_monitoring/standalone_suppress_equal_description_changes.yml +2 -2
  149. data/spec/spec_tests/data/sdam_monitoring/standalone_to_rs_with_me_mismatch.yml +2 -2
  150. data/spec/spec_tests/data/uri_options/auth-options.yml +25 -0
  151. data/spec/spec_tests/data/uri_options/compression-options.yml +6 -3
  152. data/spec/spec_tests/data/uri_options/read-preference-options.yml +24 -0
  153. data/spec/spec_tests/data/uri_options/ruby-connection-options.yml +1 -0
  154. data/spec/spec_tests/data/uri_options/tls-options.yml +160 -4
  155. data/spec/spec_tests/dns_seedlist_discovery_spec.rb +9 -1
  156. data/spec/spec_tests/uri_options_spec.rb +31 -33
  157. data/spec/support/certificates/atlas-ocsp-ca.crt +28 -0
  158. data/spec/support/certificates/atlas-ocsp.crt +41 -0
  159. data/spec/support/client_registry_macros.rb +11 -2
  160. data/spec/support/common_shortcuts.rb +45 -0
  161. data/spec/support/constraints.rb +23 -0
  162. data/spec/support/lite_constraints.rb +24 -0
  163. data/spec/support/matchers.rb +16 -0
  164. data/spec/support/ocsp +1 -0
  165. data/spec/support/session_registry.rb +52 -0
  166. data/spec/support/spec_config.rb +22 -0
  167. data/spec/support/utils.rb +19 -1
  168. metadata +1017 -992
  169. metadata.gz.sig +0 -0
  170. data/spec/shared/LICENSE +0 -20
  171. data/spec/shared/lib/mrss/child_process_helper.rb +0 -80
  172. data/spec/shared/lib/mrss/constraints.rb +0 -303
  173. data/spec/shared/lib/mrss/lite_constraints.rb +0 -175
  174. data/spec/shared/lib/mrss/spec_organizer.rb +0 -149
@@ -10,7 +10,7 @@ shared_examples 'app metadata document' do
10
10
 
11
11
  it 'includes operating system information' do
12
12
  document[:client][:os][:type].should == 'linux'
13
- if BSON::Environment.jruby? || RUBY_VERSION >= '3.0'
13
+ if BSON::Environment.jruby?
14
14
  document[:client][:os][:name].should == 'linux'
15
15
  else
16
16
  document[:client][:os][:name].should == 'linux-gnu'
@@ -5,9 +5,13 @@ describe Mongo::Server::ConnectionPool do
5
5
  let(:options) { {} }
6
6
 
7
7
  let(:server_options) do
8
- SpecConfig.instance.ssl_options.merge(SpecConfig.instance.compressor_options)
9
- .merge(SpecConfig.instance.retry_writes_options).merge(SpecConfig.instance.auth_options)
10
- .merge(options)
8
+ Mongo::Utils.shallow_symbolize_keys(Mongo::Client.canonicalize_ruby_options(
9
+ SpecConfig.instance.all_test_options,
10
+ )).tap do |opts|
11
+ opts.delete(:min_pool_size)
12
+ opts.delete(:max_pool_size)
13
+ opts.delete(:wait_queue_timeout)
14
+ end.update(options)
11
15
  end
12
16
 
13
17
  let(:address) do
@@ -158,6 +158,8 @@ describe Mongo::Server::Connection do
158
158
  end
159
159
 
160
160
  shared_examples_for 'logs a warning' do
161
+ require_warning_clean
162
+
161
163
  it 'logs a warning' do
162
164
  messages = []
163
165
  expect(Mongo::Logger.logger).to receive(:warn) do |msg|
@@ -172,6 +174,8 @@ describe Mongo::Server::Connection do
172
174
  end
173
175
 
174
176
  shared_examples_for 'adds server diagnostics' do
177
+ require_warning_clean
178
+
175
179
  it 'adds server diagnostics' do
176
180
  messages = []
177
181
  expect(Mongo::Logger.logger).to receive(:warn) do |msg|
@@ -248,8 +252,9 @@ describe Mongo::Server::Connection do
248
252
  require_auth
249
253
 
250
254
  let(:server_options) do
251
- SpecConfig.instance.test_options.merge(monitoring_io: false).
252
- merge(SpecConfig.instance.auth_options)
255
+ Mongo::Client.canonicalize_ruby_options(
256
+ SpecConfig.instance.all_test_options,
257
+ ).update(monitoring_io: false)
253
258
  end
254
259
 
255
260
  let(:exception) do
@@ -589,10 +594,12 @@ describe Mongo::Server::Connection do
589
594
  server,
590
595
  SpecConfig.instance.test_options.merge(
591
596
  :database => SpecConfig.instance.test_user.database,
592
- ).merge(SpecConfig.instance.credentials_or_external_user(
593
- user: SpecConfig.instance.test_user.name,
594
- password: SpecConfig.instance.test_user.password,
595
- ))
597
+ ).merge(Mongo::Utils.shallow_symbolize_keys(Mongo::Client.canonicalize_ruby_options(
598
+ SpecConfig.instance.credentials_or_external_user(
599
+ user: SpecConfig.instance.test_user.name,
600
+ password: SpecConfig.instance.test_user.password,
601
+ ),
602
+ )))
596
603
  ).tap do |connection|
597
604
  connection.connect!
598
605
  end
@@ -1099,7 +1106,7 @@ describe Mongo::Server::Connection do
1099
1106
  :user => SpecConfig.instance.test_user.name,
1100
1107
  :password => SpecConfig.instance.test_user.password,
1101
1108
  :database => SpecConfig.instance.test_db,
1102
- :auth_mech => :mongodb_cr
1109
+ :auth_mech => :mongodb_cr,
1103
1110
  )
1104
1111
  end
1105
1112
 
@@ -246,7 +246,7 @@ describe Mongo::Socket::SSL, retry: 3 do
246
246
  it 'raises an error' do
247
247
  lambda do
248
248
  socket
249
- end.should raise_error(Mongo::Error::SocketError, /SSL handshake failed due to a hostname mismatch/)
249
+ end.should raise_error(Mongo::Error::SocketError, /TLS handshake failed due to a hostname mismatch/)
250
250
  end
251
251
  end
252
252
 
@@ -48,7 +48,7 @@ describe Mongo::Socket do
48
48
  socket.send(:map_exceptions) do
49
49
  raise OpenSSL::SSL::SSLError.new('Test error')
50
50
  end
51
- end.to raise_error(Mongo::Error::SocketError, 'OpenSSL::SSL::SSLError: Test error (for fake-address) (MongoDB may not be configured with SSL support)')
51
+ end.to raise_error(Mongo::Error::SocketError, 'OpenSSL::SSL::SSLError: Test error (for fake-address) (MongoDB may not be configured with TLS support)')
52
52
  end
53
53
  end
54
54
 
@@ -567,8 +567,8 @@ describe Mongo::URI::SRVProtocol do
567
567
  'readPreference=secondary&maxStalenessSeconds=89'
568
568
  end
569
569
 
570
- it 'does not raise an exception until the read preference is used' do
571
- expect(client.read_preference).to eq(BSON::Document.new(mode: :secondary, max_staleness: 89))
570
+ it 'does not raise an exception and is omitted' do
571
+ expect(client.read_preference).to eq(BSON::Document.new(mode: :secondary))
572
572
  end
573
573
  end
574
574
  end
@@ -715,83 +715,114 @@ describe Mongo::URI::SRVProtocol do
715
715
  end
716
716
  end
717
717
 
718
+ # This context exactly duplicates the same one in uri_spec.rb
718
719
  context 'auth mechanism properties provided' do
719
720
 
721
+ shared_examples 'sets options in the expected manner' do
722
+ it 'preserves case in auth mechanism properties returned from URI' do
723
+ expect(uri.uri_options[:auth_mech_properties]).to eq(expected_uri_options)
724
+ end
725
+
726
+ it 'downcases auth mechanism properties keys in client options' do
727
+ client = new_local_client_nmio(string)
728
+ expect(client.options[:auth_mech_properties]).to eq(expected_client_options)
729
+ end
730
+ end
731
+
720
732
  context 'service_name' do
721
733
  let(:options) do
722
- "authMechanismProperties=SERVICE_NAME:#{service_name}"
734
+ "authMechanismProperties=SERVICE_name:#{service_name}"
723
735
  end
724
736
 
725
737
  let(:service_name) { 'foo' }
726
- let(:expected) { Mongo::Options::Redacted.new({ service_name: service_name }) }
727
738
 
728
- it 'sets the auth mechanism properties' do
729
- expect(uri.uri_options[:auth_mech_properties]).to eq(expected)
739
+ let(:expected_uri_options) do
740
+ Mongo::Options::Redacted.new(
741
+ SERVICE_name: service_name,
742
+ )
730
743
  end
731
744
 
732
- it 'sets the options on a client created with the uri' do
733
- expect(client.options[:auth_mech_properties]).to eq(expected)
745
+ let(:expected_client_options) do
746
+ Mongo::Options::Redacted.new(
747
+ service_name: service_name,
748
+ )
734
749
  end
750
+
751
+ include_examples 'sets options in the expected manner'
735
752
  end
736
753
 
737
754
  context 'canonicalize_host_name' do
738
755
  let(:options) do
739
- "authMechanismProperties=CANONICALIZE_HOST_NAME:#{canonicalize_host_name}"
756
+ "authMechanismProperties=CANONICALIZE_HOST_name:#{canonicalize_host_name}"
740
757
  end
758
+
741
759
  let(:canonicalize_host_name) { 'true' }
742
- let(:expected) { Mongo::Options::Redacted.new({ canonicalize_host_name: true }) }
743
760
 
744
- it 'sets the auth mechanism properties' do
745
- expect(uri.uri_options[:auth_mech_properties]).to eq(expected)
761
+ let(:expected_uri_options) do
762
+ Mongo::Options::Redacted.new(
763
+ CANONICALIZE_HOST_name: true,
764
+ )
746
765
  end
747
766
 
748
- it 'sets the options on a client created with the uri' do
749
- expect(client.options[:auth_mech_properties]).to eq(expected)
767
+ let(:expected_client_options) do
768
+ Mongo::Options::Redacted.new(
769
+ canonicalize_host_name: true,
770
+ )
750
771
  end
772
+
773
+ include_examples 'sets options in the expected manner'
751
774
  end
752
775
 
753
776
  context 'service_realm' do
754
777
  let(:options) do
755
- "authMechanismProperties=SERVICE_REALM:#{service_realm}"
778
+ "authMechanismProperties=SERVICE_realm:#{service_realm}"
756
779
  end
757
780
 
758
781
  let(:service_realm) { 'dumdum' }
759
- let(:expected) { Mongo::Options::Redacted.new({ service_realm: service_realm }) }
760
782
 
761
-
762
- it 'sets the auth mechanism properties' do
763
- expect(uri.uri_options[:auth_mech_properties]).to eq(expected)
783
+ let(:expected_uri_options) do
784
+ Mongo::Options::Redacted.new(
785
+ SERVICE_realm: service_realm,
786
+ )
764
787
  end
765
788
 
766
- it 'sets the options on a client created with the uri' do
767
- expect(client.options[:auth_mech_properties]).to eq(expected)
789
+ let(:expected_client_options) do
790
+ Mongo::Options::Redacted.new(
791
+ service_realm: service_realm,
792
+ )
768
793
  end
794
+
795
+ include_examples 'sets options in the expected manner'
769
796
  end
770
797
 
771
798
  context 'multiple properties' do
772
799
  let(:options) do
773
- "authMechanismProperties=SERVICE_REALM:#{service_realm}," +
774
- "CANONICALIZE_HOST_NAME:#{canonicalize_host_name}," +
775
- "SERVICE_NAME:#{service_name}"
800
+ "authMechanismProperties=SERVICE_realm:#{service_realm}," +
801
+ "CANONICALIZE_HOST_name:#{canonicalize_host_name}," +
802
+ "SERVICE_name:#{service_name}"
776
803
  end
777
804
 
778
805
  let(:service_name) { 'foo' }
779
806
  let(:canonicalize_host_name) { 'true' }
780
807
  let(:service_realm) { 'dumdum' }
781
808
 
782
- let(:expected) do
783
- Mongo::Options::Redacted.new({ service_name: service_name,
784
- canonicalize_host_name: true,
785
- service_realm: service_realm })
809
+ let(:expected_uri_options) do
810
+ Mongo::Options::Redacted.new(
811
+ SERVICE_name: service_name,
812
+ CANONICALIZE_HOST_name: true,
813
+ SERVICE_realm: service_realm,
814
+ )
786
815
  end
787
816
 
788
- it 'sets the auth mechanism properties' do
789
- expect(uri.uri_options[:auth_mech_properties]).to eq(expected)
817
+ let(:expected_client_options) do
818
+ Mongo::Options::Redacted.new(
819
+ service_name: service_name,
820
+ canonicalize_host_name: true,
821
+ service_realm: service_realm,
822
+ )
790
823
  end
791
824
 
792
- it 'sets the options on a client created with the uri' do
793
- expect(client.options[:auth_mech_properties]).to eq(expected)
794
- end
825
+ include_examples 'sets options in the expected manner'
795
826
  end
796
827
  end
797
828
 
@@ -199,37 +199,37 @@ describe Mongo::URI do
199
199
 
200
200
  context 'authMechanismProperties' do
201
201
 
202
- let(:string) { 'mongodb://example.com/?authmechanismproperties=SERVICE_REALM:foo,CANONICALIZE_HOST_NAME:TRUE' }
202
+ let(:string) { 'mongodb://example.com/?authmechanismproperties=SERVICE_realm:foo,CANONICALIZE_HOST_name:TRUE' }
203
203
 
204
204
  it_behaves_like 'parses successfully'
205
205
 
206
206
  it 'parses correctly' do
207
207
  expect(uri.uri_options[:auth_mech_properties]).to eq(BSON::Document.new(
208
- service_realm: 'foo',
209
- canonicalize_host_name: true,
208
+ SERVICE_realm: 'foo',
209
+ CANONICALIZE_HOST_name: true,
210
210
  ))
211
211
  end
212
212
 
213
213
  context 'canonicalize host name is false' do
214
214
 
215
- let(:string) { 'mongodb://example.com/?authmechanismproperties=SERVICE_REALM:foo,CANONICALIZE_HOST_NAME:false' }
215
+ let(:string) { 'mongodb://example.com/?authmechanismproperties=SERVICE_realm:foo,CANONICALIZE_HOST_name:false' }
216
216
 
217
217
  it 'parses correctly' do
218
218
  expect(uri.uri_options[:auth_mech_properties]).to eq(BSON::Document.new(
219
- service_realm: 'foo',
220
- canonicalize_host_name: false,
219
+ SERVICE_realm: 'foo',
220
+ CANONICALIZE_HOST_name: false,
221
221
  ))
222
222
  end
223
223
  end
224
224
 
225
225
  context 'canonicalize host name is true in mixed case' do
226
226
 
227
- let(:string) { 'mongodb://example.com/?authmechanismproperties=SERVICE_REALM:foo,CANONICALIZE_HOST_NAME:TrUe' }
227
+ let(:string) { 'mongodb://example.com/?authmechanismproperties=SERVICE_realm:foo,CANONICALIZE_HOST_name:TrUe' }
228
228
 
229
229
  it 'parses correctly' do
230
230
  expect(uri.uri_options[:auth_mech_properties]).to eq(BSON::Document.new(
231
- service_realm: 'foo',
232
- canonicalize_host_name: true,
231
+ SERVICE_realm: 'foo',
232
+ CANONICALIZE_HOST_name: true,
233
233
  ))
234
234
  end
235
235
  end
@@ -350,8 +350,8 @@ describe Mongo::URI do
350
350
 
351
351
  it_behaves_like 'parses successfully'
352
352
 
353
- it 'is converted to nil' do
354
- expect(uri.uri_options[:read]).to eq(BSON::Document.new(max_staleness: nil))
353
+ it 'is omitted' do
354
+ uri.uri_options.should_not have_key(:read)
355
355
  end
356
356
  end
357
357
  end
@@ -727,9 +727,9 @@ describe Mongo::URI do
727
727
  'readPreference=secondary&maxStalenessSeconds=89'
728
728
  end
729
729
 
730
- it 'does not raise an exception until the read preference is used' do
730
+ it 'does not raise an exception and drops the option' do
731
731
  client = new_local_client_nmio(string)
732
- expect(client.read_preference).to eq(BSON::Document.new(mode: :secondary, max_staleness: 89))
732
+ expect(client.read_preference).to eq(BSON::Document.new(mode: :secondary))
733
733
  end
734
734
  end
735
735
  end
@@ -854,16 +854,16 @@ describe Mongo::URI do
854
854
  context 'when a mapping value is missing' do
855
855
  let(:options) { "authMechanism=#{mechanism}&authMechanismProperties=SERVICE_NAME:,CANONICALIZE_HOST_NAME:" }
856
856
 
857
- it 'sets the options on a client created with the uri' do
858
- expect(client.options[:auth_mech_properties]).to eq({ 'canonicalize_host_name' => nil, 'service_name' => nil })
857
+ it 'sets the options to defaults' do
858
+ expect(client.options[:auth_mech_properties]).to eq({ 'service_name' => 'mongodb' })
859
859
  end
860
860
  end
861
861
 
862
862
  context 'when a mapping value is missing but another is present' do
863
863
  let(:options) { "authMechanism=#{mechanism}&authMechanismProperties=SERVICE_NAME:foo,CANONICALIZE_HOST_NAME:" }
864
864
 
865
- it 'sets the options on a client created with the uri' do
866
- expect(client.options[:auth_mech_properties]).to eq({ 'canonicalize_host_name' => nil, 'service_name' => 'foo' })
865
+ it 'only sets the present value' do
866
+ expect(client.options[:auth_mech_properties]).to eq({ 'service_name' => 'foo' })
867
867
  end
868
868
  end
869
869
  end
@@ -1013,84 +1013,111 @@ describe Mongo::URI do
1013
1013
 
1014
1014
  context 'auth mechanism properties provided' do
1015
1015
 
1016
+ shared_examples 'sets options in the expected manner' do
1017
+ it 'preserves case in auth mechanism properties returned from URI' do
1018
+ expect(uri.uri_options[:auth_mech_properties]).to eq(expected_uri_options)
1019
+ end
1020
+
1021
+ it 'downcases auth mechanism properties keys in client options' do
1022
+ client = new_local_client_nmio(string)
1023
+ expect(client.options[:auth_mech_properties]).to eq(expected_client_options)
1024
+ end
1025
+ end
1026
+
1016
1027
  context 'service_name' do
1017
1028
  let(:options) do
1018
- "authMechanismProperties=SERVICE_NAME:#{service_name}"
1029
+ "authMechanismProperties=SERVICE_name:#{service_name}"
1019
1030
  end
1031
+
1020
1032
  let(:service_name) { 'foo' }
1021
- let(:expected) { Mongo::Options::Redacted.new({ service_name: service_name }) }
1022
1033
 
1023
- it 'sets the auth mechanism properties' do
1024
- expect(uri.uri_options[:auth_mech_properties]).to eq(expected)
1034
+ let(:expected_uri_options) do
1035
+ Mongo::Options::Redacted.new(
1036
+ SERVICE_name: service_name,
1037
+ )
1025
1038
  end
1026
1039
 
1027
- it 'sets the options on a client created with the uri' do
1028
- client = new_local_client_nmio(string)
1029
- expect(client.options[:auth_mech_properties]).to eq(expected)
1040
+ let(:expected_client_options) do
1041
+ Mongo::Options::Redacted.new(
1042
+ service_name: service_name,
1043
+ )
1030
1044
  end
1045
+
1046
+ include_examples 'sets options in the expected manner'
1031
1047
  end
1032
1048
 
1033
1049
  context 'canonicalize_host_name' do
1034
1050
  let(:options) do
1035
- "authMechanismProperties=CANONICALIZE_HOST_NAME:#{canonicalize_host_name}"
1051
+ "authMechanismProperties=CANONICALIZE_HOST_name:#{canonicalize_host_name}"
1036
1052
  end
1053
+
1037
1054
  let(:canonicalize_host_name) { 'true' }
1038
- let(:expected) { Mongo::Options::Redacted.new({ canonicalize_host_name: true }) }
1039
1055
 
1040
- it 'sets the auth mechanism properties' do
1041
- expect(uri.uri_options[:auth_mech_properties]).to eq(expected)
1056
+ let(:expected_uri_options) do
1057
+ Mongo::Options::Redacted.new(
1058
+ CANONICALIZE_HOST_name: true,
1059
+ )
1042
1060
  end
1043
1061
 
1044
- it 'sets the options on a client created with the uri' do
1045
- client = new_local_client_nmio(string)
1046
- expect(client.options[:auth_mech_properties]).to eq(expected)
1062
+ let(:expected_client_options) do
1063
+ Mongo::Options::Redacted.new(
1064
+ canonicalize_host_name: true,
1065
+ )
1047
1066
  end
1067
+
1068
+ include_examples 'sets options in the expected manner'
1048
1069
  end
1049
1070
 
1050
1071
  context 'service_realm' do
1051
1072
  let(:options) do
1052
- "authMechanismProperties=SERVICE_REALM:#{service_realm}"
1073
+ "authMechanismProperties=SERVICE_realm:#{service_realm}"
1053
1074
  end
1054
1075
 
1055
1076
  let(:service_realm) { 'dumdum' }
1056
- let(:expected) { Mongo::Options::Redacted.new({ service_realm: service_realm }) }
1057
1077
 
1058
-
1059
- it 'sets the auth mechanism properties' do
1060
- expect(uri.uri_options[:auth_mech_properties]).to eq(expected)
1078
+ let(:expected_uri_options) do
1079
+ Mongo::Options::Redacted.new(
1080
+ SERVICE_realm: service_realm,
1081
+ )
1061
1082
  end
1062
1083
 
1063
- it 'sets the options on a client created with the uri' do
1064
- client = new_local_client_nmio(string)
1065
- expect(client.options[:auth_mech_properties]).to eq(expected)
1084
+ let(:expected_client_options) do
1085
+ Mongo::Options::Redacted.new(
1086
+ service_realm: service_realm,
1087
+ )
1066
1088
  end
1089
+
1090
+ include_examples 'sets options in the expected manner'
1067
1091
  end
1068
1092
 
1069
1093
  context 'multiple properties' do
1070
1094
  let(:options) do
1071
- "authMechanismProperties=SERVICE_REALM:#{service_realm}," +
1072
- "CANONICALIZE_HOST_NAME:#{canonicalize_host_name}," +
1073
- "SERVICE_NAME:#{service_name}"
1095
+ "authMechanismProperties=SERVICE_realm:#{service_realm}," +
1096
+ "CANONICALIZE_HOST_name:#{canonicalize_host_name}," +
1097
+ "SERVICE_name:#{service_name}"
1074
1098
  end
1075
1099
 
1076
1100
  let(:service_name) { 'foo' }
1077
1101
  let(:canonicalize_host_name) { 'true' }
1078
1102
  let(:service_realm) { 'dumdum' }
1079
1103
 
1080
- let(:expected) do
1081
- Mongo::Options::Redacted.new({ service_name: service_name,
1082
- canonicalize_host_name: true,
1083
- service_realm: service_realm })
1104
+ let(:expected_uri_options) do
1105
+ Mongo::Options::Redacted.new(
1106
+ SERVICE_name: service_name,
1107
+ CANONICALIZE_HOST_name: true,
1108
+ SERVICE_realm: service_realm,
1109
+ )
1084
1110
  end
1085
1111
 
1086
- it 'sets the auth mechanism properties' do
1087
- expect(uri.uri_options[:auth_mech_properties]).to eq(expected)
1112
+ let(:expected_client_options) do
1113
+ Mongo::Options::Redacted.new(
1114
+ service_name: service_name,
1115
+ canonicalize_host_name: true,
1116
+ service_realm: service_realm,
1117
+ )
1088
1118
  end
1089
1119
 
1090
- it 'sets the options on a client created with the uri' do
1091
- client = new_local_client_nmio(string)
1092
- expect(client.options[:auth_mech_properties]).to eq(expected)
1093
- end
1120
+ include_examples 'sets options in the expected manner'
1094
1121
  end
1095
1122
  end
1096
1123