mongo 2.4.1 → 2.14.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1703) hide show
  1. checksums.yaml +5 -5
  2. checksums.yaml.gz.sig +0 -0
  3. data/CONTRIBUTING.md +12 -54
  4. data/LICENSE +1 -1
  5. data/README.md +71 -44
  6. data/Rakefile +104 -9
  7. data/lib/mongo/active_support.rb +17 -0
  8. data/lib/mongo/address/ipv4.rb +38 -8
  9. data/lib/mongo/address/ipv6.rb +61 -12
  10. data/lib/mongo/address/unix.rb +9 -6
  11. data/lib/mongo/address/validator.rb +99 -0
  12. data/lib/mongo/address.rb +160 -59
  13. data/lib/mongo/auth/aws/conversation.rb +128 -0
  14. data/lib/mongo/auth/aws/credentials_retriever.rb +219 -0
  15. data/lib/mongo/auth/aws/request.rb +283 -0
  16. data/lib/mongo/auth/aws.rb +37 -0
  17. data/lib/mongo/auth/base.rb +129 -0
  18. data/lib/mongo/auth/conversation_base.rb +52 -0
  19. data/lib/mongo/auth/cr/conversation.rb +47 -71
  20. data/lib/mongo/auth/cr.rb +14 -35
  21. data/lib/mongo/auth/credential_cache.rb +51 -0
  22. data/lib/mongo/auth/gssapi/conversation.rb +108 -0
  23. data/lib/mongo/auth/gssapi.rb +38 -0
  24. data/lib/mongo/auth/ldap/conversation.rb +22 -53
  25. data/lib/mongo/auth/ldap.rb +11 -33
  26. data/lib/mongo/auth/roles.rb +1 -1
  27. data/lib/mongo/auth/sasl_conversation_base.rb +111 -0
  28. data/lib/mongo/auth/scram/conversation.rb +10 -411
  29. data/lib/mongo/auth/scram.rb +42 -37
  30. data/lib/mongo/auth/scram256/conversation.rb +63 -0
  31. data/lib/mongo/auth/scram256.rb +31 -0
  32. data/lib/mongo/auth/scram_conversation_base.rb +402 -0
  33. data/lib/mongo/auth/stringprep/profiles/sasl.rb +74 -0
  34. data/lib/mongo/auth/stringprep/tables.rb +3233 -0
  35. data/lib/mongo/auth/stringprep/unicode_normalize/normalize.rb +175 -0
  36. data/lib/mongo/auth/stringprep/unicode_normalize/tables.rb +1171 -0
  37. data/lib/mongo/auth/stringprep.rb +115 -0
  38. data/lib/mongo/auth/user/view.rb +53 -25
  39. data/lib/mongo/auth/user.rb +73 -10
  40. data/lib/mongo/auth/x509/conversation.rb +46 -52
  41. data/lib/mongo/auth/x509.rb +26 -31
  42. data/lib/mongo/auth.rb +93 -17
  43. data/lib/mongo/background_thread.rb +159 -0
  44. data/lib/mongo/bson.rb +1 -1
  45. data/lib/mongo/bulk_write/combineable.rb +22 -5
  46. data/lib/mongo/bulk_write/ordered_combiner.rb +1 -1
  47. data/lib/mongo/bulk_write/result.rb +2 -2
  48. data/lib/mongo/bulk_write/result_combiner.rb +18 -8
  49. data/lib/mongo/bulk_write/transformable.rb +20 -11
  50. data/lib/mongo/bulk_write/unordered_combiner.rb +1 -1
  51. data/lib/mongo/bulk_write/validatable.rb +10 -2
  52. data/lib/mongo/bulk_write.rb +134 -46
  53. data/lib/mongo/caching_cursor.rb +74 -0
  54. data/lib/mongo/client.rb +1050 -113
  55. data/lib/mongo/client_encryption.rb +103 -0
  56. data/lib/mongo/cluster/periodic_executor.rb +101 -0
  57. data/lib/mongo/cluster/reapers/cursor_reaper.rb +152 -0
  58. data/lib/mongo/cluster/reapers/socket_reaper.rb +62 -0
  59. data/lib/mongo/cluster/sdam_flow.rb +603 -0
  60. data/lib/mongo/cluster/topology/base.rb +218 -0
  61. data/lib/mongo/cluster/topology/no_replica_set_options.rb +34 -0
  62. data/lib/mongo/cluster/topology/replica_set_no_primary.rb +169 -0
  63. data/lib/mongo/cluster/topology/replica_set_with_primary.rb +27 -0
  64. data/lib/mongo/cluster/topology/sharded.rb +13 -116
  65. data/lib/mongo/cluster/topology/single.rb +19 -113
  66. data/lib/mongo/cluster/topology/unknown.rb +11 -152
  67. data/lib/mongo/cluster/topology.rb +65 -17
  68. data/lib/mongo/cluster.rb +798 -274
  69. data/lib/mongo/cluster_time.rb +139 -0
  70. data/lib/mongo/collection/view/aggregation.rb +47 -14
  71. data/lib/mongo/collection/view/builder/aggregation.rb +39 -8
  72. data/lib/mongo/collection/view/builder/find_command.rb +56 -23
  73. data/lib/mongo/collection/view/builder/flags.rb +2 -2
  74. data/lib/mongo/collection/view/builder/map_reduce.rb +17 -6
  75. data/lib/mongo/collection/view/builder/modifiers.rb +2 -2
  76. data/lib/mongo/collection/view/builder/op_query.rb +10 -2
  77. data/lib/mongo/collection/view/builder.rb +1 -1
  78. data/lib/mongo/collection/view/change_stream/retryable.rb +40 -0
  79. data/lib/mongo/collection/view/change_stream.rb +369 -0
  80. data/lib/mongo/collection/view/explainable.rb +29 -10
  81. data/lib/mongo/collection/view/immutable.rb +2 -2
  82. data/lib/mongo/collection/view/iterable.rb +107 -24
  83. data/lib/mongo/collection/view/map_reduce.rb +65 -36
  84. data/lib/mongo/collection/view/readable.rb +211 -52
  85. data/lib/mongo/collection/view/writable.rb +283 -60
  86. data/lib/mongo/collection/view.rb +52 -28
  87. data/lib/mongo/collection.rb +324 -60
  88. data/lib/mongo/crypt/auto_decryption_context.rb +40 -0
  89. data/lib/mongo/crypt/auto_encrypter.rb +179 -0
  90. data/lib/mongo/crypt/auto_encryption_context.rb +44 -0
  91. data/lib/mongo/crypt/binary.rb +155 -0
  92. data/lib/mongo/crypt/binding.rb +1229 -0
  93. data/lib/mongo/crypt/context.rb +135 -0
  94. data/lib/mongo/crypt/data_key_context.rb +162 -0
  95. data/lib/mongo/crypt/encryption_io.rb +306 -0
  96. data/lib/mongo/crypt/explicit_decryption_context.rb +40 -0
  97. data/lib/mongo/crypt/explicit_encrypter.rb +117 -0
  98. data/lib/mongo/crypt/explicit_encryption_context.rb +89 -0
  99. data/lib/mongo/crypt/handle.rb +315 -0
  100. data/lib/mongo/crypt/hooks.rb +90 -0
  101. data/lib/mongo/crypt/kms_context.rb +67 -0
  102. data/lib/mongo/crypt/status.rb +131 -0
  103. data/lib/mongo/crypt.rb +33 -0
  104. data/lib/mongo/cursor/builder/get_more_command.rb +9 -4
  105. data/lib/mongo/cursor/builder/kill_cursors_command.rb +24 -6
  106. data/lib/mongo/cursor/builder/op_get_more.rb +4 -4
  107. data/lib/mongo/cursor/builder/op_kill_cursors.rb +26 -7
  108. data/lib/mongo/cursor/builder.rb +1 -1
  109. data/lib/mongo/cursor.rb +226 -44
  110. data/lib/mongo/database/view.rb +104 -26
  111. data/lib/mongo/database.rb +214 -31
  112. data/lib/mongo/dbref.rb +10 -3
  113. data/lib/mongo/distinguishing_semaphore.rb +55 -0
  114. data/lib/mongo/error/auth_error.rb +29 -0
  115. data/lib/mongo/error/bulk_write_error.rb +20 -2
  116. data/lib/mongo/error/change_stream_resumable.rb +37 -0
  117. data/lib/mongo/error/closed_stream.rb +1 -1
  118. data/lib/mongo/error/connection_check_out_timeout.rb +48 -0
  119. data/lib/mongo/error/connection_perished.rb +23 -0
  120. data/lib/mongo/error/credential_check_error.rb +26 -0
  121. data/lib/mongo/error/crypt_error.rb +31 -0
  122. data/lib/mongo/error/extra_file_chunk.rb +1 -1
  123. data/lib/mongo/error/failed_string_prep_validation.rb +38 -0
  124. data/lib/mongo/error/file_not_found.rb +1 -1
  125. data/lib/mongo/error/handshake_error.rb +24 -0
  126. data/lib/mongo/error/insufficient_iteration_count.rb +38 -0
  127. data/lib/mongo/error/invalid_address.rb +24 -0
  128. data/lib/mongo/error/invalid_application_name.rb +1 -1
  129. data/lib/mongo/error/invalid_bulk_operation.rb +1 -1
  130. data/lib/mongo/error/invalid_bulk_operation_type.rb +1 -1
  131. data/lib/mongo/error/invalid_collection_name.rb +1 -1
  132. data/lib/mongo/error/invalid_cursor_operation.rb +27 -0
  133. data/lib/mongo/error/invalid_database_name.rb +1 -1
  134. data/lib/mongo/error/invalid_document.rb +1 -1
  135. data/lib/mongo/error/invalid_file.rb +1 -1
  136. data/lib/mongo/error/invalid_file_revision.rb +1 -1
  137. data/lib/mongo/error/invalid_min_pool_size.rb +35 -0
  138. data/lib/mongo/error/invalid_nonce.rb +2 -2
  139. data/lib/mongo/error/invalid_read_concern.rb +28 -0
  140. data/lib/mongo/error/invalid_read_option.rb +35 -0
  141. data/lib/mongo/error/invalid_replacement_document.rb +1 -1
  142. data/lib/mongo/error/invalid_server_auth_host.rb +22 -0
  143. data/lib/mongo/error/invalid_server_auth_response.rb +23 -0
  144. data/lib/mongo/error/invalid_server_preference.rb +7 -1
  145. data/lib/mongo/error/invalid_session.rb +37 -0
  146. data/lib/mongo/error/invalid_signature.rb +1 -1
  147. data/lib/mongo/error/invalid_transaction_operation.rb +82 -0
  148. data/lib/mongo/error/invalid_txt_record.rb +27 -0
  149. data/lib/mongo/error/invalid_update_document.rb +1 -1
  150. data/lib/mongo/error/invalid_uri.rb +8 -7
  151. data/lib/mongo/error/invalid_write_concern.rb +3 -3
  152. data/lib/mongo/error/kms_error.rb +22 -0
  153. data/lib/mongo/error/lint_error.rb +35 -0
  154. data/lib/mongo/error/max_bson_size.rb +15 -4
  155. data/lib/mongo/error/max_message_size.rb +1 -1
  156. data/lib/mongo/error/mismatched_domain.rb +27 -0
  157. data/lib/mongo/error/missing_file_chunk.rb +1 -1
  158. data/lib/mongo/error/missing_password.rb +29 -0
  159. data/lib/mongo/error/missing_resume_token.rb +39 -0
  160. data/lib/mongo/error/missing_scram_server_signature.rb +27 -0
  161. data/lib/mongo/error/mongocryptd_spawn_error.rb +22 -0
  162. data/lib/mongo/error/multi_index_drop.rb +1 -1
  163. data/lib/mongo/error/need_primary_server.rb +1 -1
  164. data/lib/mongo/error/no_server_available.rb +14 -5
  165. data/lib/mongo/error/no_srv_records.rb +26 -0
  166. data/lib/mongo/error/notable.rb +80 -0
  167. data/lib/mongo/error/operation_failure.rb +244 -13
  168. data/lib/mongo/error/parser.rb +156 -7
  169. data/lib/mongo/error/pool_closed_error.rb +50 -0
  170. data/lib/mongo/error/raise_original_error.rb +29 -0
  171. data/lib/mongo/error/sdam_error_detection.rb +72 -0
  172. data/lib/mongo/error/server_certificate_revoked.rb +22 -0
  173. data/lib/mongo/error/session_ended.rb +27 -0
  174. data/lib/mongo/error/sessions_not_supported.rb +35 -0
  175. data/lib/mongo/error/socket_error.rb +5 -2
  176. data/lib/mongo/error/socket_timeout_error.rb +5 -2
  177. data/lib/mongo/error/unchangeable_collection_option.rb +1 -1
  178. data/lib/mongo/error/unexpected_chunk_length.rb +1 -1
  179. data/lib/mongo/error/unexpected_response.rb +1 -1
  180. data/lib/mongo/error/unknown_payload_type.rb +41 -0
  181. data/lib/mongo/error/unsupported_array_filters.rb +56 -0
  182. data/lib/mongo/error/unsupported_collation.rb +7 -2
  183. data/lib/mongo/error/unsupported_features.rb +1 -19
  184. data/lib/mongo/error/unsupported_message_type.rb +23 -0
  185. data/lib/mongo/error/unsupported_option.rb +101 -0
  186. data/lib/mongo/error/write_retryable.rb +27 -0
  187. data/lib/mongo/error.rb +130 -1
  188. data/lib/mongo/event/base.rb +42 -0
  189. data/lib/mongo/event/listeners.rb +1 -1
  190. data/lib/mongo/event/publisher.rb +1 -1
  191. data/lib/mongo/event/subscriber.rb +1 -1
  192. data/lib/mongo/event.rb +10 -11
  193. data/lib/mongo/grid/file/chunk.rb +6 -6
  194. data/lib/mongo/grid/file/info.rb +35 -5
  195. data/lib/mongo/grid/file.rb +6 -1
  196. data/lib/mongo/grid/fs_bucket.rb +76 -34
  197. data/lib/mongo/grid/stream/read.rb +47 -24
  198. data/lib/mongo/grid/stream/write.rb +34 -12
  199. data/lib/mongo/grid/stream.rb +1 -1
  200. data/lib/mongo/grid.rb +1 -1
  201. data/lib/mongo/id.rb +64 -0
  202. data/lib/mongo/index/view.rb +98 -34
  203. data/lib/mongo/index.rb +2 -1
  204. data/lib/mongo/lint.rb +102 -0
  205. data/lib/mongo/loggable.rb +6 -2
  206. data/lib/mongo/logger.rb +4 -6
  207. data/lib/mongo/monitoring/cmap_log_subscriber.rb +53 -0
  208. data/lib/mongo/monitoring/command_log_subscriber.rb +22 -5
  209. data/lib/mongo/monitoring/event/cmap/base.rb +28 -0
  210. data/lib/mongo/monitoring/event/cmap/connection_check_out_failed.rb +85 -0
  211. data/lib/mongo/monitoring/event/cmap/connection_check_out_started.rb +56 -0
  212. data/lib/mongo/monitoring/event/cmap/connection_checked_in.rb +71 -0
  213. data/lib/mongo/monitoring/event/cmap/connection_checked_out.rb +72 -0
  214. data/lib/mongo/monitoring/event/cmap/connection_closed.rb +103 -0
  215. data/lib/mongo/monitoring/event/cmap/connection_created.rb +64 -0
  216. data/lib/mongo/monitoring/event/cmap/connection_ready.rb +64 -0
  217. data/lib/mongo/monitoring/event/cmap/pool_cleared.rb +57 -0
  218. data/lib/mongo/monitoring/event/cmap/pool_closed.rb +65 -0
  219. data/lib/mongo/monitoring/event/cmap/pool_created.rb +72 -0
  220. data/lib/mongo/monitoring/event/cmap.rb +25 -0
  221. data/lib/mongo/monitoring/event/command_failed.rb +30 -6
  222. data/lib/mongo/monitoring/event/command_started.rb +82 -6
  223. data/lib/mongo/monitoring/event/command_succeeded.rb +16 -3
  224. data/lib/mongo/monitoring/event/secure.rb +23 -3
  225. data/lib/mongo/monitoring/event/server_closed.rb +15 -2
  226. data/lib/mongo/monitoring/event/server_description_changed.rb +41 -3
  227. data/lib/mongo/monitoring/event/server_heartbeat_failed.rb +78 -0
  228. data/lib/mongo/monitoring/event/server_heartbeat_started.rb +62 -0
  229. data/lib/mongo/monitoring/event/server_heartbeat_succeeded.rb +70 -0
  230. data/lib/mongo/monitoring/event/server_opening.rb +15 -2
  231. data/lib/mongo/monitoring/event/topology_changed.rb +16 -2
  232. data/lib/mongo/monitoring/event/topology_closed.rb +15 -2
  233. data/lib/mongo/monitoring/event/topology_opening.rb +15 -2
  234. data/lib/mongo/monitoring/event.rb +6 -1
  235. data/lib/mongo/monitoring/publishable.rb +27 -45
  236. data/lib/mongo/monitoring/sdam_log_subscriber.rb +1 -1
  237. data/lib/mongo/monitoring/server_closed_log_subscriber.rb +1 -1
  238. data/lib/mongo/monitoring/server_description_changed_log_subscriber.rb +10 -2
  239. data/lib/mongo/monitoring/server_opening_log_subscriber.rb +1 -1
  240. data/lib/mongo/monitoring/topology_changed_log_subscriber.rb +5 -5
  241. data/lib/mongo/monitoring/topology_closed_log_subscriber.rb +30 -0
  242. data/lib/mongo/monitoring/topology_opening_log_subscriber.rb +2 -2
  243. data/lib/mongo/monitoring/unified_sdam_log_subscriber.rb +62 -0
  244. data/lib/mongo/monitoring.rb +198 -67
  245. data/lib/mongo/operation/aggregate/command.rb +44 -0
  246. data/lib/mongo/operation/aggregate/op_msg.rb +31 -0
  247. data/lib/mongo/operation/aggregate/result.rb +101 -0
  248. data/lib/mongo/operation/aggregate.rb +36 -0
  249. data/lib/mongo/operation/collections_info/command.rb +45 -0
  250. data/lib/mongo/operation/collections_info/result.rb +56 -0
  251. data/lib/mongo/operation/collections_info.rb +31 -0
  252. data/lib/mongo/operation/command/command.rb +38 -0
  253. data/lib/mongo/operation/command/op_msg.rb +28 -0
  254. data/lib/mongo/operation/command.rb +31 -0
  255. data/lib/mongo/operation/count/command.rb +38 -0
  256. data/lib/mongo/operation/count/op_msg.rb +29 -0
  257. data/lib/mongo/operation/count.rb +31 -0
  258. data/lib/mongo/operation/create/command.rb +38 -0
  259. data/lib/mongo/operation/create/op_msg.rb +29 -0
  260. data/lib/mongo/operation/create.rb +31 -0
  261. data/lib/mongo/operation/create_index/command.rb +42 -0
  262. data/lib/mongo/operation/create_index/op_msg.rb +38 -0
  263. data/lib/mongo/operation/create_index.rb +31 -0
  264. data/lib/mongo/operation/create_user/command.rb +43 -0
  265. data/lib/mongo/operation/create_user/op_msg.rb +35 -0
  266. data/lib/mongo/operation/create_user.rb +31 -0
  267. data/lib/mongo/operation/delete/bulk_result.rb +48 -0
  268. data/lib/mongo/operation/delete/command.rb +46 -0
  269. data/lib/mongo/operation/delete/legacy.rb +54 -0
  270. data/lib/mongo/operation/delete/op_msg.rb +45 -0
  271. data/lib/mongo/operation/delete/result.rb +45 -0
  272. data/lib/mongo/operation/delete.rb +38 -0
  273. data/lib/mongo/operation/distinct/command.rb +38 -0
  274. data/lib/mongo/operation/distinct/op_msg.rb +30 -0
  275. data/lib/mongo/operation/distinct.rb +31 -0
  276. data/lib/mongo/operation/drop/command.rb +38 -0
  277. data/lib/mongo/operation/drop/op_msg.rb +29 -0
  278. data/lib/mongo/operation/drop.rb +31 -0
  279. data/lib/mongo/operation/drop_database/command.rb +38 -0
  280. data/lib/mongo/operation/drop_database/op_msg.rb +29 -0
  281. data/lib/mongo/operation/drop_database.rb +31 -0
  282. data/lib/mongo/operation/drop_index/command.rb +42 -0
  283. data/lib/mongo/operation/drop_index/op_msg.rb +35 -0
  284. data/lib/mongo/operation/drop_index.rb +31 -0
  285. data/lib/mongo/operation/explain/command.rb +43 -0
  286. data/lib/mongo/operation/explain/legacy.rb +42 -0
  287. data/lib/mongo/operation/explain/op_msg.rb +37 -0
  288. data/lib/mongo/operation/explain/result.rb +53 -0
  289. data/lib/mongo/operation/explain.rb +33 -0
  290. data/lib/mongo/operation/find/command.rb +39 -0
  291. data/lib/mongo/operation/find/legacy/result.rb +43 -0
  292. data/lib/mongo/operation/find/legacy.rb +40 -0
  293. data/lib/mongo/operation/find/op_msg.rb +31 -0
  294. data/lib/mongo/operation/find/result.rb +73 -0
  295. data/lib/mongo/operation/find.rb +33 -0
  296. data/lib/mongo/operation/get_more/command.rb +39 -0
  297. data/lib/mongo/operation/get_more/legacy.rb +36 -0
  298. data/lib/mongo/operation/get_more/op_msg.rb +30 -0
  299. data/lib/mongo/operation/get_more/result.rb +72 -0
  300. data/lib/mongo/operation/get_more.rb +33 -0
  301. data/lib/mongo/operation/indexes/command.rb +39 -0
  302. data/lib/mongo/operation/indexes/legacy.rb +45 -0
  303. data/lib/mongo/operation/indexes/op_msg.rb +31 -0
  304. data/lib/mongo/operation/indexes/result.rb +102 -0
  305. data/lib/mongo/operation/indexes.rb +33 -0
  306. data/lib/mongo/operation/insert/bulk_result.rb +109 -0
  307. data/lib/mongo/operation/insert/command.rb +56 -0
  308. data/lib/mongo/operation/insert/legacy.rb +65 -0
  309. data/lib/mongo/operation/insert/op_msg.rb +51 -0
  310. data/lib/mongo/operation/insert/result.rb +72 -0
  311. data/lib/mongo/operation/insert.rb +41 -0
  312. data/lib/mongo/operation/kill_cursors/command.rb +37 -0
  313. data/lib/mongo/operation/kill_cursors/legacy.rb +37 -0
  314. data/lib/mongo/operation/kill_cursors/op_msg.rb +29 -0
  315. data/lib/mongo/operation/kill_cursors.rb +8 -16
  316. data/lib/mongo/operation/list_collections/command.rb +43 -0
  317. data/lib/mongo/operation/list_collections/op_msg.rb +36 -0
  318. data/lib/mongo/operation/list_collections/result.rb +107 -0
  319. data/lib/mongo/operation/list_collections.rb +32 -0
  320. data/lib/mongo/operation/map_reduce/command.rb +40 -0
  321. data/lib/mongo/operation/map_reduce/op_msg.rb +31 -0
  322. data/lib/mongo/operation/map_reduce/result.rb +139 -0
  323. data/lib/mongo/operation/map_reduce.rb +32 -0
  324. data/lib/mongo/operation/op_msg_base.rb +30 -0
  325. data/lib/mongo/operation/parallel_scan/command.rb +55 -0
  326. data/lib/mongo/operation/parallel_scan/op_msg.rb +43 -0
  327. data/lib/mongo/operation/parallel_scan/result.rb +65 -0
  328. data/lib/mongo/operation/parallel_scan.rb +32 -0
  329. data/lib/mongo/operation/remove_user/command.rb +43 -0
  330. data/lib/mongo/operation/remove_user/op_msg.rb +35 -0
  331. data/lib/mongo/operation/remove_user.rb +31 -0
  332. data/lib/mongo/operation/result.rb +190 -39
  333. data/lib/mongo/operation/shared/bypass_document_validation.rb +43 -0
  334. data/lib/mongo/operation/shared/causal_consistency_supported.rb +42 -0
  335. data/lib/mongo/operation/shared/collections_info_or_list_collections.rb +58 -0
  336. data/lib/mongo/operation/shared/executable.rb +106 -0
  337. data/lib/mongo/operation/shared/executable_no_validate.rb +29 -0
  338. data/lib/mongo/operation/shared/executable_transaction_label.rb +27 -0
  339. data/lib/mongo/operation/shared/idable.rb +65 -0
  340. data/lib/mongo/operation/shared/limited.rb +39 -0
  341. data/lib/mongo/operation/shared/object_id_generator.rb +37 -0
  342. data/lib/mongo/operation/shared/op_msg_or_command.rb +44 -0
  343. data/lib/mongo/operation/shared/op_msg_or_find_command.rb +47 -0
  344. data/lib/mongo/operation/shared/op_msg_or_list_indexes_command.rb +47 -0
  345. data/lib/mongo/operation/shared/polymorphic_lookup.rb +33 -0
  346. data/lib/mongo/operation/shared/polymorphic_result.rb +47 -0
  347. data/lib/mongo/operation/shared/read_preference_supported.rb +109 -0
  348. data/lib/mongo/operation/shared/response_handling.rb +169 -0
  349. data/lib/mongo/operation/shared/result/aggregatable.rb +71 -0
  350. data/lib/mongo/operation/shared/result/use_legacy_error_parser.rb +29 -0
  351. data/lib/mongo/operation/shared/sessions_supported.rb +239 -0
  352. data/lib/mongo/operation/shared/specifiable.rb +582 -0
  353. data/lib/mongo/operation/shared/write.rb +97 -0
  354. data/lib/mongo/operation/shared/write_concern_supported.rb +40 -0
  355. data/lib/mongo/operation/update/bulk_result.rb +126 -0
  356. data/lib/mongo/operation/update/command.rb +47 -0
  357. data/lib/mongo/operation/update/legacy/result.rb +109 -0
  358. data/lib/mongo/operation/update/legacy.rb +65 -0
  359. data/lib/mongo/operation/update/op_msg.rb +45 -0
  360. data/lib/mongo/operation/update/result.rb +110 -0
  361. data/lib/mongo/operation/update.rb +38 -0
  362. data/lib/mongo/operation/update_user/command.rb +42 -0
  363. data/lib/mongo/operation/update_user/op_msg.rb +35 -0
  364. data/lib/mongo/operation/update_user.rb +31 -0
  365. data/lib/mongo/operation/users_info/command.rb +43 -0
  366. data/lib/mongo/operation/users_info/op_msg.rb +36 -0
  367. data/lib/mongo/operation/users_info/result.rb +45 -0
  368. data/lib/mongo/operation/users_info.rb +32 -0
  369. data/lib/mongo/operation.rb +65 -22
  370. data/lib/mongo/options/mapper.rb +10 -3
  371. data/lib/mongo/options/redacted.rb +1 -1
  372. data/lib/mongo/options.rb +1 -1
  373. data/lib/mongo/protocol/bit_vector.rb +5 -4
  374. data/lib/mongo/protocol/compressed.rb +135 -0
  375. data/lib/mongo/protocol/delete.rb +9 -7
  376. data/lib/mongo/protocol/get_more.rb +17 -14
  377. data/lib/mongo/protocol/insert.rb +12 -8
  378. data/lib/mongo/protocol/kill_cursors.rb +15 -20
  379. data/lib/mongo/protocol/message.rb +166 -27
  380. data/lib/mongo/protocol/msg.rb +381 -0
  381. data/lib/mongo/protocol/query.rb +65 -10
  382. data/lib/mongo/protocol/registry.rb +76 -0
  383. data/lib/mongo/protocol/reply.rb +20 -15
  384. data/lib/mongo/protocol/serializers.rb +280 -12
  385. data/lib/mongo/protocol/update.rb +15 -9
  386. data/lib/mongo/protocol.rb +3 -0
  387. data/lib/mongo/query_cache.rb +242 -0
  388. data/lib/mongo/retryable.rb +411 -47
  389. data/lib/mongo/semaphore.rb +46 -0
  390. data/lib/mongo/server/app_metadata.rb +211 -0
  391. data/lib/mongo/server/connection.rb +223 -109
  392. data/lib/mongo/server/connection_base.rb +250 -0
  393. data/lib/mongo/server/connection_common.rb +135 -0
  394. data/lib/mongo/server/connection_pool/populator.rb +58 -0
  395. data/lib/mongo/server/connection_pool.rb +717 -58
  396. data/lib/mongo/server/context.rb +13 -13
  397. data/lib/mongo/server/description/features.rb +71 -14
  398. data/lib/mongo/server/description.rb +257 -70
  399. data/lib/mongo/server/monitor/app_metadata.rb +34 -0
  400. data/lib/mongo/server/monitor/connection.rb +177 -66
  401. data/lib/mongo/server/monitor.rb +232 -93
  402. data/lib/mongo/server/pending_connection.rb +255 -0
  403. data/lib/mongo/server/push_monitor/connection.rb +28 -0
  404. data/lib/mongo/server/push_monitor.rb +173 -0
  405. data/lib/mongo/server/round_trip_time_averager.rb +73 -0
  406. data/lib/mongo/server.rb +365 -54
  407. data/lib/mongo/server_selector/base.rb +622 -0
  408. data/lib/mongo/server_selector/nearest.rb +31 -20
  409. data/lib/mongo/server_selector/primary.rb +30 -14
  410. data/lib/mongo/server_selector/primary_preferred.rb +37 -24
  411. data/lib/mongo/server_selector/secondary.rb +31 -20
  412. data/lib/mongo/server_selector/secondary_preferred.rb +37 -22
  413. data/lib/mongo/server_selector.rb +14 -3
  414. data/lib/mongo/session/server_session.rb +119 -0
  415. data/lib/mongo/session/session_pool.rb +150 -0
  416. data/lib/mongo/session.rb +1067 -0
  417. data/lib/mongo/socket/ocsp_cache.rb +97 -0
  418. data/lib/mongo/socket/ocsp_verifier.rb +368 -0
  419. data/lib/mongo/socket/ssl.rb +278 -67
  420. data/lib/mongo/socket/tcp.rb +45 -32
  421. data/lib/mongo/socket/unix.rb +21 -34
  422. data/lib/mongo/socket.rb +273 -49
  423. data/lib/mongo/srv/monitor.rb +121 -0
  424. data/lib/mongo/srv/resolver.rb +134 -0
  425. data/lib/mongo/srv/result.rb +125 -0
  426. data/lib/mongo/srv.rb +17 -0
  427. data/lib/mongo/timeout.rb +51 -0
  428. data/lib/mongo/topology_version.rb +89 -0
  429. data/lib/mongo/uri/options_mapper.rb +582 -0
  430. data/lib/mongo/uri/srv_protocol.rb +238 -0
  431. data/lib/mongo/uri.rb +269 -320
  432. data/lib/mongo/utils.rb +73 -0
  433. data/lib/mongo/version.rb +2 -2
  434. data/lib/mongo/write_concern/acknowledged.rb +14 -4
  435. data/lib/mongo/write_concern/base.rb +67 -0
  436. data/lib/mongo/write_concern/unacknowledged.rb +14 -4
  437. data/lib/mongo/write_concern.rb +16 -35
  438. data/lib/mongo.rb +43 -5
  439. data/mongo.gemspec +14 -6
  440. data/spec/NOTES.aws-auth.md +296 -0
  441. data/spec/README.aws-auth.md +318 -0
  442. data/spec/README.md +692 -0
  443. data/spec/USERS.md +72 -0
  444. data/spec/atlas/atlas_connectivity_spec.rb +24 -0
  445. data/spec/atlas/operations_spec.rb +25 -0
  446. data/spec/integration/auth_spec.rb +266 -0
  447. data/spec/integration/awaited_ismaster_spec.rb +28 -0
  448. data/spec/integration/aws_auth_request_spec.rb +74 -0
  449. data/spec/integration/aws_credentials_retriever_spec.rb +103 -0
  450. data/spec/integration/bson_symbol_spec.rb +36 -0
  451. data/spec/integration/bulk_insert_spec.rb +80 -0
  452. data/spec/integration/bulk_write_spec.rb +67 -0
  453. data/spec/integration/change_stream_examples_spec.rb +205 -0
  454. data/spec/integration/change_stream_spec.rb +805 -0
  455. data/spec/integration/check_clean_slate_spec.rb +16 -0
  456. data/spec/integration/client_authentication_options_spec.rb +501 -0
  457. data/spec/integration/client_connectivity_spec.rb +38 -0
  458. data/spec/integration/client_construction_aws_auth_spec.rb +191 -0
  459. data/spec/integration/client_construction_spec.rb +236 -0
  460. data/spec/integration/client_side_encryption/auto_encryption_bulk_writes_spec.rb +357 -0
  461. data/spec/integration/client_side_encryption/auto_encryption_command_monitoring_spec.rb +303 -0
  462. data/spec/integration/client_side_encryption/auto_encryption_mongocryptd_spawn_spec.rb +72 -0
  463. data/spec/integration/client_side_encryption/auto_encryption_old_wire_version_spec.rb +79 -0
  464. data/spec/integration/client_side_encryption/auto_encryption_reconnect_spec.rb +221 -0
  465. data/spec/integration/client_side_encryption/auto_encryption_spec.rb +601 -0
  466. data/spec/integration/client_side_encryption/bson_size_limit_spec.rb +187 -0
  467. data/spec/integration/client_side_encryption/bypass_mongocryptd_spawn_spec.rb +78 -0
  468. data/spec/integration/client_side_encryption/client_close_spec.rb +63 -0
  469. data/spec/integration/client_side_encryption/corpus_spec.rb +233 -0
  470. data/spec/integration/client_side_encryption/custom_endpoint_spec.rb +132 -0
  471. data/spec/integration/client_side_encryption/data_key_spec.rb +165 -0
  472. data/spec/integration/client_side_encryption/explicit_encryption_spec.rb +114 -0
  473. data/spec/integration/client_side_encryption/external_key_vault_spec.rb +141 -0
  474. data/spec/integration/client_side_encryption/views_spec.rb +44 -0
  475. data/spec/integration/client_spec.rb +44 -0
  476. data/spec/integration/client_update_spec.rb +154 -0
  477. data/spec/integration/collection_indexes_prose_spec.rb +55 -0
  478. data/spec/integration/command_monitoring_spec.rb +146 -0
  479. data/spec/integration/command_spec.rb +176 -0
  480. data/spec/integration/connect_single_rs_name_spec.rb +72 -0
  481. data/spec/integration/connection_pool_populator_spec.rb +302 -0
  482. data/spec/integration/connection_spec.rb +331 -0
  483. data/spec/integration/crud_spec.rb +162 -0
  484. data/spec/integration/cursor_reaping_spec.rb +136 -0
  485. data/spec/integration/docs_examples_spec.rb +197 -0
  486. data/spec/integration/error_detection_spec.rb +39 -0
  487. data/spec/integration/fork_reconnect_spec.rb +198 -0
  488. data/spec/integration/get_more_spec.rb +39 -0
  489. data/spec/integration/grid_fs_bucket_spec.rb +48 -0
  490. data/spec/integration/heartbeat_events_spec.rb +99 -0
  491. data/spec/integration/mmapv1_spec.rb +28 -0
  492. data/spec/integration/mongos_pinning_spec.rb +34 -0
  493. data/spec/integration/ocsp_connectivity_spec.rb +26 -0
  494. data/spec/integration/ocsp_verifier_cache_spec.rb +188 -0
  495. data/spec/integration/ocsp_verifier_spec.rb +334 -0
  496. data/spec/integration/operation_failure_code_spec.rb +26 -0
  497. data/spec/integration/query_cache_spec.rb +1045 -0
  498. data/spec/integration/query_cache_transactions_spec.rb +190 -0
  499. data/spec/integration/read_concern_spec.rb +89 -0
  500. data/spec/integration/read_preference_spec.rb +541 -0
  501. data/spec/integration/reconnect_spec.rb +174 -0
  502. data/spec/integration/retryable_errors_spec.rb +283 -0
  503. data/spec/integration/retryable_writes/retryable_writes_36_and_older_spec.rb +761 -0
  504. data/spec/integration/retryable_writes/retryable_writes_40_and_newer_spec.rb +402 -0
  505. data/spec/integration/retryable_writes/shared/adds_diagnostics.rb +15 -0
  506. data/spec/integration/retryable_writes/shared/does_not_support_retries.rb +24 -0
  507. data/spec/integration/retryable_writes/shared/only_supports_legacy_retries.rb +25 -0
  508. data/spec/integration/retryable_writes/shared/performs_legacy_retries.rb +217 -0
  509. data/spec/integration/retryable_writes/shared/performs_modern_retries.rb +232 -0
  510. data/spec/integration/retryable_writes/shared/performs_no_retries.rb +110 -0
  511. data/spec/integration/retryable_writes/shared/supports_legacy_retries.rb +19 -0
  512. data/spec/integration/retryable_writes/shared/supports_modern_retries.rb +25 -0
  513. data/spec/integration/retryable_writes/shared/supports_retries.rb +16 -0
  514. data/spec/integration/retryable_writes_errors_spec.rb +31 -0
  515. data/spec/integration/sdam_error_handling_spec.rb +421 -0
  516. data/spec/integration/sdam_events_spec.rb +118 -0
  517. data/spec/integration/sdam_prose_spec.rb +64 -0
  518. data/spec/integration/server_description_spec.rb +45 -0
  519. data/spec/integration/server_monitor_spec.rb +52 -0
  520. data/spec/integration/server_selection_spec.rb +36 -0
  521. data/spec/integration/server_selector_spec.rb +85 -0
  522. data/spec/integration/server_spec.rb +64 -0
  523. data/spec/integration/shell_examples_spec.rb +981 -0
  524. data/spec/integration/size_limit_spec.rb +112 -0
  525. data/spec/integration/srv_monitoring_spec.rb +403 -0
  526. data/spec/integration/srv_spec.rb +56 -0
  527. data/spec/integration/ssl_uri_options_spec.rb +25 -0
  528. data/spec/integration/step_down_spec.rb +204 -0
  529. data/spec/integration/time_zone_querying_spec.rb +52 -0
  530. data/spec/integration/transactions_api_examples_spec.rb +59 -0
  531. data/spec/integration/transactions_examples_spec.rb +226 -0
  532. data/spec/integration/x509_auth_spec.rb +109 -0
  533. data/spec/integration/zlib_compression_spec.rb +25 -0
  534. data/spec/kerberos/kerberos_spec.rb +91 -0
  535. data/spec/lite_spec_helper.rb +158 -0
  536. data/spec/mongo/address/ipv4_spec.rb +5 -1
  537. data/spec/mongo/address/ipv6_spec.rb +33 -1
  538. data/spec/mongo/address/unix_spec.rb +1 -1
  539. data/spec/mongo/address/validator_spec.rb +51 -0
  540. data/spec/mongo/address_spec.rb +113 -7
  541. data/spec/mongo/auth/aws/request_region_spec.rb +42 -0
  542. data/spec/mongo/auth/aws/request_spec.rb +76 -0
  543. data/spec/mongo/auth/cr_spec.rb +30 -32
  544. data/spec/mongo/auth/gssapi/conversation_spec.rb +121 -0
  545. data/spec/mongo/auth/invalid_mechanism_spec.rb +11 -0
  546. data/spec/mongo/auth/ldap/conversation_spec.rb +2 -2
  547. data/spec/mongo/auth/ldap_spec.rb +11 -30
  548. data/spec/mongo/auth/scram/conversation_spec.rb +63 -58
  549. data/spec/mongo/auth/scram256/conversation_spec.rb +171 -0
  550. data/spec/mongo/auth/scram_negotiation_spec.rb +528 -0
  551. data/spec/mongo/auth/scram_spec.rb +92 -47
  552. data/spec/mongo/auth/stringprep/profiles/sasl_spec.rb +113 -0
  553. data/spec/mongo/auth/stringprep_spec.rb +188 -0
  554. data/spec/mongo/auth/user/view_spec.rb +401 -70
  555. data/spec/mongo/auth/user_spec.rb +162 -12
  556. data/spec/mongo/auth/x509/conversation_spec.rb +2 -2
  557. data/spec/mongo/auth/x509_spec.rb +40 -29
  558. data/spec/mongo/auth_spec.rb +4 -4
  559. data/spec/mongo/bulk_write/ordered_combiner_spec.rb +6 -6
  560. data/spec/mongo/bulk_write/result_spec.rb +124 -0
  561. data/spec/mongo/bulk_write/unordered_combiner_spec.rb +4 -4
  562. data/spec/mongo/bulk_write_spec.rb +803 -236
  563. data/spec/mongo/caching_cursor_spec.rb +70 -0
  564. data/spec/mongo/client_construction_spec.rb +2210 -0
  565. data/spec/mongo/client_encryption_spec.rb +411 -0
  566. data/spec/mongo/client_spec.rb +492 -431
  567. data/spec/mongo/cluster/cursor_reaper_spec.rb +40 -69
  568. data/spec/mongo/cluster/periodic_executor_spec.rb +16 -0
  569. data/spec/mongo/cluster/socket_reaper_spec.rb +43 -0
  570. data/spec/mongo/cluster/topology/replica_set_spec.rb +247 -226
  571. data/spec/mongo/cluster/topology/sharded_spec.rb +56 -55
  572. data/spec/mongo/cluster/topology/single_spec.rb +91 -31
  573. data/spec/mongo/cluster/topology/unknown_spec.rb +30 -115
  574. data/spec/mongo/cluster/topology_spec.rb +132 -19
  575. data/spec/mongo/cluster_spec.rb +447 -159
  576. data/spec/mongo/cluster_time_spec.rb +148 -0
  577. data/spec/mongo/collection/view/aggregation_spec.rb +143 -41
  578. data/spec/mongo/collection/view/builder/find_command_spec.rb +76 -10
  579. data/spec/mongo/collection/view/change_stream_resume_spec.rb +392 -0
  580. data/spec/mongo/collection/view/change_stream_spec.rb +531 -0
  581. data/spec/mongo/collection/view/explainable_spec.rb +88 -5
  582. data/spec/mongo/collection/view/immutable_spec.rb +1 -1
  583. data/spec/mongo/collection/view/iterable_spec.rb +38 -0
  584. data/spec/mongo/collection/view/map_reduce_spec.rb +253 -32
  585. data/spec/mongo/collection/view/readable_spec.rb +125 -60
  586. data/spec/mongo/collection/view/writable_spec.rb +273 -34
  587. data/spec/mongo/collection/view_spec.rb +10 -9
  588. data/spec/mongo/collection_spec.rb +2533 -232
  589. data/spec/mongo/crypt/auto_decryption_context_spec.rb +90 -0
  590. data/spec/mongo/crypt/auto_encrypter_spec.rb +187 -0
  591. data/spec/mongo/crypt/auto_encryption_context_spec.rb +107 -0
  592. data/spec/mongo/crypt/binary_spec.rb +110 -0
  593. data/spec/mongo/crypt/binding/binary_spec.rb +51 -0
  594. data/spec/mongo/crypt/binding/context_spec.rb +252 -0
  595. data/spec/mongo/crypt/binding/helpers_spec.rb +41 -0
  596. data/spec/mongo/crypt/binding/mongocrypt_spec.rb +139 -0
  597. data/spec/mongo/crypt/binding/status_spec.rb +94 -0
  598. data/spec/mongo/crypt/binding/version_spec.rb +17 -0
  599. data/spec/mongo/crypt/binding_unloaded_spec.rb +20 -0
  600. data/spec/mongo/crypt/data_key_context_spec.rb +213 -0
  601. data/spec/mongo/crypt/encryption_io_spec.rb +136 -0
  602. data/spec/mongo/crypt/explicit_decryption_context_spec.rb +72 -0
  603. data/spec/mongo/crypt/explicit_encryption_context_spec.rb +170 -0
  604. data/spec/mongo/crypt/handle_spec.rb +232 -0
  605. data/spec/mongo/crypt/helpers/mongo_crypt_spec_helper.rb +108 -0
  606. data/spec/mongo/crypt/status_spec.rb +147 -0
  607. data/spec/mongo/cursor/builder/get_more_command_spec.rb +37 -11
  608. data/spec/mongo/cursor/builder/op_get_more_spec.rb +11 -4
  609. data/spec/mongo/cursor/builder/op_kill_cursors_spec.rb +61 -0
  610. data/spec/mongo/cursor_spec.rb +317 -46
  611. data/spec/mongo/database_spec.rb +739 -65
  612. data/spec/mongo/distinguishing_semaphore_spec.rb +63 -0
  613. data/spec/mongo/error/bulk_write_error_spec.rb +49 -0
  614. data/spec/mongo/error/crypt_error_spec.rb +26 -0
  615. data/spec/mongo/error/max_bson_size_spec.rb +35 -0
  616. data/spec/mongo/error/no_server_available_spec.rb +32 -0
  617. data/spec/mongo/error/notable_spec.rb +59 -0
  618. data/spec/mongo/error/operation_failure_heavy_spec.rb +58 -0
  619. data/spec/mongo/error/operation_failure_spec.rb +490 -0
  620. data/spec/mongo/error/parser_spec.rb +392 -5
  621. data/spec/mongo/error/unsupported_option_spec.rb +54 -0
  622. data/spec/mongo/grid/file/info_spec.rb +3 -3
  623. data/spec/mongo/grid/fs_bucket_spec.rb +299 -191
  624. data/spec/mongo/grid/stream/read_spec.rb +13 -19
  625. data/spec/mongo/grid/stream/write_spec.rb +88 -28
  626. data/spec/mongo/id_spec.rb +35 -0
  627. data/spec/mongo/index/view_spec.rb +511 -140
  628. data/spec/mongo/lint_spec.rb +228 -0
  629. data/spec/mongo/logger_spec.rb +14 -12
  630. data/spec/mongo/monitoring/event/cmap/connection_check_out_failed_spec.rb +23 -0
  631. data/spec/mongo/monitoring/event/cmap/connection_check_out_started_spec.rb +19 -0
  632. data/spec/mongo/monitoring/event/cmap/connection_checked_in_spec.rb +30 -0
  633. data/spec/mongo/monitoring/event/cmap/connection_checked_out_spec.rb +30 -0
  634. data/spec/mongo/monitoring/event/cmap/connection_closed_spec.rb +27 -0
  635. data/spec/mongo/monitoring/event/cmap/connection_created_spec.rb +24 -0
  636. data/spec/mongo/monitoring/event/cmap/connection_ready_spec.rb +24 -0
  637. data/spec/mongo/monitoring/event/cmap/pool_cleared_spec.rb +19 -0
  638. data/spec/mongo/monitoring/event/cmap/pool_closed_spec.rb +26 -0
  639. data/spec/mongo/monitoring/event/cmap/pool_created_spec.rb +33 -0
  640. data/spec/mongo/monitoring/event/command_failed_spec.rb +30 -0
  641. data/spec/mongo/monitoring/event/command_started_spec.rb +27 -5
  642. data/spec/mongo/monitoring/event/command_succeeded_spec.rb +30 -8
  643. data/spec/mongo/monitoring/event/secure_spec.rb +43 -1
  644. data/spec/mongo/monitoring/event/server_closed_spec.rb +35 -0
  645. data/spec/mongo/monitoring/event/server_description_changed_spec.rb +35 -0
  646. data/spec/mongo/monitoring/event/server_heartbeat_failed_spec.rb +31 -0
  647. data/spec/mongo/monitoring/event/server_heartbeat_started_spec.rb +31 -0
  648. data/spec/mongo/monitoring/event/server_heartbeat_succeeded_spec.rb +31 -0
  649. data/spec/mongo/monitoring/event/server_opening_spec.rb +35 -0
  650. data/spec/mongo/monitoring/event/topology_changed_spec.rb +41 -0
  651. data/spec/mongo/monitoring/event/topology_closed_spec.rb +35 -0
  652. data/spec/mongo/monitoring/event/topology_opening_spec.rb +35 -0
  653. data/spec/mongo/monitoring_spec.rb +30 -5
  654. data/spec/mongo/operation/aggregate/result_spec.rb +85 -0
  655. data/spec/mongo/operation/aggregate_spec.rb +72 -0
  656. data/spec/mongo/operation/collections_info_spec.rb +42 -0
  657. data/spec/mongo/operation/command_spec.rb +80 -0
  658. data/spec/mongo/operation/create_index_spec.rb +56 -0
  659. data/spec/mongo/operation/create_user_spec.rb +47 -0
  660. data/spec/mongo/operation/delete/bulk_spec.rb +239 -0
  661. data/spec/mongo/operation/delete/command_spec.rb +112 -0
  662. data/spec/mongo/operation/delete/op_msg_spec.rb +254 -0
  663. data/spec/mongo/operation/delete_spec.rb +226 -0
  664. data/spec/mongo/operation/drop_index_spec.rb +54 -0
  665. data/spec/mongo/operation/find/legacy_spec.rb +125 -0
  666. data/spec/mongo/operation/get_more_spec.rb +58 -0
  667. data/spec/mongo/operation/indexes_spec.rb +34 -0
  668. data/spec/mongo/operation/insert/bulk_spec.rb +267 -0
  669. data/spec/mongo/operation/insert/command_spec.rb +115 -0
  670. data/spec/mongo/operation/insert/op_msg_spec.rb +285 -0
  671. data/spec/mongo/operation/insert_spec.rb +284 -0
  672. data/spec/mongo/operation/kill_cursors_spec.rb +4 -4
  673. data/spec/mongo/operation/limited_spec.rb +5 -3
  674. data/spec/mongo/operation/map_reduce_spec.rb +125 -0
  675. data/spec/mongo/operation/read_preference_legacy_spec.rb +363 -0
  676. data/spec/mongo/operation/read_preference_op_msg_spec.rb +304 -0
  677. data/spec/mongo/operation/remove_user_spec.rb +46 -0
  678. data/spec/mongo/operation/result_spec.rb +39 -4
  679. data/spec/mongo/operation/specifiable_spec.rb +2 -2
  680. data/spec/mongo/operation/update/bulk_spec.rb +233 -0
  681. data/spec/mongo/operation/update/command_spec.rb +119 -0
  682. data/spec/mongo/operation/update/op_msg_spec.rb +260 -0
  683. data/spec/mongo/operation/update_spec.rb +258 -0
  684. data/spec/mongo/operation/update_user_spec.rb +46 -0
  685. data/spec/mongo/protocol/compressed_spec.rb +66 -0
  686. data/spec/mongo/protocol/delete_spec.rb +24 -9
  687. data/spec/mongo/protocol/get_more_spec.rb +26 -11
  688. data/spec/mongo/protocol/insert_spec.rb +24 -9
  689. data/spec/mongo/protocol/kill_cursors_spec.rb +21 -6
  690. data/spec/mongo/protocol/msg_spec.rb +525 -0
  691. data/spec/mongo/protocol/query_spec.rb +56 -11
  692. data/spec/mongo/protocol/registry_spec.rb +31 -0
  693. data/spec/mongo/protocol/reply_spec.rb +15 -1
  694. data/spec/mongo/protocol/update_spec.rb +25 -10
  695. data/spec/mongo/query_cache_spec.rb +280 -0
  696. data/spec/mongo/retryable_spec.rb +464 -97
  697. data/spec/mongo/semaphore_spec.rb +51 -0
  698. data/spec/mongo/server/app_metadata_shared.rb +136 -0
  699. data/spec/mongo/server/app_metadata_spec.rb +145 -0
  700. data/spec/mongo/server/connection_auth_spec.rb +139 -0
  701. data/spec/mongo/server/connection_pool/populator_spec.rb +101 -0
  702. data/spec/mongo/server/connection_pool_spec.rb +894 -88
  703. data/spec/mongo/server/connection_spec.rb +786 -164
  704. data/spec/mongo/server/description/features_spec.rb +51 -37
  705. data/spec/mongo/server/description_query_methods_spec.rb +288 -0
  706. data/spec/mongo/server/description_spec.rb +186 -242
  707. data/spec/mongo/server/monitor/app_metadata_spec.rb +23 -0
  708. data/spec/mongo/server/monitor/connection_spec.rb +125 -0
  709. data/spec/mongo/server/monitor_spec.rb +165 -100
  710. data/spec/mongo/server/round_trip_time_averager_spec.rb +45 -0
  711. data/spec/mongo/server_selector/nearest_spec.rb +24 -23
  712. data/spec/mongo/server_selector/primary_preferred_spec.rb +27 -26
  713. data/spec/mongo/server_selector/primary_spec.rb +27 -9
  714. data/spec/mongo/server_selector/secondary_preferred_spec.rb +40 -23
  715. data/spec/mongo/server_selector/secondary_spec.rb +19 -18
  716. data/spec/mongo/server_selector_spec.rb +260 -4
  717. data/spec/mongo/server_spec.rb +294 -78
  718. data/spec/mongo/session/server_session_spec.rb +59 -0
  719. data/spec/mongo/session/session_pool_spec.rb +237 -0
  720. data/spec/mongo/session_spec.rb +345 -0
  721. data/spec/mongo/session_transaction_spec.rb +226 -0
  722. data/spec/mongo/socket/ssl_spec.rb +459 -168
  723. data/spec/mongo/socket/tcp_spec.rb +14 -0
  724. data/spec/mongo/socket/unix_spec.rb +9 -9
  725. data/spec/mongo/socket_spec.rb +116 -0
  726. data/spec/mongo/srv/monitor_spec.rb +230 -0
  727. data/spec/mongo/srv/result_spec.rb +54 -0
  728. data/spec/mongo/timeout_spec.rb +39 -0
  729. data/spec/mongo/uri/srv_protocol_spec.rb +1104 -0
  730. data/spec/mongo/uri_option_parsing_spec.rb +589 -0
  731. data/spec/mongo/uri_spec.rb +443 -93
  732. data/spec/mongo/utils_spec.rb +39 -0
  733. data/spec/mongo/write_concern/acknowledged_spec.rb +11 -0
  734. data/spec/mongo/write_concern/unacknowledged_spec.rb +11 -0
  735. data/spec/mongo/write_concern_spec.rb +69 -4
  736. data/spec/runners/auth.rb +119 -0
  737. data/spec/runners/change_streams/outcome.rb +42 -0
  738. data/spec/runners/change_streams/spec.rb +57 -0
  739. data/spec/runners/change_streams/test.rb +229 -0
  740. data/spec/runners/cmap/verifier.rb +45 -0
  741. data/spec/runners/cmap.rb +370 -0
  742. data/spec/runners/command_monitoring.rb +343 -0
  743. data/spec/runners/connection_string.rb +382 -0
  744. data/spec/runners/crud/context.rb +27 -0
  745. data/spec/runners/crud/operation.rb +466 -0
  746. data/spec/runners/crud/outcome.rb +53 -0
  747. data/spec/runners/crud/requirement.rb +69 -0
  748. data/spec/runners/crud/spec.rb +70 -0
  749. data/spec/runners/crud/test.rb +120 -0
  750. data/spec/runners/crud/test_base.rb +50 -0
  751. data/spec/runners/crud/verifier.rb +206 -0
  752. data/spec/runners/crud.rb +235 -0
  753. data/spec/runners/gridfs.rb +638 -0
  754. data/spec/runners/read_write_concern_document.rb +67 -0
  755. data/spec/runners/sdam/verifier.rb +109 -0
  756. data/spec/runners/sdam.rb +275 -0
  757. data/spec/runners/server_selection.rb +362 -0
  758. data/spec/runners/server_selection_rtt.rb +38 -0
  759. data/spec/runners/transactions/operation.rb +314 -0
  760. data/spec/runners/transactions/spec.rb +26 -0
  761. data/spec/runners/transactions/test.rb +322 -0
  762. data/spec/runners/transactions.rb +101 -0
  763. data/spec/shared/LICENSE +20 -0
  764. data/spec/shared/lib/mrss/child_process_helper.rb +80 -0
  765. data/spec/shared/lib/mrss/constraints.rb +303 -0
  766. data/spec/shared/lib/mrss/lite_constraints.rb +175 -0
  767. data/spec/shared/lib/mrss/spec_organizer.rb +149 -0
  768. data/spec/spec_helper.rb +17 -197
  769. data/spec/spec_tests/auth_spec.rb +41 -0
  770. data/spec/spec_tests/change_streams_spec.rb +90 -0
  771. data/spec/spec_tests/client_side_encryption_spec.rb +11 -0
  772. data/spec/spec_tests/cmap_spec.rb +106 -0
  773. data/spec/spec_tests/command_monitoring_spec.rb +66 -0
  774. data/spec/spec_tests/connection_string_spec.rb +7 -0
  775. data/spec/spec_tests/crud_spec.rb +19 -0
  776. data/spec/spec_tests/data/auth/connection-string.yml +366 -0
  777. data/spec/spec_tests/data/change_streams/change-streams-errors.yml +101 -0
  778. data/spec/spec_tests/data/change_streams/change-streams-resume-errorLabels.yml +1105 -0
  779. data/spec/spec_tests/data/change_streams/change-streams-resume-whitelist.yml +1173 -0
  780. data/spec/spec_tests/data/change_streams/change-streams.yml +536 -0
  781. data/spec/spec_tests/data/client_side_encryption/aggregate.yml +134 -0
  782. data/spec/spec_tests/data/client_side_encryption/badQueries.yml +526 -0
  783. data/spec/spec_tests/data/client_side_encryption/badSchema.yml +73 -0
  784. data/spec/spec_tests/data/client_side_encryption/basic.yml +116 -0
  785. data/spec/spec_tests/data/client_side_encryption/bulk.yml +88 -0
  786. data/spec/spec_tests/data/client_side_encryption/bypassAutoEncryption.yml +100 -0
  787. data/spec/spec_tests/data/client_side_encryption/bypassedCommand.yml +42 -0
  788. data/spec/spec_tests/data/client_side_encryption/count.yml +61 -0
  789. data/spec/spec_tests/data/client_side_encryption/countDocuments.yml +59 -0
  790. data/spec/spec_tests/data/client_side_encryption/delete.yml +105 -0
  791. data/spec/spec_tests/data/client_side_encryption/distinct.yml +73 -0
  792. data/spec/spec_tests/data/client_side_encryption/explain.yml +64 -0
  793. data/spec/spec_tests/data/client_side_encryption/find.yml +119 -0
  794. data/spec/spec_tests/data/client_side_encryption/findOneAndDelete.yml +57 -0
  795. data/spec/spec_tests/data/client_side_encryption/findOneAndReplace.yml +57 -0
  796. data/spec/spec_tests/data/client_side_encryption/findOneAndUpdate.yml +57 -0
  797. data/spec/spec_tests/data/client_side_encryption/getMore.yml +68 -0
  798. data/spec/spec_tests/data/client_side_encryption/insert.yml +102 -0
  799. data/spec/spec_tests/data/client_side_encryption/keyAltName.yml +71 -0
  800. data/spec/spec_tests/data/client_side_encryption/localKMS.yml +54 -0
  801. data/spec/spec_tests/data/client_side_encryption/localSchema.yml +72 -0
  802. data/spec/spec_tests/data/client_side_encryption/malformedCiphertext.yml +69 -0
  803. data/spec/spec_tests/data/client_side_encryption/maxWireVersion.yml +20 -0
  804. data/spec/spec_tests/data/client_side_encryption/missingKey.yml +49 -0
  805. data/spec/spec_tests/data/client_side_encryption/replaceOne.yml +64 -0
  806. data/spec/spec_tests/data/client_side_encryption/types.yml +527 -0
  807. data/spec/spec_tests/data/client_side_encryption/unsupportedCommand.yml +25 -0
  808. data/spec/spec_tests/data/client_side_encryption/updateMany.yml +77 -0
  809. data/spec/spec_tests/data/client_side_encryption/updateOne.yml +171 -0
  810. data/spec/spec_tests/data/cmap/connection-must-have-id.yml +27 -0
  811. data/spec/spec_tests/data/cmap/connection-must-order-ids.yml +27 -0
  812. data/spec/spec_tests/data/cmap/pool-checkin-destroy-closed.yml +27 -0
  813. data/spec/spec_tests/data/cmap/pool-checkin-destroy-stale.yml +27 -0
  814. data/spec/spec_tests/data/cmap/pool-checkin-make-available.yml +24 -0
  815. data/spec/spec_tests/data/cmap/pool-checkin.yml +19 -0
  816. data/spec/spec_tests/data/cmap/pool-checkout-connection.yml +19 -0
  817. data/spec/spec_tests/data/cmap/pool-checkout-error-closed.yml +36 -0
  818. data/spec/spec_tests/data/cmap/pool-checkout-multiple.yml +37 -0
  819. data/spec/spec_tests/data/cmap/pool-checkout-no-idle.yml +35 -0
  820. data/spec/spec_tests/data/cmap/pool-checkout-no-stale.yml +33 -0
  821. data/spec/spec_tests/data/cmap/pool-close-destroy-conns.yml +28 -0
  822. data/spec/spec_tests/data/cmap/pool-close.yml +11 -0
  823. data/spec/spec_tests/data/cmap/pool-create-max-size.yml +71 -0
  824. data/spec/spec_tests/data/cmap/pool-create-min-size.yml +34 -0
  825. data/spec/spec_tests/data/cmap/pool-create-with-options.yml +21 -0
  826. data/spec/spec_tests/data/cmap/pool-create.yml +12 -0
  827. data/spec/spec_tests/data/cmap/wait-queue-fairness.yml +124 -0
  828. data/spec/spec_tests/data/cmap/wait-queue-timeout.yml +46 -0
  829. data/spec/spec_tests/data/command_monitoring/bulkWrite.yml +49 -0
  830. data/spec/spec_tests/data/command_monitoring/command.yml +61 -0
  831. data/spec/spec_tests/data/command_monitoring/find.yml +266 -0
  832. data/spec/spec_tests/data/command_monitoring/insertMany.yml +75 -0
  833. data/spec/spec_tests/data/command_monitoring/unacknowledgedBulkWrite.yml +34 -0
  834. data/spec/spec_tests/data/command_monitoring/updateMany.yml +65 -0
  835. data/spec/spec_tests/data/command_monitoring/updateOne.yml +90 -0
  836. data/spec/spec_tests/data/connection_string/invalid-uris.yml +261 -0
  837. data/spec/spec_tests/data/connection_string/valid-auth.yml +257 -0
  838. data/spec/spec_tests/data/connection_string/valid-db-with-dotted-name.yml +77 -0
  839. data/spec/spec_tests/data/connection_string/valid-options.yml +17 -0
  840. data/spec/spec_tests/data/connection_string/valid-unix_socket-absolute.yml +197 -0
  841. data/spec/spec_tests/data/connection_string/valid-unix_socket-relative.yml +213 -0
  842. data/spec/spec_tests/data/connection_string/valid-warnings.yml +75 -0
  843. data/spec/spec_tests/data/crud/read/aggregate-out.yml +43 -0
  844. data/spec/spec_tests/data/crud/read/count-collation.yml +25 -0
  845. data/spec/spec_tests/data/crud/read/count-empty.yml +29 -0
  846. data/spec/spec_tests/data/crud/read/count.yml +74 -0
  847. data/spec/spec_tests/data/crud/write/bulkWrite-arrayFilters.yml +45 -0
  848. data/spec/spec_tests/data/crud/write/bulkWrite-collation.yml +101 -0
  849. data/spec/spec_tests/data/crud/write/bulkWrite.yml +401 -0
  850. data/spec/spec_tests/data/crud/write/findOneAndReplace-upsert.yml +91 -0
  851. data/spec/spec_tests/data/crud/write/findOneAndReplace-upsert_pre_2.6.yml +88 -0
  852. data/spec/spec_tests/data/crud/write/findOneAndReplace.yml +113 -0
  853. data/spec/spec_tests/data/crud/write/findOneAndUpdate-arrayFilters.yml +69 -0
  854. data/spec/spec_tests/data/crud/write/findOneAndUpdate.yml +163 -0
  855. data/spec/spec_tests/data/crud/write/insertMany.yml +77 -0
  856. data/spec/spec_tests/data/crud/write/replaceOne-collation.yml +24 -0
  857. data/spec/spec_tests/data/crud/write/replaceOne-pre_2.6.yml +98 -0
  858. data/spec/spec_tests/data/crud/write/replaceOne.yml +102 -0
  859. data/spec/spec_tests/data/crud/write/updateMany-arrayFilters.yml +66 -0
  860. data/spec/spec_tests/data/crud/write/updateMany-collation.yml +28 -0
  861. data/spec/spec_tests/data/crud/write/updateMany-pre_2.6.yml +86 -0
  862. data/spec/spec_tests/data/crud/write/updateMany.yml +87 -0
  863. data/spec/spec_tests/data/crud/write/updateOne-arrayFilters.yml +114 -0
  864. data/spec/spec_tests/data/crud/write/updateOne-collation.yml +25 -0
  865. data/spec/spec_tests/data/crud/write/updateOne-pre_2.6.yml +83 -0
  866. data/spec/spec_tests/data/crud/write/updateOne.yml +84 -0
  867. data/spec/spec_tests/data/crud_v2/aggregate-merge.yml +103 -0
  868. data/spec/spec_tests/data/crud_v2/aggregate-out-readConcern.yml +110 -0
  869. data/spec/spec_tests/data/crud_v2/bulkWrite-arrayFilters.yml +103 -0
  870. data/spec/spec_tests/data/crud_v2/bulkWrite-delete-hint-clientError.yml +63 -0
  871. data/spec/spec_tests/data/crud_v2/bulkWrite-delete-hint-serverError.yml +92 -0
  872. data/spec/spec_tests/data/crud_v2/bulkWrite-delete-hint.yml +103 -0
  873. data/spec/spec_tests/data/crud_v2/bulkWrite-update-hint-clientError.yml +90 -0
  874. data/spec/spec_tests/data/crud_v2/bulkWrite-update-hint-serverError.yml +147 -0
  875. data/spec/spec_tests/data/crud_v2/bulkWrite-update-hint.yml +164 -0
  876. data/spec/spec_tests/data/crud_v2/db-aggregate.yml +38 -0
  877. data/spec/spec_tests/data/crud_v2/deleteMany-hint-clientError.yml +43 -0
  878. data/spec/spec_tests/data/crud_v2/deleteMany-hint-serverError.yml +62 -0
  879. data/spec/spec_tests/data/crud_v2/deleteMany-hint.yml +58 -0
  880. data/spec/spec_tests/data/crud_v2/deleteOne-hint-clientError.yml +41 -0
  881. data/spec/spec_tests/data/crud_v2/deleteOne-hint-serverError.yml +60 -0
  882. data/spec/spec_tests/data/crud_v2/deleteOne-hint.yml +57 -0
  883. data/spec/spec_tests/data/crud_v2/find-allowdiskuse-clientError.yml +28 -0
  884. data/spec/spec_tests/data/crud_v2/find-allowdiskuse-serverError.yml +44 -0
  885. data/spec/spec_tests/data/crud_v2/find-allowdiskuse.yml +50 -0
  886. data/spec/spec_tests/data/crud_v2/findOneAndDelete-hint-clientError.yml +45 -0
  887. data/spec/spec_tests/data/crud_v2/findOneAndDelete-hint-serverError.yml +60 -0
  888. data/spec/spec_tests/data/crud_v2/findOneAndDelete-hint.yml +56 -0
  889. data/spec/spec_tests/data/crud_v2/findOneAndReplace-hint-clientError.yml +40 -0
  890. data/spec/spec_tests/data/crud_v2/findOneAndReplace-hint-serverError.yml +59 -0
  891. data/spec/spec_tests/data/crud_v2/findOneAndReplace-hint.yml +55 -0
  892. data/spec/spec_tests/data/crud_v2/findOneAndUpdate-hint-clientError.yml +40 -0
  893. data/spec/spec_tests/data/crud_v2/findOneAndUpdate-hint-serverError.yml +58 -0
  894. data/spec/spec_tests/data/crud_v2/findOneAndUpdate-hint.yml +55 -0
  895. data/spec/spec_tests/data/crud_v2/replaceOne-hint.yml +61 -0
  896. data/spec/spec_tests/data/crud_v2/unacknowledged-bulkWrite-delete-hint-clientError.yml +60 -0
  897. data/spec/spec_tests/data/crud_v2/unacknowledged-bulkWrite-update-hint-clientError.yml +88 -0
  898. data/spec/spec_tests/data/crud_v2/unacknowledged-deleteMany-hint-clientError.yml +40 -0
  899. data/spec/spec_tests/data/crud_v2/unacknowledged-deleteOne-hint-clientError.yml +38 -0
  900. data/spec/spec_tests/data/crud_v2/unacknowledged-findOneAndDelete-hint-clientError.yml +42 -0
  901. data/spec/spec_tests/data/crud_v2/unacknowledged-findOneAndReplace-hint-clientError.yml +40 -0
  902. data/spec/spec_tests/data/crud_v2/unacknowledged-findOneAndUpdate-hint-clientError.yml +40 -0
  903. data/spec/spec_tests/data/crud_v2/unacknowledged-replaceOne-hint-clientError.yml +40 -0
  904. data/spec/spec_tests/data/crud_v2/unacknowledged-updateMany-hint-clientError.yml +43 -0
  905. data/spec/spec_tests/data/crud_v2/unacknowledged-updateOne-hint-clientError.yml +40 -0
  906. data/spec/spec_tests/data/crud_v2/updateMany-hint-clientError.yml +45 -0
  907. data/spec/spec_tests/data/crud_v2/updateMany-hint-serverError.yml +66 -0
  908. data/spec/spec_tests/data/crud_v2/updateMany-hint.yml +65 -0
  909. data/spec/spec_tests/data/crud_v2/updateOne-hint-clientError.yml +43 -0
  910. data/spec/spec_tests/data/crud_v2/updateOne-hint-serverError.yml +62 -0
  911. data/spec/spec_tests/data/crud_v2/updateOne-hint.yml +61 -0
  912. data/spec/spec_tests/data/crud_v2/updateWithPipelines.yml +157 -0
  913. data/spec/spec_tests/data/dns_seedlist_discovery/direct-connection-false.yml +10 -0
  914. data/spec/spec_tests/data/dns_seedlist_discovery/direct-connection-true.yml +5 -0
  915. data/spec/spec_tests/data/dns_seedlist_discovery/longer-parent-in-return.yml +11 -0
  916. data/spec/spec_tests/data/dns_seedlist_discovery/misformatted-option.yml +5 -0
  917. data/spec/spec_tests/data/dns_seedlist_discovery/no-results.yml +5 -0
  918. data/spec/spec_tests/data/dns_seedlist_discovery/not-enough-parts.yml +5 -0
  919. data/spec/spec_tests/data/dns_seedlist_discovery/one-result-default-port.yml +10 -0
  920. data/spec/spec_tests/data/dns_seedlist_discovery/one-txt-record-multiple-strings.yml +10 -0
  921. data/spec/spec_tests/data/dns_seedlist_discovery/one-txt-record.yml +11 -0
  922. data/spec/spec_tests/data/dns_seedlist_discovery/parent-part-mismatch1.yml +5 -0
  923. data/spec/spec_tests/data/dns_seedlist_discovery/parent-part-mismatch2.yml +5 -0
  924. data/spec/spec_tests/data/dns_seedlist_discovery/parent-part-mismatch3.yml +5 -0
  925. data/spec/spec_tests/data/dns_seedlist_discovery/parent-part-mismatch4.yml +5 -0
  926. data/spec/spec_tests/data/dns_seedlist_discovery/parent-part-mismatch5.yml +5 -0
  927. data/spec/spec_tests/data/dns_seedlist_discovery/returned-parent-too-short.yml +5 -0
  928. data/spec/spec_tests/data/dns_seedlist_discovery/returned-parent-wrong.yml +5 -0
  929. data/spec/spec_tests/data/dns_seedlist_discovery/two-results-default-port.yml +11 -0
  930. data/spec/spec_tests/data/dns_seedlist_discovery/two-results-nonstandard-port.yml +11 -0
  931. data/spec/spec_tests/data/dns_seedlist_discovery/two-txt-records.yml +5 -0
  932. data/spec/spec_tests/data/dns_seedlist_discovery/txt-record-not-allowed-option.yml +5 -0
  933. data/spec/spec_tests/data/dns_seedlist_discovery/txt-record-with-overridden-ssl-option.yml +11 -0
  934. data/spec/spec_tests/data/dns_seedlist_discovery/txt-record-with-overridden-uri-option.yml +11 -0
  935. data/spec/spec_tests/data/dns_seedlist_discovery/txt-record-with-unallowed-option.yml +5 -0
  936. data/spec/spec_tests/data/dns_seedlist_discovery/uri-with-port.yml +5 -0
  937. data/spec/spec_tests/data/dns_seedlist_discovery/uri-with-two-hosts.yml +5 -0
  938. data/spec/spec_tests/data/gridfs/delete.yml +123 -0
  939. data/spec/spec_tests/data/gridfs/download.yml +192 -0
  940. data/spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/NoKnownServers.yml +16 -0
  941. data/spec/spec_tests/data/max_staleness/Unknown/SmallMaxStaleness.yml +15 -0
  942. data/spec/spec_tests/data/read_write_concern/connection-string/read-concern.yml +32 -0
  943. data/spec/spec_tests/data/read_write_concern/connection-string/write-concern.yml +79 -0
  944. data/spec/spec_tests/data/read_write_concern/document/read-concern.yml +37 -0
  945. data/spec/spec_tests/data/read_write_concern/document/write-concern.yml +100 -0
  946. data/spec/spec_tests/data/read_write_concern/operation/default-write-concern-2.6.yml +215 -0
  947. data/spec/spec_tests/data/read_write_concern/operation/default-write-concern-3.2.yml +58 -0
  948. data/spec/spec_tests/data/read_write_concern/operation/default-write-concern-3.4.yml +95 -0
  949. data/spec/spec_tests/data/read_write_concern/operation/default-write-concern-4.2.yml +36 -0
  950. data/spec/spec_tests/data/retryable_reads/aggregate-merge.yml +39 -0
  951. data/spec/spec_tests/data/retryable_reads/aggregate-serverErrors.yml +157 -0
  952. data/spec/spec_tests/data/retryable_reads/aggregate.yml +87 -0
  953. data/spec/spec_tests/data/retryable_reads/changeStreams-client.watch-serverErrors.yml +149 -0
  954. data/spec/spec_tests/data/retryable_reads/changeStreams-client.watch.yml +61 -0
  955. data/spec/spec_tests/data/retryable_reads/changeStreams-db.coll.watch-serverErrors.yml +149 -0
  956. data/spec/spec_tests/data/retryable_reads/changeStreams-db.coll.watch.yml +65 -0
  957. data/spec/spec_tests/data/retryable_reads/changeStreams-db.watch-serverErrors.yml +153 -0
  958. data/spec/spec_tests/data/retryable_reads/changeStreams-db.watch.yml +61 -0
  959. data/spec/spec_tests/data/retryable_reads/count-serverErrors.yml +150 -0
  960. data/spec/spec_tests/data/retryable_reads/count.yml +64 -0
  961. data/spec/spec_tests/data/retryable_reads/countDocuments-serverErrors.yml +150 -0
  962. data/spec/spec_tests/data/retryable_reads/countDocuments.yml +64 -0
  963. data/spec/spec_tests/data/retryable_reads/distinct-serverErrors.yml +156 -0
  964. data/spec/spec_tests/data/retryable_reads/distinct.yml +71 -0
  965. data/spec/spec_tests/data/retryable_reads/estimatedDocumentCount-serverErrors.yml +148 -0
  966. data/spec/spec_tests/data/retryable_reads/estimatedDocumentCount.yml +62 -0
  967. data/spec/spec_tests/data/retryable_reads/find-serverErrors.yml +160 -0
  968. data/spec/spec_tests/data/retryable_reads/find.yml +86 -0
  969. data/spec/spec_tests/data/retryable_reads/findOne-serverErrors.yml +154 -0
  970. data/spec/spec_tests/data/retryable_reads/findOne.yml +68 -0
  971. data/spec/spec_tests/data/retryable_reads/gridfs-download-serverErrors.yml +173 -0
  972. data/spec/spec_tests/data/retryable_reads/gridfs-download.yml +79 -0
  973. data/spec/spec_tests/data/retryable_reads/gridfs-downloadByName-serverErrors.yml +174 -0
  974. data/spec/spec_tests/data/retryable_reads/gridfs-downloadByName.yml +79 -0
  975. data/spec/spec_tests/data/retryable_reads/listCollectionNames-serverErrors.yml +143 -0
  976. data/spec/spec_tests/data/retryable_reads/listCollectionNames.yml +59 -0
  977. data/spec/spec_tests/data/retryable_reads/listCollectionObjects-serverErrors.yml +144 -0
  978. data/spec/spec_tests/data/retryable_reads/listCollectionObjects.yml +59 -0
  979. data/spec/spec_tests/data/retryable_reads/listCollections-serverErrors.yml +143 -0
  980. data/spec/spec_tests/data/retryable_reads/listCollections.yml +59 -0
  981. data/spec/spec_tests/data/retryable_reads/listDatabaseNames-serverErrors.yml +143 -0
  982. data/spec/spec_tests/data/retryable_reads/listDatabaseNames.yml +59 -0
  983. data/spec/spec_tests/data/retryable_reads/listDatabaseObjects-serverErrors.yml +144 -0
  984. data/spec/spec_tests/data/retryable_reads/listDatabaseObjects.yml +59 -0
  985. data/spec/spec_tests/data/retryable_reads/listDatabases-serverErrors.yml +144 -0
  986. data/spec/spec_tests/data/retryable_reads/listDatabases.yml +59 -0
  987. data/spec/spec_tests/data/retryable_reads/listIndexNames-serverErrors.yml +144 -0
  988. data/spec/spec_tests/data/retryable_reads/listIndexNames.yml +60 -0
  989. data/spec/spec_tests/data/retryable_reads/listIndexes-serverErrors.yml +145 -0
  990. data/spec/spec_tests/data/retryable_reads/listIndexes.yml +60 -0
  991. data/spec/spec_tests/data/retryable_reads/mapReduce.yml +60 -0
  992. data/spec/spec_tests/data/retryable_writes/bulkWrite-errorLabels.yml +77 -0
  993. data/spec/spec_tests/data/retryable_writes/bulkWrite-serverErrors.yml +130 -0
  994. data/spec/spec_tests/data/retryable_writes/bulkWrite.yml +396 -0
  995. data/spec/spec_tests/data/retryable_writes/deleteMany.yml +22 -0
  996. data/spec/spec_tests/data/retryable_writes/deleteOne-errorLabels.yml +48 -0
  997. data/spec/spec_tests/data/retryable_writes/deleteOne-serverErrors.yml +73 -0
  998. data/spec/spec_tests/data/retryable_writes/deleteOne.yml +57 -0
  999. data/spec/spec_tests/data/retryable_writes/findOneAndDelete-errorLabels.yml +49 -0
  1000. data/spec/spec_tests/data/retryable_writes/findOneAndDelete-serverErrors.yml +74 -0
  1001. data/spec/spec_tests/data/retryable_writes/findOneAndDelete.yml +58 -0
  1002. data/spec/spec_tests/data/retryable_writes/findOneAndReplace-errorLabels.yml +52 -0
  1003. data/spec/spec_tests/data/retryable_writes/findOneAndReplace-serverErrors.yml +80 -0
  1004. data/spec/spec_tests/data/retryable_writes/findOneAndReplace.yml +63 -0
  1005. data/spec/spec_tests/data/retryable_writes/findOneAndUpdate-errorLabels.yml +52 -0
  1006. data/spec/spec_tests/data/retryable_writes/findOneAndUpdate-serverErrors.yml +79 -0
  1007. data/spec/spec_tests/data/retryable_writes/findOneAndUpdate.yml +62 -0
  1008. data/spec/spec_tests/data/retryable_writes/insertMany-errorLabels.yml +54 -0
  1009. data/spec/spec_tests/data/retryable_writes/insertMany-serverErrors.yml +84 -0
  1010. data/spec/spec_tests/data/retryable_writes/insertMany.yml +74 -0
  1011. data/spec/spec_tests/data/retryable_writes/insertOne-errorLabels.yml +44 -0
  1012. data/spec/spec_tests/data/retryable_writes/insertOne-serverErrors.yml +526 -0
  1013. data/spec/spec_tests/data/retryable_writes/insertOne.yml +61 -0
  1014. data/spec/spec_tests/data/retryable_writes/replaceOne-errorLabels.yml +53 -0
  1015. data/spec/spec_tests/data/retryable_writes/replaceOne-serverErrors.yml +82 -0
  1016. data/spec/spec_tests/data/retryable_writes/replaceOne.yml +66 -0
  1017. data/spec/spec_tests/data/retryable_writes/updateMany.yml +27 -0
  1018. data/spec/spec_tests/data/retryable_writes/updateOne-errorLabels.yml +53 -0
  1019. data/spec/spec_tests/data/retryable_writes/updateOne-serverErrors.yml +82 -0
  1020. data/spec/spec_tests/data/retryable_writes/updateOne.yml +129 -0
  1021. data/spec/spec_tests/data/sdam/errors/error_handling_handshake.yml +54 -0
  1022. data/spec/spec_tests/data/sdam/errors/non-stale-network-error.yml +46 -0
  1023. data/spec/spec_tests/data/sdam/errors/non-stale-network-timeout-error.yml +37 -0
  1024. data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-InterruptedAtShutdown.yml +60 -0
  1025. data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-InterruptedDueToReplStateChange.yml +60 -0
  1026. data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-NotMaster.yml +60 -0
  1027. data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-NotMasterNoSlaveOk.yml +60 -0
  1028. data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-NotMasterOrSecondary.yml +60 -0
  1029. data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-PrimarySteppedDown.yml +60 -0
  1030. data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-ShutdownInProgress.yml +60 -0
  1031. data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-InterruptedAtShutdown.yml +51 -0
  1032. data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-InterruptedDueToReplStateChange.yml +51 -0
  1033. data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-NotMaster.yml +51 -0
  1034. data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-NotMasterNoSlaveOk.yml +51 -0
  1035. data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-NotMasterOrSecondary.yml +51 -0
  1036. data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-PrimarySteppedDown.yml +51 -0
  1037. data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-ShutdownInProgress.yml +51 -0
  1038. data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-InterruptedAtShutdown.yml +60 -0
  1039. data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-InterruptedDueToReplStateChange.yml +60 -0
  1040. data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-NotMaster.yml +60 -0
  1041. data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-NotMasterNoSlaveOk.yml +60 -0
  1042. data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-NotMasterOrSecondary.yml +60 -0
  1043. data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-PrimarySteppedDown.yml +60 -0
  1044. data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-ShutdownInProgress.yml +60 -0
  1045. data/spec/spec_tests/data/sdam/errors/post-42-InterruptedAtShutdown.yml +46 -0
  1046. data/spec/spec_tests/data/sdam/errors/post-42-InterruptedDueToReplStateChange.yml +46 -0
  1047. data/spec/spec_tests/data/sdam/errors/post-42-NotMaster.yml +46 -0
  1048. data/spec/spec_tests/data/sdam/errors/post-42-NotMasterNoSlaveOk.yml +46 -0
  1049. data/spec/spec_tests/data/sdam/errors/post-42-NotMasterOrSecondary.yml +46 -0
  1050. data/spec/spec_tests/data/sdam/errors/post-42-PrimarySteppedDown.yml +46 -0
  1051. data/spec/spec_tests/data/sdam/errors/post-42-ShutdownInProgress.yml +46 -0
  1052. data/spec/spec_tests/data/sdam/errors/pre-42-InterruptedAtShutdown.yml +46 -0
  1053. data/spec/spec_tests/data/sdam/errors/pre-42-InterruptedDueToReplStateChange.yml +46 -0
  1054. data/spec/spec_tests/data/sdam/errors/pre-42-NotMaster.yml +46 -0
  1055. data/spec/spec_tests/data/sdam/errors/pre-42-NotMasterNoSlaveOk.yml +46 -0
  1056. data/spec/spec_tests/data/sdam/errors/pre-42-NotMasterOrSecondary.yml +46 -0
  1057. data/spec/spec_tests/data/sdam/errors/pre-42-PrimarySteppedDown.yml +46 -0
  1058. data/spec/spec_tests/data/sdam/errors/pre-42-ShutdownInProgress.yml +46 -0
  1059. data/spec/spec_tests/data/sdam/errors/stale-generation-InterruptedAtShutdown.yml +89 -0
  1060. data/spec/spec_tests/data/sdam/errors/stale-generation-InterruptedDueToReplStateChange.yml +89 -0
  1061. data/spec/spec_tests/data/sdam/errors/stale-generation-NotMaster.yml +89 -0
  1062. data/spec/spec_tests/data/sdam/errors/stale-generation-NotMasterNoSlaveOk.yml +89 -0
  1063. data/spec/spec_tests/data/sdam/errors/stale-generation-NotMasterOrSecondary.yml +89 -0
  1064. data/spec/spec_tests/data/sdam/errors/stale-generation-PrimarySteppedDown.yml +89 -0
  1065. data/spec/spec_tests/data/sdam/errors/stale-generation-ShutdownInProgress.yml +89 -0
  1066. data/spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-InterruptedAtShutdown.yml +89 -0
  1067. data/spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-InterruptedDueToReplStateChange.yml +89 -0
  1068. data/spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-NotMaster.yml +89 -0
  1069. data/spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-NotMasterNoSlaveOk.yml +89 -0
  1070. data/spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-NotMasterOrSecondary.yml +89 -0
  1071. data/spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-PrimarySteppedDown.yml +89 -0
  1072. data/spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-ShutdownInProgress.yml +89 -0
  1073. data/spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-network.yml +80 -0
  1074. data/spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-timeout.yml +80 -0
  1075. data/spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-InterruptedAtShutdown.yml +89 -0
  1076. data/spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-InterruptedDueToReplStateChange.yml +89 -0
  1077. data/spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-NotMaster.yml +89 -0
  1078. data/spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-NotMasterNoSlaveOk.yml +89 -0
  1079. data/spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-NotMasterOrSecondary.yml +89 -0
  1080. data/spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-PrimarySteppedDown.yml +89 -0
  1081. data/spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-ShutdownInProgress.yml +89 -0
  1082. data/spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-network.yml +80 -0
  1083. data/spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-timeout.yml +80 -0
  1084. data/spec/spec_tests/data/sdam/errors/stale-topologyVersion-InterruptedAtShutdown.yml +64 -0
  1085. data/spec/spec_tests/data/sdam/errors/stale-topologyVersion-InterruptedDueToReplStateChange.yml +64 -0
  1086. data/spec/spec_tests/data/sdam/errors/stale-topologyVersion-NotMaster.yml +64 -0
  1087. data/spec/spec_tests/data/sdam/errors/stale-topologyVersion-NotMasterNoSlaveOk.yml +64 -0
  1088. data/spec/spec_tests/data/sdam/errors/stale-topologyVersion-NotMasterOrSecondary.yml +64 -0
  1089. data/spec/spec_tests/data/sdam/errors/stale-topologyVersion-PrimarySteppedDown.yml +64 -0
  1090. data/spec/spec_tests/data/sdam/errors/stale-topologyVersion-ShutdownInProgress.yml +64 -0
  1091. data/spec/spec_tests/data/sdam/rs/compatible.yml +43 -0
  1092. data/spec/spec_tests/data/sdam/rs/compatible_unknown.yml +33 -0
  1093. data/spec/spec_tests/data/sdam/rs/discover_arbiters.yml +43 -0
  1094. data/spec/spec_tests/data/sdam/rs/discover_arbiters_replicaset.yml +43 -0
  1095. data/spec/spec_tests/data/sdam/rs/discover_ghost.yml +35 -0
  1096. data/spec/spec_tests/data/sdam/rs/discover_ghost_replicaset.yml +41 -0
  1097. data/spec/spec_tests/data/sdam/rs/discover_hidden.yml +50 -0
  1098. data/spec/spec_tests/data/sdam/rs/discover_hidden_replicaset.yml +50 -0
  1099. data/spec/spec_tests/data/sdam/rs/discover_passives.yml +81 -0
  1100. data/spec/spec_tests/data/sdam/rs/discover_passives_replicaset.yml +81 -0
  1101. data/spec/spec_tests/data/sdam/rs/discover_primary.yml +42 -0
  1102. data/spec/spec_tests/data/sdam/rs/discover_primary_replicaset.yml +42 -0
  1103. data/spec/spec_tests/data/sdam/rs/discover_rsother.yml +49 -0
  1104. data/spec/spec_tests/data/sdam/rs/discover_rsother_replicaset.yml +66 -0
  1105. data/spec/spec_tests/data/sdam/rs/discover_secondary.yml +43 -0
  1106. data/spec/spec_tests/data/sdam/rs/discover_secondary_replicaset.yml +43 -0
  1107. data/spec/spec_tests/data/sdam/rs/discovery.yml +203 -0
  1108. data/spec/spec_tests/data/sdam/rs/equal_electionids.yml +55 -0
  1109. data/spec/spec_tests/data/sdam/rs/hosts_differ_from_seeds.yml +36 -0
  1110. data/spec/spec_tests/data/sdam/rs/incompatible_arbiter.yml +34 -0
  1111. data/spec/spec_tests/data/sdam/rs/incompatible_ghost.yml +32 -0
  1112. data/spec/spec_tests/data/sdam/rs/incompatible_other.yml +34 -0
  1113. data/spec/spec_tests/data/sdam/rs/ls_timeout.yml +243 -0
  1114. data/spec/spec_tests/data/sdam/rs/member_reconfig.yml +72 -0
  1115. data/spec/spec_tests/data/sdam/rs/member_standalone.yml +64 -0
  1116. data/spec/spec_tests/data/sdam/rs/new_primary.yml +78 -0
  1117. data/spec/spec_tests/data/sdam/rs/new_primary_new_electionid.yml +116 -0
  1118. data/spec/spec_tests/data/sdam/rs/new_primary_new_setversion.yml +116 -0
  1119. data/spec/spec_tests/data/sdam/rs/new_primary_wrong_set_name.yml +75 -0
  1120. data/spec/spec_tests/data/sdam/rs/non_rs_member.yml +32 -0
  1121. data/spec/spec_tests/data/sdam/rs/normalize_case.yml +51 -0
  1122. data/spec/spec_tests/data/sdam/rs/normalize_case_me.yml +100 -0
  1123. data/spec/spec_tests/data/sdam/rs/null_election_id.yml +171 -0
  1124. data/spec/spec_tests/data/sdam/rs/primary_becomes_ghost.yml +63 -0
  1125. data/spec/spec_tests/data/sdam/rs/primary_becomes_mongos.yml +56 -0
  1126. data/spec/spec_tests/data/sdam/rs/primary_becomes_standalone.yml +54 -0
  1127. data/spec/spec_tests/data/sdam/rs/primary_changes_set_name.yml +61 -0
  1128. data/spec/spec_tests/data/sdam/rs/primary_disconnect.yml +58 -0
  1129. data/spec/spec_tests/data/sdam/rs/primary_disconnect_electionid.yml +184 -0
  1130. data/spec/spec_tests/data/sdam/rs/primary_disconnect_setversion.yml +184 -0
  1131. data/spec/spec_tests/data/sdam/rs/primary_hint_from_secondary_with_mismatched_me.yml +62 -0
  1132. data/spec/spec_tests/data/sdam/rs/primary_mismatched_me.yml +26 -0
  1133. data/spec/spec_tests/data/sdam/rs/primary_mismatched_me_not_removed.yml +73 -0
  1134. data/spec/spec_tests/data/sdam/rs/primary_reports_new_member.yml +171 -0
  1135. data/spec/spec_tests/data/sdam/rs/primary_to_no_primary_mismatched_me.yml +79 -0
  1136. data/spec/spec_tests/data/sdam/rs/primary_wrong_set_name.yml +29 -0
  1137. data/spec/spec_tests/data/sdam/rs/repeated.yml +101 -0
  1138. data/spec/spec_tests/data/sdam/rs/replicaset_rsnp.yml +20 -0
  1139. data/spec/spec_tests/data/sdam/rs/response_from_removed.yml +67 -0
  1140. data/spec/spec_tests/data/sdam/rs/ruby_primary_address_change.yml +31 -0
  1141. data/spec/spec_tests/data/sdam/rs/ruby_secondary_wrong_set_name_with_primary_second.yml +73 -0
  1142. data/spec/spec_tests/data/sdam/rs/sec_not_auth.yml +53 -0
  1143. data/spec/spec_tests/data/sdam/rs/secondary_ignore_ok_0.yml +85 -0
  1144. data/spec/spec_tests/data/sdam/rs/secondary_mismatched_me.yml +27 -0
  1145. data/spec/spec_tests/data/sdam/rs/secondary_wrong_set_name.yml +30 -0
  1146. data/spec/spec_tests/data/sdam/rs/secondary_wrong_set_name_with_primary.yml +73 -0
  1147. data/spec/spec_tests/data/sdam/rs/setversion_without_electionid.yml +77 -0
  1148. data/spec/spec_tests/data/sdam/rs/stepdown_change_set_name.yml +63 -0
  1149. data/spec/spec_tests/data/sdam/rs/too_new.yml +43 -0
  1150. data/spec/spec_tests/data/sdam/rs/too_old.yml +39 -0
  1151. data/spec/spec_tests/data/sdam/rs/topology_version_equal.yml +66 -0
  1152. data/spec/spec_tests/data/sdam/rs/topology_version_greater.yml +189 -0
  1153. data/spec/spec_tests/data/sdam/rs/topology_version_less.yml +62 -0
  1154. data/spec/spec_tests/data/sdam/rs/unexpected_mongos.yml +28 -0
  1155. data/spec/spec_tests/data/sdam/rs/use_setversion_without_electionid.yml +114 -0
  1156. data/spec/spec_tests/data/sdam/rs/wrong_set_name.yml +37 -0
  1157. data/spec/spec_tests/data/sdam/sharded/compatible.yml +38 -0
  1158. data/spec/spec_tests/data/sdam/sharded/discover_single_mongos.yml +23 -0
  1159. data/spec/spec_tests/data/sdam/sharded/ls_timeout_mongos.yml +97 -0
  1160. data/spec/spec_tests/data/sdam/sharded/mongos_disconnect.yml +110 -0
  1161. data/spec/spec_tests/data/sdam/sharded/multiple_mongoses.yml +50 -0
  1162. data/spec/spec_tests/data/sdam/sharded/non_mongos_removed.yml +45 -0
  1163. data/spec/spec_tests/data/sdam/sharded/normalize_uri_case.yml +32 -0
  1164. data/spec/spec_tests/data/sdam/sharded/ruby_primary_different_address.yml +21 -0
  1165. data/spec/spec_tests/data/sdam/sharded/ruby_primary_mismatched_me.yml +22 -0
  1166. data/spec/spec_tests/data/sdam/sharded/too_new.yml +36 -0
  1167. data/spec/spec_tests/data/sdam/sharded/too_old.yml +36 -0
  1168. data/spec/spec_tests/data/sdam/single/compatible.yml +26 -0
  1169. data/spec/spec_tests/data/sdam/single/direct_connection_external_ip.yml +36 -0
  1170. data/spec/spec_tests/data/sdam/single/direct_connection_mongos.yml +35 -0
  1171. data/spec/spec_tests/data/sdam/single/direct_connection_replicaset.yml +22 -0
  1172. data/spec/spec_tests/data/sdam/single/direct_connection_rsarbiter.yml +37 -0
  1173. data/spec/spec_tests/data/sdam/single/direct_connection_rsprimary.yml +36 -0
  1174. data/spec/spec_tests/data/sdam/single/direct_connection_rssecondary.yml +37 -0
  1175. data/spec/spec_tests/data/sdam/single/direct_connection_slave.yml +34 -0
  1176. data/spec/spec_tests/data/sdam/single/direct_connection_standalone.yml +34 -0
  1177. data/spec/spec_tests/data/sdam/single/direct_connection_unavailable_seed.yml +28 -0
  1178. data/spec/spec_tests/data/sdam/single/direct_connection_wrong_set_name.yml +38 -0
  1179. data/spec/spec_tests/data/sdam/single/discover_standalone.yml +34 -0
  1180. data/spec/spec_tests/data/sdam/single/discover_unavailable_seed.yml +28 -0
  1181. data/spec/spec_tests/data/sdam/single/ls_timeout_standalone.yml +35 -0
  1182. data/spec/spec_tests/data/sdam/single/not_ok_response.yml +42 -0
  1183. data/spec/spec_tests/data/sdam/single/ruby_primary_different_address.yml +24 -0
  1184. data/spec/spec_tests/data/sdam/single/ruby_primary_mismatched_me.yml +25 -0
  1185. data/spec/spec_tests/data/sdam/single/standalone_removed.yml +34 -0
  1186. data/spec/spec_tests/data/sdam/single/too_new.yml +26 -0
  1187. data/spec/spec_tests/data/sdam/single/too_old.yml +24 -0
  1188. data/spec/spec_tests/data/sdam/single/too_old_then_upgraded.yml +46 -0
  1189. data/spec/spec_tests/data/sdam_integration/cancel-server-check.yml +96 -0
  1190. data/spec/spec_tests/data/sdam_integration/connectTimeoutMS.yml +88 -0
  1191. data/spec/spec_tests/data/sdam_integration/find-network-error.yml +83 -0
  1192. data/spec/spec_tests/data/sdam_integration/find-shutdown-error.yml +116 -0
  1193. data/spec/spec_tests/data/sdam_integration/insert-network-error.yml +86 -0
  1194. data/spec/spec_tests/data/sdam_integration/insert-shutdown-error.yml +115 -0
  1195. data/spec/spec_tests/data/sdam_integration/isMaster-command-error.yml +168 -0
  1196. data/spec/spec_tests/data/sdam_integration/isMaster-network-error.yml +162 -0
  1197. data/spec/spec_tests/data/sdam_integration/isMaster-timeout.yml +229 -0
  1198. data/spec/spec_tests/data/sdam_integration/rediscover-quickly-after-step-down.yml +87 -0
  1199. data/spec/spec_tests/data/sdam_monitoring/discovered_standalone.yml +70 -0
  1200. data/spec/spec_tests/data/sdam_monitoring/replica_set_other_chain.yml +222 -0
  1201. data/spec/spec_tests/data/sdam_monitoring/replica_set_other_change.yml +225 -0
  1202. data/spec/spec_tests/data/sdam_monitoring/replica_set_primary_address_change.yml +251 -0
  1203. data/spec/spec_tests/data/sdam_monitoring/replica_set_with_me_mismatch.yml +111 -0
  1204. data/spec/spec_tests/data/sdam_monitoring/replica_set_with_primary_and_secondary.yml +198 -0
  1205. data/spec/spec_tests/data/sdam_monitoring/replica_set_with_primary_removal.yml +175 -0
  1206. data/spec/spec_tests/data/sdam_monitoring/replica_set_with_removal.yml +110 -0
  1207. data/spec/spec_tests/data/sdam_monitoring/replica_set_with_second_seed_removal.yml +106 -0
  1208. data/spec/spec_tests/data/sdam_monitoring/required_replica_set.yml +107 -0
  1209. data/spec/spec_tests/data/sdam_monitoring/standalone.yml +70 -0
  1210. data/spec/spec_tests/data/sdam_monitoring/standalone_repeated.yml +86 -0
  1211. data/spec/spec_tests/data/sdam_monitoring/standalone_suppress_equal_description_changes.yml +73 -0
  1212. data/spec/spec_tests/data/sdam_monitoring/standalone_to_rs_with_me_mismatch.yml +90 -0
  1213. data/spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/Nearest.yml +25 -0
  1214. data/spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/Nearest_multiple.yml +26 -0
  1215. data/spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/Nearest_non_matching.yml +20 -0
  1216. data/spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/PossiblePrimary.yml +15 -0
  1217. data/spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/PossiblePrimaryNearest.yml +15 -0
  1218. data/spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/Primary.yml +18 -0
  1219. data/spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/PrimaryPreferred.yml +25 -0
  1220. data/spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/PrimaryPreferred_non_matching.yml +20 -0
  1221. data/spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/Secondary.yml +25 -0
  1222. data/spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/SecondaryPreferred.yml +25 -0
  1223. data/spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/SecondaryPreferred_non_matching.yml +20 -0
  1224. data/spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/Secondary_non_matching.yml +20 -0
  1225. data/spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/Nearest.yml +32 -0
  1226. data/spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/Nearest_multiple.yml +33 -0
  1227. data/spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/Nearest_non_matching.yml +25 -0
  1228. data/spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/Primary.yml +26 -0
  1229. data/spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/PrimaryPreferred.yml +28 -0
  1230. data/spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/PrimaryPreferred_non_matching.yml +28 -0
  1231. data/spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/Secondary.yml +30 -0
  1232. data/spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/SecondaryPreferred.yml +30 -0
  1233. data/spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/SecondaryPreferred_non_matching.yml +28 -0
  1234. data/spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/Secondary_non_matching.yml +25 -0
  1235. data/spec/spec_tests/data/server_selection/Sharded/read/Nearest.yml +21 -0
  1236. data/spec/spec_tests/data/server_selection/Sharded/read/Primary.yml +19 -0
  1237. data/spec/spec_tests/data/server_selection/Sharded/read/PrimaryPreferred.yml +21 -0
  1238. data/spec/spec_tests/data/server_selection/Sharded/read/Secondary.yml +21 -0
  1239. data/spec/spec_tests/data/server_selection/Sharded/read/SecondaryPreferred.yml +21 -0
  1240. data/spec/spec_tests/data/server_selection/Single/read/SecondaryPreferred.yml +18 -0
  1241. data/spec/spec_tests/data/server_selection/Unknown/read/SecondaryPreferred.yml +10 -0
  1242. data/spec/spec_tests/data/transactions/abort.yml +413 -0
  1243. data/spec/spec_tests/data/transactions/bulk.yml +267 -0
  1244. data/spec/spec_tests/data/transactions/causal-consistency.yml +175 -0
  1245. data/spec/spec_tests/data/transactions/commit.yml +603 -0
  1246. data/spec/spec_tests/data/transactions/count.yml +67 -0
  1247. data/spec/spec_tests/data/transactions/create-collection.yml +131 -0
  1248. data/spec/spec_tests/data/transactions/create-index.yml +152 -0
  1249. data/spec/spec_tests/data/transactions/delete.yml +192 -0
  1250. data/spec/spec_tests/data/transactions/error-labels.yml +1027 -0
  1251. data/spec/spec_tests/data/transactions/errors-client.yml +56 -0
  1252. data/spec/spec_tests/data/transactions/errors.yml +133 -0
  1253. data/spec/spec_tests/data/transactions/findOneAndDelete.yml +134 -0
  1254. data/spec/spec_tests/data/transactions/findOneAndReplace.yml +148 -0
  1255. data/spec/spec_tests/data/transactions/findOneAndUpdate.yml +236 -0
  1256. data/spec/spec_tests/data/transactions/insert.yml +390 -0
  1257. data/spec/spec_tests/data/transactions/isolation.yml +133 -0
  1258. data/spec/spec_tests/data/transactions/mongos-pin-auto.yml +1671 -0
  1259. data/spec/spec_tests/data/transactions/mongos-recovery-token.yml +348 -0
  1260. data/spec/spec_tests/data/transactions/pin-mongos.yml +556 -0
  1261. data/spec/spec_tests/data/transactions/read-concern.yml +623 -0
  1262. data/spec/spec_tests/data/transactions/read-pref.yml +348 -0
  1263. data/spec/spec_tests/data/transactions/reads.yml +261 -0
  1264. data/spec/spec_tests/data/transactions/retryable-abort-errorLabels.yml +124 -0
  1265. data/spec/spec_tests/data/transactions/retryable-abort.yml +1315 -0
  1266. data/spec/spec_tests/data/transactions/retryable-commit-errorLabels.yml +132 -0
  1267. data/spec/spec_tests/data/transactions/retryable-commit.yml +1460 -0
  1268. data/spec/spec_tests/data/transactions/retryable-writes.yml +216 -0
  1269. data/spec/spec_tests/data/transactions/run-command.yml +197 -0
  1270. data/spec/spec_tests/data/transactions/transaction-options-repl.yml +117 -0
  1271. data/spec/spec_tests/data/transactions/transaction-options.yml +781 -0
  1272. data/spec/spec_tests/data/transactions/update.yml +246 -0
  1273. data/spec/spec_tests/data/transactions/write-concern.yml +554 -0
  1274. data/spec/spec_tests/data/transactions_api/callback-aborts.yml +170 -0
  1275. data/spec/spec_tests/data/transactions_api/callback-commits.yml +204 -0
  1276. data/spec/spec_tests/data/transactions_api/callback-retry.yml +215 -0
  1277. data/spec/spec_tests/data/transactions_api/commit-retry.yml +324 -0
  1278. data/spec/spec_tests/data/transactions_api/commit-transienttransactionerror-4.2.yml +139 -0
  1279. data/spec/spec_tests/data/transactions_api/commit-transienttransactionerror.yml +175 -0
  1280. data/spec/spec_tests/data/transactions_api/commit-writeconcernerror.yml +216 -0
  1281. data/spec/spec_tests/data/transactions_api/commit.yml +193 -0
  1282. data/spec/spec_tests/data/transactions_api/transaction-options.yml +274 -0
  1283. data/spec/spec_tests/data/uri_options/auth-options.yml +49 -0
  1284. data/spec/spec_tests/data/uri_options/compression-options.yml +51 -0
  1285. data/spec/spec_tests/data/uri_options/concern-options.yml +55 -0
  1286. data/spec/spec_tests/data/uri_options/connection-options.yml +149 -0
  1287. data/spec/spec_tests/data/uri_options/connection-pool-options.yml +26 -0
  1288. data/spec/spec_tests/data/uri_options/read-preference-options.yml +66 -0
  1289. data/spec/spec_tests/data/uri_options/ruby-auth-options.yml +12 -0
  1290. data/spec/spec_tests/data/uri_options/ruby-connection-options.yml +58 -0
  1291. data/spec/spec_tests/data/uri_options/tls-options.yml +364 -0
  1292. data/spec/spec_tests/dns_seedlist_discovery_spec.rb +76 -0
  1293. data/spec/spec_tests/gridfs_spec.rb +52 -0
  1294. data/spec/spec_tests/max_staleness_spec.rb +9 -0
  1295. data/spec/spec_tests/read_write_concern_connection_string_spec.rb +10 -0
  1296. data/spec/spec_tests/read_write_concern_document_spec.rb +74 -0
  1297. data/spec/spec_tests/read_write_concern_operaton_spec.rb +10 -0
  1298. data/spec/spec_tests/retryable_reads_spec.rb +47 -0
  1299. data/spec/spec_tests/retryable_writes_spec.rb +19 -0
  1300. data/spec/spec_tests/sdam_integration_spec.rb +13 -0
  1301. data/spec/spec_tests/sdam_monitoring_spec.rb +93 -0
  1302. data/spec/spec_tests/sdam_spec.rb +239 -0
  1303. data/spec/spec_tests/server_selection_rtt_spec.rb +30 -0
  1304. data/spec/spec_tests/server_selection_spec.rb +9 -0
  1305. data/spec/spec_tests/transactions_api_spec.rb +10 -0
  1306. data/spec/spec_tests/transactions_spec.rb +10 -0
  1307. data/spec/spec_tests/uri_options_spec.rb +74 -0
  1308. data/spec/stress/cleanup_spec.rb +58 -0
  1309. data/spec/stress/connection_pool_stress_spec.rb +201 -0
  1310. data/spec/stress/connection_pool_timing_spec.rb +181 -0
  1311. data/spec/stress/fork_reconnect_stress_spec.rb +109 -0
  1312. data/spec/support/authorization.rb +51 -153
  1313. data/spec/support/aws_utils/base.rb +134 -0
  1314. data/spec/support/aws_utils/inspector.rb +224 -0
  1315. data/spec/support/aws_utils/orchestrator.rb +370 -0
  1316. data/spec/support/aws_utils/provisioner.rb +360 -0
  1317. data/spec/support/aws_utils.rb +62 -0
  1318. data/spec/support/background_thread_registry.rb +67 -0
  1319. data/spec/support/certificates/README.md +105 -0
  1320. data/spec/support/certificates/atlas-ocsp-ca.crt +28 -0
  1321. data/spec/support/certificates/atlas-ocsp.crt +41 -0
  1322. data/spec/support/certificates/ca.crt +76 -0
  1323. data/spec/support/certificates/client-encrypted.key +30 -0
  1324. data/spec/support/certificates/client-int.crt +78 -0
  1325. data/spec/support/certificates/client-second-level-bundle.pem +179 -0
  1326. data/spec/support/certificates/client-second-level.crt +74 -0
  1327. data/spec/support/certificates/client-second-level.key +27 -0
  1328. data/spec/support/certificates/client-second-level.pem +101 -0
  1329. data/spec/support/certificates/client-x509.crt +78 -0
  1330. data/spec/support/certificates/client-x509.key +27 -0
  1331. data/spec/support/certificates/client-x509.pem +105 -0
  1332. data/spec/support/certificates/client.crt +74 -0
  1333. data/spec/support/certificates/client.key +27 -0
  1334. data/spec/support/certificates/client.pem +90 -90
  1335. data/spec/support/certificates/crl.pem +10 -8
  1336. data/spec/support/certificates/crl_client_revoked.pem +11 -10
  1337. data/spec/support/certificates/multi-ca.crt +152 -0
  1338. data/spec/support/certificates/python-ca.crt +76 -0
  1339. data/spec/support/certificates/server-int.crt +78 -0
  1340. data/spec/support/certificates/server-second-level-bundle.pem +179 -0
  1341. data/spec/support/certificates/server-second-level.crt +74 -0
  1342. data/spec/support/certificates/server-second-level.key +27 -0
  1343. data/spec/support/certificates/server-second-level.pem +101 -0
  1344. data/spec/support/certificates/server.pem +99 -32
  1345. data/spec/support/client_registry.rb +247 -0
  1346. data/spec/support/client_registry_macros.rb +23 -0
  1347. data/spec/support/cluster_config.rb +207 -0
  1348. data/spec/support/cluster_tools.rb +376 -0
  1349. data/spec/support/common_shortcuts.rb +342 -0
  1350. data/spec/support/constraints.rb +16 -0
  1351. data/spec/support/crypt/corpus/corpus-key-aws.json +33 -0
  1352. data/spec/support/crypt/corpus/corpus-key-local.json +31 -0
  1353. data/spec/support/crypt/corpus/corpus-schema.json +2057 -0
  1354. data/spec/support/crypt/corpus/corpus.json +3657 -0
  1355. data/spec/support/crypt/corpus/corpus_encrypted.json +4152 -0
  1356. data/spec/support/crypt/data_keys/key_document_aws.json +34 -0
  1357. data/spec/support/crypt/data_keys/key_document_local.json +31 -0
  1358. data/spec/support/crypt/external/external-key.json +31 -0
  1359. data/spec/support/crypt/external/external-schema.json +19 -0
  1360. data/spec/support/crypt/limits/limits-doc.json +102 -0
  1361. data/spec/support/crypt/limits/limits-key.json +31 -0
  1362. data/spec/support/crypt/limits/limits-schema.json +1405 -0
  1363. data/spec/support/crypt/schema_maps/schema_map_aws.json +17 -0
  1364. data/spec/support/crypt/schema_maps/schema_map_aws_key_alt_names.json +12 -0
  1365. data/spec/support/crypt/schema_maps/schema_map_local.json +18 -0
  1366. data/spec/support/crypt/schema_maps/schema_map_local_key_alt_names.json +12 -0
  1367. data/spec/support/crypt.rb +154 -0
  1368. data/spec/support/dns.rb +13 -0
  1369. data/spec/support/event_subscriber.rb +212 -0
  1370. data/spec/support/json_ext_formatter.rb +13 -0
  1371. data/spec/support/keyword_struct.rb +26 -0
  1372. data/spec/support/local_resource_registry.rb +34 -0
  1373. data/spec/support/matchers.rb +35 -0
  1374. data/spec/support/monitoring_ext.rb +16 -0
  1375. data/spec/support/ocsp +1 -0
  1376. data/spec/support/primary_socket.rb +21 -0
  1377. data/spec/support/sdam_formatter_integration.rb +116 -0
  1378. data/spec/support/session_registry.rb +52 -0
  1379. data/spec/support/shared/protocol.rb +2 -0
  1380. data/spec/support/shared/scram_conversation.rb +100 -0
  1381. data/spec/support/shared/server_selector.rb +109 -63
  1382. data/spec/support/shared/session.rb +907 -0
  1383. data/spec/support/spec_config.rb +560 -0
  1384. data/spec/support/spec_setup.rb +70 -0
  1385. data/spec/support/utils.rb +534 -0
  1386. data.tar.gz.sig +0 -0
  1387. metadata +2229 -653
  1388. metadata.gz.sig +0 -0
  1389. data/lib/csasl/csasl.bundle +0 -0
  1390. data/lib/mongo/cluster/app_metadata.rb +0 -146
  1391. data/lib/mongo/cluster/cursor_reaper.rb +0 -174
  1392. data/lib/mongo/cluster/topology/replica_set.rb +0 -317
  1393. data/lib/mongo/event/description_changed.rb +0 -72
  1394. data/lib/mongo/event/member_discovered.rb +0 -65
  1395. data/lib/mongo/event/primary_elected.rb +0 -55
  1396. data/lib/mongo/event/standalone_discovered.rb +0 -53
  1397. data/lib/mongo/operation/commands/aggregate/result.rb +0 -89
  1398. data/lib/mongo/operation/commands/aggregate.rb +0 -64
  1399. data/lib/mongo/operation/commands/collections_info/result.rb +0 -41
  1400. data/lib/mongo/operation/commands/collections_info.rb +0 -71
  1401. data/lib/mongo/operation/commands/command.rb +0 -47
  1402. data/lib/mongo/operation/commands/create.rb +0 -45
  1403. data/lib/mongo/operation/commands/drop.rb +0 -45
  1404. data/lib/mongo/operation/commands/drop_database.rb +0 -45
  1405. data/lib/mongo/operation/commands/find/result.rb +0 -62
  1406. data/lib/mongo/operation/commands/find.rb +0 -27
  1407. data/lib/mongo/operation/commands/get_more/result.rb +0 -62
  1408. data/lib/mongo/operation/commands/get_more.rb +0 -27
  1409. data/lib/mongo/operation/commands/indexes.rb +0 -73
  1410. data/lib/mongo/operation/commands/list_collections/result.rb +0 -94
  1411. data/lib/mongo/operation/commands/list_collections.rb +0 -48
  1412. data/lib/mongo/operation/commands/list_indexes/result.rb +0 -98
  1413. data/lib/mongo/operation/commands/list_indexes.rb +0 -48
  1414. data/lib/mongo/operation/commands/map_reduce/result.rb +0 -119
  1415. data/lib/mongo/operation/commands/map_reduce.rb +0 -60
  1416. data/lib/mongo/operation/commands/parallel_scan/result.rb +0 -64
  1417. data/lib/mongo/operation/commands/parallel_scan.rb +0 -53
  1418. data/lib/mongo/operation/commands/user_query.rb +0 -72
  1419. data/lib/mongo/operation/commands/users_info/result.rb +0 -44
  1420. data/lib/mongo/operation/commands/users_info.rb +0 -48
  1421. data/lib/mongo/operation/commands.rb +0 -29
  1422. data/lib/mongo/operation/executable.rb +0 -42
  1423. data/lib/mongo/operation/limited.rb +0 -37
  1424. data/lib/mongo/operation/object_id_generator.rb +0 -36
  1425. data/lib/mongo/operation/read/get_more.rb +0 -52
  1426. data/lib/mongo/operation/read/query/result.rb +0 -40
  1427. data/lib/mongo/operation/read/query.rb +0 -55
  1428. data/lib/mongo/operation/read.rb +0 -16
  1429. data/lib/mongo/operation/read_preference.rb +0 -61
  1430. data/lib/mongo/operation/specifiable.rb +0 -507
  1431. data/lib/mongo/operation/takes_write_concern.rb +0 -35
  1432. data/lib/mongo/operation/write/bulk/bulkable.rb +0 -83
  1433. data/lib/mongo/operation/write/bulk/delete/result.rb +0 -71
  1434. data/lib/mongo/operation/write/bulk/delete.rb +0 -71
  1435. data/lib/mongo/operation/write/bulk/insert/result.rb +0 -129
  1436. data/lib/mongo/operation/write/bulk/insert.rb +0 -96
  1437. data/lib/mongo/operation/write/bulk/legacy_mergable.rb +0 -87
  1438. data/lib/mongo/operation/write/bulk/mergable.rb +0 -71
  1439. data/lib/mongo/operation/write/bulk/update/result.rb +0 -205
  1440. data/lib/mongo/operation/write/bulk/update.rb +0 -81
  1441. data/lib/mongo/operation/write/bulk.rb +0 -20
  1442. data/lib/mongo/operation/write/command/create_index.rb +0 -55
  1443. data/lib/mongo/operation/write/command/create_user.rb +0 -42
  1444. data/lib/mongo/operation/write/command/delete.rb +0 -56
  1445. data/lib/mongo/operation/write/command/drop_index.rb +0 -56
  1446. data/lib/mongo/operation/write/command/insert.rb +0 -66
  1447. data/lib/mongo/operation/write/command/remove_user.rb +0 -41
  1448. data/lib/mongo/operation/write/command/update.rb +0 -63
  1449. data/lib/mongo/operation/write/command/update_user.rb +0 -42
  1450. data/lib/mongo/operation/write/command/writable.rb +0 -57
  1451. data/lib/mongo/operation/write/command.rb +0 -23
  1452. data/lib/mongo/operation/write/create_index.rb +0 -67
  1453. data/lib/mongo/operation/write/create_user.rb +0 -50
  1454. data/lib/mongo/operation/write/delete/result.rb +0 -40
  1455. data/lib/mongo/operation/write/delete.rb +0 -75
  1456. data/lib/mongo/operation/write/drop_index.rb +0 -63
  1457. data/lib/mongo/operation/write/gle.rb +0 -49
  1458. data/lib/mongo/operation/write/idable.rb +0 -63
  1459. data/lib/mongo/operation/write/insert/result.rb +0 -62
  1460. data/lib/mongo/operation/write/insert.rb +0 -71
  1461. data/lib/mongo/operation/write/remove_user.rb +0 -48
  1462. data/lib/mongo/operation/write/update/result.rb +0 -160
  1463. data/lib/mongo/operation/write/update.rb +0 -85
  1464. data/lib/mongo/operation/write/update_user.rb +0 -50
  1465. data/lib/mongo/operation/write/write_command_enabled.rb +0 -62
  1466. data/lib/mongo/operation/write.rb +0 -27
  1467. data/lib/mongo/server/connectable.rb +0 -119
  1468. data/lib/mongo/server/connection_pool/queue.rb +0 -197
  1469. data/lib/mongo/server/description/inspector/description_changed.rb +0 -57
  1470. data/lib/mongo/server/description/inspector/member_discovered.rb +0 -59
  1471. data/lib/mongo/server/description/inspector/primary_elected.rb +0 -60
  1472. data/lib/mongo/server/description/inspector/standalone_discovered.rb +0 -56
  1473. data/lib/mongo/server/description/inspector.rb +0 -81
  1474. data/lib/mongo/server_selector/selectable.rb +0 -281
  1475. data/lib/mongo/write_concern/normalizable.rb +0 -52
  1476. data/spec/mongo/cluster/app_metadata_spec.rb +0 -104
  1477. data/spec/mongo/command_monitoring_spec.rb +0 -64
  1478. data/spec/mongo/connection_string_spec.rb +0 -115
  1479. data/spec/mongo/crud_spec.rb +0 -41
  1480. data/spec/mongo/gridfs_spec.rb +0 -50
  1481. data/spec/mongo/max_staleness_spec.rb +0 -126
  1482. data/spec/mongo/operation/commands/aggregate/result_spec.rb +0 -80
  1483. data/spec/mongo/operation/commands/aggregate_spec.rb +0 -72
  1484. data/spec/mongo/operation/commands/collections_info_spec.rb +0 -40
  1485. data/spec/mongo/operation/commands/command_spec.rb +0 -80
  1486. data/spec/mongo/operation/commands/indexes_spec.rb +0 -31
  1487. data/spec/mongo/operation/commands/map_reduce_spec.rb +0 -125
  1488. data/spec/mongo/operation/read/get_more_spec.rb +0 -53
  1489. data/spec/mongo/operation/read/query_spec.rb +0 -102
  1490. data/spec/mongo/operation/read_preference_spec.rb +0 -245
  1491. data/spec/mongo/operation/write/bulk/delete_spec.rb +0 -223
  1492. data/spec/mongo/operation/write/bulk/insert_spec.rb +0 -250
  1493. data/spec/mongo/operation/write/bulk/update_spec.rb +0 -220
  1494. data/spec/mongo/operation/write/command/delete_spec.rb +0 -106
  1495. data/spec/mongo/operation/write/command/insert_spec.rb +0 -105
  1496. data/spec/mongo/operation/write/command/update_spec.rb +0 -110
  1497. data/spec/mongo/operation/write/create_index_spec.rb +0 -63
  1498. data/spec/mongo/operation/write/create_user_spec.rb +0 -44
  1499. data/spec/mongo/operation/write/delete_spec.rb +0 -215
  1500. data/spec/mongo/operation/write/drop_index_spec.rb +0 -51
  1501. data/spec/mongo/operation/write/insert_spec.rb +0 -291
  1502. data/spec/mongo/operation/write/remove_user_spec.rb +0 -46
  1503. data/spec/mongo/operation/write/update_spec.rb +0 -256
  1504. data/spec/mongo/operation/write/update_user_spec.rb +0 -46
  1505. data/spec/mongo/sdam_monitoring_spec.rb +0 -60
  1506. data/spec/mongo/sdam_spec.rb +0 -84
  1507. data/spec/mongo/server/connection_pool/queue_spec.rb +0 -190
  1508. data/spec/mongo/server/description/inspector/description_changed_spec.rb +0 -78
  1509. data/spec/mongo/server/description/inspector/primary_elected_spec.rb +0 -94
  1510. data/spec/mongo/server_selection_rtt_spec.rb +0 -85
  1511. data/spec/mongo/server_selection_spec.rb +0 -93
  1512. data/spec/support/certificates/ca.pem +0 -17
  1513. data/spec/support/certificates/client_cert.pem +0 -21
  1514. data/spec/support/certificates/client_key.pem +0 -28
  1515. data/spec/support/certificates/client_key_encrypted.pem +0 -30
  1516. data/spec/support/certificates/password_protected.pem +0 -51
  1517. data/spec/support/command_monitoring/bulkWrite.yml +0 -73
  1518. data/spec/support/command_monitoring/command.yml +0 -42
  1519. data/spec/support/command_monitoring/find.yml +0 -268
  1520. data/spec/support/command_monitoring/insertMany.yml +0 -81
  1521. data/spec/support/command_monitoring/updateMany.yml +0 -67
  1522. data/spec/support/command_monitoring/updateOne.yml +0 -95
  1523. data/spec/support/command_monitoring.rb +0 -376
  1524. data/spec/support/connection_string.rb +0 -228
  1525. data/spec/support/connection_string_tests/invalid-uris.yml +0 -193
  1526. data/spec/support/connection_string_tests/valid-auth.yml +0 -256
  1527. data/spec/support/connection_string_tests/valid-options.yml +0 -30
  1528. data/spec/support/connection_string_tests/valid-unix_socket-absolute.yml +0 -197
  1529. data/spec/support/connection_string_tests/valid-unix_socket-relative.yml +0 -213
  1530. data/spec/support/connection_string_tests/valid-warnings.yml +0 -55
  1531. data/spec/support/crud/read.rb +0 -154
  1532. data/spec/support/crud/write.rb +0 -224
  1533. data/spec/support/crud.rb +0 -271
  1534. data/spec/support/crud_tests/read/aggregate-out.yml +0 -28
  1535. data/spec/support/crud_tests/read/count-collation.yml +0 -15
  1536. data/spec/support/crud_tests/read/count.yml +0 -36
  1537. data/spec/support/crud_tests/write/findOneAndReplace-upsert.yml +0 -47
  1538. data/spec/support/crud_tests/write/findOneAndReplace.yml +0 -142
  1539. data/spec/support/crud_tests/write/findOneAndUpdate.yml +0 -160
  1540. data/spec/support/crud_tests/write/insertMany.yml +0 -23
  1541. data/spec/support/crud_tests/write/replaceOne-collation.yml +0 -23
  1542. data/spec/support/crud_tests/write/replaceOne.yml +0 -86
  1543. data/spec/support/crud_tests/write/updateMany-collation.yml +0 -27
  1544. data/spec/support/crud_tests/write/updateMany.yml +0 -82
  1545. data/spec/support/crud_tests/write/updateOne-collation.yml +0 -24
  1546. data/spec/support/crud_tests/write/updateOne.yml +0 -79
  1547. data/spec/support/gridfs.rb +0 -637
  1548. data/spec/support/gridfs_tests/delete.yml +0 -157
  1549. data/spec/support/gridfs_tests/download.yml +0 -210
  1550. data/spec/support/helpers.rb +0 -140
  1551. data/spec/support/max_staleness/Unknown/SmallMaxStaleness.yml +0 -14
  1552. data/spec/support/sdam/rs/discover_arbiters.yml +0 -41
  1553. data/spec/support/sdam/rs/discover_passives.yml +0 -77
  1554. data/spec/support/sdam/rs/discover_primary.yml +0 -40
  1555. data/spec/support/sdam/rs/discover_secondary.yml +0 -41
  1556. data/spec/support/sdam/rs/discovery.yml +0 -195
  1557. data/spec/support/sdam/rs/equal_electionids.yml +0 -48
  1558. data/spec/support/sdam/rs/ghost_discovered.yml +0 -39
  1559. data/spec/support/sdam/rs/hosts_differ_from_seeds.yml +0 -34
  1560. data/spec/support/sdam/rs/member_reconfig.yml +0 -68
  1561. data/spec/support/sdam/rs/member_standalone.yml +0 -60
  1562. data/spec/support/sdam/rs/new_primary.yml +0 -74
  1563. data/spec/support/sdam/rs/new_primary_new_electionid.yml +0 -101
  1564. data/spec/support/sdam/rs/new_primary_new_setversion.yml +0 -101
  1565. data/spec/support/sdam/rs/new_primary_wrong_set_name.yml +0 -71
  1566. data/spec/support/sdam/rs/non_rs_member.yml +0 -31
  1567. data/spec/support/sdam/rs/normalize_case.yml +0 -49
  1568. data/spec/support/sdam/rs/null_election_id.yml +0 -152
  1569. data/spec/support/sdam/rs/primary_becomes_standalone.yml +0 -52
  1570. data/spec/support/sdam/rs/primary_changes_set_name.yml +0 -57
  1571. data/spec/support/sdam/rs/primary_disconnect.yml +0 -56
  1572. data/spec/support/sdam/rs/primary_disconnect_electionid.yml +0 -159
  1573. data/spec/support/sdam/rs/primary_disconnect_setversion.yml +0 -159
  1574. data/spec/support/sdam/rs/primary_mismatched_me.yml +0 -37
  1575. data/spec/support/sdam/rs/primary_reports_new_member.yml +0 -163
  1576. data/spec/support/sdam/rs/primary_to_no_primary_mismatched_me.yml +0 -75
  1577. data/spec/support/sdam/rs/primary_wrong_set_name.yml +0 -27
  1578. data/spec/support/sdam/rs/response_from_removed.yml +0 -63
  1579. data/spec/support/sdam/rs/rsother_discovered.yml +0 -62
  1580. data/spec/support/sdam/rs/sec_not_auth.yml +0 -49
  1581. data/spec/support/sdam/rs/secondary_mismatched_me.yml +0 -37
  1582. data/spec/support/sdam/rs/secondary_wrong_set_name.yml +0 -28
  1583. data/spec/support/sdam/rs/secondary_wrong_set_name_with_primary.yml +0 -69
  1584. data/spec/support/sdam/rs/set_version_without_electionid.yml +0 -69
  1585. data/spec/support/sdam/rs/setversion_without_electionid.yml +0 -69
  1586. data/spec/support/sdam/rs/stepdown_change_set_name.yml +0 -59
  1587. data/spec/support/sdam/rs/unexpected_mongos.yml +0 -26
  1588. data/spec/support/sdam/rs/use_setversion_without_electionid.yml +0 -99
  1589. data/spec/support/sdam/rs/wrong_set_name.yml +0 -35
  1590. data/spec/support/sdam/sharded/mongos_disconnect.yml +0 -104
  1591. data/spec/support/sdam/sharded/multiple_mongoses.yml +0 -46
  1592. data/spec/support/sdam/sharded/non_mongos_removed.yml +0 -41
  1593. data/spec/support/sdam/sharded/normalize_uri_case.yml +0 -32
  1594. data/spec/support/sdam/sharded/single_mongos.yml +0 -33
  1595. data/spec/support/sdam/single/direct_connection_external_ip.yml +0 -34
  1596. data/spec/support/sdam/single/direct_connection_mongos.yml +0 -33
  1597. data/spec/support/sdam/single/direct_connection_rsarbiter.yml +0 -35
  1598. data/spec/support/sdam/single/direct_connection_rsprimary.yml +0 -34
  1599. data/spec/support/sdam/single/direct_connection_rssecondary.yml +0 -35
  1600. data/spec/support/sdam/single/direct_connection_slave.yml +0 -32
  1601. data/spec/support/sdam/single/direct_connection_standalone.yml +0 -32
  1602. data/spec/support/sdam/single/not_ok_response.yml +0 -38
  1603. data/spec/support/sdam/single/standalone_removed.yml +0 -32
  1604. data/spec/support/sdam/single/unavailable_seed.yml +0 -28
  1605. data/spec/support/sdam_monitoring/replica_set_with_removal.yml +0 -106
  1606. data/spec/support/sdam_monitoring/required_replica_set.yml +0 -84
  1607. data/spec/support/sdam_monitoring/standalone.yml +0 -70
  1608. data/spec/support/sdam_monitoring.rb +0 -144
  1609. data/spec/support/server_discovery_and_monitoring.rb +0 -219
  1610. data/spec/support/server_selection/selection/ReplicaSetNoPrimary/read/Nearest.yml +0 -26
  1611. data/spec/support/server_selection/selection/ReplicaSetNoPrimary/read/Nearest_multiple.yml +0 -27
  1612. data/spec/support/server_selection/selection/ReplicaSetNoPrimary/read/Nearest_non_matching.yml +0 -21
  1613. data/spec/support/server_selection/selection/ReplicaSetNoPrimary/read/Primary.yml +0 -21
  1614. data/spec/support/server_selection/selection/ReplicaSetNoPrimary/read/PrimaryPreferred.yml +0 -26
  1615. data/spec/support/server_selection/selection/ReplicaSetNoPrimary/read/PrimaryPreferred_non_matching.yml +0 -21
  1616. data/spec/support/server_selection/selection/ReplicaSetNoPrimary/read/Secondary.yml +0 -26
  1617. data/spec/support/server_selection/selection/ReplicaSetNoPrimary/read/SecondaryPreferred.yml +0 -26
  1618. data/spec/support/server_selection/selection/ReplicaSetNoPrimary/read/SecondaryPreferred_non_matching.yml +0 -21
  1619. data/spec/support/server_selection/selection/ReplicaSetNoPrimary/read/Secondary_non_matching.yml +0 -21
  1620. data/spec/support/server_selection/selection/ReplicaSetWithPrimary/read/Nearest.yml +0 -33
  1621. data/spec/support/server_selection/selection/ReplicaSetWithPrimary/read/Nearest_multiple.yml +0 -34
  1622. data/spec/support/server_selection/selection/ReplicaSetWithPrimary/read/Nearest_non_matching.yml +0 -26
  1623. data/spec/support/server_selection/selection/ReplicaSetWithPrimary/read/Primary.yml +0 -29
  1624. data/spec/support/server_selection/selection/ReplicaSetWithPrimary/read/PrimaryPreferred.yml +0 -29
  1625. data/spec/support/server_selection/selection/ReplicaSetWithPrimary/read/PrimaryPreferred_non_matching.yml +0 -29
  1626. data/spec/support/server_selection/selection/ReplicaSetWithPrimary/read/Secondary.yml +0 -31
  1627. data/spec/support/server_selection/selection/ReplicaSetWithPrimary/read/SecondaryPreferred.yml +0 -31
  1628. data/spec/support/server_selection/selection/ReplicaSetWithPrimary/read/SecondaryPreferred_non_matching.yml +0 -29
  1629. data/spec/support/server_selection/selection/ReplicaSetWithPrimary/read/Secondary_non_matching.yml +0 -26
  1630. data/spec/support/server_selection/selection/Sharded/read/SecondaryPreferred.yml +0 -26
  1631. data/spec/support/server_selection/selection/Single/read/SecondaryPreferred.yml +0 -19
  1632. data/spec/support/server_selection/selection/Unknown/read/SecondaryPreferred.yml +0 -11
  1633. data/spec/support/server_selection.rb +0 -163
  1634. data/spec/support/server_selection_rtt.rb +0 -41
  1635. data/spec/support/travis.rb +0 -14
  1636. /data/spec/{support → spec_tests/data}/command_monitoring/deleteMany.yml +0 -0
  1637. /data/spec/{support → spec_tests/data}/command_monitoring/deleteOne.yml +0 -0
  1638. /data/spec/{support → spec_tests/data}/command_monitoring/insertOne.yml +0 -0
  1639. /data/spec/{support/connection_string_tests → spec_tests/data/connection_string}/valid-host_identifiers.yml +0 -0
  1640. /data/spec/{support/crud_tests → spec_tests/data/crud}/read/aggregate-collation.yml +0 -0
  1641. /data/spec/{support/crud_tests → spec_tests/data/crud}/read/aggregate.yml +0 -0
  1642. /data/spec/{support/crud_tests → spec_tests/data/crud}/read/distinct-collation.yml +0 -0
  1643. /data/spec/{support/crud_tests → spec_tests/data/crud}/read/distinct.yml +0 -0
  1644. /data/spec/{support/crud_tests → spec_tests/data/crud}/read/find-collation.yml +0 -0
  1645. /data/spec/{support/crud_tests → spec_tests/data/crud}/read/find.yml +0 -0
  1646. /data/spec/{support/crud_tests → spec_tests/data/crud}/write/deleteMany-collation.yml +0 -0
  1647. /data/spec/{support/crud_tests → spec_tests/data/crud}/write/deleteMany.yml +0 -0
  1648. /data/spec/{support/crud_tests → spec_tests/data/crud}/write/deleteOne-collation.yml +0 -0
  1649. /data/spec/{support/crud_tests → spec_tests/data/crud}/write/deleteOne.yml +0 -0
  1650. /data/spec/{support/crud_tests → spec_tests/data/crud}/write/findOneAndDelete-collation.yml +0 -0
  1651. /data/spec/{support/crud_tests → spec_tests/data/crud}/write/findOneAndDelete.yml +0 -0
  1652. /data/spec/{support/crud_tests → spec_tests/data/crud}/write/findOneAndReplace-collation.yml +0 -0
  1653. /data/spec/{support/crud_tests → spec_tests/data/crud}/write/findOneAndUpdate-collation.yml +0 -0
  1654. /data/spec/{support/crud_tests → spec_tests/data/crud}/write/insertOne.yml +0 -0
  1655. /data/spec/{support/crud_tests → spec_tests/data/crud}/write/replaceOne-upsert.yml +0 -0
  1656. /data/spec/{support/gridfs_tests → spec_tests/data/gridfs}/download_by_name.yml +0 -0
  1657. /data/spec/{support/gridfs_tests → spec_tests/data/gridfs}/upload.yml +0 -0
  1658. /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetNoPrimary/DefaultNoMaxStaleness.yml +0 -0
  1659. /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetNoPrimary/Incompatible.yml +0 -0
  1660. /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetNoPrimary/LastUpdateTime.yml +0 -0
  1661. /data/spec/{support/max_staleness/ReplicaSetNoPrimary/NoKnownServers.yml → spec_tests/data/max_staleness/ReplicaSetNoPrimary/MaxStalenessTooSmall.yml} +0 -0
  1662. /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetNoPrimary/Nearest.yml +0 -0
  1663. /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetNoPrimary/Nearest2.yml +0 -0
  1664. /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetNoPrimary/PrimaryPreferred.yml +0 -0
  1665. /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetNoPrimary/PrimaryPreferred_tags.yml +0 -0
  1666. /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetNoPrimary/Secondary.yml +0 -0
  1667. /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetNoPrimary/SecondaryPreferred.yml +0 -0
  1668. /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetNoPrimary/SecondaryPreferred_tags.yml +0 -0
  1669. /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetNoPrimary/ZeroMaxStaleness.yml +0 -0
  1670. /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetWithPrimary/DefaultNoMaxStaleness.yml +0 -0
  1671. /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetWithPrimary/Incompatible.yml +0 -0
  1672. /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetWithPrimary/LastUpdateTime.yml +0 -0
  1673. /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetWithPrimary/LongHeartbeat.yml +0 -0
  1674. /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetWithPrimary/LongHeartbeat2.yml +0 -0
  1675. /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetWithPrimary/MaxStalenessTooSmall.yml +0 -0
  1676. /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetWithPrimary/MaxStalenessWithModePrimary.yml +0 -0
  1677. /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetWithPrimary/Nearest.yml +0 -0
  1678. /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetWithPrimary/Nearest2.yml +0 -0
  1679. /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetWithPrimary/Nearest_tags.yml +0 -0
  1680. /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetWithPrimary/PrimaryPreferred.yml +0 -0
  1681. /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetWithPrimary/PrimaryPreferred_incompatible.yml +0 -0
  1682. /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetWithPrimary/SecondaryPreferred.yml +0 -0
  1683. /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetWithPrimary/SecondaryPreferred_tags.yml +0 -0
  1684. /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetWithPrimary/SecondaryPreferred_tags2.yml +0 -0
  1685. /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetWithPrimary/Secondary_tags.yml +0 -0
  1686. /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetWithPrimary/Secondary_tags2.yml +0 -0
  1687. /data/spec/{support → spec_tests/data}/max_staleness/ReplicaSetWithPrimary/ZeroMaxStaleness.yml +0 -0
  1688. /data/spec/{support → spec_tests/data}/max_staleness/Sharded/Incompatible.yml +0 -0
  1689. /data/spec/{support → spec_tests/data}/max_staleness/Sharded/SmallMaxStaleness.yml +0 -0
  1690. /data/spec/{support → spec_tests/data}/max_staleness/Single/Incompatible.yml +0 -0
  1691. /data/spec/{support → spec_tests/data}/max_staleness/Single/SmallMaxStaleness.yml +0 -0
  1692. /data/spec/{support → spec_tests/data}/sdam_monitoring/replica_set_with_no_primary.yml +0 -0
  1693. /data/spec/{support → spec_tests/data}/sdam_monitoring/replica_set_with_primary.yml +0 -0
  1694. /data/spec/{support/server_selection/selection → spec_tests/data/server_selection}/ReplicaSetNoPrimary/read/Secondary_multi_tags.yml +0 -0
  1695. /data/spec/{support/server_selection/selection → spec_tests/data/server_selection}/ReplicaSetNoPrimary/read/Secondary_multi_tags2.yml +0 -0
  1696. /data/spec/{support/server_selection/selection → spec_tests/data/server_selection}/ReplicaSetWithPrimary/read/SecondaryPreferred_tags.yml +0 -0
  1697. /data/spec/{support/server_selection/rtt → spec_tests/data/server_selection_rtt}/first_value.yml +0 -0
  1698. /data/spec/{support/server_selection/rtt → spec_tests/data/server_selection_rtt}/first_value_zero.yml +0 -0
  1699. /data/spec/{support/server_selection/rtt → spec_tests/data/server_selection_rtt}/value_test_1.yml +0 -0
  1700. /data/spec/{support/server_selection/rtt → spec_tests/data/server_selection_rtt}/value_test_2.yml +0 -0
  1701. /data/spec/{support/server_selection/rtt → spec_tests/data/server_selection_rtt}/value_test_3.yml +0 -0
  1702. /data/spec/{support/server_selection/rtt → spec_tests/data/server_selection_rtt}/value_test_4.yml +0 -0
  1703. /data/spec/{support/server_selection/rtt → spec_tests/data/server_selection_rtt}/value_test_5.yml +0 -0
