mongo 2.12.4 → 2.14.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (900) hide show
  1. checksums.yaml +4 -4
  2. checksums.yaml.gz.sig +0 -0
  3. data.tar.gz.sig +0 -0
  4. data/CONTRIBUTING.md +8 -36
  5. data/LICENSE +1 -1
  6. data/README.md +54 -54
  7. data/Rakefile +16 -10
  8. data/lib/mongo.rb +17 -3
  9. data/lib/mongo/active_support.rb +1 -1
  10. data/lib/mongo/address.rb +40 -13
  11. data/lib/mongo/address/ipv4.rb +32 -5
  12. data/lib/mongo/address/ipv6.rb +32 -5
  13. data/lib/mongo/address/unix.rb +3 -3
  14. data/lib/mongo/address/validator.rb +1 -1
  15. data/lib/mongo/auth.rb +36 -13
  16. data/lib/mongo/auth/aws.rb +37 -0
  17. data/lib/mongo/auth/aws/conversation.rb +128 -0
  18. data/lib/mongo/auth/aws/credentials_retriever.rb +219 -0
  19. data/lib/mongo/auth/aws/request.rb +283 -0
  20. data/lib/mongo/auth/base.rb +129 -0
  21. data/lib/mongo/auth/conversation_base.rb +52 -0
  22. data/lib/mongo/auth/cr.rb +9 -36
  23. data/lib/mongo/auth/cr/conversation.rb +24 -69
  24. data/lib/mongo/auth/credential_cache.rb +1 -1
  25. data/lib/mongo/auth/gssapi.rb +38 -0
  26. data/lib/mongo/auth/gssapi/conversation.rb +108 -0
  27. data/lib/mongo/auth/ldap.rb +9 -34
  28. data/lib/mongo/auth/ldap/conversation.rb +3 -43
  29. data/lib/mongo/auth/roles.rb +1 -1
  30. data/lib/mongo/auth/sasl_conversation_base.rb +111 -0
  31. data/lib/mongo/auth/scram.rb +39 -51
  32. data/lib/mongo/auth/scram/conversation.rb +12 -506
  33. data/lib/mongo/auth/scram256.rb +31 -0
  34. data/lib/mongo/auth/scram256/conversation.rb +63 -0
  35. data/lib/mongo/auth/scram_conversation_base.rb +402 -0
  36. data/lib/mongo/auth/stringprep.rb +5 -4
  37. data/lib/mongo/auth/stringprep/profiles/sasl.rb +2 -1
  38. data/lib/mongo/auth/stringprep/tables.rb +2 -1
  39. data/lib/mongo/auth/stringprep/unicode_normalize/normalize.rb +1 -0
  40. data/lib/mongo/auth/stringprep/unicode_normalize/tables.rb +1 -0
  41. data/lib/mongo/auth/user.rb +2 -2
  42. data/lib/mongo/auth/user/view.rb +1 -1
  43. data/lib/mongo/auth/x509.rb +14 -32
  44. data/lib/mongo/auth/x509/conversation.rb +15 -42
  45. data/lib/mongo/background_thread.rb +11 -2
  46. data/lib/mongo/bson.rb +1 -1
  47. data/lib/mongo/bulk_write.rb +79 -26
  48. data/lib/mongo/bulk_write/combineable.rb +20 -8
  49. data/lib/mongo/bulk_write/ordered_combiner.rb +1 -1
  50. data/lib/mongo/bulk_write/result.rb +1 -1
  51. data/lib/mongo/bulk_write/result_combiner.rb +1 -1
  52. data/lib/mongo/bulk_write/transformable.rb +9 -10
  53. data/lib/mongo/bulk_write/unordered_combiner.rb +1 -1
  54. data/lib/mongo/bulk_write/validatable.rb +5 -1
  55. data/lib/mongo/caching_cursor.rb +74 -0
  56. data/lib/mongo/client.rb +261 -39
  57. data/lib/mongo/client_encryption.rb +1 -1
  58. data/lib/mongo/cluster.rb +180 -72
  59. data/lib/mongo/cluster/periodic_executor.rb +1 -1
  60. data/lib/mongo/cluster/reapers/cursor_reaper.rb +1 -1
  61. data/lib/mongo/cluster/reapers/socket_reaper.rb +1 -1
  62. data/lib/mongo/cluster/sdam_flow.rb +36 -17
  63. data/lib/mongo/cluster/topology.rb +19 -2
  64. data/lib/mongo/cluster/topology/base.rb +1 -1
  65. data/lib/mongo/cluster/topology/no_replica_set_options.rb +1 -1
  66. data/lib/mongo/cluster/topology/replica_set_no_primary.rb +4 -3
  67. data/lib/mongo/cluster/topology/replica_set_with_primary.rb +1 -1
  68. data/lib/mongo/cluster/topology/sharded.rb +2 -2
  69. data/lib/mongo/cluster/topology/single.rb +3 -3
  70. data/lib/mongo/cluster/topology/unknown.rb +1 -1
  71. data/lib/mongo/cluster_time.rb +1 -1
  72. data/lib/mongo/collection.rb +77 -24
  73. data/lib/mongo/collection/view.rb +30 -22
  74. data/lib/mongo/collection/view/aggregation.rb +31 -7
  75. data/lib/mongo/collection/view/builder.rb +1 -1
  76. data/lib/mongo/collection/view/builder/aggregation.rb +1 -1
  77. data/lib/mongo/collection/view/builder/find_command.rb +47 -19
  78. data/lib/mongo/collection/view/builder/flags.rb +1 -1
  79. data/lib/mongo/collection/view/builder/map_reduce.rb +1 -1
  80. data/lib/mongo/collection/view/builder/modifiers.rb +1 -1
  81. data/lib/mongo/collection/view/builder/op_query.rb +1 -1
  82. data/lib/mongo/collection/view/change_stream.rb +3 -6
  83. data/lib/mongo/collection/view/change_stream/retryable.rb +1 -1
  84. data/lib/mongo/collection/view/explainable.rb +28 -9
  85. data/lib/mongo/collection/view/immutable.rb +1 -1
  86. data/lib/mongo/collection/view/iterable.rb +80 -14
  87. data/lib/mongo/collection/view/map_reduce.rb +7 -4
  88. data/lib/mongo/collection/view/readable.rb +22 -4
  89. data/lib/mongo/collection/view/writable.rb +107 -13
  90. data/lib/mongo/crypt.rb +1 -1
  91. data/lib/mongo/crypt/auto_decryption_context.rb +1 -1
  92. data/lib/mongo/crypt/auto_encrypter.rb +1 -1
  93. data/lib/mongo/crypt/auto_encryption_context.rb +1 -1
  94. data/lib/mongo/crypt/binary.rb +1 -1
  95. data/lib/mongo/crypt/binding.rb +1 -1
  96. data/lib/mongo/crypt/context.rb +1 -1
  97. data/lib/mongo/crypt/data_key_context.rb +1 -1
  98. data/lib/mongo/crypt/encryption_io.rb +45 -28
  99. data/lib/mongo/crypt/explicit_decryption_context.rb +1 -1
  100. data/lib/mongo/crypt/explicit_encrypter.rb +1 -1
  101. data/lib/mongo/crypt/explicit_encryption_context.rb +1 -1
  102. data/lib/mongo/crypt/handle.rb +1 -1
  103. data/lib/mongo/crypt/hooks.rb +1 -1
  104. data/lib/mongo/crypt/kms_context.rb +1 -1
  105. data/lib/mongo/crypt/status.rb +1 -1
  106. data/lib/mongo/cursor.rb +4 -3
  107. data/lib/mongo/cursor/builder.rb +1 -1
  108. data/lib/mongo/cursor/builder/get_more_command.rb +1 -1
  109. data/lib/mongo/cursor/builder/kill_cursors_command.rb +1 -1
  110. data/lib/mongo/cursor/builder/op_get_more.rb +1 -1
  111. data/lib/mongo/cursor/builder/op_kill_cursors.rb +1 -1
  112. data/lib/mongo/database.rb +41 -5
  113. data/lib/mongo/database/view.rb +21 -6
  114. data/lib/mongo/dbref.rb +1 -1
  115. data/lib/mongo/distinguishing_semaphore.rb +55 -0
  116. data/lib/mongo/error.rb +30 -2
  117. data/lib/mongo/error/auth_error.rb +1 -1
  118. data/lib/mongo/error/bulk_write_error.rb +1 -1
  119. data/lib/mongo/error/change_stream_resumable.rb +1 -1
  120. data/lib/mongo/error/closed_stream.rb +1 -1
  121. data/lib/mongo/error/connection_check_out_timeout.rb +1 -1
  122. data/lib/mongo/error/connection_perished.rb +23 -0
  123. data/lib/mongo/error/credential_check_error.rb +26 -0
  124. data/lib/mongo/error/extra_file_chunk.rb +1 -1
  125. data/lib/mongo/error/file_not_found.rb +1 -1
  126. data/lib/mongo/error/handshake_error.rb +1 -1
  127. data/lib/mongo/error/insufficient_iteration_count.rb +1 -1
  128. data/lib/mongo/error/invalid_address.rb +1 -1
  129. data/lib/mongo/error/invalid_application_name.rb +1 -1
  130. data/lib/mongo/error/invalid_bulk_operation.rb +1 -1
  131. data/lib/mongo/error/invalid_bulk_operation_type.rb +1 -1
  132. data/lib/mongo/error/invalid_collection_name.rb +1 -1
  133. data/lib/mongo/error/invalid_cursor_operation.rb +1 -1
  134. data/lib/mongo/error/invalid_database_name.rb +1 -1
  135. data/lib/mongo/error/invalid_document.rb +1 -1
  136. data/lib/mongo/error/invalid_file.rb +1 -1
  137. data/lib/mongo/error/invalid_file_revision.rb +1 -1
  138. data/lib/mongo/error/invalid_min_pool_size.rb +1 -1
  139. data/lib/mongo/error/invalid_nonce.rb +2 -2
  140. data/lib/mongo/error/invalid_read_concern.rb +28 -0
  141. data/lib/mongo/error/invalid_read_option.rb +1 -1
  142. data/lib/mongo/error/invalid_replacement_document.rb +1 -1
  143. data/lib/mongo/error/invalid_server_auth_host.rb +22 -0
  144. data/lib/mongo/error/invalid_server_auth_response.rb +23 -0
  145. data/lib/mongo/error/invalid_server_preference.rb +6 -1
  146. data/lib/mongo/error/invalid_session.rb +3 -2
  147. data/lib/mongo/error/invalid_signature.rb +1 -1
  148. data/lib/mongo/error/invalid_transaction_operation.rb +1 -1
  149. data/lib/mongo/error/invalid_txt_record.rb +1 -1
  150. data/lib/mongo/error/invalid_update_document.rb +1 -1
  151. data/lib/mongo/error/invalid_uri.rb +1 -1
  152. data/lib/mongo/error/invalid_write_concern.rb +1 -1
  153. data/lib/mongo/error/lint_error.rb +1 -1
  154. data/lib/mongo/error/max_bson_size.rb +1 -1
  155. data/lib/mongo/error/max_message_size.rb +1 -1
  156. data/lib/mongo/error/mismatched_domain.rb +1 -1
  157. data/lib/mongo/error/missing_file_chunk.rb +1 -1
  158. data/lib/mongo/error/missing_password.rb +1 -1
  159. data/lib/mongo/error/missing_resume_token.rb +1 -1
  160. data/lib/mongo/error/missing_scram_server_signature.rb +27 -0
  161. data/lib/mongo/error/multi_index_drop.rb +1 -1
  162. data/lib/mongo/error/need_primary_server.rb +1 -1
  163. data/lib/mongo/error/no_server_available.rb +1 -1
  164. data/lib/mongo/error/no_srv_records.rb +1 -1
  165. data/lib/mongo/error/notable.rb +18 -3
  166. data/lib/mongo/error/operation_failure.rb +63 -44
  167. data/lib/mongo/error/parser.rb +16 -5
  168. data/lib/mongo/error/pool_closed_error.rb +1 -1
  169. data/lib/mongo/error/raise_original_error.rb +29 -0
  170. data/lib/mongo/error/server_certificate_revoked.rb +22 -0
  171. data/lib/mongo/error/session_ended.rb +1 -1
  172. data/lib/mongo/error/sessions_not_supported.rb +35 -0
  173. data/lib/mongo/error/socket_error.rb +1 -1
  174. data/lib/mongo/error/socket_timeout_error.rb +1 -1
  175. data/lib/mongo/error/unchangeable_collection_option.rb +1 -1
  176. data/lib/mongo/error/unexpected_chunk_length.rb +1 -1
  177. data/lib/mongo/error/unexpected_response.rb +1 -1
  178. data/lib/mongo/error/unknown_payload_type.rb +1 -1
  179. data/lib/mongo/error/unsupported_array_filters.rb +7 -2
  180. data/lib/mongo/error/unsupported_collation.rb +7 -2
  181. data/lib/mongo/error/unsupported_features.rb +1 -1
  182. data/lib/mongo/error/unsupported_message_type.rb +1 -1
  183. data/lib/mongo/error/unsupported_option.rb +101 -0
  184. data/lib/mongo/error/write_retryable.rb +1 -1
  185. data/lib/mongo/event.rb +1 -1
  186. data/lib/mongo/event/base.rb +7 -1
  187. data/lib/mongo/event/listeners.rb +1 -1
  188. data/lib/mongo/event/publisher.rb +1 -1
  189. data/lib/mongo/event/subscriber.rb +1 -1
  190. data/lib/mongo/grid.rb +1 -1
  191. data/lib/mongo/grid/file.rb +1 -1
  192. data/lib/mongo/grid/file/chunk.rb +1 -1
  193. data/lib/mongo/grid/file/info.rb +1 -1
  194. data/lib/mongo/grid/fs_bucket.rb +9 -4
  195. data/lib/mongo/grid/stream.rb +1 -1
  196. data/lib/mongo/grid/stream/read.rb +1 -1
  197. data/lib/mongo/grid/stream/write.rb +1 -1
  198. data/lib/mongo/id.rb +1 -1
  199. data/lib/mongo/index.rb +2 -1
  200. data/lib/mongo/index/view.rb +61 -11
  201. data/lib/mongo/lint.rb +11 -0
  202. data/lib/mongo/loggable.rb +1 -1
  203. data/lib/mongo/logger.rb +4 -4
  204. data/lib/mongo/monitoring.rb +39 -1
  205. data/lib/mongo/monitoring/cmap_log_subscriber.rb +1 -1
  206. data/lib/mongo/monitoring/command_log_subscriber.rb +20 -5
  207. data/lib/mongo/monitoring/event.rb +1 -1
  208. data/lib/mongo/monitoring/event/cmap.rb +1 -1
  209. data/lib/mongo/monitoring/event/cmap/base.rb +1 -1
  210. data/lib/mongo/monitoring/event/cmap/connection_check_out_failed.rb +1 -1
  211. data/lib/mongo/monitoring/event/cmap/connection_check_out_started.rb +1 -1
  212. data/lib/mongo/monitoring/event/cmap/connection_checked_in.rb +1 -1
  213. data/lib/mongo/monitoring/event/cmap/connection_checked_out.rb +1 -1
  214. data/lib/mongo/monitoring/event/cmap/connection_closed.rb +1 -1
  215. data/lib/mongo/monitoring/event/cmap/connection_created.rb +1 -1
  216. data/lib/mongo/monitoring/event/cmap/connection_ready.rb +1 -1
  217. data/lib/mongo/monitoring/event/cmap/pool_cleared.rb +1 -1
  218. data/lib/mongo/monitoring/event/cmap/pool_closed.rb +1 -1
  219. data/lib/mongo/monitoring/event/cmap/pool_created.rb +1 -1
  220. data/lib/mongo/monitoring/event/command_failed.rb +12 -1
  221. data/lib/mongo/monitoring/event/command_started.rb +44 -3
  222. data/lib/mongo/monitoring/event/command_succeeded.rb +12 -1
  223. data/lib/mongo/monitoring/event/secure.rb +8 -2
  224. data/lib/mongo/monitoring/event/server_closed.rb +2 -2
  225. data/lib/mongo/monitoring/event/server_description_changed.rb +28 -5
  226. data/lib/mongo/monitoring/event/server_heartbeat_failed.rb +10 -3
  227. data/lib/mongo/monitoring/event/server_heartbeat_started.rb +10 -3
  228. data/lib/mongo/monitoring/event/server_heartbeat_succeeded.rb +10 -3
  229. data/lib/mongo/monitoring/event/server_opening.rb +2 -2
  230. data/lib/mongo/monitoring/event/topology_changed.rb +2 -2
  231. data/lib/mongo/monitoring/event/topology_closed.rb +2 -2
  232. data/lib/mongo/monitoring/event/topology_opening.rb +2 -2
  233. data/lib/mongo/monitoring/publishable.rb +9 -9
  234. data/lib/mongo/monitoring/sdam_log_subscriber.rb +1 -1
  235. data/lib/mongo/monitoring/server_closed_log_subscriber.rb +1 -1
  236. data/lib/mongo/monitoring/server_description_changed_log_subscriber.rb +10 -2
  237. data/lib/mongo/monitoring/server_opening_log_subscriber.rb +1 -1
  238. data/lib/mongo/monitoring/topology_changed_log_subscriber.rb +2 -2
  239. data/lib/mongo/monitoring/topology_closed_log_subscriber.rb +1 -1
  240. data/lib/mongo/monitoring/topology_opening_log_subscriber.rb +1 -1
  241. data/lib/mongo/monitoring/unified_sdam_log_subscriber.rb +1 -1
  242. data/lib/mongo/operation.rb +3 -0
  243. data/lib/mongo/operation/aggregate.rb +1 -1
  244. data/lib/mongo/operation/aggregate/command.rb +5 -5
  245. data/lib/mongo/operation/aggregate/op_msg.rb +1 -1
  246. data/lib/mongo/operation/aggregate/result.rb +10 -9
  247. data/lib/mongo/operation/collections_info.rb +3 -36
  248. data/lib/mongo/operation/collections_info/command.rb +40 -0
  249. data/lib/mongo/operation/collections_info/result.rb +3 -1
  250. data/lib/mongo/operation/command.rb +1 -1
  251. data/lib/mongo/operation/command/command.rb +3 -3
  252. data/lib/mongo/operation/command/op_msg.rb +1 -1
  253. data/lib/mongo/operation/count.rb +1 -1
  254. data/lib/mongo/operation/count/command.rb +3 -3
  255. data/lib/mongo/operation/count/op_msg.rb +1 -1
  256. data/lib/mongo/operation/create.rb +1 -1
  257. data/lib/mongo/operation/create/command.rb +3 -3
  258. data/lib/mongo/operation/create/op_msg.rb +1 -1
  259. data/lib/mongo/operation/create_index.rb +1 -1
  260. data/lib/mongo/operation/create_index/command.rb +4 -4
  261. data/lib/mongo/operation/create_index/op_msg.rb +6 -3
  262. data/lib/mongo/operation/create_user.rb +1 -1
  263. data/lib/mongo/operation/create_user/command.rb +4 -4
  264. data/lib/mongo/operation/create_user/op_msg.rb +2 -2
  265. data/lib/mongo/operation/delete.rb +1 -1
  266. data/lib/mongo/operation/delete/bulk_result.rb +3 -1
  267. data/lib/mongo/operation/delete/command.rb +4 -4
  268. data/lib/mongo/operation/delete/legacy.rb +2 -2
  269. data/lib/mongo/operation/delete/op_msg.rb +4 -4
  270. data/lib/mongo/operation/delete/result.rb +5 -2
  271. data/lib/mongo/operation/distinct.rb +1 -1
  272. data/lib/mongo/operation/distinct/command.rb +3 -3
  273. data/lib/mongo/operation/distinct/op_msg.rb +1 -1
  274. data/lib/mongo/operation/drop.rb +1 -1
  275. data/lib/mongo/operation/drop/command.rb +3 -3
  276. data/lib/mongo/operation/drop/op_msg.rb +1 -1
  277. data/lib/mongo/operation/drop_database.rb +1 -1
  278. data/lib/mongo/operation/drop_database/command.rb +3 -3
  279. data/lib/mongo/operation/drop_database/op_msg.rb +1 -1
  280. data/lib/mongo/operation/drop_index.rb +1 -1
  281. data/lib/mongo/operation/drop_index/command.rb +4 -4
  282. data/lib/mongo/operation/drop_index/op_msg.rb +2 -2
  283. data/lib/mongo/operation/explain.rb +1 -1
  284. data/lib/mongo/operation/explain/command.rb +7 -3
  285. data/lib/mongo/operation/explain/legacy.rb +7 -3
  286. data/lib/mongo/operation/explain/op_msg.rb +7 -1
  287. data/lib/mongo/operation/explain/result.rb +4 -1
  288. data/lib/mongo/operation/find.rb +1 -1
  289. data/lib/mongo/operation/find/command.rb +3 -3
  290. data/lib/mongo/operation/find/legacy.rb +3 -3
  291. data/lib/mongo/operation/find/legacy/result.rb +3 -1
  292. data/lib/mongo/operation/find/op_msg.rb +2 -12
  293. data/lib/mongo/operation/find/result.rb +4 -1
  294. data/lib/mongo/operation/get_more.rb +1 -1
  295. data/lib/mongo/operation/get_more/command.rb +3 -3
  296. data/lib/mongo/operation/get_more/legacy.rb +2 -2
  297. data/lib/mongo/operation/get_more/op_msg.rb +2 -12
  298. data/lib/mongo/operation/get_more/result.rb +4 -1
  299. data/lib/mongo/operation/indexes.rb +1 -1
  300. data/lib/mongo/operation/indexes/command.rb +3 -3
  301. data/lib/mongo/operation/indexes/legacy.rb +4 -4
  302. data/lib/mongo/operation/indexes/op_msg.rb +1 -1
  303. data/lib/mongo/operation/indexes/result.rb +6 -1
  304. data/lib/mongo/operation/insert.rb +3 -2
  305. data/lib/mongo/operation/insert/bulk_result.rb +11 -2
  306. data/lib/mongo/operation/insert/command.rb +7 -7
  307. data/lib/mongo/operation/insert/legacy.rb +9 -5
  308. data/lib/mongo/operation/insert/op_msg.rb +6 -6
  309. data/lib/mongo/operation/insert/result.rb +12 -4
  310. data/lib/mongo/operation/kill_cursors.rb +1 -1
  311. data/lib/mongo/operation/kill_cursors/command.rb +3 -3
  312. data/lib/mongo/operation/kill_cursors/legacy.rb +2 -2
  313. data/lib/mongo/operation/kill_cursors/op_msg.rb +1 -1
  314. data/lib/mongo/operation/list_collections.rb +1 -1
  315. data/lib/mongo/operation/list_collections/command.rb +4 -4
  316. data/lib/mongo/operation/list_collections/op_msg.rb +2 -2
  317. data/lib/mongo/operation/list_collections/result.rb +6 -1
  318. data/lib/mongo/operation/map_reduce.rb +1 -1
  319. data/lib/mongo/operation/map_reduce/command.rb +3 -3
  320. data/lib/mongo/operation/map_reduce/op_msg.rb +1 -1
  321. data/lib/mongo/operation/map_reduce/result.rb +11 -1
  322. data/lib/mongo/operation/op_msg_base.rb +3 -3
  323. data/lib/mongo/operation/parallel_scan.rb +1 -1
  324. data/lib/mongo/operation/parallel_scan/command.rb +5 -5
  325. data/lib/mongo/operation/parallel_scan/op_msg.rb +2 -2
  326. data/lib/mongo/operation/parallel_scan/result.rb +5 -1
  327. data/lib/mongo/operation/remove_user.rb +1 -1
  328. data/lib/mongo/operation/remove_user/command.rb +4 -4
  329. data/lib/mongo/operation/remove_user/op_msg.rb +2 -2
  330. data/lib/mongo/operation/result.rb +63 -10
  331. data/lib/mongo/operation/shared/bypass_document_validation.rb +11 -4
  332. data/lib/mongo/operation/shared/causal_consistency_supported.rb +4 -3
  333. data/lib/mongo/operation/shared/collections_info_or_list_collections.rb +58 -0
  334. data/lib/mongo/operation/shared/executable.rb +47 -28
  335. data/lib/mongo/operation/shared/executable_no_validate.rb +3 -3
  336. data/lib/mongo/operation/shared/executable_transaction_label.rb +1 -1
  337. data/lib/mongo/operation/shared/idable.rb +3 -2
  338. data/lib/mongo/operation/shared/limited.rb +11 -2
  339. data/lib/mongo/operation/shared/object_id_generator.rb +2 -1
  340. data/lib/mongo/operation/shared/op_msg_or_command.rb +7 -5
  341. data/lib/mongo/operation/shared/op_msg_or_find_command.rb +8 -6
  342. data/lib/mongo/operation/shared/op_msg_or_list_indexes_command.rb +8 -6
  343. data/lib/mongo/operation/shared/polymorphic_lookup.rb +1 -1
  344. data/lib/mongo/operation/shared/polymorphic_result.rb +1 -1
  345. data/lib/mongo/operation/shared/read_preference_supported.rb +19 -16
  346. data/lib/mongo/operation/shared/response_handling.rb +83 -8
  347. data/lib/mongo/operation/shared/result/aggregatable.rb +2 -1
  348. data/lib/mongo/operation/shared/result/use_legacy_error_parser.rb +1 -1
  349. data/lib/mongo/operation/shared/sessions_supported.rb +51 -27
  350. data/lib/mongo/operation/shared/specifiable.rb +33 -20
  351. data/lib/mongo/operation/shared/write.rb +26 -19
  352. data/lib/mongo/operation/shared/write_concern_supported.rb +7 -6
  353. data/lib/mongo/operation/update.rb +1 -1
  354. data/lib/mongo/operation/update/bulk_result.rb +1 -1
  355. data/lib/mongo/operation/update/command.rb +4 -4
  356. data/lib/mongo/operation/update/legacy.rb +2 -2
  357. data/lib/mongo/operation/update/legacy/result.rb +8 -1
  358. data/lib/mongo/operation/update/op_msg.rb +4 -4
  359. data/lib/mongo/operation/update/result.rb +10 -2
  360. data/lib/mongo/operation/update_user.rb +1 -1
  361. data/lib/mongo/operation/update_user/command.rb +4 -4
  362. data/lib/mongo/operation/update_user/op_msg.rb +2 -2
  363. data/lib/mongo/operation/users_info.rb +1 -1
  364. data/lib/mongo/operation/users_info/command.rb +4 -4
  365. data/lib/mongo/operation/users_info/op_msg.rb +2 -2
  366. data/lib/mongo/operation/users_info/result.rb +4 -1
  367. data/lib/mongo/options.rb +1 -1
  368. data/lib/mongo/options/mapper.rb +1 -1
  369. data/lib/mongo/options/redacted.rb +1 -1
  370. data/lib/mongo/protocol/bit_vector.rb +1 -1
  371. data/lib/mongo/protocol/compressed.rb +1 -1
  372. data/lib/mongo/protocol/delete.rb +1 -1
  373. data/lib/mongo/protocol/get_more.rb +1 -1
  374. data/lib/mongo/protocol/insert.rb +1 -1
  375. data/lib/mongo/protocol/kill_cursors.rb +1 -1
  376. data/lib/mongo/protocol/message.rb +35 -7
  377. data/lib/mongo/protocol/msg.rb +18 -4
  378. data/lib/mongo/protocol/query.rb +1 -1
  379. data/lib/mongo/protocol/registry.rb +1 -1
  380. data/lib/mongo/protocol/reply.rb +1 -1
  381. data/lib/mongo/protocol/serializers.rb +1 -1
  382. data/lib/mongo/protocol/update.rb +1 -1
  383. data/lib/mongo/query_cache.rb +242 -0
  384. data/lib/mongo/retryable.rb +31 -11
  385. data/lib/mongo/semaphore.rb +1 -1
  386. data/lib/mongo/server.rb +45 -9
  387. data/lib/mongo/server/app_metadata.rb +44 -7
  388. data/lib/mongo/server/connection.rb +37 -133
  389. data/lib/mongo/server/connection_base.rb +22 -7
  390. data/lib/mongo/server/connection_common.rb +75 -1
  391. data/lib/mongo/server/connection_pool.rb +23 -1
  392. data/lib/mongo/server/connection_pool/populator.rb +1 -1
  393. data/lib/mongo/server/context.rb +1 -1
  394. data/lib/mongo/server/description.rb +49 -2
  395. data/lib/mongo/server/description/features.rb +12 -3
  396. data/lib/mongo/server/monitor.rb +145 -69
  397. data/lib/mongo/server/monitor/app_metadata.rb +1 -1
  398. data/lib/mongo/server/monitor/connection.rb +110 -80
  399. data/lib/mongo/server/pending_connection.rb +215 -3
  400. data/lib/mongo/server/push_monitor.rb +173 -0
  401. data/{spec/runners/transactions/context.rb → lib/mongo/server/push_monitor/connection.rb} +9 -14
  402. data/lib/mongo/server/round_trip_time_averager.rb +12 -3
  403. data/lib/mongo/server_selector.rb +2 -2
  404. data/lib/mongo/server_selector/{selectable.rb → base.rb} +164 -87
  405. data/lib/mongo/server_selector/nearest.rb +26 -21
  406. data/lib/mongo/server_selector/primary.rb +24 -28
  407. data/lib/mongo/server_selector/primary_preferred.rb +32 -25
  408. data/lib/mongo/server_selector/secondary.rb +26 -21
  409. data/lib/mongo/server_selector/secondary_preferred.rb +29 -34
  410. data/lib/mongo/session.rb +17 -1
  411. data/lib/mongo/session/server_session.rb +1 -1
  412. data/lib/mongo/session/session_pool.rb +1 -1
  413. data/lib/mongo/socket.rb +127 -45
  414. data/lib/mongo/socket/ocsp_cache.rb +97 -0
  415. data/lib/mongo/socket/ocsp_verifier.rb +368 -0
  416. data/lib/mongo/socket/ssl.rb +141 -57
  417. data/lib/mongo/socket/tcp.rb +39 -31
  418. data/lib/mongo/socket/unix.rb +14 -6
  419. data/lib/mongo/srv.rb +1 -1
  420. data/lib/mongo/srv/monitor.rb +8 -14
  421. data/lib/mongo/srv/resolver.rb +15 -11
  422. data/lib/mongo/srv/result.rb +1 -1
  423. data/lib/mongo/timeout.rb +11 -9
  424. data/lib/mongo/topology_version.rb +89 -0
  425. data/lib/mongo/uri.rb +52 -407
  426. data/lib/mongo/uri/options_mapper.rb +582 -0
  427. data/lib/mongo/uri/srv_protocol.rb +12 -3
  428. data/lib/mongo/utils.rb +73 -0
  429. data/lib/mongo/version.rb +2 -2
  430. data/lib/mongo/write_concern.rb +1 -1
  431. data/lib/mongo/write_concern/acknowledged.rb +1 -1
  432. data/lib/mongo/write_concern/base.rb +1 -1
  433. data/lib/mongo/write_concern/unacknowledged.rb +1 -1
  434. data/mongo.gemspec +1 -1
  435. data/spec/NOTES.aws-auth.md +296 -0
  436. data/spec/README.aws-auth.md +318 -0
  437. data/spec/README.md +120 -18
  438. data/spec/integration/auth_spec.rb +29 -9
  439. data/spec/integration/awaited_ismaster_spec.rb +28 -0
  440. data/spec/integration/aws_auth_request_spec.rb +74 -0
  441. data/spec/integration/aws_credentials_retriever_spec.rb +103 -0
  442. data/spec/integration/bulk_write_spec.rb +48 -0
  443. data/spec/integration/change_stream_examples_spec.rb +6 -2
  444. data/spec/integration/change_stream_spec.rb +123 -51
  445. data/spec/integration/check_clean_slate_spec.rb +16 -0
  446. data/spec/integration/client_authentication_options_spec.rb +55 -28
  447. data/spec/integration/client_construction_aws_auth_spec.rb +191 -0
  448. data/spec/integration/client_construction_spec.rb +2 -1
  449. data/spec/integration/collection_indexes_prose_spec.rb +55 -0
  450. data/spec/integration/command_monitoring_spec.rb +30 -6
  451. data/spec/integration/command_spec.rb +11 -9
  452. data/spec/integration/connect_single_rs_name_spec.rb +10 -5
  453. data/spec/integration/connection_pool_populator_spec.rb +3 -1
  454. data/spec/integration/connection_spec.rb +7 -3
  455. data/spec/integration/crud_spec.rb +32 -4
  456. data/spec/integration/cursor_reaping_spec.rb +67 -27
  457. data/spec/integration/docs_examples_spec.rb +6 -0
  458. data/spec/integration/fork_reconnect_spec.rb +143 -0
  459. data/spec/integration/get_more_spec.rb +10 -3
  460. data/spec/integration/heartbeat_events_spec.rb +5 -24
  461. data/spec/integration/ocsp_connectivity_spec.rb +26 -0
  462. data/spec/integration/ocsp_verifier_cache_spec.rb +188 -0
  463. data/spec/integration/ocsp_verifier_spec.rb +334 -0
  464. data/spec/integration/query_cache_spec.rb +1045 -0
  465. data/spec/integration/query_cache_transactions_spec.rb +179 -0
  466. data/spec/integration/read_concern_spec.rb +1 -1
  467. data/spec/integration/read_preference_spec.rb +41 -11
  468. data/spec/integration/reconnect_spec.rb +2 -3
  469. data/spec/integration/retryable_errors_spec.rb +33 -14
  470. data/spec/integration/{retryable_writes_spec.rb → retryable_writes/retryable_writes_36_and_older_spec.rb} +55 -51
  471. data/spec/integration/retryable_writes/retryable_writes_40_and_newer_spec.rb +402 -0
  472. data/spec/integration/retryable_writes/shared/adds_diagnostics.rb +15 -0
  473. data/spec/integration/retryable_writes/shared/does_not_support_retries.rb +24 -0
  474. data/spec/integration/retryable_writes/shared/only_supports_legacy_retries.rb +25 -0
  475. data/spec/integration/retryable_writes/shared/performs_legacy_retries.rb +217 -0
  476. data/spec/integration/retryable_writes/shared/performs_modern_retries.rb +232 -0
  477. data/spec/integration/retryable_writes/shared/performs_no_retries.rb +110 -0
  478. data/spec/integration/retryable_writes/shared/supports_legacy_retries.rb +19 -0
  479. data/spec/integration/retryable_writes/shared/supports_modern_retries.rb +25 -0
  480. data/spec/integration/retryable_writes/shared/supports_retries.rb +16 -0
  481. data/spec/integration/sdam_error_handling_spec.rb +210 -22
  482. data/spec/integration/sdam_events_spec.rb +77 -5
  483. data/spec/integration/sdam_prose_spec.rb +64 -0
  484. data/spec/integration/server_monitor_spec.rb +25 -1
  485. data/spec/integration/server_selection_spec.rb +36 -0
  486. data/spec/integration/server_spec.rb +42 -26
  487. data/spec/integration/size_limit_spec.rb +3 -3
  488. data/spec/integration/srv_monitoring_spec.rb +38 -3
  489. data/spec/integration/srv_spec.rb +56 -0
  490. data/spec/integration/ssl_uri_options_spec.rb +2 -2
  491. data/spec/integration/step_down_spec.rb +15 -15
  492. data/spec/integration/transactions_api_examples_spec.rb +59 -0
  493. data/spec/integration/transactions_examples_spec.rb +5 -2
  494. data/spec/integration/x509_auth_spec.rb +109 -0
  495. data/spec/kerberos/kerberos_spec.rb +10 -6
  496. data/spec/lite_spec_helper.rb +34 -23
  497. data/spec/mongo/address/ipv4_spec.rb +1 -1
  498. data/spec/mongo/address_spec.rb +3 -3
  499. data/spec/mongo/auth/aws/request_region_spec.rb +42 -0
  500. data/spec/mongo/auth/aws/request_spec.rb +76 -0
  501. data/spec/mongo/auth/cr_spec.rb +7 -7
  502. data/spec/mongo/auth/gssapi/conversation_spec.rb +121 -0
  503. data/spec/mongo/auth/invalid_mechanism_spec.rb +1 -1
  504. data/spec/mongo/auth/ldap/conversation_spec.rb +1 -1
  505. data/spec/mongo/auth/ldap_spec.rb +3 -3
  506. data/spec/mongo/auth/scram/conversation_spec.rb +119 -334
  507. data/spec/mongo/auth/scram256/conversation_spec.rb +171 -0
  508. data/spec/mongo/auth/{scram/negotiation_spec.rb → scram_negotiation_spec.rb} +13 -8
  509. data/spec/mongo/auth/scram_spec.rb +29 -69
  510. data/spec/mongo/auth/user_spec.rb +1 -1
  511. data/spec/mongo/auth/x509/conversation_spec.rb +1 -1
  512. data/spec/mongo/auth/x509_spec.rb +8 -8
  513. data/spec/mongo/auth_spec.rb +4 -4
  514. data/spec/mongo/bulk_write_spec.rb +206 -2
  515. data/spec/mongo/caching_cursor_spec.rb +70 -0
  516. data/spec/mongo/client_construction_spec.rb +674 -87
  517. data/spec/mongo/client_spec.rb +99 -5
  518. data/spec/mongo/cluster/topology/replica_set_spec.rb +52 -9
  519. data/spec/mongo/cluster/topology/single_spec.rb +18 -7
  520. data/spec/mongo/cluster_spec.rb +40 -36
  521. data/spec/mongo/collection/view/aggregation_spec.rb +6 -2
  522. data/spec/mongo/collection/view/builder/find_command_spec.rb +17 -6
  523. data/spec/mongo/collection/view/change_stream_resume_spec.rb +392 -0
  524. data/spec/mongo/collection/view/change_stream_spec.rb +0 -318
  525. data/spec/mongo/collection/view/explainable_spec.rb +87 -4
  526. data/spec/mongo/collection/view/iterable_spec.rb +38 -0
  527. data/spec/mongo/collection/view/map_reduce_spec.rb +8 -2
  528. data/spec/mongo/collection/view/readable_spec.rb +15 -1
  529. data/spec/mongo/collection/view/writable_spec.rb +208 -1
  530. data/spec/mongo/collection_spec.rb +567 -43
  531. data/spec/mongo/crypt/auto_decryption_context_spec.rb +1 -1
  532. data/spec/mongo/crypt/auto_encryption_context_spec.rb +1 -1
  533. data/spec/mongo/crypt/explicit_decryption_context_spec.rb +1 -1
  534. data/spec/mongo/crypt/explicit_encryption_context_spec.rb +1 -1
  535. data/spec/mongo/cursor/builder/get_more_command_spec.rb +6 -1
  536. data/spec/mongo/cursor/builder/op_get_more_spec.rb +6 -1
  537. data/spec/mongo/cursor/builder/op_kill_cursors_spec.rb +6 -1
  538. data/spec/mongo/cursor_spec.rb +9 -1
  539. data/spec/mongo/database_spec.rb +295 -10
  540. data/spec/mongo/distinguishing_semaphore_spec.rb +63 -0
  541. data/spec/mongo/error/no_server_available_spec.rb +1 -1
  542. data/spec/mongo/error/operation_failure_heavy_spec.rb +58 -0
  543. data/spec/mongo/error/operation_failure_spec.rb +167 -69
  544. data/spec/mongo/error/unsupported_option_spec.rb +54 -0
  545. data/spec/mongo/grid/fs_bucket_spec.rb +18 -0
  546. data/spec/mongo/grid/stream/write_spec.rb +32 -0
  547. data/spec/mongo/index/view_spec.rb +312 -0
  548. data/spec/mongo/logger_spec.rb +13 -11
  549. data/spec/mongo/monitoring/event/server_description_changed_spec.rb +1 -4
  550. data/spec/mongo/operation/aggregate/result_spec.rb +6 -1
  551. data/spec/mongo/operation/delete/bulk_spec.rb +18 -6
  552. data/spec/mongo/operation/delete/op_msg_spec.rb +22 -14
  553. data/spec/mongo/operation/find/legacy_spec.rb +27 -7
  554. data/spec/mongo/operation/get_more_spec.rb +6 -1
  555. data/spec/mongo/operation/insert/bulk_spec.rb +21 -7
  556. data/spec/mongo/operation/insert/command_spec.rb +4 -0
  557. data/spec/mongo/operation/insert/op_msg_spec.rb +22 -14
  558. data/spec/mongo/operation/limited_spec.rb +5 -3
  559. data/spec/mongo/operation/read_preference_legacy_spec.rb +16 -4
  560. data/spec/mongo/operation/read_preference_op_msg_spec.rb +115 -5
  561. data/spec/mongo/operation/result_spec.rb +6 -1
  562. data/spec/mongo/operation/update/bulk_spec.rb +18 -6
  563. data/spec/mongo/operation/update/command_spec.rb +4 -0
  564. data/spec/mongo/operation/update/op_msg_spec.rb +22 -14
  565. data/spec/mongo/protocol/msg_spec.rb +10 -0
  566. data/spec/mongo/query_cache_spec.rb +279 -0
  567. data/spec/mongo/retryable_spec.rb +71 -70
  568. data/spec/mongo/semaphore_spec.rb +51 -0
  569. data/spec/mongo/server/app_metadata_shared.rb +136 -0
  570. data/spec/mongo/server/app_metadata_spec.rb +8 -1
  571. data/spec/mongo/server/connection_auth_spec.rb +33 -14
  572. data/spec/mongo/server/connection_pool_spec.rb +7 -34
  573. data/spec/mongo/server/connection_spec.rb +131 -77
  574. data/spec/mongo/server/monitor/app_metadata_spec.rb +8 -1
  575. data/spec/mongo/server/monitor/connection_spec.rb +1 -82
  576. data/spec/mongo/server/monitor_spec.rb +76 -17
  577. data/spec/mongo/server/round_trip_time_averager_spec.rb +5 -3
  578. data/spec/mongo/server_selector/nearest_spec.rb +24 -23
  579. data/spec/mongo/server_selector/primary_preferred_spec.rb +27 -26
  580. data/spec/mongo/server_selector/primary_spec.rb +27 -9
  581. data/spec/mongo/server_selector/secondary_preferred_spec.rb +40 -23
  582. data/spec/mongo/server_selector/secondary_spec.rb +19 -18
  583. data/spec/mongo/server_selector_spec.rb +4 -5
  584. data/spec/mongo/session/session_pool_spec.rb +7 -3
  585. data/spec/mongo/session_spec.rb +35 -0
  586. data/spec/mongo/socket/ssl_spec.rb +3 -3
  587. data/spec/mongo/socket/tcp_spec.rb +2 -2
  588. data/spec/mongo/socket/unix_spec.rb +2 -2
  589. data/spec/mongo/socket_spec.rb +10 -10
  590. data/spec/mongo/timeout_spec.rb +22 -68
  591. data/spec/mongo/uri/srv_protocol_spec.rb +64 -33
  592. data/spec/mongo/uri_option_parsing_spec.rb +11 -11
  593. data/spec/mongo/uri_spec.rb +85 -43
  594. data/spec/mongo/utils_spec.rb +39 -0
  595. data/spec/runners/auth.rb +8 -6
  596. data/spec/runners/change_streams/outcome.rb +42 -0
  597. data/spec/runners/change_streams/spec.rb +57 -0
  598. data/spec/runners/change_streams/test.rb +229 -0
  599. data/spec/runners/cmap.rb +1 -1
  600. data/spec/runners/cmap/verifier.rb +1 -1
  601. data/spec/runners/command_monitoring.rb +4 -35
  602. data/spec/runners/connection_string.rb +36 -124
  603. data/spec/runners/crud.rb +2 -2
  604. data/spec/runners/crud/context.rb +10 -6
  605. data/spec/runners/crud/operation.rb +177 -55
  606. data/spec/runners/crud/outcome.rb +1 -1
  607. data/spec/runners/crud/spec.rb +0 -7
  608. data/spec/runners/crud/test.rb +8 -26
  609. data/spec/runners/crud/test_base.rb +47 -0
  610. data/spec/runners/crud/verifier.rb +21 -3
  611. data/spec/runners/gridfs.rb +1 -1
  612. data/spec/runners/{server_discovery_and_monitoring.rb → sdam.rb} +41 -22
  613. data/spec/runners/sdam/verifier.rb +26 -8
  614. data/spec/runners/server_selection.rb +242 -28
  615. data/spec/runners/transactions.rb +13 -14
  616. data/spec/runners/transactions/operation.rb +155 -25
  617. data/spec/runners/transactions/spec.rb +1 -1
  618. data/spec/runners/transactions/test.rb +103 -65
  619. data/spec/spec_tests/auth_spec.rb +2 -0
  620. data/spec/spec_tests/change_streams_spec.rb +39 -4
  621. data/spec/spec_tests/client_side_encryption_spec.rb +3 -0
  622. data/spec/spec_tests/cmap_spec.rb +12 -3
  623. data/spec/spec_tests/command_monitoring_spec.rb +25 -12
  624. data/spec/spec_tests/connection_string_spec.rb +2 -0
  625. data/spec/spec_tests/crud_spec.rb +3 -1
  626. data/spec/spec_tests/data/auth/connection-string.yml +57 -1
  627. data/spec/spec_tests/data/change_streams/change-streams-errors.yml +27 -2
  628. data/spec/spec_tests/data/change_streams/change-streams-resume-errorLabels.yml +1105 -0
  629. data/spec/spec_tests/data/change_streams/change-streams-resume-whitelist.yml +1173 -0
  630. data/spec/spec_tests/data/change_streams/change-streams.yml +5 -5
  631. data/spec/spec_tests/data/cmap/pool-checkout-connection.yml +6 -2
  632. data/spec/spec_tests/data/cmap/pool-create-min-size.yml +3 -0
  633. data/spec/spec_tests/data/connection_string/valid-warnings.yml +24 -0
  634. data/spec/spec_tests/data/crud_v2/aggregate-merge.yml +1 -1
  635. data/spec/spec_tests/data/crud_v2/bulkWrite-arrayFilters.yml +33 -11
  636. data/spec/spec_tests/data/crud_v2/bulkWrite-delete-hint-clientError.yml +63 -0
  637. data/spec/spec_tests/data/crud_v2/bulkWrite-delete-hint-serverError.yml +92 -0
  638. data/spec/spec_tests/data/crud_v2/bulkWrite-delete-hint.yml +103 -0
  639. data/spec/spec_tests/data/crud_v2/bulkWrite-update-hint-clientError.yml +90 -0
  640. data/spec/spec_tests/data/crud_v2/bulkWrite-update-hint-serverError.yml +147 -0
  641. data/spec/spec_tests/data/crud_v2/bulkWrite-update-hint.yml +164 -0
  642. data/spec/spec_tests/data/crud_v2/deleteMany-hint-clientError.yml +43 -0
  643. data/spec/spec_tests/data/crud_v2/deleteMany-hint-serverError.yml +62 -0
  644. data/spec/spec_tests/data/crud_v2/deleteMany-hint.yml +58 -0
  645. data/spec/spec_tests/data/crud_v2/deleteOne-hint-clientError.yml +41 -0
  646. data/spec/spec_tests/data/crud_v2/deleteOne-hint-serverError.yml +60 -0
  647. data/spec/spec_tests/data/crud_v2/deleteOne-hint.yml +57 -0
  648. data/spec/spec_tests/data/crud_v2/find-allowdiskuse-clientError.yml +28 -0
  649. data/spec/spec_tests/data/crud_v2/find-allowdiskuse-serverError.yml +44 -0
  650. data/spec/spec_tests/data/crud_v2/find-allowdiskuse.yml +50 -0
  651. data/spec/spec_tests/data/crud_v2/findOneAndDelete-hint-clientError.yml +45 -0
  652. data/spec/spec_tests/data/crud_v2/findOneAndDelete-hint-serverError.yml +60 -0
  653. data/spec/spec_tests/data/crud_v2/findOneAndDelete-hint.yml +56 -0
  654. data/spec/spec_tests/data/crud_v2/findOneAndReplace-hint-clientError.yml +40 -0
  655. data/spec/spec_tests/data/crud_v2/findOneAndReplace-hint-serverError.yml +59 -0
  656. data/spec/spec_tests/data/crud_v2/findOneAndReplace-hint.yml +55 -0
  657. data/spec/spec_tests/data/crud_v2/findOneAndUpdate-hint-clientError.yml +40 -0
  658. data/spec/spec_tests/data/crud_v2/findOneAndUpdate-hint-serverError.yml +58 -0
  659. data/spec/spec_tests/data/crud_v2/findOneAndUpdate-hint.yml +55 -0
  660. data/spec/spec_tests/data/crud_v2/replaceOne-hint.yml +61 -0
  661. data/spec/spec_tests/data/crud_v2/unacknowledged-bulkWrite-delete-hint-clientError.yml +60 -0
  662. data/spec/spec_tests/data/crud_v2/unacknowledged-bulkWrite-update-hint-clientError.yml +88 -0
  663. data/spec/spec_tests/data/crud_v2/unacknowledged-deleteMany-hint-clientError.yml +40 -0
  664. data/spec/spec_tests/data/crud_v2/unacknowledged-deleteOne-hint-clientError.yml +38 -0
  665. data/spec/spec_tests/data/crud_v2/unacknowledged-findOneAndDelete-hint-clientError.yml +42 -0
  666. data/spec/spec_tests/data/crud_v2/unacknowledged-findOneAndReplace-hint-clientError.yml +40 -0
  667. data/spec/spec_tests/data/crud_v2/unacknowledged-findOneAndUpdate-hint-clientError.yml +40 -0
  668. data/spec/spec_tests/data/crud_v2/unacknowledged-replaceOne-hint-clientError.yml +40 -0
  669. data/spec/spec_tests/data/crud_v2/unacknowledged-updateMany-hint-clientError.yml +43 -0
  670. data/spec/spec_tests/data/crud_v2/unacknowledged-updateOne-hint-clientError.yml +40 -0
  671. data/spec/spec_tests/data/crud_v2/updateMany-hint-clientError.yml +45 -0
  672. data/spec/spec_tests/data/crud_v2/updateMany-hint-serverError.yml +66 -0
  673. data/spec/spec_tests/data/crud_v2/updateMany-hint.yml +65 -0
  674. data/spec/spec_tests/data/crud_v2/updateOne-hint-clientError.yml +43 -0
  675. data/spec/spec_tests/data/crud_v2/updateOne-hint-serverError.yml +62 -0
  676. data/spec/spec_tests/data/crud_v2/updateOne-hint.yml +61 -0
  677. data/spec/spec_tests/data/crud_v2/updateWithPipelines.yml +65 -0
  678. data/spec/spec_tests/data/dns_seedlist_discovery/direct-connection-false.yml +10 -0
  679. data/spec/spec_tests/data/dns_seedlist_discovery/direct-connection-true.yml +5 -0
  680. data/spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/MaxStalenessTooSmall.yml +15 -0
  681. data/spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/NoKnownServers.yml +4 -3
  682. data/spec/spec_tests/data/max_staleness/Unknown/SmallMaxStaleness.yml +1 -0
  683. data/spec/spec_tests/data/read_write_concern/operation/default-write-concern-2.6.yml +215 -0
  684. data/spec/spec_tests/data/read_write_concern/operation/default-write-concern-3.2.yml +58 -0
  685. data/spec/spec_tests/data/read_write_concern/operation/default-write-concern-3.4.yml +95 -0
  686. data/spec/spec_tests/data/read_write_concern/operation/default-write-concern-4.2.yml +36 -0
  687. data/spec/spec_tests/data/retryable_writes/bulkWrite-errorLabels.yml +77 -0
  688. data/spec/spec_tests/data/retryable_writes/bulkWrite-serverErrors.yml +37 -0
  689. data/spec/spec_tests/data/retryable_writes/deleteOne-errorLabels.yml +48 -0
  690. data/spec/spec_tests/data/retryable_writes/deleteOne-serverErrors.yml +22 -0
  691. data/spec/spec_tests/data/retryable_writes/findOneAndDelete-errorLabels.yml +49 -0
  692. data/spec/spec_tests/data/retryable_writes/findOneAndDelete-serverErrors.yml +23 -0
  693. data/spec/spec_tests/data/retryable_writes/findOneAndReplace-errorLabels.yml +52 -0
  694. data/spec/spec_tests/data/retryable_writes/findOneAndReplace-serverErrors.yml +25 -0
  695. data/spec/spec_tests/data/retryable_writes/findOneAndUpdate-errorLabels.yml +52 -0
  696. data/spec/spec_tests/data/retryable_writes/findOneAndUpdate-serverErrors.yml +24 -0
  697. data/spec/spec_tests/data/retryable_writes/insertMany-errorLabels.yml +54 -0
  698. data/spec/spec_tests/data/retryable_writes/insertMany-serverErrors.yml +24 -0
  699. data/spec/spec_tests/data/retryable_writes/insertOne-errorLabels.yml +44 -0
  700. data/spec/spec_tests/data/retryable_writes/insertOne-serverErrors.yml +69 -0
  701. data/spec/spec_tests/data/retryable_writes/replaceOne-errorLabels.yml +53 -0
  702. data/spec/spec_tests/data/retryable_writes/replaceOne-serverErrors.yml +23 -0
  703. data/spec/spec_tests/data/retryable_writes/updateOne-errorLabels.yml +53 -0
  704. data/spec/spec_tests/data/retryable_writes/updateOne-serverErrors.yml +23 -0
  705. data/spec/spec_tests/data/sdam/errors/error_handling_handshake.yml +54 -0
  706. data/spec/spec_tests/data/sdam/errors/non-stale-network-error.yml +46 -0
  707. data/spec/spec_tests/data/sdam/errors/non-stale-network-timeout-error.yml +37 -0
  708. data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-InterruptedAtShutdown.yml +60 -0
  709. data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-InterruptedDueToReplStateChange.yml +60 -0
  710. data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-NotMaster.yml +60 -0
  711. data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-NotMasterNoSlaveOk.yml +60 -0
  712. data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-NotMasterOrSecondary.yml +60 -0
  713. data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-PrimarySteppedDown.yml +60 -0
  714. data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-ShutdownInProgress.yml +60 -0
  715. data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-InterruptedAtShutdown.yml +51 -0
  716. data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-InterruptedDueToReplStateChange.yml +51 -0
  717. data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-NotMaster.yml +51 -0
  718. data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-NotMasterNoSlaveOk.yml +51 -0
  719. data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-NotMasterOrSecondary.yml +51 -0
  720. data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-PrimarySteppedDown.yml +51 -0
  721. data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-ShutdownInProgress.yml +51 -0
  722. data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-InterruptedAtShutdown.yml +60 -0
  723. data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-InterruptedDueToReplStateChange.yml +60 -0
  724. data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-NotMaster.yml +60 -0
  725. data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-NotMasterNoSlaveOk.yml +60 -0
  726. data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-NotMasterOrSecondary.yml +60 -0
  727. data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-PrimarySteppedDown.yml +60 -0
  728. data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-ShutdownInProgress.yml +60 -0
  729. data/spec/spec_tests/data/sdam/errors/post-42-InterruptedAtShutdown.yml +46 -0
  730. data/spec/spec_tests/data/sdam/errors/post-42-InterruptedDueToReplStateChange.yml +46 -0
  731. data/spec/spec_tests/data/sdam/errors/post-42-NotMaster.yml +46 -0
  732. data/spec/spec_tests/data/sdam/errors/post-42-NotMasterNoSlaveOk.yml +46 -0
  733. data/spec/spec_tests/data/sdam/errors/post-42-NotMasterOrSecondary.yml +46 -0
  734. data/spec/spec_tests/data/sdam/errors/post-42-PrimarySteppedDown.yml +46 -0
  735. data/spec/spec_tests/data/sdam/errors/post-42-ShutdownInProgress.yml +46 -0
  736. data/spec/spec_tests/data/sdam/errors/pre-42-InterruptedAtShutdown.yml +46 -0
  737. data/spec/spec_tests/data/sdam/errors/pre-42-InterruptedDueToReplStateChange.yml +46 -0
  738. data/spec/spec_tests/data/sdam/errors/pre-42-NotMaster.yml +46 -0
  739. data/spec/spec_tests/data/sdam/errors/pre-42-NotMasterNoSlaveOk.yml +46 -0
  740. data/spec/spec_tests/data/sdam/errors/pre-42-NotMasterOrSecondary.yml +46 -0
  741. data/spec/spec_tests/data/sdam/errors/pre-42-PrimarySteppedDown.yml +46 -0
  742. data/spec/spec_tests/data/sdam/errors/pre-42-ShutdownInProgress.yml +46 -0
  743. data/spec/spec_tests/data/sdam/errors/stale-generation-InterruptedAtShutdown.yml +89 -0
  744. data/spec/spec_tests/data/sdam/errors/stale-generation-InterruptedDueToReplStateChange.yml +89 -0
  745. data/spec/spec_tests/data/sdam/errors/stale-generation-NotMaster.yml +89 -0
  746. data/spec/spec_tests/data/sdam/errors/stale-generation-NotMasterNoSlaveOk.yml +89 -0
  747. data/spec/spec_tests/data/sdam/errors/stale-generation-NotMasterOrSecondary.yml +89 -0
  748. data/spec/spec_tests/data/sdam/errors/stale-generation-PrimarySteppedDown.yml +89 -0
  749. data/spec/spec_tests/data/sdam/errors/stale-generation-ShutdownInProgress.yml +89 -0
  750. data/spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-InterruptedAtShutdown.yml +89 -0
  751. data/spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-InterruptedDueToReplStateChange.yml +89 -0
  752. data/spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-NotMaster.yml +89 -0
  753. data/spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-NotMasterNoSlaveOk.yml +89 -0
  754. data/spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-NotMasterOrSecondary.yml +89 -0
  755. data/spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-PrimarySteppedDown.yml +89 -0
  756. data/spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-ShutdownInProgress.yml +89 -0
  757. data/spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-network.yml +80 -0
  758. data/spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-timeout.yml +80 -0
  759. data/spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-InterruptedAtShutdown.yml +89 -0
  760. data/spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-InterruptedDueToReplStateChange.yml +89 -0
  761. data/spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-NotMaster.yml +89 -0
  762. data/spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-NotMasterNoSlaveOk.yml +89 -0
  763. data/spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-NotMasterOrSecondary.yml +89 -0
  764. data/spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-PrimarySteppedDown.yml +89 -0
  765. data/spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-ShutdownInProgress.yml +89 -0
  766. data/spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-network.yml +80 -0
  767. data/spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-timeout.yml +80 -0
  768. data/spec/spec_tests/data/sdam/errors/stale-topologyVersion-InterruptedAtShutdown.yml +64 -0
  769. data/spec/spec_tests/data/sdam/errors/stale-topologyVersion-InterruptedDueToReplStateChange.yml +64 -0
  770. data/spec/spec_tests/data/sdam/errors/stale-topologyVersion-NotMaster.yml +64 -0
  771. data/spec/spec_tests/data/sdam/errors/stale-topologyVersion-NotMasterNoSlaveOk.yml +64 -0
  772. data/spec/spec_tests/data/sdam/errors/stale-topologyVersion-NotMasterOrSecondary.yml +64 -0
  773. data/spec/spec_tests/data/sdam/errors/stale-topologyVersion-PrimarySteppedDown.yml +64 -0
  774. data/spec/spec_tests/data/sdam/errors/stale-topologyVersion-ShutdownInProgress.yml +64 -0
  775. data/spec/spec_tests/data/sdam/rs/compatible.yml +2 -0
  776. data/spec/spec_tests/data/sdam/rs/compatible_unknown.yml +2 -0
  777. data/spec/spec_tests/data/sdam/rs/discover_arbiters.yml +2 -2
  778. data/spec/spec_tests/data/sdam/rs/discover_arbiters_replicaset.yml +43 -0
  779. data/spec/spec_tests/data/sdam/rs/discover_ghost.yml +35 -0
  780. data/spec/spec_tests/data/sdam/rs/{ghost_discovered.yml → discover_ghost_replicaset.yml} +1 -1
  781. data/spec/spec_tests/data/sdam/rs/discover_hidden.yml +50 -0
  782. data/spec/spec_tests/data/sdam/rs/discover_hidden_replicaset.yml +50 -0
  783. data/spec/spec_tests/data/sdam/rs/discover_passives.yml +2 -2
  784. data/spec/spec_tests/data/sdam/rs/discover_passives_replicaset.yml +81 -0
  785. data/spec/spec_tests/data/sdam/rs/discover_primary.yml +2 -2
  786. data/spec/spec_tests/data/sdam/rs/discover_primary_replicaset.yml +42 -0
  787. data/spec/spec_tests/data/sdam/rs/discover_rsother.yml +49 -0
  788. data/spec/spec_tests/data/sdam/rs/{rsother_discovered.yml → discover_rsother_replicaset.yml} +1 -1
  789. data/spec/spec_tests/data/sdam/rs/discover_secondary.yml +2 -2
  790. data/spec/spec_tests/data/sdam/rs/discover_secondary_replicaset.yml +43 -0
  791. data/spec/spec_tests/data/sdam/rs/incompatible_arbiter.yml +2 -0
  792. data/spec/spec_tests/data/sdam/rs/incompatible_ghost.yml +2 -0
  793. data/spec/spec_tests/data/sdam/rs/incompatible_other.yml +2 -0
  794. data/spec/spec_tests/data/sdam/rs/primary_mismatched_me.yml +23 -27
  795. data/spec/spec_tests/data/sdam/rs/primary_to_no_primary_mismatched_me.yml +79 -55
  796. data/spec/spec_tests/data/sdam/rs/replicaset_rsnp.yml +20 -0
  797. data/spec/spec_tests/data/sdam/rs/secondary_mismatched_me.yml +3 -2
  798. data/spec/spec_tests/data/sdam/rs/too_new.yml +2 -0
  799. data/spec/spec_tests/data/sdam/rs/topology_version_equal.yml +66 -0
  800. data/spec/spec_tests/data/sdam/rs/topology_version_greater.yml +189 -0
  801. data/spec/spec_tests/data/sdam/rs/topology_version_less.yml +62 -0
  802. data/spec/spec_tests/data/sdam/sharded/discover_single_mongos.yml +23 -0
  803. data/spec/spec_tests/data/sdam/single/direct_connection_external_ip.yml +1 -1
  804. data/spec/spec_tests/data/sdam/single/direct_connection_mongos.yml +2 -2
  805. data/spec/spec_tests/data/sdam/single/direct_connection_replicaset.yml +22 -0
  806. data/spec/spec_tests/data/sdam/single/direct_connection_rsarbiter.yml +2 -2
  807. data/spec/spec_tests/data/sdam/single/direct_connection_rsprimary.yml +2 -2
  808. data/spec/spec_tests/data/sdam/single/direct_connection_rssecondary.yml +2 -2
  809. data/spec/spec_tests/data/sdam/single/direct_connection_slave.yml +1 -1
  810. data/spec/spec_tests/data/sdam/single/direct_connection_standalone.yml +2 -2
  811. data/spec/spec_tests/data/sdam/single/{unavailable_seed.yml → direct_connection_unavailable_seed.yml} +2 -2
  812. data/spec/spec_tests/data/sdam/single/direct_connection_wrong_set_name.yml +38 -0
  813. data/spec/spec_tests/data/sdam/single/discover_standalone.yml +34 -0
  814. data/spec/spec_tests/data/sdam/single/discover_unavailable_seed.yml +28 -0
  815. data/spec/spec_tests/data/sdam/single/too_old_then_upgraded.yml +46 -0
  816. data/spec/spec_tests/data/sdam_integration/cancel-server-check.yml +96 -0
  817. data/spec/spec_tests/data/sdam_integration/connectTimeoutMS.yml +88 -0
  818. data/spec/spec_tests/data/sdam_integration/find-network-error.yml +83 -0
  819. data/spec/spec_tests/data/sdam_integration/find-shutdown-error.yml +116 -0
  820. data/spec/spec_tests/data/sdam_integration/insert-network-error.yml +86 -0
  821. data/spec/spec_tests/data/sdam_integration/insert-shutdown-error.yml +115 -0
  822. data/spec/spec_tests/data/sdam_integration/isMaster-command-error.yml +168 -0
  823. data/spec/spec_tests/data/sdam_integration/isMaster-network-error.yml +162 -0
  824. data/spec/spec_tests/data/sdam_integration/isMaster-timeout.yml +229 -0
  825. data/spec/spec_tests/data/sdam_integration/rediscover-quickly-after-step-down.yml +87 -0
  826. data/spec/spec_tests/data/sdam_monitoring/discovered_standalone.yml +1 -3
  827. data/spec/spec_tests/data/sdam_monitoring/standalone.yml +2 -2
  828. data/spec/spec_tests/data/sdam_monitoring/standalone_repeated.yml +2 -2
  829. data/spec/spec_tests/data/sdam_monitoring/standalone_suppress_equal_description_changes.yml +2 -2
  830. data/spec/spec_tests/data/sdam_monitoring/standalone_to_rs_with_me_mismatch.yml +2 -2
  831. data/spec/spec_tests/data/transactions/create-collection.yml +131 -0
  832. data/spec/spec_tests/data/transactions/create-index.yml +152 -0
  833. data/spec/spec_tests/data/transactions/error-labels.yml +87 -21
  834. data/spec/spec_tests/data/transactions/mongos-recovery-token.yml +1 -0
  835. data/spec/spec_tests/data/transactions/retryable-abort-errorLabels.yml +124 -0
  836. data/spec/spec_tests/data/transactions/retryable-abort.yml +17 -2
  837. data/spec/spec_tests/data/transactions/retryable-commit-errorLabels.yml +132 -0
  838. data/spec/spec_tests/data/transactions/retryable-commit.yml +24 -9
  839. data/spec/spec_tests/data/uri_options/auth-options.yml +25 -0
  840. data/spec/spec_tests/data/uri_options/compression-options.yml +6 -3
  841. data/spec/spec_tests/data/uri_options/connection-options.yml +43 -0
  842. data/spec/spec_tests/data/uri_options/read-preference-options.yml +24 -0
  843. data/spec/spec_tests/data/uri_options/ruby-auth-options.yml +12 -0
  844. data/spec/spec_tests/data/uri_options/ruby-connection-options.yml +58 -0
  845. data/spec/spec_tests/data/uri_options/tls-options.yml +160 -4
  846. data/spec/spec_tests/dns_seedlist_discovery_spec.rb +12 -2
  847. data/spec/spec_tests/gridfs_spec.rb +2 -0
  848. data/spec/spec_tests/max_staleness_spec.rb +5 -141
  849. data/spec/spec_tests/read_write_concern_connection_string_spec.rb +2 -0
  850. data/spec/spec_tests/read_write_concern_operaton_spec.rb +10 -0
  851. data/spec/spec_tests/retryable_reads_spec.rb +4 -2
  852. data/spec/spec_tests/retryable_writes_spec.rb +8 -1
  853. data/spec/spec_tests/sdam_integration_spec.rb +13 -0
  854. data/spec/spec_tests/sdam_monitoring_spec.rb +3 -2
  855. data/spec/spec_tests/sdam_spec.rb +70 -1
  856. data/spec/spec_tests/server_selection_rtt_spec.rb +2 -0
  857. data/spec/spec_tests/server_selection_spec.rb +5 -115
  858. data/spec/spec_tests/transactions_api_spec.rb +5 -0
  859. data/spec/spec_tests/transactions_spec.rb +5 -0
  860. data/spec/spec_tests/uri_options_spec.rb +33 -33
  861. data/spec/stress/cleanup_spec.rb +58 -0
  862. data/spec/stress/connection_pool_stress_spec.rb +11 -13
  863. data/spec/stress/connection_pool_timing_spec.rb +3 -6
  864. data/spec/stress/fork_reconnect_stress_spec.rb +109 -0
  865. data/spec/support/authorization.rb +1 -11
  866. data/spec/support/aws_utils.rb +62 -0
  867. data/spec/support/aws_utils/base.rb +134 -0
  868. data/spec/support/aws_utils/inspector.rb +224 -0
  869. data/spec/support/aws_utils/orchestrator.rb +370 -0
  870. data/spec/support/aws_utils/provisioner.rb +360 -0
  871. data/spec/support/background_thread_registry.rb +6 -2
  872. data/spec/support/certificates/atlas-ocsp-ca.crt +28 -0
  873. data/spec/support/certificates/atlas-ocsp.crt +41 -0
  874. data/spec/support/child_process_helper.rb +78 -0
  875. data/spec/support/client_registry.rb +6 -24
  876. data/spec/support/client_registry_macros.rb +11 -2
  877. data/spec/support/cluster_config.rb +5 -0
  878. data/spec/support/common_shortcuts.rb +88 -0
  879. data/spec/support/constraints.rb +50 -7
  880. data/spec/support/crypt.rb +1 -1
  881. data/spec/support/event_subscriber.rb +184 -84
  882. data/spec/support/keyword_struct.rb +26 -0
  883. data/spec/support/lite_constraints.rb +71 -0
  884. data/spec/support/matchers.rb +16 -0
  885. data/spec/support/ocsp +1 -0
  886. data/spec/support/session_registry.rb +52 -0
  887. data/spec/support/shared/scram_conversation.rb +100 -0
  888. data/spec/support/shared/server_selector.rb +93 -1
  889. data/spec/support/shared/session.rb +29 -21
  890. data/spec/support/spec_config.rb +98 -21
  891. data/spec/support/spec_organizer.rb +129 -0
  892. data/spec/support/spec_setup.rb +9 -5
  893. data/spec/support/utils.rb +180 -25
  894. metadata +1221 -745
  895. metadata.gz.sig +0 -0
  896. data/lib/mongo/server/connectable.rb +0 -107
  897. data/spec/runners/change_streams.rb +0 -262
  898. data/spec/runners/change_streams/operation.rb +0 -89
  899. data/spec/runners/sdam_monitoring.rb +0 -89
  900. data/spec/spec_tests/data/sdam/sharded/ruby_discovered_single_mongos.yml +0 -27