data/lib/mongo/client.rb CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2014-2016 MongoDB, Inc.
1
+ # Copyright (C) 2014-2020 MongoDB Inc.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the 'License');
4
4
  # you may not use this file except in compliance with the License.
@@ -22,11 +22,29 @@ module Mongo
22
22
  extend Forwardable
23
23
  include Loggable
24
24
 
25
- # The options that do not affect the behaviour of a cluster and its
25
+ # The options that do not affect the behavior of a cluster and its
26
26
  # subcomponents.
27
27
  #
28
28
  # @since 2.1.0
29
- CRUD_OPTIONS = [ :database, :read, :write ].freeze
29
+ CRUD_OPTIONS = [
30
+ :auto_encryption_options,
31
+ :database,
32
+ :read, :read_concern,
33
+ :write, :write_concern,
34
+ :retry_reads, :max_read_retries, :read_retry_interval,
35
+ :retry_writes, :max_write_retries,
36
+
37
+ # Options which cannot currently be here:
38
+ #
39
+ # :server_selection_timeout
40
+ # Server selection timeout is used by cluster constructor to figure out
41
+ # how long to wait for initial scan in compatibility mode, but once
42
+ # the cluster is initialized it no longer uses this timeout.
43
+ # Unfortunately server selector reads server selection timeout out of
44
+ # the cluster, and this behavior is required by Cluster#next_primary
45
+ # which takes no arguments. When next_primary is removed we can revsit
46
+ # using the same cluster object with different server selection timeouts.
47
+ ].freeze
30
48
 
31
49
  # Valid client options.
32
50
  #
@@ -36,6 +54,11 @@ module Mongo
36
54
  :auth_mech,
37
55
  :auth_mech_properties,
38
56
  :auth_source,
57
+ :auto_encryption_options,
58
+ :bg_error_backtrace,
59
+ :cleanup,
60
+ :compressors,
61
+ :direct_connection,
39
62
  :connect,
40
63
  :connect_timeout,
41
64
  :database,
@@ -43,35 +66,56 @@ module Mongo
43
66
  :id_generator,
44
67
  :local_threshold,
45
68
  :logger,
69
+ :log_prefix,
70
+ :max_idle_time,
46
71
  :max_pool_size,
47
72
  :max_read_retries,
73
+ :max_write_retries,
48
74
  :min_pool_size,
49
75
  :monitoring,
76
+ :monitoring_io,
50
77
  :password,
51
78
  :platform,
52
79
  :read,
80
+ :read_concern,
53
81
  :read_retry_interval,
54
82
  :replica_set,
83
+ :resolv_options,
84
+ :retry_reads,
85
+ :retry_writes,
86
+ :scan,
87
+ :sdam_proc,
55
88
  :server_selection_timeout,
56
89
  :socket_timeout,
57
90
  :ssl,
58
91
  :ssl_ca_cert,