@@ -11,7 +11,7 @@ describe Mongo::Auth do
11
11
  end
12
12
 
13
13
  let(:cr) do
14
- described_class.get(user)
14
+ described_class.get(user, double('connection'))
15
15
  end
16
16
 
17
17
  it 'returns CR' do
@@ -26,7 +26,7 @@ describe Mongo::Auth do
26
26
  end
27
27
 
28
28
  let(:x509) do
29
- described_class.get(user)
29
+ described_class.get(user, double('connection'))
30
30
  end
31
31
 
32
32
  it 'returns X509' do
@@ -41,7 +41,7 @@ describe Mongo::Auth do
41
41
  end
42
42
 
43
43
  let(:ldap) do
44
- described_class.get(user)
44
+ described_class.get(user, double('connection'))
45
45
  end
46
46
 
47
47
  it 'returns LDAP' do
@@ -57,7 +57,7 @@ describe Mongo::Auth do
57
57
 
58
58
  it 'raises an error' do
59
59
  expect {
60
- described_class.get(user)
60
+ described_class.get(user, double('connection'))
61
61
  }.to raise_error(Mongo::Auth::InvalidMechanism)
62
62
  end
63
63
  end
@@ -235,6 +235,44 @@ describe Mongo::BulkWrite do
235
235
  expect(authorized_collection.find(_id: 0).count).to eq(0)