59
- :ssl_ca_cert_string,
60
92
  :ssl_ca_cert_object,
93
+ :ssl_ca_cert_string,
61
94
  :ssl_cert,
62
- :ssl_cert_string,
63
95
  :ssl_cert_object,
96
+ :ssl_cert_string,
64
97
  :ssl_key,
65
- :ssk_key_string,
66
98
  :ssl_key_object,
67
99
  :ssl_key_pass_phrase,
100
+ :ssl_key_string,
68
101
  :ssl_verify,
102
+ :ssl_verify_certificate,
103
+ :ssl_verify_hostname,
104
+ :ssl_verify_ocsp_endpoint,
69
105
  :truncate_logs,
70
106
  :user,
71
107
  :wait_queue_timeout,
72
- :write
108
+ :wrapping_libraries,
109
+ :write,
110
+ :write_concern,
111
+ :zlib_compression_level,
73
112
  ].freeze
74
113
 
114
+ # The compression algorithms supported by the driver.
115
+ #
116
+ # @since 2.5.0
117
+ VALID_COMPRESSORS = [ Mongo::Protocol::Compressed::ZLIB ].freeze
118
+
75
119
  # @return [ Mongo::Cluster ] cluster The cluster of servers for the client.
76
120
  attr_reader :cluster
77
121
 
@@ -81,11 +125,26 @@ module Mongo
81
125
  # @return [ Hash ] options The configuration options.
82
126
  attr_reader :options
83
127
 
128
+ # @return [ Mongo::Crypt::AutoEncrypter ] The object that encapsulates
129
+ # auto-encryption behavior
130
+ attr_reader :encrypter
131
+
84
132
  # Delegate command and collections execution to the current database.
85
133
  def_delegators :@database, :command, :collections
86
134
 
87
135
  # Delegate subscription to monitoring.
88
- def_delegators :@monitoring, :subscribe, :unsubscribe
136
+ def_delegators :monitoring, :subscribe, :unsubscribe
137
+
138
+ # @return [ Monitoring ] monitoring The monitoring.
139
+ # @api private
140
+ def monitoring
141
+ if cluster
142
+ cluster.monitoring
143
+ else
144
+ @monitoring
145
+ end
146
+ end
147
+ private :monitoring
89
148
 
90
149
  # Determine if this client is equivalent to another object.
91
150
  #
@@ -133,108 +192,412 @@ module Mongo
133
192
  # Instantiate a new driver client.
134
193
  #
135
194
  # @example Instantiate a single server or mongos client.
136
- # Mongo::Client.new([ '127.0.0.1:27017' ])
195
+ # Mongo::Client.new(['127.0.0.1:27017'])
137
196
  #