236
236
  end
237
237
 
238
+ context 'when the write has specified a hint option' do
239
+ let(:requests) do
240
+ [{
241
+ delete_one: {
242
+ filter: { _id: 1 },
243
+ hint: '_id_',
244
+ }
245
+ }]
246
+ end
247
+
248
+ context 'with unacknowledged write concern' do
249
+ let(:bulk_write) do
250
+ described_class.new(
251
+ collection,
252
+ requests,
253
+ options.merge(write_concern: { w: 0 })
254
+ )
255
+ end
256
+
257
+ it 'raises a client-side error' do
258
+ expect do
259
+ bulk_write.execute
260
+ end.to raise_error(Mongo::Error::UnsupportedOption, /The hint option cannot be specified on an unacknowledged write operation/)
261
+ end
262
+ end
263
+
264
+ # Functionality on more recent servers is sufficiently covered by spec tests.
265
+ context 'on server versions < 3.4' do
266
+ max_server_fcv '3.2'
267
+
268
+ it 'raises a client-side error' do
269
+ expect do
270
+ bulk_write.execute
271
+ end.to raise_error(Mongo::Error::UnsupportedOption, /The MongoDB server handling this request does not support the hint option on this command./)
272
+ end
273
+ end
274
+ end
275
+
238
276
  context 'when a session is provided' do