138
197
  # @example Instantiate a client for a replica set.
139
- # Mongo::Client.new([ '127.0.0.1:27017', '127.0.0.1:27021' ])
198
+ # Mongo::Client.new(['127.0.0.1:27017', '127.0.0.1:27021'])
199
+ #
200
+ # @example Directly connect to a mongod in a replica set
201
+ # Mongo::Client.new(['127.0.0.1:27017'], :connect => :direct)
202
+ # # without `:connect => :direct`, Mongo::Client will discover and
203
+ # # connect to the replica set if given the address of a server in
204
+ # # a replica set
140
205
  #
141
- # @param [ Array<String>, String ] addresses_or_uri The array of server addresses in the
206
+ # @param [ Array<String> | String ] addresses_or_uri The array of server addresses in the
142
207
  # form of host:port or a MongoDB URI connection string.
143
- # @param [ Hash ] options The options to be used by the client.
208
+ # @param [ Hash ] options The options to be used by the client. If a MongoDB URI
209
+ # connection string is also provided, these options take precedence over any
210
+ # analogous options present in the URI string.
144
211
  #
212
+ # @option options [ String, Symbol ] :app_name Application name that is
213
+ # printed to the mongod logs upon establishing a connection in server
214
+ # versions >= 3.4.
145
215
  # @option options [ Symbol ] :auth_mech The authentication mechanism to
146
- # use. One of :mongodb_cr, :mongodb_x509, :plain, :scram
216
+ # use. One of :mongodb_cr, :mongodb_x509, :plain, :scram, :scram256
217
+ # @option options [ Hash ] :auth_mech_properties
147
218
  # @option options [ String ] :auth_source The source to authenticate from.
148
- # @option options [ Symbol ] :connect The connection method to use. This
219
+ # @option options [ true | false | nil | Integer ] :bg_error_backtrace
220
+ # Experimental. Set to true to log complete backtraces for errors in
221
+ # background threads. Set to false or nil to not log backtraces. Provide
222
+ # a positive integer to log up to that many backtrace lines.
223
+ # @option options [ Array<String> ] :compressors A list of potential
224
+ # compressors to use, in order of preference. The driver chooses the
225
+ # first compressor that is also supported by the server. Currently the
226
+ # driver only supports 'zlib'.
227
+ # @option options [ true | false ] :direct_connection Whether to connect
228
+ # directly to the specified seed, bypassing topology discovery. Exactly
229
+ # one seed must be provided.
230
+ # @option options [ Symbol ] :connect Deprecated - use :direct_connection
231
+ # option instead of this option. The connection method to use. This
149
232
  # forces the cluster to behave in the specified way instead of
150
233
  # auto-discovering. One of :direct, :replica_set, :sharded
234
+ # @option options [ Float ] :connect_timeout The timeout, in seconds, to
235
+ # attempt a connection.
151
236
  # @option options [ String ] :database The database to connect to.
152
- # @option options [ Hash ] :auth_mech_properties
153
- # @option options [ Float ] :heartbeat_frequency The number of seconds for
154
- # the server monitor to refresh it's description via ismaster.
237
+ # @option options [ Float ] :heartbeat_frequency The interval, in seconds,
238
+ # for the server monitor to refresh its description via ismaster.
239
+ # @option options [ Object ] :id_generator A custom object to generate ids
240
+ # for documents. Must respond to #generate.
155
241
  # @option options [ Integer ] :local_threshold The local threshold boundary
156
242
  # in seconds for selecting a near server for an operation.
157
- # @option options [ Integer ] :server_selection_timeout The timeout in seconds
158
- # for selecting a server for an operation.
159
- # @option options [ String ] :password The user's password.
243
+ # @option options [ Logger ] :logger A custom logger to use.
244
+ # @option options [ String ] :log_prefix A custom log prefix to use when
245
+ # logging. This option is experimental and subject to change in a future
246
+ # version of the driver.
247
+ # @option options [ Integer ] :max_idle_time The maximum seconds a socket can remain idle
248
+ # since it has been checked in to the pool.
160
249
  # @option options [ Integer ] :max_pool_size The maximum size of the
161
250
  # connection pool.
251
+ # @option options [ Integer ] :max_read_retries The maximum number of read
252
+ # retries when legacy read retries are in use.
253
+ # @option options [ Integer ] :max_write_retries The maximum number of write
254
+ # retries when legacy write retries are in use.
162
255
  # @option options [ Integer ] :min_pool_size The minimum size of the
163
256
  # connection pool.