239
277
 
240
278
  let(:operation) do
@@ -348,6 +386,44 @@ describe Mongo::BulkWrite do
348
386
  end
349
387
 
350
388
  context 'when bulk executing update_one' do
389
+ context 'when the write has specified a hint option' do
390
+ let(:requests) do
391
+ [{
392
+ update_one: {
393
+ filter: { _id: 1 },
394
+ update: { '$set' => { 'x.$[i].y' => 5 } },
395
+ hint: '_id_',
396
+ }
397
+ }]
398
+ end
399
+
400
+ # Functionality on more recent servers is sufficiently covered by spec tests.
401
+ context 'on server versions < 3.4' do
402
+ max_server_fcv '3.2'
403
+
404
+ it 'raises a client-side error' do
405
+ expect do
406
+ bulk_write.execute
407
+ end.to raise_error(Mongo::Error::UnsupportedOption, /The MongoDB server handling this request does not support the hint option on this command./)
408
+ end
409
+ end
410
+
411
+ context 'with unacknowledged write concern' do
412
+ let(:bulk_write) do
413
+ described_class.new(
414
+ collection,
415
+ requests,
416
+ options.merge(write_concern: { w: 0 })
417
+ )
418
+ end
419
+
420
+ it 'raises a client-side error' do
421
+ expect do
422
+ bulk_write.execute
423
+ end.to raise_error(Mongo::Error::UnsupportedOption, /The hint option cannot be specified on an unacknowledged write operation/)
424
+ end
425
+ end
426
+ end
351
427
 
352
428
  context 'when the write has specified arrayFilters' do
353
429
 
@@ -392,6 +468,45 @@ describe Mongo::BulkWrite do
392
468
  end
393
469
 
394
470
  context 'when bulk executing update_many' do
471
+ context 'when the write has specified a hint option' do
472
+ let(:requests) do
473
+ [{
474
+ update_many: {
475
+ filter: { '$or' => [{ _id: 1 }, { _id: 2 }]},
476
+ update: { '$set' => { 'x.$[i].y' => 5 } },
477
+ hint: '_id_',
478
+ }
479
+ }]
480
+ end
481
+
482
+ # Functionality on more recent servers is sufficiently covered by spec tests.
483
+ context 'on server versions < 3.4' do
484
+ max_server_fcv '3.2'
485
+
486
+ it 'raises a client-side error' do
487
+ expect do
488
+ bulk_write.execute
489
+ end.to raise_error(Mongo::Error::UnsupportedOption, /The MongoDB server handling this request does not support the hint option on this command./)
490
+ end
491
+ end
492
+
493
+ context 'with unacknowledged write concern' do
494
+ let(:bulk_write) do
495
+ described_class.new(
496
+ collection,
497
+ requests,
498
+ options.merge(write_concern: { w: 0 })
499
+ )
500
+ end
501
+
502
+ it 'raises a client-side error' do
503
+ expect do
504
+ bulk_write.execute
505
+ end.to raise_error(Mongo::Error::UnsupportedOption, /The hint option cannot be specified on an unacknowledged write operation/)
506
+ end
507
+ end
508
+ end
509
+
395
510
 