164
- # @option options [ Float ] :wait_queue_timeout The time to wait, in
165
- # seconds, in the connection pool for a connection to be checked in.
166
- # @option options [ Float ] :connect_timeout The timeout, in seconds, to
167
- # attempt a connection.
168
- # @option options [ Hash ] :read The read preference options. They consist of a
169
- # mode specified as a symbol, an array of hashes known as tag_sets,
170
- # and local_threshold.
171
- # :mode can be one of :secondary, :secondary_preferred, :primary,
172
- # :primary_preferred, :nearest.
257
+ # @option options [ true, false ] :monitoring If false is given, the
258
+ # client is initialized without global SDAM event subscribers and
259
+ # will not publish SDAM events. Command monitoring and legacy events
260
+ # will still be published, and the driver will still perform SDAM and
261
+ # monitor its cluster in order to perform server selection. Built-in
262
+ # driver logging of SDAM events will be disabled because it is
263
+ # implemented through SDAM event subscription. Client#subscribe will
264
+ # succeed for all event types, but subscribers to SDAM events will
265
+ # not be invoked. Values other than false result in default behavior
266
+ # which is to perform normal SDAM event publication.
267
+ # @option options [ true, false ] :monitoring_io For internal driver
268
+ # use only. Set to false to prevent SDAM-related I/O from being
269
+ # done by this client or servers under it. Note: setting this option
270
+ # to false will make the client non-functional. It is intended for
271
+ # use in tests which manually invoke SDAM state transitions.
272
+ # @option options [ true | false ] :cleanup For internal driver use only.
273
+ # Set to false to prevent endSessions command being sent to the server
274
+ # to clean up server sessions when the cluster is disconnected, and to
275
+ # to not start the periodic executor. If :monitoring_io is false,
276
+ # :cleanup automatically defaults to false as well.
277
+ # @option options [ String ] :password The user's password.
278
+ # @option options [ String ] :platform Platform information to include in
279
+ # the metadata printed to the mongod logs upon establishing a connection
280
+ # in server versions >= 3.4.
281
+ # @option options [ Hash ] :read The read preference options. The hash
282
+ # may have the following items:
283
+ # - *:mode* -- read preference specified as a symbol; valid values are
284
+ # *:primary*, *:primary_preferred*, *:secondary*, *:secondary_preferred*
285
+ # and *:nearest*.
286
+ # - *:tag_sets* -- an array of hashes.
287
+ # - *:local_threshold*.
288
+ # @option options [ Hash ] :read_concern The read concern option.
289
+ # @option options [ Float ] :read_retry_interval The interval, in seconds,
290
+ # in which reads on a mongos are retried.
173
291
  # @option options [ Symbol ] :replica_set The name of the replica set to
174
292
  # connect to. Servers not in this replica set will be ignored.
175
- # @option options [ true, false ] :ssl Whether to use SSL.
293
+ # @option options [ true | false ] :retry_reads If true, modern retryable
294
+ # reads are enabled (which is the default). If false, modern retryable
295
+ # reads are disabled and legacy retryable reads are enabled.
296
+ # @option options [ true | false ] :retry_writes Retry writes once when
297
+ # connected to a replica set or sharded cluster versions 3.6 and up.
298
+ # (Default is true.)
299
+ # @option options [ true | false ] :scan Whether to scan all seeds
300
+ # in constructor. The default in driver version 2.x is to do so;
301
+ # driver version 3.x will not scan seeds in constructor. Opt in to the
302
+ # new behavior by setting this option to false. *Note:* setting
303
+ # this option to nil enables scanning seeds in constructor in driver
304
+ # version 2.x. Driver version 3.x will recognize this option but
305
+ # will ignore it and will never scan seeds in the constructor.
306
+ # @option options [ Proc ] :sdam_proc A Proc to invoke with the client
307
+ # as the argument prior to performing server discovery and monitoring.
308
+ # Use this to set up SDAM event listeners to receive events published
309
+ # during client construction.
310
+ #
311
+ # Note: the client is not fully constructed when sdam_proc is invoked,
312
+ # in particular the cluster is nil at this time. sdam_proc should
313
+ # limit itself to calling #subscribe and #unsubscribe methods on the
314
+ # client only.
315
+ # @option options [ Integer ] :server_selection_timeout The timeout in seconds
316
+ # for selecting a server for an operation.
317
+ # @option options [ Float ] :socket_timeout The timeout, in seconds, to
318
+ # execute operations on a socket.
319
+ # @option options [ true, false ] :ssl Whether to use TLS.
320
+ # @option options [ String ] :ssl_ca_cert The file containing concatenated
321
+ # certificate authority certificates used to validate certs passed from the
322
+ # other end of the connection. Intermediate certificates should NOT be
323
+ # specified in files referenced by this option. One of :ssl_ca_cert,
324
+ # :ssl_ca_cert_string or :ssl_ca_cert_object (in order of priority) is
325
+ # required when using :ssl_verify.
326
+ # @option options [ Array<OpenSSL::X509::Certificate> ] :ssl_ca_cert_object
327
+ # An array of OpenSSL::X509::Certificate objects representing the
328
+ # certificate authority certificates used to validate certs passed from
329
+ # the other end of the connection. Intermediate certificates should NOT
330
+ # be specified in files referenced by this option. One of :ssl_ca_cert,
331
+ # :ssl_ca_cert_string or :ssl_ca_cert_object (in order of priority)
332
+ # is required when using :ssl_verify.
333
+ # @option options [ String ] :ssl_ca_cert_string A string containing
334
+ # certificate authority certificate used to validate certs passed from the
335
+ # other end of the connection. This option allows passing only one CA
336
+ # certificate to the driver. Intermediate certificates should NOT
337
+ # be specified in files referenced by this option. One of :ssl_ca_cert,
338
+ # :ssl_ca_cert_string or :ssl_ca_cert_object (in order of priority) is
339
+ # required when using :ssl_verify.
176
340
  # @option options [ String ] :ssl_cert The certificate file used to identify
177
- # the connection against MongoDB. This option, if present, takes precedence
178
- # over the values of :ssl_cert_string and :ssl_cert_object
179
- # @option options [ String ] :ssl_cert_string A string containing the PEM-encoded
180
- # certificate used to identify the connection against MongoDB. This option, if present,
181
- # takes precedence over the value of :ssl_cert_object
341
+ # the connection against MongoDB. A certificate chain may be passed by
342
+ # specifying the client certificate first followed by any intermediate
343
+ # certificates up to the CA certificate. The file may also contain the
344
+ # certificate's private key, which will be ignored. This option, if present,
345
+ # takes precedence over the values of :ssl_cert_string and :ssl_cert_object
182
346
  # @option options [ OpenSSL::X509::Certificate ] :ssl_cert_object The OpenSSL::X509::Certificate
183
- # used to identify the connection against MongoDB
347
+ # used to identify the connection against MongoDB. Only one certificate
348
+ # may be passed through this option.
349
+ # @option options [ String ] :ssl_cert_string A string containing the PEM-encoded
350
+ # certificate used to identify the connection against MongoDB. A certificate
351
+ # chain may be passed by specifying the client certificate first followed
352
+ # by any intermediate certificates up to the CA certificate. The string
353
+ # may also contain the certificate's private key, which will be ignored,
354
+ # This option, if present, takes precedence over the value of :ssl_cert_object
184
355
  # @option options [ String ] :ssl_key The private keyfile used to identify the
185
356
  # connection against MongoDB. Note that even if the key is stored in the same
186
357
  # file as the certificate, both need to be explicitly specified. This option,
187
358
  # if present, takes precedence over the values of :ssl_key_string and :ssl_key_object
188
- # @option options [ String ] :ssl_key_string A string containing the PEM-encoded private key
189
- # used to identify the connection against MongoDB. This parameter, if present,
190
- # takes precedence over the value of option :ssl_key_object
191
359
  # @option options [ OpenSSL::PKey ] :ssl_key_object The private key used to identify the
192
360
  # connection against MongoDB
193
361
  # @option options [ String ] :ssl_key_pass_phrase A passphrase for the private key.
194
- # @option options [ true, false ] :ssl_verify Whether or not to do peer certification
195
- # validation.
196
- # @option options [ String ] :ssl_ca_cert The file containing a set of concatenated
197
- # certification authority certifications used to validate certs passed from the
198
- # other end of the connection. One of :ssl_ca_cert, :ssl_ca_cert_string or
199
- # :ssl_ca_cert_object (in order of priority) is required for :ssl_verify.
200
- # @option options [ String ] :ssl_ca_cert_string A string containing a set of concatenated
201
- # certification authority certifications used to validate certs passed from the
202
- # other end of the connection. One of :ssl_ca_cert, :ssl_ca_cert_string or
203
- # :ssl_ca_cert_object (in order of priority) is required for :ssl_verify.
204
- # @option options [ Array<OpenSSL::X509::Certificate> ] :ssl_ca_cert_object An array of
205
- # OpenSSL::X509::Certificate representing the certification authority certifications used
206
- # to validate certs passed from the other end of the connection. One of :ssl_ca_cert,
207
- # :ssl_ca_cert_string or :ssl_ca_cert_object (in order of priority) is required for :ssl_verify.
208
- # @option options [ Float ] :socket_timeout The timeout, in seconds, to
209
- # execute operations on a socket.
210
- # @option options [ String ] :user The user name.
211
- # @option options [ Hash ] :write The write concern options. Can be :w =>
212
- # Integer|String, :fsync => Boolean, :j => Boolean.
213
- # @option options [ true, false ] :monitoring Initializes a client without
214
- # any default monitoring if false is provided.
215
- # @option options [ Logger ] :logger A custom logger if desired.
362
+ # @option options [ String ] :ssl_key_string A string containing the PEM-encoded private key
363
+ # used to identify the connection against MongoDB. This parameter, if present,
364
+ # takes precedence over the value of option :ssl_key_object
365
+ # @option options [ true, false ] :ssl_verify Whether to perform peer certificate validation and
366
+ # hostname verification. Note that the decision of whether to validate certificates will be
367
+ # overridden if :ssl_verify_certificate is set, and the decision of whether to validate
368
+ # hostnames will be overridden if :ssl_verify_hostname is set.
369
+ # @option options [ true, false ] :ssl_verify_certificate Whether to perform peer certificate
370
+ # validation. This setting overrides :ssl_verify with respect to whether certificate
371
+ # validation is performed.
372
+ # @option options [ true, false ] :ssl_verify_hostname Whether to perform peer hostname
373
+ # validation. This setting overrides :ssl_verify with respect to whether hostname validation
374
+ # is performed.
216
375
  # @option options [ true, false ] :truncate_logs Whether to truncate the
217
376
  # logs at the default 250 characters.
218
- # @option options [ Integer ] :max_read_retries The maximum number of read
219
- # retries on mongos query failures.
220
- # @option options [ Float ] :read_retry_interval The interval, in seconds,
221
- # in which reads on a mongos are retried.
222
- # @option options [ Object ] :id_generator A custom object to generate ids
223
- # for documents. Must respond to #generate.
224
- # @option options [ String, Symbol ] :app_name Application name that is printed to the
225
- # mongod logs upon establishing a connection in server versions >= 3.4.
226
- # @option options [ String ] :platform Platform information to include in the
227
- # metadata printed to the mongod logs upon establishing a connection in server versions >= 3.4.
377
+ # @option options [ String ] :user The user name.
378
+ # @option options [ Float ] :wait_queue_timeout The time to wait, in
379
+ # seconds, in the connection pool for a connection to be checked in.
380
+ # @option options [ Array<Hash> ] :wrapping_libraries Information about
381
+ # libraries such as ODMs that are wrapping the driver, to be added to
382
+ # metadata sent to the server. Specify the lower level libraries first.
383
+ # Allowed hash keys: :name, :version, :platform.
384
+ # @option options [ Hash ] :write Deprecated. Equivalent to :write_concern
385
+ # option.
386
+ # @option options [ Hash ] :write_concern The write concern options.
387
+ # Can be :w => Integer|String, :wtimeout => Integer (in milliseconds),
388
+ # :j => Boolean, :fsync => Boolean.
389
+ # @option options [ Integer ] :zlib_compression_level The Zlib compression level to use, if using compression.
390
+ # See Ruby's Zlib module for valid levels.
391
+ # @option options [ Hash ] :resolv_options For internal driver use only.
392
+ # Options to pass through to Resolv::DNS constructor for SRV lookups.
393
+ # @option options [ Hash ] :auto_encryption_options Auto-encryption related
394
+ # options.
395
+ # - :key_vault_client => Client | nil, a client connected to the MongoDB
396
+ # instance containing the encryption key vault
397
+ # - :key_vault_namespace => String, the namespace of the key vault in the
398
+ # format database.collection
399
+ # - :kms_providers => Hash, A hash of key management service configuration
400
+ # information. Valid hash keys are :local or :aws. There may be more
401
+ # than one kms provider specified.
402
+ # - :schema_map => Hash | nil, JSONSchema for one or more collections
403
+ # specifying which fields should be encrypted.
404
+ # - Note: Schemas supplied in the schema_map only apply to configuring
405
+ # automatic encryption for client side encryption. Other validation
406
+ # rules in the JSON schema will not be enforced by the driver and will
407
+ # result in an error.
408
+ # - Note: Supplying a schema_map provides more security than relying on
409
+ # JSON Schemas obtained from the server. It protects against a
410
+ # malicious server advertising a false JSON Schema, which could trick
411
+ # the client into sending unencrypted data that should be encrypted.
412
+ # - :bypass_auto_encryption => Boolean, when true, disables auto encryption;
413
+ # defaults to false.
414
+ # - :extra_options => Hash | nil, options related to spawning mongocryptd
415
+ # (this part of the API is subject to change).
416
+ #
417
+ # Notes on automatic encryption:
418
+ # - Automatic encryption is an enterprise only feature that only applies
419
+ # to operations on a collection.
420
+ # - Automatic encryption is not supported for operations on a database or
421
+ # view.
422
+ # - Automatic encryption requires the authenticated user to have the
423
+ # listCollections privilege.
424
+ # - At worst, automatic encryption may triple the number of connections
425
+ # used by the Client at any one time.
426
+ # - If automatic encryption fails on an operation, use a MongoClient
427
+ # configured with bypass_auto_encryption: true and use
428
+ # ClientEncryption.encrypt to manually encrypt values.
429
+ # - Enabling Client Side Encryption reduces the maximum write batch size
430
+ # and may have a negative performance impact.
228
431
  #
229
432
  # @since 2.0.0
230
- def initialize(addresses_or_uri, options = Options::Redacted.new)
231
- @monitoring = Monitoring.new(options)
433
+ def initialize(addresses_or_uri, options = nil)
434
+ options = options ? options.dup : {}
435
+
436
+ srv_uri = nil
232
437
  if addresses_or_uri.is_a?(::String)
233
- create_from_uri(addresses_or_uri, validate_options(options))
438
+ uri = URI.get(addresses_or_uri, options)
439
+ if uri.is_a?(URI::SRVProtocol)
440
+ # If the URI is an SRV URI, note this so that we can start
441
+ # SRV polling if the topology is a sharded cluster.
442
+ srv_uri = uri
443
+ end
444
+ addresses = uri.servers
445
+ uri_options = uri.client_options.dup
446
+ # Special handing for :write and :write_concern: allow client Ruby
447
+ # options to override URI options, even when the Ruby option uses the
448
+ # deprecated :write key and the URI option uses the current
449
+ # :write_concern key
450
+ if options[:write]
451
+ uri_options.delete(:write_concern)
452
+ end
453
+ options = uri_options.merge(options)
454
+ @srv_records = uri.srv_records
234
455
  else
235
- create_from_addresses(addresses_or_uri, validate_options(options))
456
+ addresses = addresses_or_uri
457
+ addresses.each do |addr|
458
+ if addr =~ /\Amongodb(\+srv)?:\/\//i
459
+ raise ArgumentError, "Host '#{addr}' should not contain protocol. Did you mean to not use an array?"
460
+ end
461
+ end
462
+
463
+ @srv_records = nil
464
+ end
465
+
466
+ options = self.class.canonicalize_ruby_options(options)
467
+
468
+ # Special handling for sdam_proc as it is only used during client
469
+ # construction
470
+ sdam_proc = options.delete(:sdam_proc)
471
+
472
+ # For gssapi service_name, the default option is given in a hash
473
+ # (one level down from the top level).
474
+ merged_options = default_options(options)
475
+ options.each do |k, v|
476
+ default_v = merged_options[k]
477
+ if Hash === default_v
478
+ v = default_v.merge(v)
479
+ end
480
+ merged_options[k] = v
481
+ end
482
+ options = merged_options
483
+
484
+ options.keys.each do |k|
485
+ if options[k].nil?
486
+ options.delete(k)
487
+ end
488
+ end
489
+
490
+ @options = validate_new_options!(options)
491
+ =begin WriteConcern object support
492
+ if @options[:write_concern].is_a?(WriteConcern::Base)
493
+ # Cache the instance so that we do not needlessly reconstruct it.
494
+ @write_concern = @options[:write_concern]
495
+ @options[:write_concern] = @write_concern.options
496
+ end
497
+ =end
498
+ @options.freeze
499
+ validate_options!(addresses)
500
+ validate_authentication_options!
501
+
502
+ @database = Database.new(self, @options[:database], @options)
503
+
504
+ # Temporarily set monitoring so that event subscriptions can be
505
+ # set up without there being a cluster
506
+ @monitoring = Monitoring.new(@options)
507
+
508
+ if sdam_proc
509
+ sdam_proc.call(self)
510
+ end
511
+
512
+ @connect_lock = Mutex.new
513
+ @connect_lock.synchronize do
514
+ @cluster = Cluster.new(addresses, @monitoring,
515
+ cluster_options.merge(srv_uri: srv_uri))
516
+ end
517
+
518
+ begin
519
+ # Unset monitoring, it will be taken out of cluster from now on
520
+ remove_instance_variable('@monitoring')
521
+
522
+ if @options[:auto_encryption_options]
523
+ @connect_lock.synchronize do
524
+ build_encrypter
525
+ end
526
+ end
527
+
528
+ rescue
529
+ begin
530
+ @cluster.disconnect!
531
+ rescue => e
532
+ log_warn("Eror disconnecting cluster in client constructor's exception handler: #{e.class}: #{e}")
533
+ # Drop this exception so that the original exception is raised
534
+ end
535
+ raise
536
+ end
537
+
538
+ if block_given?
539
+ begin
540
+ yield(self)
541
+ ensure
542
+ close
543
+ end
236
544
  end
237
- yield(self) if block_given?
545
+ end
546
+
547
+ # @api private
548
+ def cluster_options
549
+ # We share clusters when a new client with different CRUD_OPTIONS
550
+ # is requested; therefore, cluster should not be getting any of these
551
+ # options upon instantiation
552
+ options.reject do |key, value|
553
+ CRUD_OPTIONS.include?(key.to_sym)
554
+ end.merge(
555
+ # but need to put the database back in for auth...
556
+ database: options[:database],
557
+
558
+ # Put these options in for legacy compatibility, but note that
559
+ # their values on the client and the cluster do not have to match -
560
+ # applications should read these values from client, not from cluster
561
+ max_read_retries: options[:max_read_retries],
562
+ read_retry_interval: options[:read_retry_interval],
563
+ ).tap do |options|
564
+ # If the client has a cluster already, forward srv_uri to the new
565
+ # cluster to maintain SRV monitoring. If the client is brand new,
566
+ # its constructor sets srv_uri manually.
567
+ if cluster
568
+ options.update(srv_uri: cluster.options[:srv_uri])
569
+ end
570
+ end
571
+ end
572
+
573
+ # Get the maximum number of times the client can retry a read operation
574
+ # when using legacy read retries.
575
+ #
576
+ # @return [ Integer ] The maximum number of retries.
577
+ #
578
+ # @api private
579
+ def max_read_retries
580
+ options[:max_read_retries] || Cluster::MAX_READ_RETRIES
581
+ end
582
+
583
+ # Get the interval, in seconds, in which read retries when using legacy
584
+ # read retries.
585
+ #
586
+ # @return [ Float ] The interval.
587
+ #
588
+ # @api private
589
+ def read_retry_interval
590
+ options[:read_retry_interval] || Cluster::READ_RETRY_INTERVAL
591
+ end
592
+
593
+ # Get the maximum number of times the client can retry a write operation
594
+ # when using legacy write retries.
595
+ #
596
+ # @return [ Integer ] The maximum number of retries.
597
+ #
598
+ # @api private
599
+ def max_write_retries
600
+ options[:max_write_retries] || Cluster::MAX_WRITE_RETRIES
238
601
  end
239
602
 
240
603
  # Get an inspection of the client as a string.
@@ -246,7 +609,37 @@ module Mongo
246
609
  #
247
610
  # @since 2.0.0
248
611
  def inspect
249
- "#<Mongo::Client:0x#{object_id} cluster=#{cluster.addresses.join(', ')}>"
612
+ "#<Mongo::Client:0x#{object_id} cluster=#{cluster.summary}>"
613
+ end
614
+
615
+ # Get a summary of the client state.
616
+ #
617
+ # @note The exact format and layout of the returned summary string is
618
+ # not part of the driver's public API and may be changed at any time.
619
+ #
620
+ # @return [ String ] The summary string.
621
+ #
622
+ # @since 2.7.0
623
+ def summary
624
+ "#<Client cluster=#{cluster.summary}>"
625
+ end
626
+
627
+ # Get the server selector. It either uses the read preference
628
+ # defined in the client options or defaults to a Primary server selector.
629
+ #
630
+ # @example Get the server selector.
631
+ # client.server_selector
632
+ #
633
+ # @return [ Mongo::ServerSelector ] The server selector using the
634
+ # user-defined read preference or a Primary server selector default.
635
+ #
636
+ # @since 2.5.0
637
+ def server_selector
638
+ @server_selector ||= if read_preference
639
+ ServerSelector.get(read_preference)
640
+ else
641
+ ServerSelector.primary
642
+ end
250
643
  end
251
644
 
252
645
  # Get the read preference from the options passed to the client.
@@ -254,33 +647,48 @@ module Mongo
254
647
  # @example Get the read preference.
255
648
  # client.read_preference
256
649
  #
257
- # @return [ Object ] The appropriate read preference or primary if none
258
- # was provided to the client.
650
+ # @return [ BSON::Document ] The user-defined read preference.
651
+ # The document may have the following fields:
652
+ # - *:mode* -- read preference specified as a symbol; valid values are
653
+ # *:primary*, *:primary_preferred*, *:secondary*, *:secondary_preferred*
654
+ # and *:nearest*.
655
+ # - *:tag_sets* -- an array of hashes.
656
+ # - *:local_threshold*.
259
657
  #
260
658
  # @since 2.0.0
261
659
  def read_preference
262
- @read_preference ||= ServerSelector.get(options[:read] || ServerSelector::PRIMARY)
660
+ @read_preference ||= options[:read]
263
661
  end
264
662
 
265
- # Use the database with the provided name. This will switch the current
266
- # database the client is operating on.
663
+ # Creates a new client configured to use the database with the provided
664
+ # name, and using the other options configured in this client.
267
665
  #
268
- # @example Use the provided database.
666
+ # @note The new client shares the cluster with the original client,
667
+ # and as a result also shares the monitoring instance and monitoring
668
+ # event subscribers.
669
+ #
670
+ # @example Create a client for the `users' database.
269
671
  # client.use(:users)
270
672
  #
271
673
  # @param [ String, Symbol ] name The name of the database to use.
272
674
  #
273
- # @return [ Mongo::Client ] The new client with new database.
675
+ # @return [ Mongo::Client ] A new client instance.
274
676
  #
275
677
  # @since 2.0.0
276
678
  def use(name)
277
679
  with(database: name)
278
680
  end
279
681
 
280
- # Provides a new client with the passed options merged over the existing
682
+ # Creates a new client with the passed options merged over the existing
281
683
  # options of this client. Useful for one-offs to change specific options
282
684
  # without altering the original client.
283
685
  #
686
+ # @note Depending on options given, the returned client may share the
687
+ # cluster with the original client or be created with a new cluster.
688
+ # If a new cluster is created, the monitoring event subscribers on
689
+ # the new client are set to the default event subscriber set and
690
+ # none of the subscribers on the original client are copied over.
691
+ #
284
692
  # @example Get a client with changed options.
285
693
  # client.with(:read => { :mode => :primary_preferred })
286
694
  #
@@ -291,8 +699,7 @@ module Mongo
291
699
  # @since 2.0.0
292
700
  def with(new_options = Options::Redacted.new)
293
701
  clone.tap do |client|
294
- opts = validate_options(new_options)
295
- client.options.update(opts)
702
+ opts = client.update_options(new_options)
296
703
  Database.create(client)
297
704
  # We can't use the same cluster if some options that would affect it
298
705
  # have changed.
@@ -302,6 +709,72 @@ module Mongo
302
709
  end
303
710
  end
304
711
 
712
+ # Updates this client's options from new_options, validating all options.
713
+ #
714
+ # The new options may be transformed according to various rules.
715
+ # The final hash of options actually applied to the client is returned.
716
+ #
717
+ # If options fail validation, this method may warn or raise an exception.
718
+ # If this method raises an exception, the client should be discarded
719
+ # (similarly to if a constructor raised an exception).
720
+ #
721
+ # @param [ Hash ] new_options The new options to use.
722
+ #
723
+ # @return [ Hash ] Modified new options written into the client.
724
+ #
725
+ # @api private
726
+ def update_options(new_options)
727
+ old_options = @options
728
+
729
+ validate_new_options!(new_options).tap do |opts|
730
+ # Our options are frozen
731
+ options = @options.dup
732
+ if options[:write] && opts[:write_concern]
733
+ options.delete(:write)
734
+ end
735
+ if options[:write_concern] && opts[:write]
736
+ options.delete(:write_concern)
737
+ end
738
+
739
+ options.update(opts)
740
+ @options = options.freeze
741
+
742
+ auto_encryption_options_changed =
743
+ @options[:auto_encryption_options] != old_options[:auto_encryption_options]
744
+
745
+ # If there are new auto_encryption_options, create a new encrypter.
746
+ # Otherwise, allow the new client to share an encrypter with the
747
+ # original client.
748
+ #
749
+ # If auto_encryption_options are nil, set @encrypter to nil, but do not
750
+ # close the encrypter because it may still be used by the original client.
751
+ if @options[:auto_encryption_options] && auto_encryption_options_changed
752
+ @connect_lock.synchronize do
753
+ build_encrypter
754
+ end
755
+ elsif @options[:auto_encryption_options].nil?
756
+ @connect_lock.synchronize do
757
+ @encrypter = nil
758
+ end
759
+ end
760
+
761
+ validate_options!
762
+ validate_authentication_options!
763
+ end
764
+ end
765
+
766
+ # Get the read concern for this client.
767
+ #
768
+ # @example Get the client read concern.
769
+ # client.read_concern
770
+ #
771
+ # @return [ Hash ] The read concern.
772
+ #
773
+ # @since 2.6.0
774
+ def read_concern
775
+ options[:read_concern]
776
+ end
777
+
305
778
  # Get the write concern for this client. If no option was provided, then a