396
511
  context 'when the write has specified arrayFilters' do
397
512
 
@@ -639,6 +754,44 @@ describe Mongo::BulkWrite do
639
754
  expect(authorized_collection.find(_id: 0).count).to eq(0)
640
755
  end
641
756
 
757
+ context 'when the write has specified a hint option' do
758
+ let(:requests) do
759
+ [{
760
+ delete_many: {
761
+ filter: { _id: 1 },
762
+ hint: '_id_',
763
+ }
764
+ }]
765
+ end
766
+
767
+ # Functionality on more recent servers is sufficiently covered by spec tests.
768
+ context 'on server versions < 3.4' do
769
+ max_server_fcv '3.2'
770
+
771
+ it 'raises a client-side error' do
772
+ expect do
773
+ bulk_write.execute
774
+ end.to raise_error(Mongo::Error::UnsupportedOption, /The MongoDB server handling this request does not support the hint option on this command./)
775
+ end
776
+ end
777
+
778
+ context 'with unacknowledged write concern' do
779
+ let(:bulk_write) do
780
+ described_class.new(
781
+ collection,
782
+ requests,
783
+ options.merge(write_concern: { w: 0 })
784
+ )
785
+ end
786
+
787
+ it 'raises a client-side error' do
788
+ expect do
789
+ bulk_write.execute
790
+ end.to raise_error(Mongo::Error::UnsupportedOption, /The hint option cannot be specified on an unacknowledged write operation/)
791
+ end
792
+ end
793
+ end
794
+
642
795
  context 'when a session is provided' do
643
796
 
644
797
  let(:operation) do
@@ -918,6 +1071,45 @@ describe Mongo::BulkWrite do
918
1071
  expect(authorized_collection.find(_id: 0).first[:name]).to eq('test')
919
1072
  end
920
1073
 
1074
+ context 'when a hint option is provided' do
1075
+ let(:requests) do
1076
+ [{
1077
+ replace_one: {
1078
+ filter: { _id: 0 },
1079
+ replacements: { name: 'test' },
1080
+ hint: '_id_'
1081
+ }
1082
+ }]
1083
+ end
1084
+
1085
+ # Functionality on more recent servers is sufficiently covered by spec tests.
1086
+ context 'on server versions < 3.4' do
1087
+ max_server_fcv '3.2'
1088
+
1089
+ it 'raises a client-side error' do
1090
+ expect do
1091
+ bulk_write.execute
1092
+ end.to raise_error(Mongo::Error::UnsupportedOption, /The MongoDB server handling this request does not support the hint option on this command./)
1093
+ end
1094
+ end
1095
+
1096
+ context 'with unacknowledged write concern' do
1097
+ let(:bulk_write) do
1098
+ described_class.new(
1099
+ collection,
1100
+ requests,
1101
+ options.merge(write_concern: { w: 0 })
1102
+ )
1103
+ end
1104
+
1105
+ it 'raises a client-side error' do
1106
+ expect do
1107
+ bulk_write.execute
1108
+ end.to raise_error(Mongo::Error::UnsupportedOption, /The hint option cannot be specified on an unacknowledged write operation/)
1109
+ end
1110
+ end
1111
+ end
1112
+
921
1113
  context 'when a session is provided' do
922
1114
 
923
1115
  let(:operation) do
@@ -1141,13 +1333,17 @@ describe Mongo::BulkWrite do
1141
1333
  end
1142
1334
 
1143
1335
  context 'when the number of updates exceeds the max batch size' do
1336
+ # Test uses doubles for server descriptions, doubles are
1337
+ # incompatible with freezing which linting does for descriptions
1338
+ skip_if_linting
1144
1339
 
1145
1340
  let(:batch_size) do
1146
1341
  11
1147
1342
  end
1148
1343
 
1149
1344
  before do
1150
- allow(client.cluster.next_primary).to receive(:max_write_batch_size).and_return(batch_size - 1)
1345
+ allow_any_instance_of(Mongo::Server::Description).to \
1346
+ receive(:max_write_batch_size).and_return(batch_size - 1)
1151
1347
  end
1152
1348
 
1153
1349
  let(:requests) do
@@ -1814,13 +2010,21 @@ describe Mongo::BulkWrite do
1814
2010
  end
1815
2011
 
1816
2012
  context 'when the operations need to be split' do
2013
+ # Test uses doubles for server descriptions, doubles are
2014
+ # incompatible with freezing which linting does for descriptions
2015
+ skip_if_linting
1817
2016
 
1818
2017
  let(:batch_size) do
1819
2018
  11
1820
2019
  end
1821
2020
 
2021
+ let(:connection) do
2022
+ server = client.cluster.next_primary
2023
+ end
2024
+
1822
2025
  before do
1823
- allow(client.cluster.next_primary).to receive(:max_write_batch_size).and_return(batch_size - 1)
2026
+ allow_any_instance_of(Mongo::Server::Description).to \
2027
+ receive(:max_write_batch_size).and_return(batch_size - 1)
1824
2028
  end
1825
2029
 
1826
2030
  context 'when a write error occurs' do
@@ -0,0 +1,70 @@
1
+ require 'spec_helper'
2
+
3
+ describe Mongo::CachingCursor do
4
+
5
+ around do |spec|
6
+ Mongo::QueryCache.clear
7
+ Mongo::QueryCache.cache { spec.run }
8
+ end
9
+
10
+ let(:authorized_collection) do
11
+ authorized_client['caching_cursor']
12
+ end
13
+
14
+ before do
15
+ authorized_collection.drop
16
+ end
17
+
18
+ let(:server) do
19
+ view.send(:server_selector).select_server(authorized_client.cluster)
20
+ end
21
+
22
+ let(:reply) do
23
+ view.send(:send_initial_query, server)
24
+ end
25
+
26
+ let(:cursor) do
27
+ described_class.new(view, reply, server)
28
+ end
29
+
30
+ let(:view) do
31
+ Mongo::Collection::View.new(authorized_collection)
32
+ end
33
+
34
+ before do
35
+ authorized_collection.delete_many
36
+ 3.times { |i| authorized_collection.insert_one(_id: i) }
37
+ end
38
+
39
+ describe '#cached_docs' do
40
+ context 'when no query has been performed' do
41
+ it 'returns nil' do
42
+ expect(cursor.cached_docs).to be_nil
43
+ end
44
+ end
45
+
46
+ context 'when a query has been performed' do
47
+ it 'returns the number of documents' do
48
+ cursor.to_a
49
+ expect(cursor.cached_docs.length).to eq(3)
50
+ expect(cursor.cached_docs).to eq([{ '_id' => 0 }, { '_id' => 1 }, { '_id' => 2 }])
51
+ end
52
+ end
53
+ end
54
+
55
+ describe '#try_next' do
56
+ it 'fetches the next document' do
57
+ expect(cursor.try_next).to eq('_id' => 0)
58
+ expect(cursor.try_next).to eq('_id' => 1)
59
+ expect(cursor.try_next).to eq('_id' => 2)
60
+ end
61
+ end
62
+
63
+ describe '#each' do
64
+ it 'iterates the cursor' do
65
+ result = cursor.each.to_a
66
+ expect(result.length).to eq(3)
67
+ expect(result).to eq([{ '_id' => 0 }, { '_id' => 1 }, { '_id' => 2 }])
68
+ end
69
+ end
70
+ end
@@ -3,64 +3,9 @@ require 'spec_helper'
3
3
  describe Mongo::Client do
4
4
  clean_slate
5
5
 
6
- describe '.new' do
7
- describe 'options' do
8
- describe 'read' do
9
- [
10
- :primary, :primary_preferred, :secondary, :secondary_preferred, :nearest
11
- ].each do |sym|
12
- it "accepts #{sym} as symbol" do
13
- client = new_local_client_nmio(['127.0.0.1:27017'],
14
- :read => {:mode => sym})
15
- # the key got converted to a string here
16
- expect(client.read_preference).to eq({'mode' => sym})
17
- end
18
-
19
- # string keys are not documented as being allowed
20
- # but the code accepts them
21
- it "accepts #{sym} as string" do
22
- client = new_local_client_nmio(['127.0.0.1:27017'],
23
- :read => {:mode => sym.to_s})
24
- # the key got converted to a string here
25
- # the value remains a string
26
- expect(client.read_preference).to eq({'mode' => sym.to_s})
27
- end
28
- end
29
-
30
- context 'when not linting' do
31
- skip_if_linting
32
-
33
- it 'rejects bogus read preference as symbol' do
34
- expect do
35
- client = new_local_client_nmio(['127.0.0.1:27017'],
36
- :read => {:mode => :bogus})
37
- end.to raise_error(Mongo::Error::InvalidReadOption, 'Invalid read option: {"mode"=>:bogus}: mode bogus is not one of recognized modes')
38
- end
39
-
40
- it 'rejects bogus read preference as string' do
41
- expect do
42
- client = new_local_client_nmio(['127.0.0.1:27017'],
43
- :read => {:mode => 'bogus'})
44
- end.to raise_error(Mongo::Error::InvalidReadOption, 'Invalid read option: {"mode"=>"bogus"}: mode bogus is not one of recognized modes')
45
- end
46
-
47
- it 'rejects read option specified as a string' do
48
- expect do
49
- client = new_local_client_nmio(['127.0.0.1:27017'],
50
- :read => 'primary')
51
- end.to raise_error(Mongo::Error::InvalidReadOption, 'Invalid read option: primary: must be a hash')
52
- end
53
-
54
- it 'rejects read option specified as a symbol' do
55
- expect do
56
- client = new_local_client_nmio(['127.0.0.1:27017'],
57
- :read => :primary)
58
- end.to raise_error(Mongo::Error::InvalidReadOption, 'Invalid read option: primary: must be a hash')
59
- end
60
- end
61
- end
62
- end
6
+ let(:subscriber) { EventSubscriber.new }
63
7
 
8
+ describe '.new' do
64
9
  context 'with scan: false' do
65
10
  it 'does not perform i/o' do
66
11
  allow_any_instance_of(Mongo::Server::Monitor).to receive(:run!)
@@ -374,6 +319,104 @@ describe Mongo::Client do
374
319
  end
375
320
  end
376
321
 
322
+ context 'timeout options' do
323
+ let(:client) do
324
+ new_local_client(SpecConfig.instance.addresses,
325
+ SpecConfig.instance.authorized_test_options.merge(options))
326
+ end
327
+
328
+ context 'when network timeouts are zero' do
329
+ let(:options) do
330
+ { socket_timeout: 0, connect_timeout: 0 }
331
+ end
332
+
333
+ it 'sets options to zeros' do
334
+ client.options[:socket_timeout].should == 0
335
+ client.options[:connect_timeout].should == 0
336
+ end
337
+
338
+ it 'connects and performs operations successfully' do
339
+ lambda do
340
+ client.database.command(ping: 1)
341
+ end.should_not raise_error
342
+ end
343
+ end
344
+
345
+ %i(socket_timeout connect_timeout).each do |option|
346
+ context "when #{option} is negative" do
347
+ let(:options) do
348
+ { option => -1 }
349
+ end
350
+
351
+ it 'fails client creation' do
352
+ lambda do
353
+ client
354
+ end.should raise_error(ArgumentError, /#{option} must be a non-negative number/)
355
+ end
356
+ end
357
+
358
+ context "when #{option} is of the wrong type" do
359
+ let(:options) do
360
+ { option => '42' }
361
+ end
362
+
363
+ it 'fails client creation' do
364
+ lambda do
365
+ client
366
+ end.should raise_error(ArgumentError, /#{option} must be a non-negative number/)
367
+ end
368
+ end
369
+ end
370
+
371
+ context "when :connect_timeout is very small" do
372
+ # The driver reads first and checks the deadline second.
373
+ # This means the read (in a monitor) can technically take more than
374
+ # the connect timeout. Restrict to TLS configurations to make
375
+ # the network I/O take longer.
376
+ require_tls
377
+
378
+ let(:options) do
379
+ { connect_timeout: 1e-6, server_selection_timeout: 2 }
380
+ end
381
+
382
+ it 'allows client creation' do
383
+ lambda do
384
+ client
385
+ end.should_not raise_error
386
+ end
387
+
388
+ it 'fails server selection due to very small timeout' do
389
+ lambda do
390
+ client.database.command(ping: 1)
391
+ end.should raise_error(Mongo::Error::NoServerAvailable)
392
+ end
393
+ end
394
+
395
+ context "when :socket_timeout is very small" do
396
+ # The driver reads first and checks the deadline second.
397
+ # This means the read (in a monitor) can technically take more than
398
+ # the connect timeout. Restrict to TLS configurations to make
399
+ # the network I/O take longer.
400
+ require_tls
401
+
402
+ let(:options) do
403
+ { socket_timeout: 1e-6, server_selection_timeout: 2 }
404
+ end
405
+
406
+ it 'allows client creation' do
407
+ lambda do
408
+ client
409
+ end.should_not raise_error
410
+ end
411
+
412
+ it 'fails operations due to very small timeout' do
413
+ lambda do
414
+ client.database.command(ping: 1)
415
+ end.should raise_error(Mongo::Error::SocketTimeoutError)
416
+ end
417
+ end
418
+ end
419
+
377
420
  context 'retry_writes option' do
378
421
  let(:client) do
379
422
  new_local_client_nmio(SpecConfig.instance.addresses, options)
@@ -447,12 +490,13 @@ describe Mongo::Client do
447
490
  it 'does not use compression for authentication messages' do
448
491
  expect(Mongo::Protocol::Compressed).not_to receive(:new)
449
492
  client.cluster.next_primary.send(:with_connection) do |conn|
450
- conn.send(:authenticate!, conn)
493
+ conn.connect!
451
494
  end
452
495
  end
453
496
  end
454
497
 
455
498
  context 'when the compressor is not supported by the driver' do
499
+ require_warning_clean
456
500
 
457
501
  let(:options) do
458
502
  { compressors: ['snoopy'] }
@@ -631,7 +675,7 @@ describe Mongo::Client do
631
675
  context 'when providing a custom logger' do
632
676
 
633
677
  let(:logger) do
634
- Logger.new($stdout).tap do |l|
678
+ Logger.new(STDOUT).tap do |l|
635
679
  l.level = Logger::FATAL
636
680
  end
637
681
  end
@@ -800,16 +844,38 @@ describe Mongo::Client do
800
844
  new_local_client_nmio(['127.0.0.1:27017'])
801
845
  end
802
846
 
803
- let(:platform_string) do
804
- [
805
- RUBY_VERSION,
806
- RUBY_PLATFORM,
807
- RbConfig::CONFIG['build']
808
- ].join(', ')
847
+ context 'mri' do
848
+ only_mri
849
+
850
+ let(:platform_string) do
851
+ [
852
+ "Ruby #{RUBY_VERSION}",
853
+ RUBY_PLATFORM,
854
+ RbConfig::CONFIG['build']
855
+ ].join(', ')
856
+ end
857
+
858
+ it 'does not include the platform info in the app metadata' do
859
+ expect(app_metadata.send(:full_client_document)[:platform]).to eq(platform_string)
860
+ end
809
861
  end
810
862
 
811
- it 'does not include the platform info in the app metadata' do
812
- expect(app_metadata.send(:full_client_document)[:platform]).to eq(platform_string)
863
+ context 'jruby' do
864
+ require_jruby
865
+
866
+ let(:platform_string) do
867
+ [
868
+ "JRuby #{JRUBY_VERSION}",
869
+ "like Ruby #{RUBY_VERSION}",
870
+ RUBY_PLATFORM,
871
+ "JVM #{java.lang.System.get_property('java.version')}",
872
+ RbConfig::CONFIG['build']
873
+ ].join(', ')
874
+ end
875
+
876
+ it 'does not include the platform info in the app metadata' do
877
+ expect(app_metadata.send(:full_client_document)[:platform]).to eq(platform_string)
878
+ end
813
879
  end
814
880
  end
815
881
  end
@@ -862,7 +928,7 @@ describe Mongo::Client do
862
928
  end
863
929
  end
864
930
 
865
- context 'when options are provided' do
931
+ context 'when URI options are provided' do
866
932
 
867
933
  let!(:uri) do
868
934
  'mongodb://127.0.0.1:27017/testdb?w=3'
@@ -1080,11 +1146,248 @@ describe Mongo::Client do
1080
1146
  expect(client.cluster.topology).to be_a(Mongo::Cluster::Topology::ReplicaSetNoPrimary)
1081
1147
  end
1082
1148
  end
1149
+ end
1150
+
1151
+ context 'when Ruby options are provided' do
1152
+ let(:client) do
1153
+ new_local_client_nmio(['127.0.0.1:27017'], options)
1154
+ end
1155
+
1156
+ describe 'connection option conflicts' do
1157
+ context 'direct_connection: true and multiple seeds' do
1158
+ let(:client) do
1159
+ new_local_client_nmio(['127.0.0.1:27017', '127.0.0.2:27017'],
1160
+ direct_connection: true)
1161
+ end
1162
+
1163
+ it 'is rejected' do
1164
+ lambda do
1165
+ client
1166
+ end.should raise_error(ArgumentError, /direct_connection=true cannot be used with multiple seeds/)
1167
+ end
1168
+ end
1169
+
1170
+ context 'direct_connection: true and connect: :direct' do
1171
+ let(:options) do
1172
+ {direct_connection: true, connect: :direct}
1173
+ end
1174
+
1175
+ it 'is accepted' do
1176
+ client.options[:direct_connection].should be true
1177
+ client.options[:connect].should be :direct
1178
+ end
1179
+ end
1180
+
1181
+ context 'direct_connection: true and connect: :replica_set' do
1182
+ let(:options) do
1183
+ {direct_connection: true, connect: :replica_set}
1184
+ end
1185
+
1186
+ it 'is rejected' do
1187
+ lambda do
1188
+ client
1189
+ end.should raise_error(ArgumentError, /Conflicting client options: direct_connection=true and connect=replica_set/)
1190
+ end
1191
+ end
1192
+
1193
+ context 'direct_connection: true and connect: :sharded' do
1194
+ let(:options) do
1195
+ {direct_connection: true, connect: :sharded}
1196
+ end
1197
+
1198
+ it 'is rejected' do
1199
+ lambda do
1200
+ client
1201
+ end.should raise_error(ArgumentError, /Conflicting client options: direct_connection=true and connect=sharded/)
1202
+ end
1203
+ end
1204
+
1205
+ context 'direct_connection: false and connect: :direct' do
1206
+ let(:options) do
1207
+ {direct_connection: false, connect: :direct}
1208
+ end
1209
+
1210
+ it 'is rejected' do
1211
+ lambda do
1212
+ client
1213
+ end.should raise_error(ArgumentError, /Conflicting client options: direct_connection=false and connect=direct/)
1214
+ end
1215
+ end
1216
+
1217
+ context 'direct_connection: false and connect: :replica_set' do
1218
+ let(:options) do
1219
+ {direct_connection: false, connect: :replica_set, replica_set: 'foo'}
1220
+ end
1221
+
1222
+ it 'is accepted' do
1223
+ client.options[:direct_connection].should be false
1224
+ client.options[:connect].should be :replica_set
1225
+ end
1226
+ end
1227
+
1228
+ context 'direct_connection: false and connect: :sharded' do
1229
+ let(:options) do
1230
+ {direct_connection: false, connect: :sharded}
1231
+ end
1232
+
1233
+ it 'is accepted' do
1234
+ client.options[:direct_connection].should be false
1235
+ client.options[:connect].should be :sharded
1236
+ end
1237
+ end
1238
+ end
1239
+
1240
+ context ':bg_error_backtrace option' do
1241
+ [true, false, nil, 42].each do |valid_value|
1242
+ context "valid value: #{valid_value.inspect}" do
1243
+ let(:options) do
1244
+ {bg_error_backtrace: valid_value}
1245
+ end
1246
+
1247
+ it 'is accepted' do
1248
+ client.options[:bg_error_backtrace].should == valid_value
1249
+ end
1250
+ end
1251
+ end
1252
+
1253
+ context 'invalid value type' do
1254
+ let(:options) do
1255
+ {bg_error_backtrace: 'yes'}
1256
+ end
1257
+
1258
+ it 'is rejected' do
1259
+ lambda do
1260
+ client
1261
+ end.should raise_error(ArgumentError, /:bg_error_backtrace option value must be true, false, nil or a positive integer/)
1262
+ end
1263
+ end
1264
+
1265
+ context 'invalid value' do
1266
+ [0, -1, 42.0].each do |invalid_value|
1267
+ context "invalid value: #{invalid_value.inspect}" do
1268
+ let(:options) do
1269
+ {bg_error_backtrace: invalid_value}
1270
+ end
1271
+
1272
+ it 'is rejected' do
1273
+ lambda do
1274
+ client
1275
+ end.should raise_error(ArgumentError, /:bg_error_backtrace option value must be true, false, nil or a positive integer/)
1276
+ end
1277
+ end
1278
+ end
1279
+ end
1280
+ end
1281
+
1282
+ describe ':read option' do
1283
+ [
1284
+ :primary, :primary_preferred, :secondary, :secondary_preferred, :nearest
1285
+ ].each do |sym|
1286
+ describe "#{sym}" do
1287
+ context 'when given as symbol' do
1288
+ let(:options) do
1289
+ {read: {mode: sym}}
1290
+ end
1291
+
1292
+ it "is accepted" do
1293
+ # the key got converted to a string here
1294
+ expect(client.read_preference).to eq({'mode' => sym})
1295
+ end
1296
+ end
1297
+
1298
+ context 'when given as string' do
1299
+ let(:options) do
1300
+ {read: {mode: sym.to_s}}
1301
+ end
1302
+
1303
+ # string keys are not documented as being allowed
1304
+ # but the code accepts them
1305
+ it "is accepted" do
1306
+ # the key got converted to a string here
1307
+ # the value remains a string
1308
+ expect(client.read_preference).to eq({'mode' => sym.to_s})
1309
+ end
1310
+ end
1311
+ end
1312
+ end
1313
+
1314
+ context 'when not linting' do
1315
+ skip_if_linting
1316
+
1317
+ it 'rejects bogus read preference as symbol' do
1318
+ expect do
1319
+ client = new_local_client_nmio(['127.0.0.1:27017'],
1320
+ :read => {:mode => :bogus})
1321
+ end.to raise_error(Mongo::Error::InvalidReadOption, 'Invalid read option: {"mode"=>:bogus}: mode bogus is not one of recognized modes')
1322
+ end
1323
+
1324
+ it 'rejects bogus read preference as string' do
1325
+ expect do
1326
+ client = new_local_client_nmio(['127.0.0.1:27017'],
1327
+ :read => {:mode => 'bogus'})
1328
+ end.to raise_error(Mongo::Error::InvalidReadOption, 'Invalid read option: {"mode"=>"bogus"}: mode bogus is not one of recognized modes')
1329
+ end
1330
+
1331
+ it 'rejects read option specified as a string' do
1332
+ expect do
1333
+ client = new_local_client_nmio(['127.0.0.1:27017'],
1334
+ :read => 'primary')
1335
+ end.to raise_error(Mongo::Error::InvalidReadOption, 'Invalid read option: primary: must be a hash')
1336
+ end
1337
+
1338
+ it 'rejects read option specified as a symbol' do
1339
+ expect do
1340
+ client = new_local_client_nmio(['127.0.0.1:27017'],
1341
+ :read => :primary)
1342
+ end.to raise_error(Mongo::Error::InvalidReadOption, 'Invalid read option: primary: must be a hash')
1343
+ end
1344
+ end
1345
+ end
1346
+
1347
+ context 'when setting read concern options' do
1348
+ min_server_fcv '3.2'
1349
+
1350
+ context 'when read concern is valid' do
1351
+ let(:options) do
1352
+ { read_concern: { level: :local } }
1353
+ end
1354
+
1355
+ it 'does not warn' do
1356
+ expect(Mongo::Logger.logger).to_not receive(:warn)
1357
+ new_local_client_nmio(SpecConfig.instance.addresses, options)
1358
+ end
1359
+ end
1360
+
1361
+ context 'when read concern has an invalid key' do
1362
+ skip_if_linting
1363
+
1364
+ let(:options) do
1365
+ { read_concern: { hello: :local } }
1366
+ end
1367
+
1368
+ it 'logs a warning' do
1369
+ expect(Mongo::Logger.logger).to receive(:warn).with(/Read concern has invalid keys: hello/)
1370
+ new_local_client_nmio(SpecConfig.instance.addresses, options)
1371
+ end
1372
+ end
1373
+
1374
+ context 'when read concern has a non-user-settable key' do
1375
+ let(:options) do
1376
+ { read_concern: { after_cluster_time: 100 } }
1377
+ end
1378
+
1379
+ it 'raises an exception' do
1380
+ expect do
1381
+ new_local_client_nmio(SpecConfig.instance.addresses, options)
1382
+ end.to raise_error(Mongo::Error::InvalidReadConcern, 'The after_cluster_time read_concern option cannot be specified by the user')
1383
+ end
1384
+ end
1385
+ end
1083
1386
 
1084
1387
  context 'when an invalid option is provided' do
1085
1388
 
1086
- let(:client) do
1087
- new_local_client_nmio(['127.0.0.1:27017'], :ssl => false, :invalid => :test)
1389
+ let(:options) do
1390
+ {ssl: false, invalid: :test}
1088
1391
  end
1089
1392
 
1090
1393
  it 'does not set the option' do
@@ -1104,8 +1407,8 @@ describe Mongo::Client do
1104
1407
  =begin WriteConcern object support
1105
1408
  context 'when write concern is provided via a WriteConcern object' do
1106
1409
 
1107
- let(:client) do
1108
- new_local_client_nmio(['127.0.0.1:27017'], write_concern: wc)
1410
+ let(:options) do
1411
+ {write_concern: wc}
1109
1412
  end
1110
1413
 
1111
1414
  let(:wc) { Mongo::WriteConcern.get(w: 2) }
@@ -1120,6 +1423,197 @@ describe Mongo::Client do
1120
1423
  end
1121
1424
  end
1122
1425
  =end
1426
+
1427
+ context ':wrapping_libraries option' do
1428
+ let(:options) do
1429
+ {wrapping_libraries: wrapping_libraries}
1430
+ end
1431
+
1432
+ context 'valid input' do
1433
+ context 'symbol keys' do
1434
+ let(:wrapping_libraries) do
1435
+ [name: 'Mongoid', version: '7.1.2'].freeze
1436
+ end
1437
+
1438
+ it 'works' do
1439
+ client.options[:wrapping_libraries].should == ['name' => 'Mongoid', 'version' => '7.1.2']
1440
+ end
1441
+ end
1442
+
1443
+ context 'string keys' do
1444
+ let(:wrapping_libraries) do
1445
+ ['name' => 'Mongoid', 'version' => '7.1.2'].freeze
1446
+ end
1447
+
1448
+ it 'works' do
1449
+ client.options[:wrapping_libraries].should == ['name' => 'Mongoid', 'version' => '7.1.2']
1450
+ end
1451
+ end
1452
+
1453
+ context 'Redacted keys' do
1454
+ let(:wrapping_libraries) do
1455
+ [Mongo::Options::Redacted.new(name: 'Mongoid', version: '7.1.2')].freeze
1456
+ end
1457
+
1458
+ it 'works' do
1459
+ client.options[:wrapping_libraries].should == ['name' => 'Mongoid', 'version' => '7.1.2']
1460
+ end
1461
+ end
1462
+
1463
+ context 'two libraries' do
1464
+ let(:wrapping_libraries) do
1465
+ [
1466
+ {name: 'Mongoid', version: '7.1.2'},
1467
+ {name: 'Rails', version: '4.0', platform: 'Foobar'},
1468
+ ].freeze
1469
+ end
1470
+
1471
+ it 'works' do
1472
+ client.options[:wrapping_libraries].should == [
1473
+ {'name' => 'Mongoid', 'version' => '7.1.2'},
1474
+ {'name' => 'Rails', 'version' => '4.0', 'platform' => 'Foobar'},
1475
+ ]
1476
+ end
1477
+ end
1478
+
1479
+ context 'empty array' do
1480
+ let(:wrapping_libraries) do
1481
+ []
1482
+ end
1483
+
1484
+ it 'works' do
1485
+ client.options[:wrapping_libraries].should == []
1486
+ end
1487
+ end
1488
+
1489
+ context 'empty array' do
1490
+ let(:wrapping_libraries) do
1491
+ nil
1492
+ end
1493
+
1494
+ it 'works' do
1495
+ client.options[:wrapping_libraries].should be nil
1496
+ end
1497
+ end
1498
+ end
1499
+
1500
+ context 'valid input' do
1501
+ context 'hash given instead of an array' do
1502
+ let(:wrapping_libraries) do
1503
+ {name: 'Mongoid', version: '7.1.2'}.freeze
1504
+ end
1505
+
1506
+ it 'is rejected' do
1507
+ lambda do
1508
+ client
1509
+ end.should raise_error(ArgumentError, /:wrapping_libraries must be an array of hashes/)
1510
+ end
1511
+ end
1512
+
1513
+ context 'invalid keys' do
1514
+ let(:wrapping_libraries) do
1515
+ [name: 'Mongoid', invalid: '7.1.2'].freeze
1516
+ end
1517
+
1518
+ it 'is rejected' do
1519
+ lambda do
1520
+ client
1521
+ end.should raise_error(ArgumentError, /:wrapping_libraries element has invalid keys/)
1522
+ end
1523
+ end
1524
+
1525
+ context 'value includes |' do
1526
+ let(:wrapping_libraries) do
1527
+ [name: 'Mongoid|on|Rails', version: '7.1.2'].freeze
1528
+ end
1529
+
1530
+ it 'is rejected' do
1531
+ lambda do
1532
+ client
1533
+ end.should raise_error(ArgumentError, /:wrapping_libraries element value cannot include '|'/)
1534
+ end
1535
+ end
1536
+ end
1537
+ end
1538
+
1539
+ context ':auth_mech_properties option' do
1540
+ context 'is nil' do
1541
+ let(:options) do
1542
+ {auth_mech_properties: nil}
1543
+ end
1544
+
1545
+ it 'creates the client without the option' do
1546
+ client.options.should_not have_key(:auth_mech_properties)
1547
+ end
1548
+ end
1549
+ end
1550
+ end
1551
+
1552
+ context 'when making a block client' do
1553
+ context 'when the block doesn\'t raise an error' do
1554
+ let(:block_client) do
1555
+ c = nil
1556
+ Mongo::Client.new(
1557
+ SpecConfig.instance.addresses,
1558
+ SpecConfig.instance.test_options.merge(database: SpecConfig.instance.test_db),
1559
+ ) do |client|
1560
+ c = client
1561
+ end
1562
+ c
1563
+ end
1564
+
1565
+ it 'is closed after block' do
1566
+ expect(block_client.cluster.connected?).to eq(false)
1567
+ end
1568
+ end
1569
+
1570
+ context 'when the block raises an error' do
1571
+ it 'it is closed after the block' do
1572
+ block_client_raise = nil
1573
+ expect do
1574
+ Mongo::Client.new(
1575
+ SpecConfig.instance.addresses,
1576
+ SpecConfig.instance.test_options.merge(database: SpecConfig.instance.test_db),
1577
+ ) do |client|
1578
+ block_client_raise = client
1579
+ raise "This is an error!"
1580
+ end
1581
+ end.to raise_error(StandardError, "This is an error!")
1582
+ expect(block_client_raise.cluster.connected?).to eq(false)
1583
+ end
1584
+ end
1585
+
1586
+ context 'when the hosts given include the protocol' do
1587
+ it 'raises an error on mongodb://' do
1588
+ expect do
1589
+ Mongo::Client.new(['mongodb://127.0.0.1:27017/test'])
1590
+ end.to raise_error(ArgumentError, "Host 'mongodb://127.0.0.1:27017/test' should not contain protocol. Did you mean to not use an array?")
1591
+ end
1592
+
1593
+ it 'raises an error on mongodb+srv://' do
1594
+ expect do
1595
+ Mongo::Client.new(['mongodb+srv://127.0.0.1:27017/test'])
1596
+ end.to raise_error(ArgumentError, "Host 'mongodb+srv://127.0.0.1:27017/test' should not contain protocol. Did you mean to not use an array?")
1597
+ end
1598
+
1599
+ it 'raises an error on multiple items' do
1600
+ expect do
1601
+ Mongo::Client.new(['127.0.0.1:27017', 'mongodb+srv://127.0.0.1:27017/test'])
1602
+ end.to raise_error(ArgumentError, "Host 'mongodb+srv://127.0.0.1:27017/test' should not contain protocol. Did you mean to not use an array?")
1603
+ end
1604
+
1605
+ it 'raises an error only at beginning of string' do
1606
+ expect do
1607
+ Mongo::Client.new(['somethingmongodb://127.0.0.1:27017/test', 'mongodb+srv://127.0.0.1:27017/test'])
1608
+ end.to raise_error(ArgumentError, "Host 'mongodb+srv://127.0.0.1:27017/test' should not contain protocol. Did you mean to not use an array?")
1609
+ end
1610
+
1611
+ it 'raises an error with different case' do
1612
+ expect do
1613
+ Mongo::Client.new(['MongOdB://127.0.0.1:27017/test'])
1614
+ end.to raise_error(ArgumentError, "Host 'MongOdB://127.0.0.1:27017/test' should not contain protocol. Did you mean to not use an array?")
1615
+ end
1616
+ end
1123
1617
  end
1124
1618
  end
1125
1619
 
@@ -1133,7 +1627,7 @@ describe Mongo::Client do
1133
1627
 
1134
1628
  it 'copies monitoring subscribers' do
1135
1629
  monitoring.subscribers.clear
1136
- client.subscribe(Mongo::Monitoring::SERVER_HEARTBEAT, EventSubscriber.new)
1630
+ client.subscribe(Mongo::Monitoring::SERVER_HEARTBEAT, subscriber)
1137
1631
  expect(monitoring.present_subscribers.length).to eq(1)
1138
1632
  expect(monitoring.subscribers[Mongo::Monitoring::SERVER_HEARTBEAT].length).to eq(1)
1139
1633
 
@@ -1144,12 +1638,12 @@ describe Mongo::Client do
1144
1638
 
1145
1639
  it 'does not change subscribers on original client' do
1146
1640
  monitoring.subscribers.clear
1147
- client.subscribe(Mongo::Monitoring::SERVER_HEARTBEAT, EventSubscriber.new)
1641
+ client.subscribe(Mongo::Monitoring::SERVER_HEARTBEAT, subscriber)
1148
1642
  expect(monitoring.present_subscribers.length).to eq(1)
1149
1643
  expect(monitoring.subscribers[Mongo::Monitoring::SERVER_HEARTBEAT].length).to eq(1)
1150
1644
 
1151
- new_client.subscribe(Mongo::Monitoring::SERVER_HEARTBEAT, EventSubscriber.new)
1152
- new_client.subscribe(Mongo::Monitoring::SERVER_HEARTBEAT, EventSubscriber.new)
1645
+ new_client.subscribe(Mongo::Monitoring::SERVER_HEARTBEAT, subscriber)
1646
+ new_client.subscribe(Mongo::Monitoring::SERVER_HEARTBEAT, subscriber)
1153
1647
  expect(new_monitoring.present_subscribers.length).to eq(1)
1154
1648
  expect(new_monitoring.subscribers[Mongo::Monitoring::SERVER_HEARTBEAT].length).to eq(3)
1155
1649
  # original client should not have gotten any of the new subscribers
@@ -1177,7 +1671,7 @@ describe Mongo::Client do
1177
1671
 
1178
1672
  it 'resets monitoring subscribers' do
1179
1673
  monitoring.subscribers.clear
1180
- client.subscribe(Mongo::Monitoring::SERVER_HEARTBEAT, EventSubscriber.new)
1674
+ client.subscribe(Mongo::Monitoring::SERVER_HEARTBEAT, subscriber)
1181
1675
  expect(monitoring.present_subscribers.length).to eq(1)
1182
1676
  expect(monitoring.subscribers[Mongo::Monitoring::SERVER_HEARTBEAT].length).to eq(1)
1183
1677
 
@@ -1190,12 +1684,12 @@ describe Mongo::Client do
1190
1684
 
1191
1685
  it 'does not change subscribers on original client' do
1192
1686
  monitoring.subscribers.clear
1193
- client.subscribe(Mongo::Monitoring::SERVER_HEARTBEAT, EventSubscriber.new)
1687
+ client.subscribe(Mongo::Monitoring::SERVER_HEARTBEAT, subscriber)
1194
1688
  expect(monitoring.present_subscribers.length).to eq(1)
1195
1689
  expect(monitoring.subscribers[Mongo::Monitoring::SERVER_HEARTBEAT].length).to eq(1)
1196
1690
 
1197
- new_client.subscribe(Mongo::Monitoring::SERVER_HEARTBEAT, EventSubscriber.new)
1198
- new_client.subscribe(Mongo::Monitoring::SERVER_HEARTBEAT, EventSubscriber.new)
1691
+ new_client.subscribe(Mongo::Monitoring::SERVER_HEARTBEAT, subscriber)
1692
+ new_client.subscribe(Mongo::Monitoring::SERVER_HEARTBEAT, subscriber)
1199
1693
  # 7 default subscribers + heartbeat
1200
1694
  expect(new_monitoring.present_subscribers.length).to eq(8)
1201
1695
  # the heartbeat subscriber on the original client is not inherited
@@ -1299,6 +1793,73 @@ describe Mongo::Client do
1299
1793
  end
1300
1794
  end
1301
1795
 
1796
+ context 'when direct_connection option is given' do
1797
+ let(:client) do
1798
+ options = SpecConfig.instance.test_options
1799
+ options.delete(:connect)
1800
+ new_local_client(SpecConfig.instance.addresses, options)
1801
+ end
1802
+
1803
+ before do
1804
+ client.options[:direct_connection].should be nil
1805
+ end
1806
+
1807
+ let(:new_client) do
1808
+ client.with(new_options)
1809
+ end
1810
+
1811
+ context 'direct_connection set to false' do
1812
+
1813
+ let(:new_options) do
1814
+ { direct_connection: false }
1815
+ end
1816
+
1817
+ it 'is accepted' do
1818
+ new_client.options[:direct_connection].should be false
1819
+ end
1820
+ end
1821
+
1822
+ context 'direct_connection set to true' do
1823
+
1824
+ let(:new_options) do
1825
+ { direct_connection: true }
1826
+ end
1827
+
1828
+ context 'in single topology' do
1829
+ require_topology :single
1830
+
1831
+
1832
+ it 'is accepted' do
1833
+ new_client.options[:direct_connection].should be true
1834
+ new_client.cluster.topology.should be_a(Mongo::Cluster::Topology::Single)
1835
+ end
1836
+ end
1837
+
1838
+ context 'in replica set or sharded cluster topology' do
1839
+ require_topology :replica_set, :sharded
1840
+
1841
+ it 'is rejected' do
1842
+ lambda do
1843
+ new_client
1844
+ end.should raise_error(ArgumentError, /direct_connection=true cannot be used with topologies other than Single/)
1845
+ end
1846
+
1847
+ context 'when a new cluster is created' do
1848
+
1849
+ let(:new_options) do
1850
+ { direct_connection: true, app_name: 'new-client' }
1851
+ end
1852
+
1853
+ it 'is rejected' do
1854
+ lambda do
1855
+ new_client
1856
+ end.should raise_error(ArgumentError, /direct_connection=true cannot be used with topologies other than Single/)
1857
+ end
1858
+ end
1859
+ end
1860
+ end
1861
+ end
1862
+
1302
1863
  context 'when the write concern is not changed' do
1303
1864
 
1304
1865
  let(:client) do
@@ -1571,7 +2132,6 @@ describe Mongo::Client do
1571
2132
  # in #with, the consistent behavior is to never transfer sdam_proc to
1572
2133
  # the new client.
1573
2134
  context 'when sdam_proc is given on original client' do
1574
- let(:subscriber) { EventSubscriber.new }
1575
2135
 
1576
2136
  let(:sdam_proc) do
1577
2137
  Proc.new do |client|
@@ -1579,25 +2139,52 @@ describe Mongo::Client do
1579
2139
  end
1580
2140
  end
1581
2141
 
1582
- let(:new_client) { client.with(database: 'foo') }
2142
+ let(:client) do
2143
+ new_local_client(SpecConfig.instance.addresses,
2144
+ SpecConfig.instance.test_options.merge(
2145
+ sdam_proc: sdam_proc,
2146
+ connect_timeout: 3.08, socket_timeout: 3.09,
2147
+ server_selection_timeout: 2.92,
2148
+ heartbeat_frequency: 100,
2149
+ database: SpecConfig.instance.test_db))
2150
+ end
2151
+
2152
+ let(:new_client) do
2153
+ client.with(app_name: 'foo').tap do |new_client|
2154
+ new_client.cluster.should_not == client.cluster
2155
+ end
2156
+ end
2157
+
2158
+ before do
2159
+ client.cluster.next_primary
2160
+ events = subscriber.select_started_events(Mongo::Monitoring::Event::ServerHeartbeatStarted)
2161
+ events.length.should > 0
2162
+ end
1583
2163
 
1584
2164
  it 'does not copy sdam_proc option to new client' do
1585
- client = new_local_client_nmio(['a'], sdam_proc: sdam_proc)
1586
2165
  expect(new_client.options[:sdam_proc]).to be nil
1587
2166
  end
1588
2167
 
1589
2168
  it 'does not notify subscribers set up by sdam_proc' do
1590
- client = new_local_client(['a'], sdam_proc: sdam_proc,
1591
- connect_timeout: 0.1, socket_timeout: 0.1,
1592
- server_selection_timeout: 0.1)
2169
+ # On 4.4, the push monitor also is receiving heartbeats.
2170
+ # Give those some time to be processed.
2171
+ sleep 2
2172
+
1593
2173
  expect(subscriber.started_events.length).to be > 0
1594
2174
  subscriber.started_events.clear
1595
2175
 
1596
2176
  # If this test takes longer than heartbeat interval,
1597
2177
  # subscriber may receive events from the original client.
1598
2178
 
1599
- new_client
2179
+ new_client.cluster.next_primary
2180
+
2181
+ # Diagnostics
2182
+ unless subscriber.started_events.empty?
2183
+ p subscriber.started_events
2184
+ end
2185
+
1600
2186
  expect(subscriber.started_events.length).to eq 0
2187
+ new_client.cluster.topology.class.should_not be Mongo::Cluster::Topology::Unknown
1601
2188
  end
1602
2189
  end
1603
2190
  end