306
779
  # default single server acknowledgement will be used.
307
780
  #
@@ -312,19 +785,28 @@ module Mongo
312
785
  #
313
786
  # @since 2.0.0
314
787
  def write_concern
315
- @write_concern ||= WriteConcern.get(options[:write])
788
+ @write_concern ||= WriteConcern.get(options[:write_concern] || options[:write])
316
789
  end
317
790
 
318
791
  # Close all connections.
319
792
  #
320
- # @example Disconnect the client.
321
- # client.close
322
- #
323
793
  # @return [ true ] Always true.
324
794
  #
325
795
  # @since 2.1.0
326
796
  def close
327
- @cluster.disconnect! and true
797
+ @connect_lock.synchronize do
798
+ do_close
799
+ end
800
+ true
801
+ end
802
+
803
+ # Close encrypter and clean up auto-encryption resources.
804
+ #
805
+ # @return [ true ] Always true.
806
+ def close_encrypter
807
+ @encrypter.close if @encrypter
808
+
809
+ true
328
810
  end
329
811
 
330
812
  # Reconnect the client.
@@ -336,7 +818,19 @@ module Mongo
336
818
  #
337
819
  # @since 2.1.0
338
820
  def reconnect
339
- @cluster.reconnect! and true
821
+ addresses = cluster.addresses.map(&:to_s)
822
+
823
+ @connect_lock.synchronize do
824
+ do_close rescue nil
825
+
826
+ @cluster = Cluster.new(addresses, monitoring, cluster_options)
827
+
828
+ if @options[:auto_encryption_options]
829
+ build_encrypter
830
+ end
831
+ end
832
+
833
+ true
340
834
  end
341
835
 
342
836
  # Get the names of all databases.
@@ -344,11 +838,21 @@ module Mongo
344
838
  # @example Get the database names.
345
839
  # client.database_names
346
840
  #
841
+ # @param [ Hash ] filter The filter criteria for getting a list of databases.
842
+ # @param [ Hash ] opts The command options.
843
+ #
844
+ # @option opts [ true, false ] :authorized_databases A flag that determines
845
+ # which databases are returned based on user privileges when access control
846
+ # is enabled
847
+ #
848
+ # See https://docs.mongodb.com/manual/reference/command/listDatabases/
849
+ # for more information and usage.
850
+ #
347
851
  # @return [ Array<String> ] The names of the databases.
348
852
  #
349
853
  # @since 2.0.5
350
- def database_names
351
- list_databases.collect{ |info| info[Database::NAME] }
854
+ def database_names(filter = {}, opts = {})
855
+ list_databases(filter, true, opts).collect{ |info| info['name'] }
352
856
  end
353
857
 
354
858
  # Get info for each database.
@@ -356,31 +860,255 @@ module Mongo
356
860
  # @example Get the info for each database.
357
861
  # client.list_databases
358
862
  #
863
+ # @param [ Hash ] filter The filter criteria for getting a list of databases.
864
+ # @param [ true, false ] name_only Whether to only return each database name without full metadata.
865
+ # @param [ Hash ] opts The command options.
866
+ #
867
+ # @option opts [ true, false ] :authorized_databases A flag that determines
868
+ # which databases are returned based on user privileges when access control
869
+ # is enabled
870
+ #
871
+ # See https://docs.mongodb.com/manual/reference/command/listDatabases/
872
+ # for more information and usage.
873
+ #
359
874
  # @return [ Array<Hash> ] The info for each database.
360
875
  #
361
876
  # @since 2.0.5
362
- def list_databases
363
- use(Database::ADMIN).command(listDatabases: 1).first[Database::DATABASES]
877
+ def list_databases(filter = {}, name_only = false, opts = {})
878
+ cmd = { listDatabases: 1 }
879
+ cmd[:nameOnly] = !!name_only
880
+ cmd[:filter] = filter unless filter.empty?
881
+ cmd[:authorizedDatabases] = true if opts[:authorized_databases]
882
+ use(Database::ADMIN).database.read_command(cmd, opts).first[Database::DATABASES]
883
+ end
884
+
885
+ # Returns a list of Mongo::Database objects.
886
+ #
887
+ # @example Get a list of Mongo::Database objects.
888
+ # client.list_mongo_databases
889
+ #
890
+ # @param [ Hash ] filter The filter criteria for getting a list of databases.
891
+ # @param [ Hash ] opts The command options.
892
+ #
893
+ # @return [ Array<Mongo::Database> ] The list of database objects.
894
+ #
895
+ # @since 2.5.0
896
+ def list_mongo_databases(filter = {}, opts = {})
897
+ database_names(filter, opts).collect do |name|
898
+ Database.new(self, name, options)
899
+ end
900
+ end
901
+
902
+ # Start a session.
903
+ #
904
+ # If the deployment does not support sessions, raises
905
+ # Mongo::Error::InvalidSession. This exception can also be raised when
906
+ # the driver is not connected to a data-bearing server, for example
907
+ # during failover.
908
+ #
909
+ # @example Start a session.
910
+ # client.start_session(causal_consistency: true)
911
+ #
912
+ # @param [ Hash ] options The session options. Accepts the options
913
+ # that Session#initialize accepts.
914
+ #
915
+ # @note A Session cannot be used by multiple threads at once; session
916
+ # objects are not thread-safe.
917
+ #
918
+ # @return [ Session ] The session.
919
+ #
920
+ # @since 2.5.0
921
+ def start_session(options = {})
922
+ session = get_session!(options.merge(implicit: false))
923
+ if block_given?
924
+ begin
925
+ yield session
926
+ ensure
927
+ session.end_session
928
+ end
929
+ else
930
+ session
931
+ end
932
+ end
933
+
934
+ # As of version 3.6 of the MongoDB server, a ``$changeStream`` pipeline stage is supported
935
+ # in the aggregation framework. As of version 4.0, this stage allows users to request that
936
+ # notifications are sent for all changes that occur in the client's cluster.
937
+ #
938
+ # @example Get change notifications for the client's cluster.
939
+ # client.watch([{ '$match' => { operationType: { '$in' => ['insert', 'replace'] } } }])
940
+ #
941
+ # @param [ Array<Hash> ] pipeline Optional additional filter operators.
942
+ # @param [ Hash ] options The change stream options.
943
+ #
944
+ # @option options [ String ] :full_document Allowed values: 'default', 'updateLookup'.
945
+ # Defaults to 'default'. When set to 'updateLookup', the change notification for partial
946
+ # updates will include both a delta describing the changes to the document, as well as a copy
947
+ # of the entire document that was changed from some time after the change occurred.
948
+ # @option options [ BSON::Document, Hash ] :resume_after Specifies the logical starting point
949
+ # for the new change stream.
950
+ # @option options [ Integer ] :max_await_time_ms The maximum amount of time for the server to
951
+ # wait on new documents to satisfy a change stream query.
952
+ # @option options [ Integer ] :batch_size The number of documents to return per batch.
953
+ # @option options [ BSON::Document, Hash ] :collation The collation to use.
954
+ # @option options [ Session ] :session The session to use.
955
+ # @option options [ BSON::Timestamp ] :start_at_operation_time Only return
956
+ # changes that occurred at or after the specified timestamp. Any command run
957
+ # against the server will return a cluster time that can be used here.
958
+ # Only recognized by server versions 4.0+.
959
+ #
960
+ # @note A change stream only allows 'majority' read concern.
961
+ # @note This helper method is preferable to running a raw aggregation with a $changeStream
962
+ # stage, for the purpose of supporting resumability.
963
+ #
964
+ # @return [ ChangeStream ] The change stream object.
965
+ #
966
+ # @since 2.6.0
967
+ def watch(pipeline = [], options = {})
968
+ return use(Database::ADMIN).watch(pipeline, options) unless database.name == Database::ADMIN
969
+
970
+ Mongo::Collection::View::ChangeStream.new(
971
+ Mongo::Collection::View.new(self["#{Database::COMMAND}.aggregate"]),
972
+ pipeline,
973
+ Mongo::Collection::View::ChangeStream::CLUSTER,
974
+ options)
975
+ end
976
+
977
+ # Returns a session to use for operations if possible.
978
+ #
979
+ # If :session option is set, validates that session and returns it.
980
+ # Otherwise, if deployment supports sessions, creates a new session and
981
+ # returns it. When a new session is created, the session will be implicit
982
+ # (lifecycle is managed by the driver) if the :implicit option is given,
983
+ # otherwise the session will be explicit (lifecycle managed by the
984
+ # application). If deployment does not support session, returns nil.
985
+ #
986
+ # @option options [ true | false ] :implicit When no session is passed in,
987
+ # whether to create an implicit session.
988
+ # @option options [ Session ] :session The session to validate and return.
989
+ #
990
+ # @return [ Session | nil ] Session object or nil if sessions are not
991
+ # supported by the deployment.
992
+ #
993
+ # @api private
994
+ def get_session(options = {})
995
+ get_session!(options)
996
+ rescue Error::SessionsNotSupported
997
+ nil
998
+ end
999
+
1000
+ # Creates a session to use for operations if possible and yields it to
1001
+ # the provided block.
1002
+ #
1003
+ # If :session option is set, validates that session and uses it.
1004
+ # Otherwise, if deployment supports sessions, creates a new session and
1005
+ # uses it. When a new session is created, the session will be implicit
1006
+ # (lifecycle is managed by the driver) if the :implicit option is given,
1007
+ # otherwise the session will be explicit (lifecycle managed by the
1008
+ # application). If deployment does not support session, yields nil to
1009
+ # the block.
1010
+ #
1011
+ # When the block finishes, if the session was created and was implicit,
1012
+ # or if an implicit session was passed in, the session is ended which
1013
+ # returns it to the pool of available sessions.
1014
+ #
1015
+ # @option options [ true | false ] :implicit When no session is passed in,
1016
+ # whether to create an implicit session.
1017
+ # @option options [ Session ] :session The session to validate and return.
1018
+ #
1019
+ # @api private
1020
+ def with_session(options = {}, &block)
1021
+ session = get_session(options)
1022
+
1023
+ yield session
1024
+ ensure
1025
+ if session && session.implicit?
1026
+ session.end_session
1027
+ end
1028
+ end
1029
+
1030
+ class << self
1031
+ # Lowercases auth mechanism properties, if given, in the specified
1032
+ # options, then converts the options to an instance of Options::Redacted.
1033
+ #
1034
+ # @api private
1035
+ def canonicalize_ruby_options(options)
1036
+ Options::Redacted.new(Hash[options.map do |k, v|
1037
+ if k == :auth_mech_properties || k == 'auth_mech_properties'
1038
+ if v
1039
+ v = Hash[v.map { |pk, pv| [pk.downcase, pv] }]
1040
+ end
1041
+ end
1042
+ [k, v]
1043
+ end])
1044
+ end
364
1045
  end
365
1046
 
366
1047
  private
367
1048
 
368
- def create_from_addresses(addresses, opts = Options::Redacted.new)
369
- @options = Database::DEFAULT_OPTIONS.merge(opts).freeze
370
- @cluster = Cluster.new(addresses, @monitoring, options)
371
- @database = Database.new(self, options[:database], options)
1049
+ # Create a new encrypter object using the client's auto encryption options
1050
+ def build_encrypter
1051
+ @encrypter = Crypt::AutoEncrypter.new(
1052
+ @options[:auto_encryption_options].merge(client: self)
1053
+ )
372
1054
  end
373
1055
 
374
- def create_from_uri(connection_string, opts = Options::Redacted.new)
375
- uri = URI.new(connection_string, opts)
376
- @options = Database::DEFAULT_OPTIONS.merge(uri.client_options.merge(opts)).freeze
377
- @cluster = Cluster.new(uri.servers, @monitoring, options)
378
- @database = Database.new(self, options[:database], options)
1056
+ # Generate default client options based on the URI and options
1057
+ # passed into the Client constructor.
1058
+ def default_options(options)
1059
+ Database::DEFAULT_OPTIONS.dup.tap do |default_options|
1060
+ if options[:auth_mech] || options[:user]
1061
+ default_options[:auth_source] = Auth::User.default_auth_source(options)
1062
+ end
1063
+
1064
+ if options[:auth_mech] == :gssapi
1065
+ default_options[:auth_mech_properties] = { service_name: 'mongodb' }
1066
+ end
1067
+
1068
+ default_options[:retry_reads] = true
1069
+ default_options[:retry_writes] = true
1070
+ end
1071
+ end
1072
+
1073
+ # Implementation for #close, assumes the connect lock is already acquired.
1074
+ def do_close
1075
+ @cluster.disconnect!
1076
+ close_encrypter
1077
+ end
1078
+
1079
+ # Returns a session to use for operations.
1080
+ #
1081
+ # If :session option is set, validates that session and returns it.
1082
+ # Otherwise, if deployment supports sessions, creates a new session and
1083
+ # returns it. When a new session is created, the session will be implicit
1084
+ # (lifecycle is managed by the driver) if the :implicit option is given,
1085
+ # otherwise the session will be explicit (lifecycle managed by the
1086
+ # application). If deployment does not support session, raises
1087
+ # Error::InvalidSession.
1088
+ #
1089
+ # @option options [ true | false ] :implicit When no session is passed in,
1090
+ # whether to create an implicit session.
1091
+ # @option options [ Session ] :session The session to validate and return.
1092
+ #
1093
+ # @return [ Session ] A session object.
1094
+ #
1095
+ # @raise Error::SessionsNotSupported if sessions are not supported by
1096
+ # the deployment.
1097
+ #
1098
+ # @api private
1099
+ def get_session!(options = {})
1100
+ if options[:session]
1101
+ return options[:session].validate!(self)
1102
+ end
1103
+
1104
+ cluster.validate_session_support!
1105
+
1106
+ Session.new(cluster.session_pool.checkout, self, { implicit: true }.merge(options))
379
1107
  end
380
1108
 
381
1109
  def initialize_copy(original)
382
1110
  @options = original.options.dup
383
- @monitoring = Monitoring.new(@options)
1111
+ @monitoring = @cluster ? monitoring : Monitoring.new(options)
384
1112
  @database = nil
385
1113
  @read_preference = nil
386
1114
  @write_concern = nil
@@ -395,16 +1123,225 @@ module Mongo
395
1123
  end
396
1124
  end
397
1125
 
398
- def validate_options(opts = Options::Redacted.new)
1126
+ # Validates options in the provided argument for validity.
1127
+ # The argument may contain a subset of options that the client will
1128
+ # eventually have; this method validates each of the provided options
1129
+ # but does not check for interactions between combinations of options.
1130
+ def validate_new_options!(opts = Options::Redacted.new)
399
1131
  return Options::Redacted.new unless opts
400
- Options::Redacted.new(opts.select do |o|
401
- if VALID_OPTIONS.include?(o)
402
- true
1132
+ if opts[:read_concern]
1133
+ # Raise an error for non user-settable options
1134
+ if opts[:read_concern][:after_cluster_time]
1135
+ raise Mongo::Error::InvalidReadConcern.new(
1136
+ 'The after_cluster_time read_concern option cannot be specified by the user'
1137
+ )
1138
+ end
1139
+
1140
+ given_keys = opts[:read_concern].keys.map(&:to_s)
1141
+ allowed_keys = ['level']
1142
+ invalid_keys = given_keys - allowed_keys
1143
+ # Warn that options are invalid but keep it and forward to the server
1144
+ unless invalid_keys.empty?
1145
+ log_warn("Read concern has invalid keys: #{invalid_keys.join(',')}.")
1146
+ end
1147
+ end
1148
+
1149
+ Lint.validate_underscore_read_preference(opts[:read])
1150
+ Lint.validate_read_concern_option(opts[:read_concern])
1151
+ opts.each.inject(Options::Redacted.new) do |_options, (k, v)|
1152
+ key = k.to_sym
1153
+ if VALID_OPTIONS.include?(key)
1154
+ validate_max_min_pool_size!(key, opts)
1155
+ validate_read!(key, opts)
1156
+ if key == :compressors
1157
+ compressors = valid_compressors(v)
1158
+ _options[key] = compressors unless compressors.empty?
1159
+ else
1160
+ _options[key] = v
1161
+ end
403
1162
  else
404
- log_warn("Unsupported client option '#{o}'. It will be ignored.")
1163
+ log_warn("Unsupported client option '#{k}'. It will be ignored.")
1164
+ end
1165
+ _options
1166
+ end
1167
+ end
1168
+
1169
+ # Validates all options after they are set on the client.
1170
+ # This method is intended to catch combinations of options which are
1171
+ # not allowed.
1172
+ def validate_options!(addresses = nil)
1173
+ if options[:write] && options[:write_concern] && options[:write] != options[:write_concern]
1174
+ raise ArgumentError, "If :write and :write_concern are both given, they must be identical: #{options.inspect}"
1175
+ end
1176
+
1177
+ if options[:direct_connection]
1178
+ if options[:connect] && options[:connect].to_sym != :direct
1179
+ raise ArgumentError, "Conflicting client options: direct_connection=true and connect=#{options[:connect]}"
1180
+ end
1181
+ # When a new client is created, we get the list of seed addresses
1182
+ if addresses && addresses.length > 1
1183
+ raise ArgumentError, "direct_connection=true cannot be used with multiple seeds"
1184
+ end
1185
+ # When a client is copied using #with, we have a cluster
1186
+ if cluster && !cluster.topology.is_a?(Mongo::Cluster::Topology::Single)
1187
+ raise ArgumentError, "direct_connection=true cannot be used with topologies other than Single (this client is #{cluster.topology.class.name.sub(/.*::/, '')})"
1188
+ end
1189
+ end
1190
+
1191
+ if options[:direct_connection] == false && options[:connect] && options[:connect].to_sym == :direct
1192
+ raise ArgumentError, "Conflicting client options: direct_connection=false and connect=#{options[:connect]}"
1193
+ end
1194
+
1195
+ %i(connect_timeout socket_timeout).each do |key|
1196
+ if value = options[key]
1197
+ unless Numeric === value
1198
+ raise ArgumentError, "#{key} must be a non-negative number: #{value}"
1199
+ end
1200
+ if value < 0
1201
+ raise ArgumentError, "#{key} must be a non-negative number: #{value}"
1202
+ end
1203
+ end
1204
+ end
1205
+
1206
+ if value = options[:bg_error_backtrace]
1207
+ case value
1208
+ when Integer
1209
+ if value <= 0
1210
+ raise ArgumentError, ":bg_error_backtrace option value must be true, false, nil or a positive integer: #{value}"
1211
+ end
1212
+ when true
1213
+ # OK
1214
+ else
1215
+ raise ArgumentError, ":bg_error_backtrace option value must be true, false, nil or a positive integer: #{value}"
1216
+ end
1217
+ end
1218
+
1219
+ if libraries = options[:wrapping_libraries]
1220
+ unless Array === libraries
1221
+ raise ArgumentError, ":wrapping_libraries must be an array of hashes: #{libraries}"
1222
+ end
1223
+
1224
+ libraries = libraries.map do |library|
1225
+ Utils.shallow_symbolize_keys(library)
1226
+ end
1227
+
1228
+ libraries.each do |library|
1229
+ unless Hash === library
1230
+ raise ArgumentError, ":wrapping_libraries element is not a hash: #{library}"
1231
+ end
1232
+
1233
+ if library.empty?
1234
+ raise ArgumentError, ":wrapping_libraries element is empty"
1235
+ end
1236
+
1237
+ unless (library.keys - %i(name platform version)).empty?
1238
+ raise ArgumentError, ":wrapping_libraries element has invalid keys (allowed keys: :name, :platform, :version): #{library}"
1239
+ end
1240
+
1241
+ library.each do |key, value|
1242
+ if value.include?('|')
1243
+ raise ArgumentError, ":wrapping_libraries element value cannot include '|': #{value}"
1244
+ end
1245
+ end
1246
+ end
1247
+ end
1248
+ end
1249
+
1250
+ # Validates all authentication-related options after they are set on the client
1251
+ # This method is intended to catch combinations of options which are not allowed
1252
+ def validate_authentication_options!
1253
+ auth_mech = options[:auth_mech]
1254
+ user = options[:user]
1255
+ password = options[:password]
1256
+ auth_source = options[:auth_source]
1257
+ mech_properties = options[:auth_mech_properties]
1258
+
1259
+ if auth_mech.nil?
1260
+ if user && user.empty?
1261
+ raise Mongo::Auth::InvalidConfiguration, 'Empty username is not supported for default auth mechanism'
1262
+ end
1263
+
1264
+ if auth_source == ''
1265
+ raise Mongo::Auth::InvalidConfiguration, 'Auth source cannot be empty for default auth mechanism'
1266
+ end
1267
+
1268
+ return
1269
+ end
1270
+
1271
+ if !Mongo::Auth::SOURCES.key?(auth_mech)
1272
+ raise Mongo::Auth::InvalidMechanism.new(auth_mech)
1273
+ end
1274
+
1275
+ if user.nil? && !%i(aws mongodb_x509).include?(auth_mech)
1276
+ raise Mongo::Auth::InvalidConfiguration, "Username is required for auth mechanism #{auth_mech}"
1277
+ end
1278
+
1279
+ if password.nil? && !%i(aws gssapi mongodb_x509).include?(auth_mech)
1280
+ raise Mongo::Auth::InvalidConfiguration, "Password is required for auth mechanism #{auth_mech}"
1281
+ end
1282
+
1283
+ if password && auth_mech == :mongodb_x509
1284
+ raise Mongo::Auth::InvalidConfiguration, 'Password is not supported for :mongodb_x509 auth mechanism'
1285
+ end
1286
+
1287
+ if auth_mech == :aws && user && !password
1288
+ raise Mongo::Auth::InvalidConfiguration, 'Username is provided but password is not provided for :aws auth mechanism'
1289
+ end
1290
+
1291
+ if %i(aws gssapi mongodb_x509).include?(auth_mech)
1292
+ if !['$external', nil].include?(auth_source)
1293
+ raise Mongo::Auth::InvalidConfiguration, "#{auth_source} is an invalid auth source for #{auth_mech}; valid options are $external and nil"
1294
+ end
1295
+ else
1296
+ # Auth source is the database name, and thus cannot be the empty string.
1297
+ if auth_source == ''
1298
+ raise Mongo::Auth::InvalidConfiguration, "Auth source cannot be empty for auth mechanism #{auth_mech}"
1299
+ end
1300
+ end
1301
+
1302
+ if mech_properties && !%i(aws gssapi).include?(auth_mech)
1303
+ raise Mongo::Auth::InvalidConfiguration, ":mechanism_properties are not supported for auth mechanism #{auth_mech}"
1304
+ end
1305
+ end
1306
+
1307
+ def valid_compressors(compressors)
1308
+ compressors.select do |compressor|
1309
+ if !VALID_COMPRESSORS.include?(compressor)
1310
+ log_warn("Unsupported compressor '#{compressor}' in list '#{compressors}'. " +
1311
+ "This compressor will not be used.")
405
1312
  false
1313
+ else
1314
+ true
1315
+ end
1316
+ end
1317
+ end
1318
+
1319
+ def validate_max_min_pool_size!(option, opts)
1320
+ if option == :min_pool_size && opts[:min_pool_size]
1321
+ max = opts[:max_pool_size] || Server::ConnectionPool::DEFAULT_MAX_SIZE
1322
+ raise Error::InvalidMinPoolSize.new(opts[:min_pool_size], max) unless opts[:min_pool_size] <= max
1323
+ end
1324
+ true
1325
+ end
1326
+
1327
+ def validate_read!(option, opts)
1328
+ if option == :read && opts.has_key?(:read)
1329
+ read = opts[:read]
1330
+ # We could check if read is a Hash, but this would fail
1331
+ # for custom classes implementing key access ([]).
1332
+ # Instead reject common cases of strings and symbols.
1333
+ if read.is_a?(String) || read.is_a?(Symbol)
1334
+ raise Error::InvalidReadOption.new(read, 'must be a hash')
1335
+ end
1336
+
1337
+ if mode = read[:mode]
1338
+ mode = mode.to_sym
1339
+ unless Mongo::ServerSelector::PREFERENCES.include?(mode)
1340
+ raise Error::InvalidReadOption.new(read, "mode #{mode} is not one of recognized modes")
1341
+ end
406
1342
  end
407
- end)
1343
+ end
1344
+ true
408
1345
  end
409
1346
  end
410
1347
  end