mongo 2.14.0 → 2.18.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1631) hide show
  1. checksums.yaml +4 -4
  2. checksums.yaml.gz.sig +0 -0
  3. data/README.md +25 -38
  4. data/Rakefile +8 -15
  5. data/lib/mongo/active_support.rb +3 -0
  6. data/lib/mongo/address/ipv4.rb +3 -0
  7. data/lib/mongo/address/ipv6.rb +3 -0
  8. data/lib/mongo/address/unix.rb +3 -0
  9. data/lib/mongo/address/validator.rb +3 -0
  10. data/lib/mongo/address.rb +3 -0
  11. data/lib/mongo/auth/aws/conversation.rb +4 -4
  12. data/lib/mongo/auth/aws/credentials_retriever.rb +3 -0
  13. data/lib/mongo/auth/aws/request.rb +3 -1
  14. data/lib/mongo/auth/aws.rb +3 -0
  15. data/lib/mongo/auth/base.rb +25 -9
  16. data/lib/mongo/auth/conversation_base.rb +35 -0
  17. data/lib/mongo/auth/cr/conversation.rb +9 -29
  18. data/lib/mongo/auth/cr.rb +3 -0
  19. data/lib/mongo/auth/credential_cache.rb +3 -0
  20. data/lib/mongo/auth/gssapi/conversation.rb +7 -15
  21. data/lib/mongo/auth/gssapi.rb +3 -0
  22. data/lib/mongo/auth/ldap/conversation.rb +6 -14
  23. data/lib/mongo/auth/ldap.rb +3 -0
  24. data/lib/mongo/auth/roles.rb +3 -0
  25. data/lib/mongo/auth/sasl_conversation_base.rb +4 -13
  26. data/lib/mongo/auth/scram/conversation.rb +3 -0
  27. data/lib/mongo/auth/scram.rb +5 -2
  28. data/lib/mongo/auth/scram256/conversation.rb +3 -0
  29. data/lib/mongo/auth/scram256.rb +3 -0
  30. data/lib/mongo/auth/scram_conversation_base.rb +10 -34
  31. data/lib/mongo/auth/stringprep/profiles/sasl.rb +3 -0
  32. data/lib/mongo/auth/stringprep/tables.rb +3 -0
  33. data/lib/mongo/auth/stringprep/unicode_normalize/normalize.rb +2 -2
  34. data/lib/mongo/auth/stringprep/unicode_normalize/tables.rb +1 -1
  35. data/lib/mongo/auth/stringprep.rb +4 -1
  36. data/lib/mongo/auth/user/view.rb +19 -9
  37. data/lib/mongo/auth/user.rb +3 -0
  38. data/lib/mongo/auth/x509/conversation.rb +7 -25
  39. data/lib/mongo/auth/x509.rb +3 -0
  40. data/lib/mongo/auth.rb +16 -2
  41. data/lib/mongo/background_thread.rb +16 -2
  42. data/lib/mongo/bson.rb +3 -0
  43. data/lib/mongo/bulk_write/combineable.rb +3 -0
  44. data/lib/mongo/bulk_write/ordered_combiner.rb +3 -0
  45. data/lib/mongo/bulk_write/result.rb +13 -1
  46. data/lib/mongo/bulk_write/result_combiner.rb +5 -4
  47. data/lib/mongo/bulk_write/transformable.rb +3 -0
  48. data/lib/mongo/bulk_write/unordered_combiner.rb +3 -0
  49. data/lib/mongo/bulk_write/validatable.rb +3 -0
  50. data/lib/mongo/bulk_write.rb +137 -45
  51. data/lib/mongo/caching_cursor.rb +3 -0
  52. data/lib/mongo/client.rb +268 -29
  53. data/lib/mongo/client_encryption.rb +116 -10
  54. data/lib/mongo/cluster/periodic_executor.rb +7 -3
  55. data/lib/mongo/cluster/reapers/cursor_reaper.rb +104 -42
  56. data/lib/mongo/cluster/reapers/socket_reaper.rb +3 -0
  57. data/lib/mongo/cluster/sdam_flow.rb +26 -3
  58. data/lib/mongo/cluster/topology/base.rb +16 -9
  59. data/lib/mongo/cluster/topology/load_balanced.rb +102 -0
  60. data/lib/mongo/cluster/topology/no_replica_set_options.rb +3 -0
  61. data/lib/mongo/cluster/topology/replica_set_no_primary.rb +3 -0
  62. data/lib/mongo/cluster/topology/replica_set_with_primary.rb +3 -0
  63. data/lib/mongo/cluster/topology/sharded.rb +3 -0
  64. data/lib/mongo/cluster/topology/single.rb +3 -0
  65. data/lib/mongo/cluster/topology/unknown.rb +3 -0
  66. data/lib/mongo/cluster/topology.rb +31 -8
  67. data/lib/mongo/cluster.rb +182 -105
  68. data/lib/mongo/cluster_time.rb +3 -0
  69. data/lib/mongo/collection/helpers.rb +43 -0
  70. data/lib/mongo/collection/queryable_encryption.rb +122 -0
  71. data/lib/mongo/collection/view/aggregation.rb +71 -22
  72. data/lib/mongo/collection/view/builder/aggregation.rb +19 -17
  73. data/lib/mongo/collection/view/builder/map_reduce.rb +18 -49
  74. data/lib/mongo/collection/view/builder.rb +3 -4
  75. data/lib/mongo/collection/view/change_stream/retryable.rb +3 -0
  76. data/lib/mongo/collection/view/change_stream.rb +70 -21
  77. data/lib/mongo/collection/view/explainable.rb +4 -1
  78. data/lib/mongo/collection/view/immutable.rb +3 -0
  79. data/lib/mongo/collection/view/iterable.rb +67 -30
  80. data/lib/mongo/collection/view/map_reduce.rb +76 -25
  81. data/lib/mongo/collection/view/readable.rb +135 -68
  82. data/lib/mongo/collection/view/writable.rb +299 -177
  83. data/lib/mongo/collection/view.rb +18 -21
  84. data/lib/mongo/collection.rb +172 -58
  85. data/lib/mongo/config/options.rb +62 -0
  86. data/lib/mongo/config/validators/option.rb +26 -0
  87. data/lib/mongo/config.rb +42 -0
  88. data/lib/mongo/crypt/auto_decryption_context.rb +3 -0
  89. data/lib/mongo/crypt/auto_encrypter.rb +139 -14
  90. data/lib/mongo/crypt/auto_encryption_context.rb +3 -0
  91. data/lib/mongo/crypt/binary.rb +3 -0
  92. data/lib/mongo/crypt/binding.rb +516 -144
  93. data/lib/mongo/crypt/context.rb +8 -2
  94. data/lib/mongo/crypt/data_key_context.rb +15 -104
  95. data/lib/mongo/crypt/encryption_io.rb +97 -60
  96. data/lib/mongo/crypt/explicit_decryption_context.rb +3 -0
  97. data/lib/mongo/crypt/explicit_encrypter.rb +146 -26
  98. data/lib/mongo/crypt/explicit_encryption_context.rb +28 -2
  99. data/lib/mongo/crypt/handle.rb +163 -86
  100. data/lib/mongo/crypt/hooks.rb +28 -2
  101. data/lib/mongo/crypt/kms/aws.rb +136 -0
  102. data/lib/mongo/crypt/kms/azure.rb +144 -0
  103. data/lib/mongo/crypt/kms/credentials.rb +81 -0
  104. data/lib/mongo/crypt/kms/gcp.rb +189 -0
  105. data/lib/mongo/crypt/kms/kmip.rb +116 -0
  106. data/lib/mongo/crypt/kms/local.rb +82 -0
  107. data/lib/mongo/crypt/kms/master_key_document.rb +65 -0
  108. data/lib/mongo/crypt/kms.rb +117 -0
  109. data/lib/mongo/crypt/kms_context.rb +3 -0
  110. data/lib/mongo/crypt/rewrap_many_data_key_context.rb +46 -0
  111. data/lib/mongo/crypt/rewrap_many_data_key_result.rb +37 -0
  112. data/lib/mongo/crypt/status.rb +11 -2
  113. data/lib/mongo/crypt.rb +6 -0
  114. data/lib/mongo/cursor/kill_spec.rb +76 -0
  115. data/lib/mongo/cursor.rb +96 -36
  116. data/lib/mongo/database/view.rb +15 -7
  117. data/lib/mongo/database.rb +88 -24
  118. data/lib/mongo/dbref.rb +4 -105
  119. data/lib/mongo/distinguishing_semaphore.rb +3 -0
  120. data/lib/mongo/error/auth_error.rb +3 -0
  121. data/lib/mongo/error/bad_load_balancer_target.rb +26 -0
  122. data/lib/mongo/error/bulk_write_error.rb +49 -5
  123. data/lib/mongo/error/change_stream_resumable.rb +3 -0
  124. data/lib/mongo/error/closed_stream.rb +3 -0
  125. data/lib/mongo/error/connection_check_out_timeout.rb +3 -0
  126. data/lib/mongo/error/connection_perished.rb +3 -0
  127. data/lib/mongo/error/credential_check_error.rb +3 -0
  128. data/lib/mongo/error/crypt_error.rb +3 -0
  129. data/lib/mongo/error/extra_file_chunk.rb +3 -0
  130. data/lib/mongo/error/failed_string_prep_validation.rb +3 -0
  131. data/lib/mongo/error/file_not_found.rb +3 -0
  132. data/lib/mongo/error/handshake_error.rb +3 -0
  133. data/lib/mongo/error/insufficient_iteration_count.rb +3 -0
  134. data/lib/mongo/error/internal_driver_error.rb +25 -0
  135. data/lib/mongo/error/invalid_address.rb +3 -0
  136. data/lib/mongo/error/invalid_application_name.rb +3 -0
  137. data/lib/mongo/error/invalid_bulk_operation.rb +3 -0
  138. data/lib/mongo/error/invalid_bulk_operation_type.rb +3 -0
  139. data/lib/mongo/error/invalid_collection_name.rb +3 -0
  140. data/lib/mongo/error/invalid_config_option.rb +20 -0
  141. data/lib/mongo/error/invalid_cursor_operation.rb +3 -0
  142. data/lib/mongo/error/invalid_database_name.rb +3 -0
  143. data/lib/mongo/error/invalid_document.rb +3 -0
  144. data/lib/mongo/error/invalid_file.rb +3 -0
  145. data/lib/mongo/error/invalid_file_revision.rb +3 -0
  146. data/lib/mongo/error/invalid_min_pool_size.rb +3 -0
  147. data/lib/mongo/error/invalid_nonce.rb +3 -0
  148. data/lib/mongo/error/invalid_read_concern.rb +3 -0
  149. data/lib/mongo/error/invalid_read_option.rb +3 -0
  150. data/lib/mongo/error/invalid_replacement_document.rb +30 -9
  151. data/lib/mongo/error/invalid_server_auth_host.rb +3 -0
  152. data/lib/mongo/error/invalid_server_auth_response.rb +3 -0
  153. data/lib/mongo/error/invalid_server_preference.rb +3 -0
  154. data/lib/mongo/error/invalid_session.rb +3 -0
  155. data/lib/mongo/error/invalid_signature.rb +3 -0
  156. data/lib/mongo/error/invalid_transaction_operation.rb +3 -0
  157. data/lib/mongo/error/invalid_txt_record.rb +3 -0
  158. data/lib/mongo/error/invalid_update_document.rb +30 -7
  159. data/lib/mongo/error/invalid_uri.rb +3 -0
  160. data/lib/mongo/error/invalid_write_concern.rb +3 -0
  161. data/lib/mongo/error/kms_error.rb +3 -0
  162. data/lib/mongo/error/labelable.rb +72 -0
  163. data/lib/mongo/error/lint_error.rb +3 -0
  164. data/lib/mongo/error/max_bson_size.rb +3 -0
  165. data/lib/mongo/error/max_message_size.rb +3 -0
  166. data/lib/mongo/error/mismatched_domain.rb +3 -0
  167. data/lib/mongo/error/missing_connection.rb +25 -0
  168. data/lib/mongo/error/missing_file_chunk.rb +11 -2
  169. data/lib/mongo/error/missing_password.rb +3 -0
  170. data/lib/mongo/error/missing_resume_token.rb +3 -0
  171. data/lib/mongo/error/missing_scram_server_signature.rb +3 -0
  172. data/lib/mongo/error/missing_service_id.rb +26 -0
  173. data/lib/mongo/error/mongocryptd_spawn_error.rb +3 -0
  174. data/lib/mongo/error/multi_index_drop.rb +3 -0
  175. data/lib/mongo/error/need_primary_server.rb +3 -0
  176. data/lib/mongo/error/no_server_available.rb +3 -0
  177. data/lib/mongo/error/no_service_connection_available.rb +49 -0
  178. data/lib/mongo/error/no_srv_records.rb +3 -0
  179. data/lib/mongo/error/notable.rb +17 -0
  180. data/lib/mongo/error/operation_failure.rb +57 -87
  181. data/lib/mongo/error/parser.rb +69 -13
  182. data/lib/mongo/error/pool_closed_error.rb +3 -0
  183. data/lib/mongo/error/raise_original_error.rb +3 -0
  184. data/lib/mongo/error/read_write_retryable.rb +108 -0
  185. data/lib/mongo/error/sdam_error_detection.rb +16 -5
  186. data/lib/mongo/error/server_api_conflict.rb +26 -0
  187. data/lib/mongo/error/server_api_not_supported.rb +27 -0
  188. data/lib/mongo/error/server_certificate_revoked.rb +3 -0
  189. data/lib/mongo/error/session_ended.rb +3 -0
  190. data/lib/mongo/error/session_not_materialized.rb +29 -0
  191. data/lib/mongo/error/sessions_not_supported.rb +3 -0
  192. data/lib/mongo/error/snapshot_session_invalid_server_version.rb +31 -0
  193. data/lib/mongo/error/snapshot_session_transaction_prohibited.rb +30 -0
  194. data/lib/mongo/error/socket_error.rb +3 -0
  195. data/lib/mongo/error/socket_timeout_error.rb +3 -0
  196. data/lib/mongo/error/unchangeable_collection_option.rb +3 -0
  197. data/lib/mongo/error/unexpected_chunk_length.rb +3 -0
  198. data/lib/mongo/error/unexpected_response.rb +3 -0
  199. data/lib/mongo/error/unknown_payload_type.rb +3 -0
  200. data/lib/mongo/error/unmet_dependency.rb +24 -0
  201. data/lib/mongo/error/unsupported_array_filters.rb +3 -0
  202. data/lib/mongo/error/unsupported_collation.rb +3 -0
  203. data/lib/mongo/error/unsupported_features.rb +3 -0
  204. data/lib/mongo/error/unsupported_message_type.rb +3 -0
  205. data/lib/mongo/error/unsupported_option.rb +3 -0
  206. data/lib/mongo/error/write_retryable.rb +3 -0
  207. data/lib/mongo/error.rb +22 -38
  208. data/lib/mongo/event/base.rb +3 -0
  209. data/lib/mongo/event/listeners.rb +3 -0
  210. data/lib/mongo/event/publisher.rb +3 -0
  211. data/lib/mongo/event/subscriber.rb +3 -0
  212. data/lib/mongo/event.rb +3 -0
  213. data/lib/mongo/grid/file/chunk.rb +4 -1
  214. data/lib/mongo/grid/file/info.rb +3 -0
  215. data/lib/mongo/grid/file.rb +3 -0
  216. data/lib/mongo/grid/fs_bucket.rb +86 -46
  217. data/lib/mongo/grid/stream/read.rb +28 -7
  218. data/lib/mongo/grid/stream/write.rb +3 -0
  219. data/lib/mongo/grid/stream.rb +3 -0
  220. data/lib/mongo/grid.rb +3 -0
  221. data/lib/mongo/id.rb +10 -5
  222. data/lib/mongo/index/view.rb +68 -58
  223. data/lib/mongo/index.rb +3 -0
  224. data/lib/mongo/lint.rb +3 -0
  225. data/lib/mongo/loggable.rb +3 -0
  226. data/lib/mongo/logger.rb +3 -0
  227. data/lib/mongo/monitoring/cmap_log_subscriber.rb +3 -0
  228. data/lib/mongo/monitoring/command_log_subscriber.rb +3 -0
  229. data/lib/mongo/monitoring/event/cmap/base.rb +3 -0
  230. data/lib/mongo/monitoring/event/cmap/connection_check_out_failed.rb +3 -0
  231. data/lib/mongo/monitoring/event/cmap/connection_check_out_started.rb +3 -0
  232. data/lib/mongo/monitoring/event/cmap/connection_checked_in.rb +3 -0
  233. data/lib/mongo/monitoring/event/cmap/connection_checked_out.rb +3 -0
  234. data/lib/mongo/monitoring/event/cmap/connection_closed.rb +3 -0
  235. data/lib/mongo/monitoring/event/cmap/connection_created.rb +3 -0
  236. data/lib/mongo/monitoring/event/cmap/connection_ready.rb +3 -0
  237. data/lib/mongo/monitoring/event/cmap/pool_cleared.rb +10 -4
  238. data/lib/mongo/monitoring/event/cmap/pool_closed.rb +3 -0
  239. data/lib/mongo/monitoring/event/cmap/pool_created.rb +3 -0
  240. data/lib/mongo/monitoring/event/cmap.rb +3 -0
  241. data/lib/mongo/monitoring/event/command_failed.rb +38 -5
  242. data/lib/mongo/monitoring/event/command_started.rb +23 -3
  243. data/lib/mongo/monitoring/event/command_succeeded.rb +36 -3
  244. data/lib/mongo/monitoring/event/secure.rb +39 -5
  245. data/lib/mongo/monitoring/event/server_closed.rb +3 -0
  246. data/lib/mongo/monitoring/event/server_description_changed.rb +4 -1
  247. data/lib/mongo/monitoring/event/server_heartbeat_failed.rb +32 -18
  248. data/lib/mongo/monitoring/event/server_heartbeat_started.rb +3 -0
  249. data/lib/mongo/monitoring/event/server_heartbeat_succeeded.rb +30 -16
  250. data/lib/mongo/monitoring/event/server_opening.rb +3 -0
  251. data/lib/mongo/monitoring/event/topology_changed.rb +3 -0
  252. data/lib/mongo/monitoring/event/topology_closed.rb +3 -0
  253. data/lib/mongo/monitoring/event/topology_opening.rb +3 -0
  254. data/lib/mongo/monitoring/event.rb +3 -0
  255. data/lib/mongo/monitoring/publishable.rb +38 -12
  256. data/lib/mongo/monitoring/sdam_log_subscriber.rb +3 -0
  257. data/lib/mongo/monitoring/server_closed_log_subscriber.rb +3 -0
  258. data/lib/mongo/monitoring/server_description_changed_log_subscriber.rb +3 -0
  259. data/lib/mongo/monitoring/server_opening_log_subscriber.rb +3 -0
  260. data/lib/mongo/monitoring/topology_changed_log_subscriber.rb +3 -0
  261. data/lib/mongo/monitoring/topology_closed_log_subscriber.rb +3 -0
  262. data/lib/mongo/monitoring/topology_opening_log_subscriber.rb +3 -0
  263. data/lib/mongo/monitoring/unified_sdam_log_subscriber.rb +3 -0
  264. data/lib/mongo/monitoring.rb +20 -8
  265. data/lib/mongo/operation/aggregate/command.rb +11 -0
  266. data/lib/mongo/operation/aggregate/op_msg.rb +3 -0
  267. data/lib/mongo/operation/aggregate/result.rb +3 -0
  268. data/lib/mongo/operation/aggregate.rb +3 -0
  269. data/lib/mongo/operation/collections_info/command.rb +5 -2
  270. data/lib/mongo/operation/collections_info/result.rb +8 -2
  271. data/lib/mongo/operation/collections_info.rb +21 -1
  272. data/lib/mongo/operation/command/command.rb +3 -0
  273. data/lib/mongo/operation/command/op_msg.rb +9 -0
  274. data/lib/mongo/operation/command.rb +3 -0
  275. data/lib/mongo/operation/context.rb +138 -0
  276. data/lib/mongo/operation/count/command.rb +9 -0
  277. data/lib/mongo/operation/count/op_msg.rb +12 -0
  278. data/lib/mongo/operation/count.rb +3 -0
  279. data/lib/mongo/operation/create/command.rb +10 -1
  280. data/lib/mongo/operation/create/op_msg.rb +13 -0
  281. data/lib/mongo/operation/create.rb +3 -0
  282. data/lib/mongo/operation/create_index/command.rb +20 -1
  283. data/lib/mongo/operation/create_index/op_msg.rb +21 -4
  284. data/lib/mongo/operation/create_index.rb +3 -0
  285. data/lib/mongo/operation/create_user/command.rb +3 -0
  286. data/lib/mongo/operation/create_user/op_msg.rb +3 -0
  287. data/lib/mongo/operation/create_user.rb +3 -0
  288. data/lib/mongo/operation/delete/bulk_result.rb +3 -0
  289. data/lib/mongo/operation/delete/command.rb +9 -3
  290. data/lib/mongo/operation/delete/op_msg.rb +13 -1
  291. data/lib/mongo/operation/delete/result.rb +3 -0
  292. data/lib/mongo/operation/delete.rb +3 -1
  293. data/lib/mongo/operation/distinct/command.rb +9 -0
  294. data/lib/mongo/operation/distinct/op_msg.rb +13 -0
  295. data/lib/mongo/operation/distinct.rb +3 -0
  296. data/lib/mongo/operation/drop/command.rb +3 -0
  297. data/lib/mongo/operation/drop/op_msg.rb +3 -0
  298. data/lib/mongo/operation/drop.rb +3 -0
  299. data/lib/mongo/operation/drop_database/command.rb +3 -0
  300. data/lib/mongo/operation/drop_database/op_msg.rb +3 -0
  301. data/lib/mongo/operation/drop_database.rb +3 -0
  302. data/lib/mongo/operation/drop_index/command.rb +3 -0
  303. data/lib/mongo/operation/drop_index/op_msg.rb +8 -1
  304. data/lib/mongo/operation/drop_index.rb +3 -0
  305. data/lib/mongo/operation/explain/command.rb +16 -1
  306. data/lib/mongo/operation/explain/legacy.rb +15 -5
  307. data/lib/mongo/operation/explain/op_msg.rb +12 -1
  308. data/lib/mongo/operation/explain/result.rb +3 -0
  309. data/lib/mongo/operation/explain.rb +3 -0
  310. data/lib/mongo/operation/find/builder/command.rb +111 -0
  311. data/lib/mongo/{collection/view → operation/find}/builder/flags.rb +13 -14
  312. data/lib/mongo/operation/find/builder/legacy.rb +123 -0
  313. data/lib/mongo/{collection/view → operation/find}/builder/modifiers.rb +34 -25
  314. data/lib/mongo/{cursor → operation/find}/builder.rb +7 -4
  315. data/lib/mongo/operation/find/command.rb +12 -0
  316. data/lib/mongo/operation/find/legacy/result.rb +3 -0
  317. data/lib/mongo/operation/find/legacy.rb +13 -1
  318. data/lib/mongo/operation/find/op_msg.rb +15 -0
  319. data/lib/mongo/operation/find/result.rb +3 -0
  320. data/lib/mongo/operation/find.rb +4 -0
  321. data/lib/mongo/operation/get_more/command.rb +4 -0
  322. data/lib/mongo/operation/get_more/command_builder.rb +42 -0
  323. data/lib/mongo/operation/get_more/legacy.rb +3 -0
  324. data/lib/mongo/operation/get_more/op_msg.rb +4 -0
  325. data/lib/mongo/operation/get_more/result.rb +3 -0
  326. data/lib/mongo/operation/get_more.rb +4 -0
  327. data/lib/mongo/operation/indexes/command.rb +3 -0
  328. data/lib/mongo/operation/indexes/legacy.rb +3 -0
  329. data/lib/mongo/operation/indexes/op_msg.rb +3 -0
  330. data/lib/mongo/operation/indexes/result.rb +3 -0
  331. data/lib/mongo/operation/indexes.rb +18 -1
  332. data/lib/mongo/operation/insert/bulk_result.rb +8 -1
  333. data/lib/mongo/operation/insert/command.rb +5 -6
  334. data/lib/mongo/operation/insert/op_msg.rb +11 -5
  335. data/lib/mongo/operation/insert/result.rb +9 -3
  336. data/lib/mongo/operation/insert.rb +3 -1
  337. data/lib/mongo/operation/kill_cursors/command.rb +11 -0
  338. data/lib/mongo/operation/kill_cursors/{legacy.rb → command_builder.rb} +9 -11
  339. data/lib/mongo/operation/kill_cursors/op_msg.rb +13 -0
  340. data/lib/mongo/operation/kill_cursors.rb +4 -1
  341. data/lib/mongo/operation/list_collections/command.rb +3 -0
  342. data/lib/mongo/operation/list_collections/op_msg.rb +7 -1
  343. data/lib/mongo/operation/list_collections/result.rb +7 -1
  344. data/lib/mongo/operation/list_collections.rb +3 -0
  345. data/lib/mongo/operation/map_reduce/command.rb +11 -0
  346. data/lib/mongo/operation/map_reduce/op_msg.rb +4 -1
  347. data/lib/mongo/operation/map_reduce/result.rb +19 -0
  348. data/lib/mongo/operation/map_reduce.rb +3 -0
  349. data/lib/mongo/operation/op_msg_base.rb +3 -0
  350. data/lib/mongo/operation/parallel_scan/command.rb +4 -2
  351. data/lib/mongo/operation/parallel_scan/op_msg.rb +3 -0
  352. data/lib/mongo/operation/parallel_scan/result.rb +3 -0
  353. data/lib/mongo/operation/parallel_scan.rb +3 -0
  354. data/lib/mongo/operation/remove_user/command.rb +3 -0
  355. data/lib/mongo/operation/remove_user/op_msg.rb +3 -0
  356. data/lib/mongo/operation/remove_user.rb +3 -0
  357. data/lib/mongo/operation/result.rb +32 -5
  358. data/lib/mongo/operation/shared/bypass_document_validation.rb +3 -0
  359. data/lib/mongo/operation/shared/causal_consistency_supported.rb +3 -0
  360. data/lib/mongo/operation/shared/executable.rb +60 -17
  361. data/lib/mongo/operation/shared/executable_no_validate.rb +5 -2
  362. data/lib/mongo/operation/shared/executable_transaction_label.rb +3 -0
  363. data/lib/mongo/operation/shared/idable.rb +3 -0
  364. data/lib/mongo/operation/shared/limited.rb +3 -0
  365. data/lib/mongo/operation/shared/object_id_generator.rb +3 -0
  366. data/lib/mongo/operation/shared/op_msg_or_command.rb +4 -7
  367. data/lib/mongo/operation/shared/op_msg_or_find_command.rb +4 -7
  368. data/lib/mongo/operation/shared/polymorphic_lookup.rb +3 -0
  369. data/lib/mongo/operation/shared/polymorphic_operation.rb +54 -0
  370. data/lib/mongo/operation/shared/polymorphic_result.rb +3 -0
  371. data/lib/mongo/operation/shared/read_preference_supported.rb +44 -37
  372. data/lib/mongo/operation/shared/response_handling.rb +32 -27
  373. data/lib/mongo/operation/shared/result/aggregatable.rb +3 -0
  374. data/lib/mongo/operation/shared/result/use_legacy_error_parser.rb +3 -0
  375. data/lib/mongo/operation/shared/sessions_supported.rb +54 -19
  376. data/lib/mongo/operation/shared/specifiable.rb +14 -29
  377. data/lib/mongo/operation/shared/validatable.rb +87 -0
  378. data/lib/mongo/operation/shared/write.rb +27 -28
  379. data/lib/mongo/operation/shared/write_concern_supported.rb +3 -0
  380. data/lib/mongo/operation/update/bulk_result.rb +3 -0
  381. data/lib/mongo/operation/update/command.rb +9 -3
  382. data/lib/mongo/operation/update/op_msg.rb +12 -4
  383. data/lib/mongo/operation/update/result.rb +3 -0
  384. data/lib/mongo/operation/update.rb +3 -1
  385. data/lib/mongo/operation/update_user/command.rb +3 -0
  386. data/lib/mongo/operation/update_user/op_msg.rb +3 -0
  387. data/lib/mongo/operation/update_user.rb +3 -0
  388. data/lib/mongo/operation/users_info/command.rb +3 -0
  389. data/lib/mongo/operation/users_info/op_msg.rb +3 -0
  390. data/lib/mongo/operation/users_info/result.rb +3 -0
  391. data/lib/mongo/operation/users_info.rb +3 -0
  392. data/lib/mongo/operation/{delete/legacy.rb → write_command/command.rb} +20 -23
  393. data/lib/mongo/operation/write_command/op_msg.rb +43 -0
  394. data/lib/mongo/operation/write_command.rb +32 -0
  395. data/lib/mongo/operation.rb +15 -2
  396. data/lib/mongo/options/mapper.rb +3 -0
  397. data/lib/mongo/options/redacted.rb +3 -0
  398. data/lib/mongo/options.rb +3 -0
  399. data/lib/mongo/protocol/bit_vector.rb +3 -0
  400. data/lib/mongo/protocol/caching_hash.rb +69 -0
  401. data/lib/mongo/protocol/compressed.rb +54 -5
  402. data/lib/mongo/protocol/delete.rb +3 -0
  403. data/lib/mongo/protocol/get_more.rb +3 -0
  404. data/lib/mongo/protocol/insert.rb +3 -0
  405. data/lib/mongo/protocol/kill_cursors.rb +3 -0
  406. data/lib/mongo/protocol/message.rb +23 -2
  407. data/lib/mongo/protocol/msg.rb +60 -17
  408. data/lib/mongo/protocol/query.rb +53 -32
  409. data/lib/mongo/protocol/registry.rb +3 -0
  410. data/lib/mongo/protocol/reply.rb +3 -0
  411. data/lib/mongo/protocol/serializers.rb +3 -0
  412. data/lib/mongo/protocol/update.rb +3 -0
  413. data/lib/mongo/protocol.rb +4 -0
  414. data/lib/mongo/query_cache.rb +60 -2
  415. data/lib/mongo/retryable.rb +82 -31
  416. data/lib/mongo/semaphore.rb +3 -0
  417. data/lib/mongo/server/app_metadata.rb +89 -33
  418. data/lib/mongo/server/connection.rb +67 -4
  419. data/lib/mongo/server/connection_base.rb +49 -21
  420. data/lib/mongo/server/connection_common.rb +74 -1
  421. data/lib/mongo/server/connection_pool/generation_manager.rb +71 -0
  422. data/lib/mongo/server/connection_pool/populator.rb +3 -0
  423. data/lib/mongo/server/connection_pool.rb +152 -46
  424. data/lib/mongo/server/description/features.rb +34 -25
  425. data/lib/mongo/server/description/load_balancer.rb +33 -0
  426. data/lib/mongo/server/description.rb +117 -16
  427. data/lib/mongo/server/monitor/app_metadata.rb +4 -1
  428. data/lib/mongo/server/monitor/connection.rb +63 -47
  429. data/lib/mongo/server/monitor.rb +51 -25
  430. data/lib/mongo/server/pending_connection.rb +75 -42
  431. data/lib/mongo/server/push_monitor/connection.rb +3 -0
  432. data/lib/mongo/server/push_monitor.rb +53 -19
  433. data/lib/mongo/server/round_trip_time_averager.rb +6 -3
  434. data/lib/mongo/server.rb +102 -42
  435. data/lib/mongo/server_selector/base.rb +37 -8
  436. data/lib/mongo/server_selector/nearest.rb +6 -4
  437. data/lib/mongo/server_selector/primary.rb +6 -4
  438. data/lib/mongo/server_selector/primary_preferred.rb +6 -4
  439. data/lib/mongo/server_selector/secondary.rb +6 -4
  440. data/lib/mongo/server_selector/secondary_preferred.rb +8 -11
  441. data/lib/mongo/server_selector.rb +3 -0
  442. data/lib/mongo/session/server_session.rb +3 -0
  443. data/lib/mongo/session/session_pool.rb +26 -2
  444. data/lib/mongo/session.rb +158 -36
  445. data/lib/mongo/socket/ocsp_cache.rb +5 -3
  446. data/lib/mongo/socket/ocsp_verifier.rb +16 -40
  447. data/lib/mongo/socket/ssl.rb +11 -0
  448. data/lib/mongo/socket/tcp.rb +6 -0
  449. data/lib/mongo/socket/unix.rb +3 -0
  450. data/lib/mongo/socket.rb +37 -11
  451. data/lib/mongo/srv/monitor.rb +3 -11
  452. data/lib/mongo/srv/resolver.rb +27 -3
  453. data/lib/mongo/srv/result.rb +3 -0
  454. data/lib/mongo/srv.rb +3 -0
  455. data/lib/mongo/timeout.rb +3 -0
  456. data/lib/mongo/topology_version.rb +4 -1
  457. data/lib/mongo/uri/options_mapper.rb +44 -0
  458. data/lib/mongo/uri/srv_protocol.rb +10 -9
  459. data/lib/mongo/uri.rb +41 -0
  460. data/lib/mongo/utils.rb +32 -0
  461. data/lib/mongo/version.rb +4 -1
  462. data/lib/mongo/write_concern/acknowledged.rb +3 -0
  463. data/lib/mongo/write_concern/base.rb +3 -0
  464. data/lib/mongo/write_concern/unacknowledged.rb +3 -0
  465. data/lib/mongo/write_concern.rb +3 -0
  466. data/lib/mongo.rb +48 -0
  467. data/mongo.gemspec +11 -5
  468. data/spec/README.md +43 -2
  469. data/spec/atlas/atlas_connectivity_spec.rb +3 -0
  470. data/spec/atlas/operations_spec.rb +3 -0
  471. data/spec/integration/auth_spec.rb +58 -15
  472. data/spec/integration/awaited_ismaster_spec.rb +9 -6
  473. data/spec/integration/aws_auth_request_spec.rb +3 -0
  474. data/spec/integration/aws_credentials_retriever_spec.rb +3 -0
  475. data/spec/integration/aws_lambda_examples_spec.rb +68 -0
  476. data/spec/integration/bson_symbol_spec.rb +4 -1
  477. data/spec/integration/bulk_insert_spec.rb +3 -0
  478. data/spec/integration/bulk_write_error_message_spec.rb +73 -0
  479. data/spec/integration/bulk_write_spec.rb +20 -1
  480. data/spec/integration/change_stream_examples_spec.rb +3 -0
  481. data/spec/integration/change_stream_spec.rb +12 -8
  482. data/spec/integration/check_clean_slate_spec.rb +3 -0
  483. data/spec/integration/client_authentication_options_spec.rb +21 -8
  484. data/spec/integration/client_connectivity_spec.rb +4 -1
  485. data/spec/integration/client_construction_aws_auth_spec.rb +3 -0
  486. data/spec/integration/client_construction_spec.rb +131 -8
  487. data/spec/integration/client_side_encryption/auto_encryption_bulk_writes_spec.rb +13 -10
  488. data/spec/integration/client_side_encryption/auto_encryption_command_monitoring_spec.rb +172 -169
  489. data/spec/integration/client_side_encryption/auto_encryption_mongocryptd_spawn_spec.rb +3 -1
  490. data/spec/integration/client_side_encryption/auto_encryption_old_wire_version_spec.rb +3 -0
  491. data/spec/integration/client_side_encryption/auto_encryption_reconnect_spec.rb +34 -0
  492. data/spec/integration/client_side_encryption/auto_encryption_spec.rb +111 -1
  493. data/spec/integration/client_side_encryption/bson_size_limit_spec.rb +6 -3
  494. data/spec/integration/client_side_encryption/bypass_mongocryptd_spawn_spec.rb +6 -3
  495. data/spec/integration/client_side_encryption/client_close_spec.rb +4 -1
  496. data/spec/integration/client_side_encryption/corpus_spec.rb +67 -35
  497. data/spec/integration/client_side_encryption/custom_endpoint_spec.rb +42 -42
  498. data/spec/integration/client_side_encryption/data_key_spec.rb +101 -8
  499. data/spec/integration/client_side_encryption/decryption_events_prose_spec.rb +158 -0
  500. data/spec/integration/client_side_encryption/explicit_encryption_spec.rb +62 -0
  501. data/spec/integration/client_side_encryption/explicit_queryable_encryption_spec.rb +147 -0
  502. data/spec/integration/client_side_encryption/external_key_vault_spec.rb +9 -6
  503. data/spec/integration/client_side_encryption/kms_tls_options_spec.rb +436 -0
  504. data/spec/integration/client_side_encryption/kms_tls_spec.rb +92 -0
  505. data/spec/integration/client_side_encryption/queryable_encryption_examples_spec.rb +111 -0
  506. data/spec/integration/client_side_encryption/unique_index_on_key_alt_names_prose_spec.rb +85 -0
  507. data/spec/integration/client_side_encryption/views_spec.rb +4 -1
  508. data/spec/integration/client_spec.rb +7 -2
  509. data/spec/integration/client_update_spec.rb +5 -2
  510. data/spec/integration/collection_indexes_prose_spec.rb +3 -0
  511. data/spec/integration/command_monitoring_spec.rb +64 -26
  512. data/spec/integration/command_spec.rb +4 -1
  513. data/spec/integration/connect_single_rs_name_spec.rb +6 -3
  514. data/spec/integration/connection_pool_populator_spec.rb +3 -0
  515. data/spec/integration/connection_spec.rb +58 -36
  516. data/spec/integration/crud_spec.rb +217 -1
  517. data/spec/integration/cursor_pinning_spec.rb +121 -0
  518. data/spec/integration/cursor_reaping_spec.rb +11 -4
  519. data/spec/integration/docs_examples_spec.rb +11 -1
  520. data/spec/integration/error_detection_spec.rb +3 -0
  521. data/spec/integration/fork_reconnect_spec.rb +24 -15
  522. data/spec/integration/get_more_spec.rb +4 -1
  523. data/spec/integration/grid_fs_bucket_spec.rb +7 -4
  524. data/spec/integration/heartbeat_events_spec.rb +8 -5
  525. data/spec/integration/map_reduce_spec.rb +77 -0
  526. data/spec/integration/mmapv1_spec.rb +3 -0
  527. data/spec/integration/mongos_pinning_spec.rb +3 -0
  528. data/spec/integration/ocsp_connectivity_spec.rb +3 -0
  529. data/spec/integration/ocsp_verifier_cache_spec.rb +3 -0
  530. data/spec/integration/ocsp_verifier_spec.rb +32 -8
  531. data/spec/integration/operation_failure_code_spec.rb +4 -1
  532. data/spec/integration/operation_failure_message_spec.rb +90 -0
  533. data/spec/integration/query_cache_spec.rb +243 -32
  534. data/spec/integration/query_cache_transactions_spec.rb +4 -1
  535. data/spec/integration/read_concern_spec.rb +4 -1
  536. data/spec/integration/read_preference_spec.rb +20 -13
  537. data/spec/integration/reconnect_spec.rb +36 -13
  538. data/spec/integration/retryable_errors_spec.rb +4 -1
  539. data/spec/integration/retryable_writes/retryable_writes_36_and_older_spec.rb +5 -2
  540. data/spec/integration/retryable_writes/retryable_writes_40_and_newer_spec.rb +4 -1
  541. data/spec/integration/retryable_writes/shared/adds_diagnostics.rb +3 -0
  542. data/spec/integration/retryable_writes/shared/does_not_support_retries.rb +3 -0
  543. data/spec/integration/retryable_writes/shared/only_supports_legacy_retries.rb +3 -0
  544. data/spec/integration/retryable_writes/shared/performs_legacy_retries.rb +3 -0
  545. data/spec/integration/retryable_writes/shared/performs_modern_retries.rb +3 -0
  546. data/spec/integration/retryable_writes/shared/performs_no_retries.rb +3 -0
  547. data/spec/integration/retryable_writes/shared/supports_legacy_retries.rb +3 -0
  548. data/spec/integration/retryable_writes/shared/supports_modern_retries.rb +3 -0
  549. data/spec/integration/retryable_writes/shared/supports_retries.rb +3 -0
  550. data/spec/integration/retryable_writes_errors_spec.rb +3 -0
  551. data/spec/integration/sdam_error_handling_spec.rb +11 -6
  552. data/spec/integration/sdam_events_spec.rb +90 -30
  553. data/spec/integration/sdam_prose_spec.rb +5 -2
  554. data/spec/integration/secondary_reads_spec.rb +102 -0
  555. data/spec/integration/server_description_spec.rb +3 -0
  556. data/spec/integration/server_monitor_spec.rb +7 -2
  557. data/spec/integration/server_selection_spec.rb +3 -0
  558. data/spec/integration/server_selector_spec.rb +25 -5
  559. data/spec/integration/server_spec.rb +5 -0
  560. data/spec/integration/shell_examples_spec.rb +3 -0
  561. data/spec/integration/size_limit_spec.rb +7 -1
  562. data/spec/integration/snappy_compression_spec.rb +28 -0
  563. data/spec/integration/snapshot_query_examples_spec.rb +127 -0
  564. data/spec/integration/srv_monitoring_spec.rb +43 -2
  565. data/spec/integration/srv_spec.rb +4 -0
  566. data/spec/integration/ssl_uri_options_spec.rb +3 -0
  567. data/spec/integration/step_down_spec.rb +24 -5
  568. data/spec/integration/time_zone_querying_spec.rb +3 -0
  569. data/spec/integration/transaction_pinning_spec.rb +120 -0
  570. data/spec/integration/transactions_api_examples_spec.rb +3 -0
  571. data/spec/integration/transactions_examples_spec.rb +9 -0
  572. data/spec/integration/truncated_utf8_spec.rb +26 -0
  573. data/spec/integration/versioned_api_examples_spec.rb +120 -0
  574. data/spec/integration/x509_auth_spec.rb +5 -2
  575. data/spec/integration/zlib_compression_spec.rb +4 -1
  576. data/spec/integration/zstd_compression_spec.rb +29 -0
  577. data/spec/kerberos/kerberos_spec.rb +3 -0
  578. data/spec/lite_spec_helper.rb +38 -12
  579. data/spec/mongo/address/ipv4_spec.rb +3 -0
  580. data/spec/mongo/address/ipv6_spec.rb +10 -0
  581. data/spec/mongo/address/unix_spec.rb +4 -0
  582. data/spec/mongo/address/validator_spec.rb +3 -0
  583. data/spec/mongo/address_spec.rb +25 -11
  584. data/spec/mongo/auth/aws/request_region_spec.rb +3 -0
  585. data/spec/mongo/auth/aws/request_spec.rb +3 -0
  586. data/spec/mongo/auth/cr_spec.rb +5 -3
  587. data/spec/mongo/auth/gssapi/conversation_spec.rb +3 -0
  588. data/spec/mongo/auth/invalid_mechanism_spec.rb +3 -0
  589. data/spec/mongo/auth/ldap/conversation_spec.rb +4 -1
  590. data/spec/mongo/auth/ldap_spec.rb +10 -4
  591. data/spec/mongo/auth/scram/conversation_spec.rb +26 -23
  592. data/spec/mongo/auth/scram256/conversation_spec.rb +23 -20
  593. data/spec/mongo/auth/scram_negotiation_spec.rb +5 -1
  594. data/spec/mongo/auth/scram_spec.rb +5 -3
  595. data/spec/mongo/auth/stringprep/profiles/sasl_spec.rb +3 -0
  596. data/spec/mongo/auth/stringprep_spec.rb +3 -0
  597. data/spec/mongo/auth/user/view_spec.rb +4 -1
  598. data/spec/mongo/auth/user_spec.rb +3 -0
  599. data/spec/mongo/auth/x509/conversation_spec.rb +6 -3
  600. data/spec/mongo/auth/x509_spec.rb +5 -3
  601. data/spec/mongo/auth_spec.rb +3 -0
  602. data/spec/mongo/bson_spec.rb +3 -0
  603. data/spec/mongo/bulk_write/ordered_combiner_spec.rb +3 -0
  604. data/spec/mongo/bulk_write/result_spec.rb +18 -1
  605. data/spec/mongo/bulk_write/unordered_combiner_spec.rb +3 -0
  606. data/spec/mongo/bulk_write_spec.rb +147 -23
  607. data/spec/mongo/caching_cursor_spec.rb +3 -0
  608. data/spec/mongo/client_construction_spec.rb +656 -69
  609. data/spec/mongo/client_encryption_spec.rb +13 -22
  610. data/spec/mongo/client_spec.rb +323 -5
  611. data/spec/mongo/cluster/cursor_reaper_spec.rb +66 -23
  612. data/spec/mongo/cluster/periodic_executor_spec.rb +6 -1
  613. data/spec/mongo/cluster/socket_reaper_spec.rb +3 -0
  614. data/spec/mongo/cluster/topology/replica_set_spec.rb +12 -9
  615. data/spec/mongo/cluster/topology/sharded_spec.rb +5 -2
  616. data/spec/mongo/cluster/topology/single_spec.rb +5 -2
  617. data/spec/mongo/cluster/topology/unknown_spec.rb +3 -0
  618. data/spec/mongo/cluster/topology_spec.rb +3 -0
  619. data/spec/mongo/cluster_spec.rb +40 -54
  620. data/spec/mongo/cluster_time_spec.rb +3 -0
  621. data/spec/mongo/collection/view/aggregation_spec.rb +181 -83
  622. data/spec/mongo/collection/view/builder/find_command_spec.rb +7 -0
  623. data/spec/mongo/collection/view/builder/op_query_spec.rb +7 -0
  624. data/spec/mongo/collection/view/change_stream_resume_spec.rb +7 -2
  625. data/spec/mongo/collection/view/change_stream_spec.rb +18 -2
  626. data/spec/mongo/collection/view/explainable_spec.rb +4 -1
  627. data/spec/mongo/collection/view/immutable_spec.rb +3 -0
  628. data/spec/mongo/collection/view/iterable_spec.rb +3 -0
  629. data/spec/mongo/collection/view/map_reduce_spec.rb +34 -2
  630. data/spec/mongo/collection/view/readable_spec.rb +711 -18
  631. data/spec/mongo/collection/view/writable_spec.rb +147 -32
  632. data/spec/mongo/collection/view_spec.rb +3 -0
  633. data/spec/mongo/collection_crud_spec.rb +4415 -0
  634. data/spec/mongo/collection_ddl_spec.rb +537 -0
  635. data/spec/mongo/collection_spec.rb +89 -4908
  636. data/spec/mongo/config/options_spec.rb +75 -0
  637. data/spec/mongo/config_spec.rb +73 -0
  638. data/spec/mongo/crypt/auto_decryption_context_spec.rb +20 -1
  639. data/spec/mongo/crypt/auto_encrypter_spec.rb +259 -5
  640. data/spec/mongo/crypt/auto_encryption_context_spec.rb +20 -1
  641. data/spec/mongo/crypt/binary_spec.rb +3 -0
  642. data/spec/mongo/crypt/binding/binary_spec.rb +3 -0
  643. data/spec/mongo/crypt/binding/context_spec.rb +70 -17
  644. data/spec/mongo/crypt/binding/helpers_spec.rb +3 -0
  645. data/spec/mongo/crypt/binding/mongocrypt_spec.rb +20 -46
  646. data/spec/mongo/crypt/binding/status_spec.rb +3 -0
  647. data/spec/mongo/crypt/binding/version_spec.rb +36 -0
  648. data/spec/mongo/crypt/binding_unloaded_spec.rb +17 -0
  649. data/spec/mongo/crypt/data_key_context_spec.rb +45 -114
  650. data/spec/mongo/crypt/encryption_io_spec.rb +5 -0
  651. data/spec/mongo/crypt/explicit_decryption_context_spec.rb +35 -1
  652. data/spec/mongo/crypt/explicit_encryption_context_spec.rb +97 -1
  653. data/spec/mongo/crypt/handle_spec.rb +175 -156
  654. data/spec/mongo/crypt/helpers/mongo_crypt_spec_helper.rb +3 -0
  655. data/spec/mongo/crypt/hooks_spec.rb +30 -0
  656. data/spec/mongo/crypt/kms/credentials_spec.rb +357 -0
  657. data/spec/mongo/crypt/kms_spec.rb +59 -0
  658. data/spec/mongo/crypt/status_spec.rb +3 -0
  659. data/spec/mongo/cursor/builder/get_more_command_spec.rb +11 -2
  660. data/spec/mongo/cursor/builder/op_get_more_spec.rb +11 -2
  661. data/spec/mongo/cursor_spec.rb +178 -14
  662. data/spec/mongo/database_spec.rb +156 -26
  663. data/spec/mongo/distinguishing_semaphore_spec.rb +3 -0
  664. data/spec/mongo/error/bulk_write_error_spec.rb +6 -3
  665. data/spec/mongo/error/crypt_error_spec.rb +3 -0
  666. data/spec/mongo/error/max_bson_size_spec.rb +3 -0
  667. data/spec/mongo/error/no_server_available_spec.rb +3 -0
  668. data/spec/mongo/error/notable_spec.rb +3 -0
  669. data/spec/mongo/error/operation_failure_heavy_spec.rb +53 -1
  670. data/spec/mongo/error/operation_failure_spec.rb +94 -31
  671. data/spec/mongo/error/parser_spec.rb +40 -6
  672. data/spec/mongo/error/unsupported_option_spec.rb +3 -0
  673. data/spec/mongo/event/publisher_spec.rb +3 -0
  674. data/spec/mongo/event/subscriber_spec.rb +3 -0
  675. data/spec/mongo/grid/file/chunk_spec.rb +7 -4
  676. data/spec/mongo/grid/file/info_spec.rb +3 -0
  677. data/spec/mongo/grid/file_spec.rb +4 -1
  678. data/spec/mongo/grid/fs_bucket_spec.rb +40 -17
  679. data/spec/mongo/grid/stream/read_spec.rb +33 -10
  680. data/spec/mongo/grid/stream/write_spec.rb +6 -9
  681. data/spec/mongo/grid/stream_spec.rb +4 -1
  682. data/spec/mongo/id_spec.rb +3 -0
  683. data/spec/mongo/index/view_spec.rb +138 -4
  684. data/spec/mongo/lint_spec.rb +3 -0
  685. data/spec/mongo/logger_spec.rb +3 -0
  686. data/spec/mongo/monitoring/command_log_subscriber_spec.rb +3 -0
  687. data/spec/mongo/monitoring/event/cmap/connection_check_out_failed_spec.rb +3 -0
  688. data/spec/mongo/monitoring/event/cmap/connection_check_out_started_spec.rb +3 -0
  689. data/spec/mongo/monitoring/event/cmap/connection_checked_in_spec.rb +3 -0
  690. data/spec/mongo/monitoring/event/cmap/connection_checked_out_spec.rb +3 -0
  691. data/spec/mongo/monitoring/event/cmap/connection_closed_spec.rb +3 -0
  692. data/spec/mongo/monitoring/event/cmap/connection_created_spec.rb +3 -0
  693. data/spec/mongo/monitoring/event/cmap/connection_ready_spec.rb +3 -0
  694. data/spec/mongo/monitoring/event/cmap/pool_cleared_spec.rb +3 -0
  695. data/spec/mongo/monitoring/event/cmap/pool_closed_spec.rb +3 -0
  696. data/spec/mongo/monitoring/event/cmap/pool_created_spec.rb +3 -0
  697. data/spec/mongo/monitoring/event/command_failed_spec.rb +59 -2
  698. data/spec/mongo/monitoring/event/command_started_spec.rb +3 -0
  699. data/spec/mongo/monitoring/event/command_succeeded_spec.rb +46 -6
  700. data/spec/mongo/monitoring/event/secure_spec.rb +28 -4
  701. data/spec/mongo/monitoring/event/server_closed_spec.rb +3 -0
  702. data/spec/mongo/monitoring/event/server_description_changed_spec.rb +3 -0
  703. data/spec/mongo/monitoring/event/server_heartbeat_failed_spec.rb +4 -1
  704. data/spec/mongo/monitoring/event/server_heartbeat_started_spec.rb +3 -0
  705. data/spec/mongo/monitoring/event/server_heartbeat_succeeded_spec.rb +4 -1
  706. data/spec/mongo/monitoring/event/server_opening_spec.rb +3 -0
  707. data/spec/mongo/monitoring/event/topology_changed_spec.rb +3 -0
  708. data/spec/mongo/monitoring/event/topology_closed_spec.rb +3 -0
  709. data/spec/mongo/monitoring/event/topology_opening_spec.rb +3 -0
  710. data/spec/mongo/monitoring_spec.rb +3 -0
  711. data/spec/mongo/operation/aggregate/result_spec.rb +7 -2
  712. data/spec/mongo/operation/aggregate_spec.rb +5 -1
  713. data/spec/mongo/operation/collections_info_spec.rb +7 -1
  714. data/spec/mongo/operation/command_spec.rb +11 -5
  715. data/spec/mongo/operation/create/op_msg_spec.rb +244 -0
  716. data/spec/mongo/operation/create_index_spec.rb +9 -3
  717. data/spec/mongo/operation/create_user_spec.rb +9 -3
  718. data/spec/mongo/operation/delete/bulk_spec.rb +12 -6
  719. data/spec/mongo/operation/delete/command_spec.rb +3 -0
  720. data/spec/mongo/operation/delete/op_msg_spec.rb +17 -5
  721. data/spec/mongo/operation/delete_spec.rb +13 -36
  722. data/spec/mongo/operation/drop_index_spec.rb +9 -2
  723. data/spec/mongo/{collection/view → operation/find}/builder/flags_spec.rb +5 -2
  724. data/spec/mongo/{collection/view → operation/find}/builder/modifiers_spec.rb +5 -2
  725. data/spec/mongo/operation/find/legacy_spec.rb +8 -2
  726. data/spec/mongo/operation/get_more_spec.rb +6 -1
  727. data/spec/mongo/operation/indexes_spec.rb +8 -1
  728. data/spec/mongo/operation/insert/bulk_spec.rb +14 -8
  729. data/spec/mongo/operation/insert/command_spec.rb +3 -0
  730. data/spec/mongo/operation/insert/op_msg_spec.rb +22 -11
  731. data/spec/mongo/operation/insert_spec.rb +17 -43
  732. data/spec/mongo/operation/limited_spec.rb +3 -0
  733. data/spec/mongo/operation/map_reduce_spec.rb +8 -2
  734. data/spec/mongo/operation/read_preference_legacy_spec.rb +39 -42
  735. data/spec/mongo/operation/read_preference_op_msg_spec.rb +32 -4
  736. data/spec/mongo/operation/remove_user_spec.rb +9 -3
  737. data/spec/mongo/operation/result_spec.rb +30 -5
  738. data/spec/mongo/operation/specifiable_spec.rb +3 -0
  739. data/spec/mongo/operation/update/bulk_spec.rb +13 -7
  740. data/spec/mongo/operation/update/command_spec.rb +3 -0
  741. data/spec/mongo/operation/update/op_msg_spec.rb +17 -5
  742. data/spec/mongo/operation/update_spec.rb +12 -35
  743. data/spec/mongo/operation/update_user_spec.rb +7 -1
  744. data/spec/mongo/options/redacted_spec.rb +3 -0
  745. data/spec/mongo/protocol/caching_hash_spec.rb +82 -0
  746. data/spec/mongo/protocol/compressed_spec.rb +29 -12
  747. data/spec/mongo/protocol/delete_spec.rb +3 -0
  748. data/spec/mongo/protocol/get_more_spec.rb +3 -0
  749. data/spec/mongo/protocol/insert_spec.rb +3 -0
  750. data/spec/mongo/protocol/kill_cursors_spec.rb +3 -0
  751. data/spec/mongo/protocol/msg_spec.rb +45 -1
  752. data/spec/mongo/protocol/query_spec.rb +6 -3
  753. data/spec/mongo/protocol/registry_spec.rb +3 -0
  754. data/spec/mongo/protocol/reply_spec.rb +3 -0
  755. data/spec/mongo/protocol/update_spec.rb +3 -0
  756. data/spec/mongo/query_cache_middleware_spec.rb +55 -0
  757. data/spec/mongo/query_cache_spec.rb +175 -2
  758. data/spec/mongo/retryable_spec.rb +38 -5
  759. data/spec/mongo/semaphore_spec.rb +3 -0
  760. data/spec/mongo/server/app_metadata_spec.rb +46 -21
  761. data/spec/mongo/server/connection_auth_spec.rb +9 -10
  762. data/spec/mongo/server/connection_common_spec.rb +87 -0
  763. data/spec/mongo/server/connection_pool/populator_spec.rb +6 -1
  764. data/spec/mongo/server/connection_pool_spec.rb +182 -46
  765. data/spec/mongo/server/connection_spec.rb +197 -195
  766. data/spec/mongo/server/description/features_spec.rb +27 -0
  767. data/spec/mongo/server/description_query_methods_spec.rb +4 -1
  768. data/spec/mongo/server/description_spec.rb +624 -611
  769. data/spec/mongo/server/monitor/app_metadata_spec.rb +3 -1
  770. data/spec/mongo/server/monitor/connection_spec.rb +79 -7
  771. data/spec/mongo/server/monitor_spec.rb +26 -14
  772. data/spec/mongo/server/push_monitor_spec.rb +95 -0
  773. data/spec/mongo/server/round_trip_time_averager_spec.rb +3 -0
  774. data/spec/mongo/server_selector/nearest_spec.rb +8 -2
  775. data/spec/mongo/server_selector/primary_preferred_spec.rb +8 -2
  776. data/spec/mongo/server_selector/primary_spec.rb +8 -2
  777. data/spec/mongo/server_selector/secondary_preferred_spec.rb +14 -8
  778. data/spec/mongo/server_selector/secondary_spec.rb +8 -2
  779. data/spec/mongo/server_selector_spec.rb +141 -16
  780. data/spec/mongo/server_spec.rb +18 -2
  781. data/spec/mongo/session/server_session_spec.rb +3 -0
  782. data/spec/mongo/session/session_pool_spec.rb +45 -10
  783. data/spec/mongo/session_spec.rb +29 -6
  784. data/spec/mongo/session_transaction_spec.rb +17 -36
  785. data/spec/mongo/socket/ssl_spec.rb +85 -63
  786. data/spec/mongo/socket/tcp_spec.rb +3 -0
  787. data/spec/mongo/socket/unix_spec.rb +4 -0
  788. data/spec/mongo/socket_spec.rb +5 -2
  789. data/spec/mongo/srv/monitor_spec.rb +3 -0
  790. data/spec/mongo/srv/result_spec.rb +3 -0
  791. data/spec/mongo/timeout_spec.rb +3 -0
  792. data/spec/mongo/tls_context_hooks_spec.rb +40 -0
  793. data/spec/mongo/uri/srv_protocol_spec.rb +105 -2
  794. data/spec/mongo/uri_option_parsing_spec.rb +41 -5
  795. data/spec/mongo/uri_spec.rb +28 -0
  796. data/spec/mongo/utils_spec.rb +3 -0
  797. data/spec/mongo/write_concern/acknowledged_spec.rb +3 -0
  798. data/spec/mongo/write_concern/unacknowledged_spec.rb +3 -0
  799. data/spec/mongo/write_concern_spec.rb +3 -0
  800. data/spec/runners/auth.rb +23 -2
  801. data/spec/runners/change_streams/outcome.rb +3 -0
  802. data/spec/runners/change_streams/spec.rb +4 -1
  803. data/spec/runners/change_streams/test.rb +4 -1
  804. data/spec/runners/cmap/verifier.rb +3 -0
  805. data/spec/runners/cmap.rb +5 -2
  806. data/spec/runners/command_monitoring.rb +4 -1
  807. data/spec/runners/connection_string.rb +19 -8
  808. data/spec/runners/crud/context.rb +3 -0
  809. data/spec/runners/crud/operation.rb +20 -6
  810. data/spec/runners/crud/outcome.rb +3 -0
  811. data/spec/runners/crud/requirement.rb +76 -6
  812. data/spec/runners/crud/spec.rb +9 -3
  813. data/spec/runners/crud/test.rb +4 -1
  814. data/spec/runners/crud/test_base.rb +3 -0
  815. data/spec/runners/crud/verifier.rb +18 -2
  816. data/spec/runners/crud.rb +23 -1
  817. data/spec/runners/gridfs.rb +4 -1
  818. data/spec/runners/read_write_concern_document.rb +4 -1
  819. data/spec/runners/sdam/verifier.rb +3 -0
  820. data/spec/runners/sdam.rb +9 -5
  821. data/spec/runners/server_selection.rb +4 -1
  822. data/spec/runners/server_selection_rtt.rb +5 -2
  823. data/spec/runners/transactions/operation.rb +16 -2
  824. data/spec/runners/transactions/spec.rb +5 -2
  825. data/spec/runners/transactions/test.rb +25 -18
  826. data/spec/runners/transactions.rb +14 -8
  827. data/spec/runners/unified/assertions.rb +362 -0
  828. data/spec/runners/unified/change_stream_operations.rb +41 -0
  829. data/spec/runners/unified/client_side_encryption_operations.rb +83 -0
  830. data/spec/runners/unified/crud_operations.rb +323 -0
  831. data/spec/runners/unified/ddl_operations.rb +179 -0
  832. data/spec/runners/unified/entity_map.rb +42 -0
  833. data/spec/runners/unified/error.rb +29 -0
  834. data/spec/runners/unified/event_subscriber.rb +104 -0
  835. data/spec/runners/unified/exceptions.rb +24 -0
  836. data/spec/runners/unified/grid_fs_operations.rb +79 -0
  837. data/spec/runners/unified/support_operations.rb +269 -0
  838. data/spec/runners/unified/test.rb +511 -0
  839. data/spec/runners/unified/test_group.rb +31 -0
  840. data/spec/runners/unified.rb +106 -0
  841. data/spec/shared/bin/get-mongodb-download-url +17 -0
  842. data/spec/shared/bin/s3-copy +45 -0
  843. data/spec/shared/bin/s3-upload +69 -0
  844. data/spec/shared/lib/mrss/cluster_config.rb +231 -0
  845. data/spec/shared/lib/mrss/constraints.rb +102 -27
  846. data/spec/shared/lib/mrss/docker_runner.rb +291 -0
  847. data/spec/shared/lib/mrss/eg_config_utils.rb +51 -0
  848. data/spec/shared/lib/mrss/event_subscriber.rb +210 -0
  849. data/spec/shared/lib/mrss/lite_constraints.rb +56 -1
  850. data/spec/shared/lib/mrss/server_version_registry.rb +120 -0
  851. data/spec/shared/lib/mrss/session_registry.rb +69 -0
  852. data/spec/shared/lib/mrss/session_registry_legacy.rb +60 -0
  853. data/spec/shared/lib/mrss/spec_organizer.rb +32 -2
  854. data/spec/shared/lib/mrss/utils.rb +15 -0
  855. data/spec/shared/share/Dockerfile.erb +325 -0
  856. data/spec/shared/share/haproxy-1.conf +16 -0
  857. data/spec/shared/share/haproxy-2.conf +17 -0
  858. data/spec/shared/shlib/config.sh +27 -0
  859. data/spec/shared/shlib/distro.sh +74 -0
  860. data/spec/shared/shlib/server.sh +392 -0
  861. data/spec/shared/shlib/set_env.sh +169 -0
  862. data/spec/solo/clean_exit_spec.rb +29 -0
  863. data/spec/spec_helper.rb +8 -4
  864. data/spec/spec_tests/auth_spec.rb +30 -13
  865. data/spec/spec_tests/change_streams_unified_spec.rb +13 -0
  866. data/spec/spec_tests/client_side_encryption_spec.rb +4 -1
  867. data/spec/spec_tests/client_side_encryption_unified_spec.rb +16 -0
  868. data/spec/spec_tests/cmap_spec.rb +7 -1
  869. data/spec/spec_tests/collection_management_spec.rb +13 -0
  870. data/spec/spec_tests/command_monitoring_unified_spec.rb +13 -0
  871. data/spec/spec_tests/connection_string_spec.rb +3 -0
  872. data/spec/spec_tests/crud_spec.rb +3 -10
  873. data/spec/spec_tests/crud_unified_spec.rb +13 -0
  874. data/spec/spec_tests/data/change_streams_unified/change-streams-errors.yml +124 -0
  875. data/spec/spec_tests/data/change_streams_unified/change-streams-pre_and_post_images.yml +351 -0
  876. data/spec/spec_tests/data/change_streams_unified/change-streams-resume-allowlist.yml +1171 -0
  877. data/spec/spec_tests/data/change_streams_unified/change-streams-resume-errorLabels.yml +1071 -0
  878. data/spec/spec_tests/data/change_streams_unified/change-streams-showExpandedEvents.yml +298 -0
  879. data/spec/spec_tests/data/change_streams_unified/change-streams.yml +927 -0
  880. data/spec/spec_tests/data/client_side_encryption/aggregate.yml +3 -17
  881. data/spec/spec_tests/data/client_side_encryption/azureKMS.yml +46 -0
  882. data/spec/spec_tests/data/client_side_encryption/badQueries.yml +12 -2
  883. data/spec/spec_tests/data/client_side_encryption/basic.yml +3 -17
  884. data/spec/spec_tests/data/client_side_encryption/bulk.yml +1 -8
  885. data/spec/spec_tests/data/client_side_encryption/bypassAutoEncryption.yml +2 -2
  886. data/spec/spec_tests/data/client_side_encryption/count.yml +1 -8
  887. data/spec/spec_tests/data/client_side_encryption/countDocuments.yml +1 -8
  888. data/spec/spec_tests/data/client_side_encryption/create-and-createIndexes.yml +58 -0
  889. data/spec/spec_tests/data/client_side_encryption/delete.yml +2 -16
  890. data/spec/spec_tests/data/client_side_encryption/distinct.yml +1 -8
  891. data/spec/spec_tests/data/client_side_encryption/explain.yml +1 -8
  892. data/spec/spec_tests/data/client_side_encryption/find.yml +2 -16
  893. data/spec/spec_tests/data/client_side_encryption/findOneAndDelete.yml +1 -8
  894. data/spec/spec_tests/data/client_side_encryption/findOneAndReplace.yml +1 -8
  895. data/spec/spec_tests/data/client_side_encryption/findOneAndUpdate.yml +1 -8
  896. data/spec/spec_tests/data/client_side_encryption/fle2-BypassQueryAnalysis.yml +101 -0
  897. data/spec/spec_tests/data/client_side_encryption/fle2-Compact.yml +80 -0
  898. data/spec/spec_tests/data/client_side_encryption/fle2-CreateCollection.yml +1263 -0
  899. data/spec/spec_tests/data/client_side_encryption/fle2-DecryptExistingData.yml +64 -0
  900. data/spec/spec_tests/data/client_side_encryption/fle2-Delete.yml +107 -0
  901. data/spec/spec_tests/data/client_side_encryption/fle2-EncryptedFields-vs-EncryptedFieldsMap.yml +80 -0
  902. data/spec/spec_tests/data/client_side_encryption/fle2-EncryptedFields-vs-jsonSchema.yml +90 -0
  903. data/spec/spec_tests/data/client_side_encryption/fle2-EncryptedFieldsMap-defaults.yml +57 -0
  904. data/spec/spec_tests/data/client_side_encryption/fle2-FindOneAndUpdate.yml +213 -0
  905. data/spec/spec_tests/data/client_side_encryption/fle2-InsertFind-Indexed.yml +86 -0
  906. data/spec/spec_tests/data/client_side_encryption/fle2-InsertFind-Unindexed.yml +83 -0
  907. data/spec/spec_tests/data/client_side_encryption/fle2-MissingKey.yml +41 -0
  908. data/spec/spec_tests/data/client_side_encryption/fle2-NoEncryption.yml +42 -0
  909. data/spec/spec_tests/data/client_side_encryption/fle2-Update.yml +221 -0
  910. data/spec/spec_tests/data/client_side_encryption/fle2-validatorAndPartialFieldExpression.yml +168 -0
  911. data/spec/spec_tests/data/client_side_encryption/gcpKMS.yml +46 -0
  912. data/spec/spec_tests/data/client_side_encryption/getMore.yml +1 -8
  913. data/spec/spec_tests/data/client_side_encryption/insert.yml +2 -16
  914. data/spec/spec_tests/data/client_side_encryption/keyAltName.yml +1 -8
  915. data/spec/spec_tests/data/client_side_encryption/localKMS.yml +1 -8
  916. data/spec/spec_tests/data/client_side_encryption/localSchema.yml +1 -8
  917. data/spec/spec_tests/data/client_side_encryption/maxWireVersion.yml +2 -0
  918. data/spec/spec_tests/data/client_side_encryption/missingKey.yml +2 -9
  919. data/spec/spec_tests/data/client_side_encryption/noSchema.yml +39 -0
  920. data/spec/spec_tests/data/client_side_encryption/replaceOne.yml +1 -8
  921. data/spec/spec_tests/data/client_side_encryption/types.yml +44 -70
  922. data/spec/spec_tests/data/client_side_encryption/unified/addKeyAltName.yml +194 -0
  923. data/spec/spec_tests/data/client_side_encryption/unified/createDataKey-kms_providers-invalid.yml +67 -0
  924. data/spec/spec_tests/data/client_side_encryption/unified/createDataKey.yml +309 -0
  925. data/spec/spec_tests/data/client_side_encryption/unified/deleteKey.yml +159 -0
  926. data/spec/spec_tests/data/client_side_encryption/unified/getKey.yml +105 -0
  927. data/spec/spec_tests/data/client_side_encryption/unified/getKeyByAltName.yml +104 -0
  928. data/spec/spec_tests/data/client_side_encryption/unified/getKeys.yml +122 -0
  929. data/spec/spec_tests/data/client_side_encryption/unified/removeKeyAltName.yml +157 -0
  930. data/spec/spec_tests/data/client_side_encryption/unified/rewrapManyDataKey-decrypt_failure.yml +69 -0
  931. data/spec/spec_tests/data/client_side_encryption/unified/rewrapManyDataKey-encrypt_failure.yml +122 -0
  932. data/spec/spec_tests/data/client_side_encryption/unified/rewrapManyDataKey.yml +432 -0
  933. data/spec/spec_tests/data/client_side_encryption/updateMany.yml +1 -8
  934. data/spec/spec_tests/data/client_side_encryption/updateOne.yml +1 -8
  935. data/spec/spec_tests/data/client_side_encryption/validatorAndPartialFieldExpression.yml +166 -0
  936. data/spec/spec_tests/data/collection_management/clustered-indexes.yml +135 -0
  937. data/spec/spec_tests/data/collection_management/createCollection-pre_and_post_images.yml +50 -0
  938. data/spec/spec_tests/data/collection_management/modifyCollection-pre_and_post_images.yml +58 -0
  939. data/spec/spec_tests/data/collection_management/timeseries-collection.yml +129 -0
  940. data/spec/spec_tests/data/command_monitoring_unified/bulkWrite.yml +68 -0
  941. data/spec/spec_tests/data/command_monitoring_unified/command.yml +50 -0
  942. data/spec/spec_tests/data/command_monitoring_unified/deleteMany.yml +79 -0
  943. data/spec/spec_tests/data/command_monitoring_unified/deleteOne.yml +79 -0
  944. data/spec/spec_tests/data/command_monitoring_unified/find.yml +254 -0
  945. data/spec/spec_tests/data/command_monitoring_unified/insertMany.yml +79 -0
  946. data/spec/spec_tests/data/command_monitoring_unified/insertOne.yml +77 -0
  947. data/spec/spec_tests/data/command_monitoring_unified/pre-42-server-connection-id.yml +56 -0
  948. data/spec/spec_tests/data/command_monitoring_unified/redacted-commands.yml +340 -0
  949. data/spec/spec_tests/data/command_monitoring_unified/server-connection-id.yml +56 -0
  950. data/spec/spec_tests/data/command_monitoring_unified/unacknowledgedBulkWrite.yml +55 -0
  951. data/spec/spec_tests/data/command_monitoring_unified/updateMany.yml +87 -0
  952. data/spec/spec_tests/data/command_monitoring_unified/updateOne.yml +118 -0
  953. data/spec/spec_tests/data/crud/read/aggregate-collation.yml +2 -1
  954. data/spec/spec_tests/data/crud/read/aggregate-out.yml +1 -0
  955. data/spec/spec_tests/data/crud/read/count-collation.yml +2 -1
  956. data/spec/spec_tests/data/crud/read/distinct-collation.yml +2 -1
  957. data/spec/spec_tests/data/crud/read/find-collation.yml +2 -1
  958. data/spec/spec_tests/data/crud/write/bulkWrite-collation.yml +2 -1
  959. data/spec/spec_tests/data/crud/write/bulkWrite.yml +26 -22
  960. data/spec/spec_tests/data/crud/write/deleteMany-collation.yml +2 -1
  961. data/spec/spec_tests/data/crud/write/deleteOne-collation.yml +2 -1
  962. data/spec/spec_tests/data/crud/write/findOneAndDelete-collation.yml +3 -2
  963. data/spec/spec_tests/data/crud/write/findOneAndReplace-collation.yml +2 -1
  964. data/spec/spec_tests/data/crud/write/findOneAndUpdate-collation.yml +3 -2
  965. data/spec/spec_tests/data/crud/write/insertMany.yml +26 -22
  966. data/spec/spec_tests/data/crud/write/replaceOne-collation.yml +3 -2
  967. data/spec/spec_tests/data/crud/write/updateMany-collation.yml +2 -1
  968. data/spec/spec_tests/data/crud/write/updateOne-collation.yml +2 -1
  969. data/spec/spec_tests/data/crud_unified/aggregate-allowdiskuse.yml +75 -0
  970. data/spec/spec_tests/data/crud_unified/aggregate-let.yml +138 -0
  971. data/spec/spec_tests/data/crud_unified/aggregate-merge.yml +185 -0
  972. data/spec/spec_tests/data/crud_unified/aggregate-out-readConcern.yml +171 -0
  973. data/spec/spec_tests/data/crud_unified/aggregate-write-readPreference.yml +155 -0
  974. data/spec/spec_tests/data/crud_unified/aggregate.yml +215 -0
  975. data/spec/spec_tests/data/crud_unified/bulkWrite-arrayFilters-clientError.yml +98 -0
  976. data/spec/spec_tests/data/crud_unified/bulkWrite-arrayFilters.yml +174 -0
  977. data/spec/spec_tests/data/crud_unified/bulkWrite-comment.yml +189 -0
  978. data/spec/spec_tests/data/crud_unified/bulkWrite-delete-hint-clientError.yml +113 -0
  979. data/spec/spec_tests/data/crud_unified/bulkWrite-delete-hint-serverError.yml +142 -0
  980. data/spec/spec_tests/data/crud_unified/bulkWrite-delete-hint.yml +154 -0
  981. data/spec/spec_tests/data/crud_unified/bulkWrite-deleteMany-hint-unacknowledged.yml +98 -0
  982. data/spec/spec_tests/data/crud_unified/bulkWrite-deleteMany-let.yml +86 -0
  983. data/spec/spec_tests/data/crud_unified/bulkWrite-deleteOne-hint-unacknowledged.yml +97 -0
  984. data/spec/spec_tests/data/crud_unified/bulkWrite-deleteOne-let.yml +86 -0
  985. data/spec/spec_tests/data/crud_unified/bulkWrite-insertOne-dots_and_dollars.yml +138 -0
  986. data/spec/spec_tests/data/crud_unified/bulkWrite-replaceOne-dots_and_dollars.yml +165 -0
  987. data/spec/spec_tests/data/crud_unified/bulkWrite-replaceOne-hint-unacknowledged.yml +103 -0
  988. data/spec/spec_tests/data/crud_unified/bulkWrite-replaceOne-let.yml +93 -0
  989. data/spec/spec_tests/data/crud_unified/bulkWrite-update-hint-clientError.yml +148 -0
  990. data/spec/spec_tests/data/crud_unified/bulkWrite-update-hint-serverError.yml +239 -0
  991. data/spec/spec_tests/data/crud_unified/bulkWrite-update-hint.yml +256 -0
  992. data/spec/spec_tests/data/crud_unified/bulkWrite-update-validation.yml +73 -0
  993. data/spec/spec_tests/data/crud_unified/bulkWrite-updateMany-dots_and_dollars.yml +150 -0
  994. data/spec/spec_tests/data/crud_unified/bulkWrite-updateMany-hint-unacknowledged.yml +104 -0
  995. data/spec/spec_tests/data/crud_unified/bulkWrite-updateMany-let.yml +96 -0
  996. data/spec/spec_tests/data/crud_unified/bulkWrite-updateOne-dots_and_dollars.yml +150 -0
  997. data/spec/spec_tests/data/crud_unified/bulkWrite-updateOne-hint-unacknowledged.yml +103 -0
  998. data/spec/spec_tests/data/crud_unified/bulkWrite-updateOne-let.yml +95 -0
  999. data/spec/spec_tests/data/crud_unified/countDocuments-comment.yml +92 -0
  1000. data/spec/spec_tests/data/crud_unified/db-aggregate-write-readPreference.yml +151 -0
  1001. data/spec/spec_tests/data/crud_unified/db-aggregate.yml +73 -0
  1002. data/spec/spec_tests/data/crud_unified/deleteMany-comment.yml +97 -0
  1003. data/spec/spec_tests/data/crud_unified/deleteMany-hint-clientError.yml +87 -0
  1004. data/spec/spec_tests/data/crud_unified/deleteMany-hint-serverError.yml +107 -0
  1005. data/spec/spec_tests/data/crud_unified/deleteMany-hint-unacknowledged.yml +90 -0
  1006. data/spec/spec_tests/data/crud_unified/deleteMany-hint.yml +99 -0
  1007. data/spec/spec_tests/data/crud_unified/deleteMany-let.yml +93 -0
  1008. data/spec/spec_tests/data/crud_unified/deleteOne-comment.yml +98 -0
  1009. data/spec/spec_tests/data/crud_unified/deleteOne-hint-clientError.yml +80 -0
  1010. data/spec/spec_tests/data/crud_unified/deleteOne-hint-serverError.yml +100 -0
  1011. data/spec/spec_tests/data/crud_unified/deleteOne-hint-unacknowledged.yml +89 -0
  1012. data/spec/spec_tests/data/crud_unified/deleteOne-hint.yml +95 -0
  1013. data/spec/spec_tests/data/crud_unified/deleteOne-let.yml +91 -0
  1014. data/spec/spec_tests/data/crud_unified/distinct-comment.yml +98 -0
  1015. data/spec/spec_tests/data/crud_unified/estimatedDocumentCount-comment.yml +95 -0
  1016. data/spec/spec_tests/data/crud_unified/estimatedDocumentCount.yml +137 -0
  1017. data/spec/spec_tests/data/crud_unified/find-allowdiskuse-clientError.yml +55 -0
  1018. data/spec/spec_tests/data/crud_unified/find-allowdiskuse-serverError.yml +68 -0
  1019. data/spec/spec_tests/data/crud_unified/find-allowdiskuse.yml +79 -0
  1020. data/spec/spec_tests/data/crud_unified/find-comment.yml +166 -0
  1021. data/spec/spec_tests/data/crud_unified/find-let.yml +71 -0
  1022. data/spec/spec_tests/data/crud_unified/find.yml +68 -0
  1023. data/spec/spec_tests/data/crud_unified/findOneAndDelete-comment.yml +96 -0
  1024. data/spec/spec_tests/data/crud_unified/findOneAndDelete-hint-clientError.yml +91 -0
  1025. data/spec/spec_tests/data/crud_unified/findOneAndDelete-hint-serverError.yml +107 -0
  1026. data/spec/spec_tests/data/crud_unified/findOneAndDelete-hint-unacknowledged.yml +88 -0
  1027. data/spec/spec_tests/data/crud_unified/findOneAndDelete-hint.yml +102 -0
  1028. data/spec/spec_tests/data/crud_unified/findOneAndDelete-let.yml +86 -0
  1029. data/spec/spec_tests/data/crud_unified/findOneAndReplace-comment.yml +101 -0
  1030. data/spec/spec_tests/data/crud_unified/findOneAndReplace-dots_and_dollars.yml +140 -0
  1031. data/spec/spec_tests/data/crud_unified/findOneAndReplace-hint-clientError.yml +83 -0
  1032. data/spec/spec_tests/data/crud_unified/findOneAndReplace-hint-serverError.yml +99 -0
  1033. data/spec/spec_tests/data/crud_unified/findOneAndReplace-hint-unacknowledged.yml +96 -0
  1034. data/spec/spec_tests/data/crud_unified/findOneAndReplace-hint.yml +98 -0
  1035. data/spec/spec_tests/data/crud_unified/findOneAndReplace-let.yml +94 -0
  1036. data/spec/spec_tests/data/crud_unified/findOneAndUpdate-comment.yml +95 -0
  1037. data/spec/spec_tests/data/crud_unified/findOneAndUpdate-dots_and_dollars.yml +127 -0
  1038. data/spec/spec_tests/data/crud_unified/findOneAndUpdate-hint-clientError.yml +84 -0
  1039. data/spec/spec_tests/data/crud_unified/findOneAndUpdate-hint-serverError.yml +100 -0
  1040. data/spec/spec_tests/data/crud_unified/findOneAndUpdate-hint-unacknowledged.yml +92 -0
  1041. data/spec/spec_tests/data/crud_unified/findOneAndUpdate-hint.yml +99 -0
  1042. data/spec/spec_tests/data/crud_unified/findOneAndUpdate-let.yml +96 -0
  1043. data/spec/spec_tests/data/crud_unified/insertMany-comment.yml +93 -0
  1044. data/spec/spec_tests/data/crud_unified/insertMany-dots_and_dollars.yml +128 -0
  1045. data/spec/spec_tests/data/crud_unified/insertOne-comment.yml +91 -0
  1046. data/spec/spec_tests/data/crud_unified/insertOne-dots_and_dollars.yml +238 -0
  1047. data/spec/spec_tests/data/crud_unified/replaceOne-comment.yml +105 -0
  1048. data/spec/spec_tests/data/crud_unified/replaceOne-dots_and_dollars.yml +180 -0
  1049. data/spec/spec_tests/data/crud_unified/replaceOne-hint-unacknowledged.yml +95 -0
  1050. data/spec/spec_tests/data/crud_unified/replaceOne-hint.yml +108 -0
  1051. data/spec/spec_tests/data/crud_unified/replaceOne-let.yml +98 -0
  1052. data/spec/spec_tests/data/crud_unified/replaceOne-validation.yml +37 -0
  1053. data/spec/spec_tests/data/crud_unified/updateMany-comment.yml +104 -0
  1054. data/spec/spec_tests/data/crud_unified/updateMany-dots_and_dollars.yml +138 -0
  1055. data/spec/spec_tests/data/crud_unified/updateMany-hint-clientError.yml +91 -0
  1056. data/spec/spec_tests/data/crud_unified/updateMany-hint-serverError.yml +115 -0
  1057. data/spec/spec_tests/data/crud_unified/updateMany-hint-unacknowledged.yml +96 -0
  1058. data/spec/spec_tests/data/crud_unified/updateMany-hint.yml +115 -0
  1059. data/spec/spec_tests/data/crud_unified/updateMany-let.yml +107 -0
  1060. data/spec/spec_tests/data/crud_unified/updateMany-validation.yml +39 -0
  1061. data/spec/spec_tests/data/crud_unified/updateOne-comment.yml +104 -0
  1062. data/spec/spec_tests/data/crud_unified/updateOne-dots_and_dollars.yml +138 -0
  1063. data/spec/spec_tests/data/crud_unified/updateOne-hint-clientError.yml +85 -0
  1064. data/spec/spec_tests/data/crud_unified/updateOne-hint-serverError.yml +109 -0
  1065. data/spec/spec_tests/data/crud_unified/updateOne-hint-unacknowledged.yml +95 -0
  1066. data/spec/spec_tests/data/crud_unified/updateOne-hint.yml +109 -0
  1067. data/spec/spec_tests/data/crud_unified/updateOne-let.yml +102 -0
  1068. data/spec/spec_tests/data/crud_unified/updateOne-validation.yml +37 -0
  1069. data/spec/spec_tests/data/crud_unified/updateWithPipelines.yml +299 -0
  1070. data/spec/spec_tests/data/gridfs_unified/delete.yml +198 -0
  1071. data/spec/spec_tests/data/gridfs_unified/download.yml +241 -0
  1072. data/spec/spec_tests/data/gridfs_unified/downloadByName.yml +159 -0
  1073. data/spec/spec_tests/data/gridfs_unified/upload-disableMD5.yml +92 -0
  1074. data/spec/spec_tests/data/gridfs_unified/upload.yml +288 -0
  1075. data/spec/spec_tests/data/load_balancers/event-monitoring.yml +99 -0
  1076. data/spec/spec_tests/data/load_balancers/lb-connection-establishment.yml +36 -0
  1077. data/spec/spec_tests/data/load_balancers/non-lb-connection-establishment.yml +56 -0
  1078. data/spec/spec_tests/data/load_balancers/server-selection.yml +50 -0
  1079. data/spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/DefaultNoMaxStaleness.yml +2 -2
  1080. data/spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/LastUpdateTime.yml +3 -3
  1081. data/spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/Nearest.yml +3 -3
  1082. data/spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/Nearest2.yml +3 -3
  1083. data/spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/PrimaryPreferred.yml +2 -2
  1084. data/spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/PrimaryPreferred_tags.yml +2 -2
  1085. data/spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/Secondary.yml +4 -4
  1086. data/spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/SecondaryPreferred.yml +2 -2
  1087. data/spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/SecondaryPreferred_tags.yml +4 -4
  1088. data/spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/ZeroMaxStaleness.yml +2 -2
  1089. data/spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/DefaultNoMaxStaleness.yml +2 -2
  1090. data/spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/LastUpdateTime.yml +3 -3
  1091. data/spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/LongHeartbeat.yml +2 -2
  1092. data/spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/LongHeartbeat2.yml +2 -2
  1093. data/spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/MaxStalenessTooSmall.yml +2 -2
  1094. data/spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/MaxStalenessWithModePrimary.yml +2 -2
  1095. data/spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/Nearest.yml +3 -3
  1096. data/spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/Nearest2.yml +3 -3
  1097. data/spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/Nearest_tags.yml +2 -2
  1098. data/spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/PrimaryPreferred.yml +2 -2
  1099. data/spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/SecondaryPreferred.yml +2 -2
  1100. data/spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/SecondaryPreferred_tags.yml +5 -5
  1101. data/spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/SecondaryPreferred_tags2.yml +3 -3
  1102. data/spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/Secondary_tags.yml +5 -5
  1103. data/spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/Secondary_tags2.yml +3 -3
  1104. data/spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/ZeroMaxStaleness.yml +2 -2
  1105. data/spec/spec_tests/data/max_staleness/Sharded/SmallMaxStaleness.yml +2 -2
  1106. data/spec/spec_tests/data/max_staleness/Single/SmallMaxStaleness.yml +1 -1
  1107. data/spec/spec_tests/data/max_staleness/Unknown/SmallMaxStaleness.yml +1 -1
  1108. data/spec/spec_tests/data/retryable_reads/{aggregate-merge.yml → legacy/aggregate-merge.yml} +0 -0
  1109. data/spec/spec_tests/data/retryable_reads/{aggregate-serverErrors.yml → legacy/aggregate-serverErrors.yml} +1 -1
  1110. data/spec/spec_tests/data/retryable_reads/{aggregate.yml → legacy/aggregate.yml} +0 -0
  1111. data/spec/spec_tests/data/retryable_reads/{changeStreams-client.watch-serverErrors.yml → legacy/changeStreams-client.watch-serverErrors.yml} +7 -6
  1112. data/spec/spec_tests/data/retryable_reads/{changeStreams-client.watch.yml → legacy/changeStreams-client.watch.yml} +2 -1
  1113. data/spec/spec_tests/data/retryable_reads/{changeStreams-db.coll.watch-serverErrors.yml → legacy/changeStreams-db.coll.watch-serverErrors.yml} +7 -6
  1114. data/spec/spec_tests/data/retryable_reads/{changeStreams-db.coll.watch.yml → legacy/changeStreams-db.coll.watch.yml} +2 -1
  1115. data/spec/spec_tests/data/retryable_reads/{changeStreams-db.watch-serverErrors.yml → legacy/changeStreams-db.watch-serverErrors.yml} +7 -6
  1116. data/spec/spec_tests/data/retryable_reads/{changeStreams-db.watch.yml → legacy/changeStreams-db.watch.yml} +2 -1
  1117. data/spec/spec_tests/data/retryable_reads/{count-serverErrors.yml → legacy/count-serverErrors.yml} +1 -1
  1118. data/spec/spec_tests/data/retryable_reads/{count.yml → legacy/count.yml} +0 -0
  1119. data/spec/spec_tests/data/retryable_reads/{countDocuments-serverErrors.yml → legacy/countDocuments-serverErrors.yml} +1 -1
  1120. data/spec/spec_tests/data/retryable_reads/{countDocuments.yml → legacy/countDocuments.yml} +0 -0
  1121. data/spec/spec_tests/data/retryable_reads/{distinct-serverErrors.yml → legacy/distinct-serverErrors.yml} +1 -1
  1122. data/spec/spec_tests/data/retryable_reads/{distinct.yml → legacy/distinct.yml} +0 -0
  1123. data/spec/spec_tests/data/retryable_reads/{estimatedDocumentCount-serverErrors.yml → legacy/estimatedDocumentCount-serverErrors.yml} +1 -1
  1124. data/spec/spec_tests/data/retryable_reads/{estimatedDocumentCount.yml → legacy/estimatedDocumentCount.yml} +0 -0
  1125. data/spec/spec_tests/data/retryable_reads/{find-serverErrors.yml → legacy/find-serverErrors.yml} +1 -1
  1126. data/spec/spec_tests/data/retryable_reads/{find.yml → legacy/find.yml} +0 -0
  1127. data/spec/spec_tests/data/retryable_reads/{findOne-serverErrors.yml → legacy/findOne-serverErrors.yml} +1 -1
  1128. data/spec/spec_tests/data/retryable_reads/{findOne.yml → legacy/findOne.yml} +0 -0
  1129. data/spec/spec_tests/data/retryable_reads/{gridfs-download-serverErrors.yml → legacy/gridfs-download-serverErrors.yml} +1 -1
  1130. data/spec/spec_tests/data/retryable_reads/{gridfs-download.yml → legacy/gridfs-download.yml} +0 -0
  1131. data/spec/spec_tests/data/retryable_reads/{gridfs-downloadByName-serverErrors.yml → legacy/gridfs-downloadByName-serverErrors.yml} +1 -1
  1132. data/spec/spec_tests/data/retryable_reads/{gridfs-downloadByName.yml → legacy/gridfs-downloadByName.yml} +0 -0
  1133. data/spec/spec_tests/data/retryable_reads/{listCollectionNames-serverErrors.yml → legacy/listCollectionNames-serverErrors.yml} +1 -1
  1134. data/spec/spec_tests/data/retryable_reads/{listCollectionNames.yml → legacy/listCollectionNames.yml} +0 -0
  1135. data/spec/spec_tests/data/retryable_reads/{listCollectionObjects-serverErrors.yml → legacy/listCollectionObjects-serverErrors.yml} +1 -1
  1136. data/spec/spec_tests/data/retryable_reads/{listCollectionObjects.yml → legacy/listCollectionObjects.yml} +0 -0
  1137. data/spec/spec_tests/data/retryable_reads/{listCollections-serverErrors.yml → legacy/listCollections-serverErrors.yml} +1 -1
  1138. data/spec/spec_tests/data/retryable_reads/{listCollections.yml → legacy/listCollections.yml} +0 -0
  1139. data/spec/spec_tests/data/retryable_reads/{listDatabaseNames-serverErrors.yml → legacy/listDatabaseNames-serverErrors.yml} +1 -1
  1140. data/spec/spec_tests/data/retryable_reads/{listDatabaseNames.yml → legacy/listDatabaseNames.yml} +0 -0
  1141. data/spec/spec_tests/data/retryable_reads/{listDatabaseObjects-serverErrors.yml → legacy/listDatabaseObjects-serverErrors.yml} +1 -1
  1142. data/spec/spec_tests/data/retryable_reads/{listDatabaseObjects.yml → legacy/listDatabaseObjects.yml} +0 -0
  1143. data/spec/spec_tests/data/retryable_reads/{listDatabases-serverErrors.yml → legacy/listDatabases-serverErrors.yml} +1 -1
  1144. data/spec/spec_tests/data/retryable_reads/{listDatabases.yml → legacy/listDatabases.yml} +0 -0
  1145. data/spec/spec_tests/data/retryable_reads/{listIndexNames-serverErrors.yml → legacy/listIndexNames-serverErrors.yml} +1 -1
  1146. data/spec/spec_tests/data/retryable_reads/{listIndexNames.yml → legacy/listIndexNames.yml} +1 -1
  1147. data/spec/spec_tests/data/retryable_reads/{listIndexes-serverErrors.yml → legacy/listIndexes-serverErrors.yml} +1 -1
  1148. data/spec/spec_tests/data/retryable_reads/{listIndexes.yml → legacy/listIndexes.yml} +0 -0
  1149. data/spec/spec_tests/data/retryable_reads/{mapReduce.yml → legacy/mapReduce.yml} +3 -1
  1150. data/spec/spec_tests/data/retryable_reads/unified/handshakeError.yml +129 -0
  1151. data/spec/spec_tests/data/retryable_writes/{bulkWrite-errorLabels.yml → legacy/bulkWrite-errorLabels.yml} +0 -0
  1152. data/spec/spec_tests/data/retryable_writes/{bulkWrite-serverErrors.yml → legacy/bulkWrite-serverErrors.yml} +1 -1
  1153. data/spec/spec_tests/data/retryable_writes/{bulkWrite.yml → legacy/bulkWrite.yml} +30 -24
  1154. data/spec/spec_tests/data/retryable_writes/{deleteMany.yml → legacy/deleteMany.yml} +0 -0
  1155. data/spec/spec_tests/data/retryable_writes/{deleteOne-errorLabels.yml → legacy/deleteOne-errorLabels.yml} +0 -0
  1156. data/spec/spec_tests/data/retryable_writes/{deleteOne-serverErrors.yml → legacy/deleteOne-serverErrors.yml} +1 -1
  1157. data/spec/spec_tests/data/retryable_writes/{deleteOne.yml → legacy/deleteOne.yml} +0 -0
  1158. data/spec/spec_tests/data/retryable_writes/{findOneAndDelete-errorLabels.yml → legacy/findOneAndDelete-errorLabels.yml} +0 -0
  1159. data/spec/spec_tests/data/retryable_writes/{findOneAndDelete-serverErrors.yml → legacy/findOneAndDelete-serverErrors.yml} +1 -1
  1160. data/spec/spec_tests/data/retryable_writes/{findOneAndDelete.yml → legacy/findOneAndDelete.yml} +0 -0
  1161. data/spec/spec_tests/data/retryable_writes/{findOneAndReplace-errorLabels.yml → legacy/findOneAndReplace-errorLabels.yml} +0 -0
  1162. data/spec/spec_tests/data/retryable_writes/{findOneAndReplace-serverErrors.yml → legacy/findOneAndReplace-serverErrors.yml} +1 -1
  1163. data/spec/spec_tests/data/retryable_writes/{findOneAndReplace.yml → legacy/findOneAndReplace.yml} +0 -0
  1164. data/spec/spec_tests/data/retryable_writes/{findOneAndUpdate-errorLabels.yml → legacy/findOneAndUpdate-errorLabels.yml} +0 -0
  1165. data/spec/spec_tests/data/retryable_writes/{findOneAndUpdate-serverErrors.yml → legacy/findOneAndUpdate-serverErrors.yml} +1 -1
  1166. data/spec/spec_tests/data/retryable_writes/{findOneAndUpdate.yml → legacy/findOneAndUpdate.yml} +0 -0
  1167. data/spec/spec_tests/data/retryable_writes/{insertMany-errorLabels.yml → legacy/insertMany-errorLabels.yml} +0 -0
  1168. data/spec/spec_tests/data/retryable_writes/{insertMany-serverErrors.yml → legacy/insertMany-serverErrors.yml} +1 -1
  1169. data/spec/spec_tests/data/retryable_writes/{insertMany.yml → legacy/insertMany.yml} +0 -0
  1170. data/spec/spec_tests/data/retryable_writes/{insertOne-errorLabels.yml → legacy/insertOne-errorLabels.yml} +0 -0
  1171. data/spec/spec_tests/data/retryable_writes/{insertOne-serverErrors.yml → legacy/insertOne-serverErrors.yml} +9 -8
  1172. data/spec/spec_tests/data/retryable_writes/{insertOne.yml → legacy/insertOne.yml} +0 -0
  1173. data/spec/spec_tests/data/retryable_writes/{replaceOne-errorLabels.yml → legacy/replaceOne-errorLabels.yml} +0 -0
  1174. data/spec/spec_tests/data/retryable_writes/{replaceOne-serverErrors.yml → legacy/replaceOne-serverErrors.yml} +1 -1
  1175. data/spec/spec_tests/data/retryable_writes/{replaceOne.yml → legacy/replaceOne.yml} +0 -0
  1176. data/spec/spec_tests/data/retryable_writes/{updateMany.yml → legacy/updateMany.yml} +0 -0
  1177. data/spec/spec_tests/data/retryable_writes/{updateOne-errorLabels.yml → legacy/updateOne-errorLabels.yml} +0 -0
  1178. data/spec/spec_tests/data/retryable_writes/{updateOne-serverErrors.yml → legacy/updateOne-serverErrors.yml} +1 -1
  1179. data/spec/spec_tests/data/retryable_writes/{updateOne.yml → legacy/updateOne.yml} +0 -0
  1180. data/spec/spec_tests/data/retryable_writes/unified/bulkWrite-serverErrors.yml +96 -0
  1181. data/spec/spec_tests/data/retryable_writes/unified/handshakeError.yml +137 -0
  1182. data/spec/spec_tests/data/retryable_writes/unified/insertOne-serverErrors.yml +78 -0
  1183. data/spec/spec_tests/data/sdam/errors/error_handling_handshake.yml +2 -1
  1184. data/spec/spec_tests/data/sdam/errors/non-stale-network-error.yml +2 -1
  1185. data/spec/spec_tests/data/sdam/errors/non-stale-network-timeout-error.yml +2 -1
  1186. data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-InterruptedAtShutdown.yml +2 -1
  1187. data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-InterruptedDueToReplStateChange.yml +2 -1
  1188. data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-LegacyNotPrimary.yml +61 -0
  1189. data/spec/spec_tests/data/sdam/errors/{non-stale-topologyVersion-greater-NotMasterNoSlaveOk.yml → non-stale-topologyVersion-greater-NotPrimaryNoSecondaryOk.yml} +5 -4
  1190. data/spec/spec_tests/data/sdam/errors/{non-stale-topologyVersion-greater-NotMasterOrSecondary.yml → non-stale-topologyVersion-greater-NotPrimaryOrSecondary.yml} +5 -4
  1191. data/spec/spec_tests/data/sdam/errors/{non-stale-topologyVersion-greater-NotMaster.yml → non-stale-topologyVersion-greater-NotWritablePrimary.yml} +5 -4
  1192. data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-PrimarySteppedDown.yml +2 -1
  1193. data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-ShutdownInProgress.yml +2 -1
  1194. data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-InterruptedAtShutdown.yml +2 -1
  1195. data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-InterruptedDueToReplStateChange.yml +2 -1
  1196. data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-LegacyNotPrimary.yml +52 -0
  1197. data/spec/spec_tests/data/sdam/errors/{non-stale-topologyVersion-missing-NotMasterNoSlaveOk.yml → non-stale-topologyVersion-missing-NotPrimaryNoSecondaryOk.yml} +5 -4
  1198. data/spec/spec_tests/data/sdam/errors/{non-stale-topologyVersion-missing-NotMasterOrSecondary.yml → non-stale-topologyVersion-missing-NotPrimaryOrSecondary.yml} +5 -4
  1199. data/spec/spec_tests/data/sdam/errors/{non-stale-topologyVersion-missing-NotMaster.yml → non-stale-topologyVersion-missing-NotWritablePrimary.yml} +5 -4
  1200. data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-PrimarySteppedDown.yml +2 -1
  1201. data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-ShutdownInProgress.yml +2 -1
  1202. data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-InterruptedAtShutdown.yml +2 -1
  1203. data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-InterruptedDueToReplStateChange.yml +2 -1
  1204. data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-LegacyNotPrimary.yml +61 -0
  1205. data/spec/spec_tests/data/sdam/errors/{non-stale-topologyVersion-proccessId-changed-NotMasterNoSlaveOk.yml → non-stale-topologyVersion-proccessId-changed-NotPrimaryNoSecondaryOk.yml} +5 -4
  1206. data/spec/spec_tests/data/sdam/errors/{non-stale-topologyVersion-proccessId-changed-NotMasterOrSecondary.yml → non-stale-topologyVersion-proccessId-changed-NotPrimaryOrSecondary.yml} +5 -4
  1207. data/spec/spec_tests/data/sdam/errors/{non-stale-topologyVersion-proccessId-changed-NotMaster.yml → non-stale-topologyVersion-proccessId-changed-NotWritablePrimary.yml} +5 -4
  1208. data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-PrimarySteppedDown.yml +2 -1
  1209. data/spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-ShutdownInProgress.yml +2 -1
  1210. data/spec/spec_tests/data/sdam/errors/post-42-InterruptedAtShutdown.yml +2 -1
  1211. data/spec/spec_tests/data/sdam/errors/post-42-InterruptedDueToReplStateChange.yml +2 -1
  1212. data/spec/spec_tests/data/sdam/errors/post-42-LegacyNotPrimary.yml +47 -0
  1213. data/spec/spec_tests/data/sdam/errors/{post-42-NotMasterNoSlaveOk.yml → post-42-NotPrimaryNoSecondaryOk.yml} +5 -4
  1214. data/spec/spec_tests/data/sdam/errors/{post-42-NotMasterOrSecondary.yml → post-42-NotPrimaryOrSecondary.yml} +5 -4
  1215. data/spec/spec_tests/data/sdam/errors/{post-42-NotMaster.yml → post-42-NotWritablePrimary.yml} +5 -4
  1216. data/spec/spec_tests/data/sdam/errors/post-42-PrimarySteppedDown.yml +2 -1
  1217. data/spec/spec_tests/data/sdam/errors/post-42-ShutdownInProgress.yml +2 -1
  1218. data/spec/spec_tests/data/sdam/errors/pre-42-InterruptedAtShutdown.yml +2 -1
  1219. data/spec/spec_tests/data/sdam/errors/pre-42-InterruptedDueToReplStateChange.yml +2 -1
  1220. data/spec/spec_tests/data/sdam/errors/{pre-42-NotMaster.yml → pre-42-LegacyNotPrimary.yml} +6 -5
  1221. data/spec/spec_tests/data/sdam/errors/pre-42-NotPrimaryNoSecondaryOk.yml +47 -0
  1222. data/spec/spec_tests/data/sdam/errors/{pre-42-NotMasterOrSecondary.yml → pre-42-NotPrimaryOrSecondary.yml} +5 -4
  1223. data/spec/spec_tests/data/sdam/errors/{pre-42-NotMasterNoSlaveOk.yml → pre-42-NotWritablePrimary.yml} +6 -5
  1224. data/spec/spec_tests/data/sdam/errors/pre-42-PrimarySteppedDown.yml +2 -1
  1225. data/spec/spec_tests/data/sdam/errors/pre-42-ShutdownInProgress.yml +2 -1
  1226. data/spec/spec_tests/data/sdam/errors/prefer-error-code.yml +54 -0
  1227. data/spec/spec_tests/data/sdam/errors/stale-generation-InterruptedAtShutdown.yml +4 -2
  1228. data/spec/spec_tests/data/sdam/errors/stale-generation-InterruptedDueToReplStateChange.yml +4 -2
  1229. data/spec/spec_tests/data/sdam/errors/{stale-generation-NotMasterNoSlaveOk.yml → stale-generation-NotPrimaryNoSecondaryOk.yml} +7 -5
  1230. data/spec/spec_tests/data/sdam/errors/{stale-generation-NotMasterOrSecondary.yml → stale-generation-NotPrimaryOrSecondary.yml} +7 -5
  1231. data/spec/spec_tests/data/sdam/errors/{stale-generation-NotMaster.yml → stale-generation-NotWritablePrimary.yml} +7 -5
  1232. data/spec/spec_tests/data/sdam/errors/stale-generation-PrimarySteppedDown.yml +4 -2
  1233. data/spec/spec_tests/data/sdam/errors/stale-generation-ShutdownInProgress.yml +4 -2
  1234. data/spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-InterruptedAtShutdown.yml +4 -2
  1235. data/spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-InterruptedDueToReplStateChange.yml +4 -2
  1236. data/spec/spec_tests/data/sdam/errors/{stale-generation-afterHandshakeCompletes-NotMaster.yml → stale-generation-afterHandshakeCompletes-LegacyNotPrimary.yml} +8 -6
  1237. data/spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-NotPrimaryNoSecondaryOk.yml +91 -0
  1238. data/spec/spec_tests/data/sdam/errors/{stale-generation-afterHandshakeCompletes-NotMasterOrSecondary.yml → stale-generation-afterHandshakeCompletes-NotPrimaryOrSecondary.yml} +7 -5
  1239. data/spec/spec_tests/data/sdam/errors/{stale-generation-afterHandshakeCompletes-NotMasterNoSlaveOk.yml → stale-generation-afterHandshakeCompletes-NotWritablePrimary.yml} +8 -6
  1240. data/spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-PrimarySteppedDown.yml +4 -2
  1241. data/spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-ShutdownInProgress.yml +4 -2
  1242. data/spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-network.yml +6 -4
  1243. data/spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-timeout.yml +6 -4
  1244. data/spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-InterruptedAtShutdown.yml +4 -2
  1245. data/spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-InterruptedDueToReplStateChange.yml +4 -2
  1246. data/spec/spec_tests/data/sdam/errors/{stale-generation-beforeHandshakeCompletes-NotMaster.yml → stale-generation-beforeHandshakeCompletes-LegacyNotPrimary.yml} +8 -6
  1247. data/spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-NotPrimaryNoSecondaryOk.yml +91 -0
  1248. data/spec/spec_tests/data/sdam/errors/{stale-generation-beforeHandshakeCompletes-NotMasterOrSecondary.yml → stale-generation-beforeHandshakeCompletes-NotPrimaryOrSecondary.yml} +7 -5
  1249. data/spec/spec_tests/data/sdam/errors/{stale-generation-beforeHandshakeCompletes-NotMasterNoSlaveOk.yml → stale-generation-beforeHandshakeCompletes-NotWritablePrimary.yml} +8 -6
  1250. data/spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-PrimarySteppedDown.yml +4 -2
  1251. data/spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-ShutdownInProgress.yml +4 -2
  1252. data/spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-network.yml +6 -4
  1253. data/spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-timeout.yml +6 -4
  1254. data/spec/spec_tests/data/sdam/errors/stale-topologyVersion-InterruptedAtShutdown.yml +2 -1
  1255. data/spec/spec_tests/data/sdam/errors/stale-topologyVersion-InterruptedDueToReplStateChange.yml +2 -1
  1256. data/spec/spec_tests/data/sdam/errors/stale-topologyVersion-LegacyNotPrimary.yml +65 -0
  1257. data/spec/spec_tests/data/sdam/errors/{stale-topologyVersion-NotMasterNoSlaveOk.yml → stale-topologyVersion-NotPrimaryNoSecondaryOk.yml} +7 -6
  1258. data/spec/spec_tests/data/sdam/errors/{stale-topologyVersion-NotMasterOrSecondary.yml → stale-topologyVersion-NotPrimaryOrSecondary.yml} +7 -6
  1259. data/spec/spec_tests/data/sdam/errors/{stale-topologyVersion-NotMaster.yml → stale-topologyVersion-NotWritablePrimary.yml} +7 -6
  1260. data/spec/spec_tests/data/sdam/errors/stale-topologyVersion-PrimarySteppedDown.yml +2 -1
  1261. data/spec/spec_tests/data/sdam/errors/stale-topologyVersion-ShutdownInProgress.yml +2 -1
  1262. data/spec/spec_tests/data/sdam/errors/write_errors_ignored.yml +42 -0
  1263. data/spec/spec_tests/data/sdam/load-balanced/discover_load_balancer.yml +25 -0
  1264. data/spec/spec_tests/data/sdam/rs/compatible.yml +4 -2
  1265. data/spec/spec_tests/data/sdam/rs/compatible_unknown.yml +2 -1
  1266. data/spec/spec_tests/data/sdam/rs/discover_arbiters.yml +2 -1
  1267. data/spec/spec_tests/data/sdam/rs/discover_arbiters_replicaset.yml +2 -1
  1268. data/spec/spec_tests/data/sdam/rs/discover_ghost.yml +2 -1
  1269. data/spec/spec_tests/data/sdam/rs/discover_ghost_replicaset.yml +2 -1
  1270. data/spec/spec_tests/data/sdam/rs/discover_hidden.yml +2 -1
  1271. data/spec/spec_tests/data/sdam/rs/discover_hidden_replicaset.yml +2 -1
  1272. data/spec/spec_tests/data/sdam/rs/discover_passives.yml +4 -2
  1273. data/spec/spec_tests/data/sdam/rs/discover_passives_replicaset.yml +4 -2
  1274. data/spec/spec_tests/data/sdam/rs/discover_primary.yml +2 -1
  1275. data/spec/spec_tests/data/sdam/rs/discover_primary_replicaset.yml +2 -1
  1276. data/spec/spec_tests/data/sdam/rs/discover_rsother.yml +2 -1
  1277. data/spec/spec_tests/data/sdam/rs/discover_rsother_replicaset.yml +4 -2
  1278. data/spec/spec_tests/data/sdam/rs/discover_secondary.yml +2 -1
  1279. data/spec/spec_tests/data/sdam/rs/discover_secondary_replicaset.yml +2 -1
  1280. data/spec/spec_tests/data/sdam/rs/discovery.yml +8 -4
  1281. data/spec/spec_tests/data/sdam/rs/equal_electionids.yml +4 -2
  1282. data/spec/spec_tests/data/sdam/rs/hosts_differ_from_seeds.yml +2 -1
  1283. data/spec/spec_tests/data/sdam/rs/incompatible_arbiter.yml +3 -1
  1284. data/spec/spec_tests/data/sdam/rs/incompatible_ghost.yml +3 -1
  1285. data/spec/spec_tests/data/sdam/rs/incompatible_other.yml +3 -1
  1286. data/spec/spec_tests/data/sdam/rs/ls_timeout.yml +12 -6
  1287. data/spec/spec_tests/data/sdam/rs/member_reconfig.yml +4 -2
  1288. data/spec/spec_tests/data/sdam/rs/member_standalone.yml +4 -2
  1289. data/spec/spec_tests/data/sdam/rs/new_primary.yml +4 -2
  1290. data/spec/spec_tests/data/sdam/rs/new_primary_new_electionid.yml +6 -3
  1291. data/spec/spec_tests/data/sdam/rs/new_primary_new_setversion.yml +6 -3
  1292. data/spec/spec_tests/data/sdam/rs/new_primary_wrong_set_name.yml +4 -2
  1293. data/spec/spec_tests/data/sdam/rs/non_rs_member.yml +1 -0
  1294. data/spec/spec_tests/data/sdam/rs/normalize_case.yml +2 -1
  1295. data/spec/spec_tests/data/sdam/rs/normalize_case_me.yml +4 -2
  1296. data/spec/spec_tests/data/sdam/rs/null_election_id.yml +8 -4
  1297. data/spec/spec_tests/data/sdam/rs/primary_becomes_ghost.yml +4 -2
  1298. data/spec/spec_tests/data/sdam/rs/primary_becomes_mongos.yml +4 -2
  1299. data/spec/spec_tests/data/sdam/rs/primary_becomes_standalone.yml +2 -1
  1300. data/spec/spec_tests/data/sdam/rs/primary_changes_set_name.yml +4 -2
  1301. data/spec/spec_tests/data/sdam/rs/primary_disconnect.yml +2 -1
  1302. data/spec/spec_tests/data/sdam/rs/primary_disconnect_electionid.yml +10 -5
  1303. data/spec/spec_tests/data/sdam/rs/primary_disconnect_setversion.yml +10 -5
  1304. data/spec/spec_tests/data/sdam/rs/primary_hint_from_secondary_with_mismatched_me.yml +4 -2
  1305. data/spec/spec_tests/data/sdam/rs/primary_mismatched_me.yml +2 -1
  1306. data/spec/spec_tests/data/sdam/rs/primary_mismatched_me_not_removed.yml +5 -3
  1307. data/spec/spec_tests/data/sdam/rs/primary_reports_new_member.yml +8 -4
  1308. data/spec/spec_tests/data/sdam/rs/primary_to_no_primary_mismatched_me.yml +4 -2
  1309. data/spec/spec_tests/data/sdam/rs/primary_wrong_set_name.yml +2 -1
  1310. data/spec/spec_tests/data/sdam/rs/repeated.yml +9 -5
  1311. data/spec/spec_tests/data/sdam/rs/replicaset_rsnp.yml +2 -1
  1312. data/spec/spec_tests/data/sdam/rs/response_from_removed.yml +4 -2
  1313. data/spec/spec_tests/data/sdam/rs/sec_not_auth.yml +4 -2
  1314. data/spec/spec_tests/data/sdam/rs/secondary_ignore_ok_0.yml +4 -2
  1315. data/spec/spec_tests/data/sdam/rs/secondary_mismatched_me.yml +2 -1
  1316. data/spec/spec_tests/data/sdam/rs/secondary_wrong_set_name.yml +2 -1
  1317. data/spec/spec_tests/data/sdam/rs/secondary_wrong_set_name_with_primary.yml +4 -2
  1318. data/spec/spec_tests/data/sdam/rs/setversion_without_electionid.yml +4 -2
  1319. data/spec/spec_tests/data/sdam/rs/stepdown_change_set_name.yml +4 -2
  1320. data/spec/spec_tests/data/sdam/rs/too_new.yml +4 -2
  1321. data/spec/spec_tests/data/sdam/rs/too_old.yml +4 -2
  1322. data/spec/spec_tests/data/sdam/rs/topology_version_equal.yml +4 -2
  1323. data/spec/spec_tests/data/sdam/rs/topology_version_greater.yml +10 -5
  1324. data/spec/spec_tests/data/sdam/rs/topology_version_less.yml +4 -2
  1325. data/spec/spec_tests/data/sdam/rs/unexpected_mongos.yml +2 -1
  1326. data/spec/spec_tests/data/sdam/rs/use_setversion_without_electionid.yml +6 -3
  1327. data/spec/spec_tests/data/sdam/rs/wrong_set_name.yml +2 -1
  1328. data/spec/spec_tests/data/sdam/sharded/compatible.yml +4 -2
  1329. data/spec/spec_tests/data/sdam/sharded/discover_single_mongos.yml +2 -1
  1330. data/spec/spec_tests/data/sdam/sharded/ls_timeout_mongos.yml +9 -5
  1331. data/spec/spec_tests/data/sdam/sharded/mongos_disconnect.yml +6 -3
  1332. data/spec/spec_tests/data/sdam/sharded/multiple_mongoses.yml +4 -2
  1333. data/spec/spec_tests/data/sdam/sharded/non_mongos_removed.yml +4 -2
  1334. data/spec/spec_tests/data/sdam/sharded/too_new.yml +4 -2
  1335. data/spec/spec_tests/data/sdam/sharded/too_old.yml +4 -2
  1336. data/spec/spec_tests/data/sdam/single/compatible.yml +2 -1
  1337. data/spec/spec_tests/data/sdam/single/direct_connection_external_ip.yml +2 -1
  1338. data/spec/spec_tests/data/sdam/single/direct_connection_mongos.yml +2 -1
  1339. data/spec/spec_tests/data/sdam/single/direct_connection_replicaset.yml +2 -1
  1340. data/spec/spec_tests/data/sdam/single/direct_connection_rsarbiter.yml +2 -1
  1341. data/spec/spec_tests/data/sdam/single/direct_connection_rsprimary.yml +2 -1
  1342. data/spec/spec_tests/data/sdam/single/direct_connection_rssecondary.yml +2 -1
  1343. data/spec/spec_tests/data/sdam/single/direct_connection_standalone.yml +2 -1
  1344. data/spec/spec_tests/data/sdam/single/direct_connection_wrong_set_name.yml +4 -2
  1345. data/spec/spec_tests/data/sdam/single/discover_standalone.yml +2 -1
  1346. data/spec/spec_tests/data/sdam/single/ls_timeout_standalone.yml +2 -1
  1347. data/spec/spec_tests/data/sdam/single/not_ok_response.yml +5 -3
  1348. data/spec/spec_tests/data/sdam/single/standalone_removed.yml +2 -1
  1349. data/spec/spec_tests/data/sdam/single/{direct_connection_slave.yml → standalone_using_legacy_hello.yml} +3 -3
  1350. data/spec/spec_tests/data/sdam/single/too_new.yml +2 -1
  1351. data/spec/spec_tests/data/sdam/single/too_old.yml +2 -1
  1352. data/spec/spec_tests/data/sdam/single/too_old_then_upgraded.yml +4 -2
  1353. data/spec/spec_tests/data/sdam_integration/cancel-server-check.yml +1 -1
  1354. data/spec/spec_tests/data/sdam_integration/connectTimeoutMS.yml +2 -2
  1355. data/spec/spec_tests/data/sdam_integration/find-network-error.yml +2 -0
  1356. data/spec/spec_tests/data/sdam_integration/find-shutdown-error.yml +2 -0
  1357. data/spec/spec_tests/data/sdam_integration/{isMaster-command-error.yml → hello-command-error.yml} +20 -36
  1358. data/spec/spec_tests/data/sdam_integration/{isMaster-network-error.yml → hello-network-error.yml} +14 -28
  1359. data/spec/spec_tests/data/sdam_integration/{isMaster-timeout.yml → hello-timeout.yml} +15 -25
  1360. data/spec/spec_tests/data/sdam_integration/insert-network-error.yml +2 -0
  1361. data/spec/spec_tests/data/sdam_integration/insert-shutdown-error.yml +2 -0
  1362. data/spec/spec_tests/data/sdam_integration/rediscover-quickly-after-step-down.yml +14 -3
  1363. data/spec/spec_tests/data/sdam_monitoring/discovered_standalone.yml +1 -1
  1364. data/spec/spec_tests/data/sdam_monitoring/load_balancer.yml +65 -0
  1365. data/spec/spec_tests/data/sdam_monitoring/replica_set_with_no_primary.yml +2 -1
  1366. data/spec/spec_tests/data/sdam_monitoring/replica_set_with_primary.yml +2 -1
  1367. data/spec/spec_tests/data/sdam_monitoring/replica_set_with_removal.yml +3 -2
  1368. data/spec/spec_tests/data/sdam_monitoring/required_replica_set.yml +2 -1
  1369. data/spec/spec_tests/data/sdam_monitoring/standalone.yml +1 -1
  1370. data/spec/spec_tests/data/sdam_monitoring/standalone_suppress_equal_description_changes.yml +2 -2
  1371. data/spec/spec_tests/data/seed_list_discovery/load-balanced/loadBalanced-directConnection.yml +13 -0
  1372. data/spec/spec_tests/data/seed_list_discovery/load-balanced/loadBalanced-no-results.yml +5 -0
  1373. data/spec/spec_tests/data/seed_list_discovery/load-balanced/loadBalanced-replicaSet-errors.yml +6 -0
  1374. data/spec/spec_tests/data/seed_list_discovery/load-balanced/loadBalanced-true-multiple-hosts.yml +5 -0
  1375. data/spec/spec_tests/data/seed_list_discovery/load-balanced/loadBalanced-true-txt.yml +10 -0
  1376. data/spec/spec_tests/data/seed_list_discovery/load-balanced/srvMaxHosts-conflicts_with_loadBalanced-true-txt.yml +5 -0
  1377. data/spec/spec_tests/data/seed_list_discovery/load-balanced/srvMaxHosts-conflicts_with_loadBalanced-true.yml +5 -0
  1378. data/spec/spec_tests/data/seed_list_discovery/load-balanced/srvMaxHosts-zero-txt.yml +10 -0
  1379. data/spec/spec_tests/data/seed_list_discovery/load-balanced/srvMaxHosts-zero.yml +10 -0
  1380. data/spec/spec_tests/data/{dns_seedlist_discovery → seed_list_discovery/replica-set}/direct-connection-false.yml +0 -0
  1381. data/spec/spec_tests/data/{dns_seedlist_discovery → seed_list_discovery/replica-set}/direct-connection-true.yml +0 -0
  1382. data/spec/spec_tests/data/seed_list_discovery/replica-set/encoded-userinfo-and-db.yml +15 -0
  1383. data/spec/spec_tests/data/seed_list_discovery/replica-set/loadBalanced-false-txt.yml +10 -0
  1384. data/spec/spec_tests/data/{dns_seedlist_discovery → seed_list_discovery/replica-set}/longer-parent-in-return.yml +0 -0
  1385. data/spec/spec_tests/data/{dns_seedlist_discovery → seed_list_discovery/replica-set}/misformatted-option.yml +0 -0
  1386. data/spec/spec_tests/data/{dns_seedlist_discovery → seed_list_discovery/replica-set}/no-results.yml +0 -0
  1387. data/spec/spec_tests/data/{dns_seedlist_discovery → seed_list_discovery/replica-set}/not-enough-parts.yml +0 -0
  1388. data/spec/spec_tests/data/{dns_seedlist_discovery → seed_list_discovery/replica-set}/one-result-default-port.yml +0 -0
  1389. data/spec/spec_tests/data/{dns_seedlist_discovery → seed_list_discovery/replica-set}/one-txt-record-multiple-strings.yml +0 -0
  1390. data/spec/spec_tests/data/{dns_seedlist_discovery → seed_list_discovery/replica-set}/one-txt-record.yml +0 -0
  1391. data/spec/spec_tests/data/{dns_seedlist_discovery → seed_list_discovery/replica-set}/parent-part-mismatch1.yml +0 -0
  1392. data/spec/spec_tests/data/{dns_seedlist_discovery → seed_list_discovery/replica-set}/parent-part-mismatch2.yml +0 -0
  1393. data/spec/spec_tests/data/{dns_seedlist_discovery → seed_list_discovery/replica-set}/parent-part-mismatch3.yml +0 -0
  1394. data/spec/spec_tests/data/{dns_seedlist_discovery → seed_list_discovery/replica-set}/parent-part-mismatch4.yml +0 -0
  1395. data/spec/spec_tests/data/{dns_seedlist_discovery → seed_list_discovery/replica-set}/parent-part-mismatch5.yml +0 -0
  1396. data/spec/spec_tests/data/{dns_seedlist_discovery → seed_list_discovery/replica-set}/returned-parent-too-short.yml +0 -0
  1397. data/spec/spec_tests/data/{dns_seedlist_discovery → seed_list_discovery/replica-set}/returned-parent-wrong.yml +0 -0
  1398. data/spec/spec_tests/data/seed_list_discovery/replica-set/srv-service-name.yml +11 -0
  1399. data/spec/spec_tests/data/seed_list_discovery/replica-set/srvMaxHosts-conflicts_with_replicaSet-txt.yml +5 -0
  1400. data/spec/spec_tests/data/seed_list_discovery/replica-set/srvMaxHosts-conflicts_with_replicaSet.yml +5 -0
  1401. data/spec/spec_tests/data/seed_list_discovery/replica-set/srvMaxHosts-equal_to_srv_records.yml +16 -0
  1402. data/spec/spec_tests/data/seed_list_discovery/replica-set/srvMaxHosts-greater_than_srv_records.yml +15 -0
  1403. data/spec/spec_tests/data/seed_list_discovery/replica-set/srvMaxHosts-less_than_srv_records.yml +15 -0
  1404. data/spec/spec_tests/data/seed_list_discovery/replica-set/srvMaxHosts-zero-txt.yml +15 -0
  1405. data/spec/spec_tests/data/seed_list_discovery/replica-set/srvMaxHosts-zero.yml +15 -0
  1406. data/spec/spec_tests/data/{dns_seedlist_discovery → seed_list_discovery/replica-set}/two-results-default-port.yml +0 -0
  1407. data/spec/spec_tests/data/{dns_seedlist_discovery → seed_list_discovery/replica-set}/two-results-nonstandard-port.yml +0 -0
  1408. data/spec/spec_tests/data/{dns_seedlist_discovery → seed_list_discovery/replica-set}/two-txt-records.yml +0 -0
  1409. data/spec/spec_tests/data/{dns_seedlist_discovery → seed_list_discovery/replica-set}/txt-record-not-allowed-option.yml +0 -0
  1410. data/spec/spec_tests/data/{dns_seedlist_discovery → seed_list_discovery/replica-set}/txt-record-with-overridden-ssl-option.yml +0 -0
  1411. data/spec/spec_tests/data/{dns_seedlist_discovery → seed_list_discovery/replica-set}/txt-record-with-overridden-uri-option.yml +0 -0
  1412. data/spec/spec_tests/data/{dns_seedlist_discovery → seed_list_discovery/replica-set}/txt-record-with-unallowed-option.yml +0 -0
  1413. data/spec/spec_tests/data/seed_list_discovery/replica-set/uri-with-admin-database.yml +13 -0
  1414. data/spec/spec_tests/data/seed_list_discovery/replica-set/uri-with-auth.yml +12 -0
  1415. data/spec/spec_tests/data/{dns_seedlist_discovery → seed_list_discovery/replica-set}/uri-with-port.yml +0 -0
  1416. data/spec/spec_tests/data/{dns_seedlist_discovery → seed_list_discovery/replica-set}/uri-with-two-hosts.yml +0 -0
  1417. data/spec/spec_tests/data/seed_list_discovery/sharded/srvMaxHosts-equal_to_srv_records.yml +13 -0
  1418. data/spec/spec_tests/data/seed_list_discovery/sharded/srvMaxHosts-greater_than_srv_records.yml +12 -0
  1419. data/spec/spec_tests/data/seed_list_discovery/sharded/srvMaxHosts-less_than_srv_records.yml +10 -0
  1420. data/spec/spec_tests/data/seed_list_discovery/sharded/srvMaxHosts-zero.yml +11 -0
  1421. data/spec/spec_tests/data/server_selection/Unknown/read/ghost.yml +11 -0
  1422. data/spec/spec_tests/data/server_selection/Unknown/write/ghost.yml +11 -0
  1423. data/spec/spec_tests/data/sessions_unified/driver-sessions-server-support.yml +123 -0
  1424. data/spec/spec_tests/data/sessions_unified/snapshot-sessions-not-supported-client-error.yml +75 -0
  1425. data/spec/spec_tests/data/sessions_unified/snapshot-sessions-not-supported-server-error.yml +102 -0
  1426. data/spec/spec_tests/data/sessions_unified/snapshot-sessions-unsupported-ops.yml +258 -0
  1427. data/spec/spec_tests/data/sessions_unified/snapshot-sessions.yml +482 -0
  1428. data/spec/spec_tests/data/transactions/error-labels.yml +4 -1
  1429. data/spec/spec_tests/data/transactions/errors-client.yml +8 -9
  1430. data/spec/spec_tests/data/transactions/mongos-pin-auto.yml +3 -0
  1431. data/spec/spec_tests/data/transactions/mongos-recovery-token.yml +3 -1
  1432. data/spec/spec_tests/data/transactions/pin-mongos.yml +6 -3
  1433. data/spec/spec_tests/data/transactions/retryable-abort.yml +7 -7
  1434. data/spec/spec_tests/data/transactions/retryable-commit.yml +7 -7
  1435. data/spec/spec_tests/data/transactions_unified/do-not-retry-read-in-transaction.yml +64 -0
  1436. data/spec/spec_tests/data/transactions_unified/mongos-unpin.yml +172 -0
  1437. data/spec/spec_tests/data/transactions_unified/retryable-abort-handshake.yml +118 -0
  1438. data/spec/spec_tests/data/transactions_unified/retryable-commit-handshake.yml +118 -0
  1439. data/spec/spec_tests/data/unified/invalid/expectedEventsForClient-ignoreExtraEvents-type.yml +15 -0
  1440. data/spec/spec_tests/data/unified/valid-fail/operation-failure.yml +31 -0
  1441. data/spec/spec_tests/data/unified/valid-fail/operation-unsupported.yml +13 -0
  1442. data/spec/spec_tests/data/unified/valid-pass/expectedEventsForClient-ignoreExtraEvents.yml +78 -0
  1443. data/spec/spec_tests/data/unified/valid-pass/poc-change-streams.yml +223 -0
  1444. data/spec/spec_tests/data/unified/valid-pass/poc-command-monitoring.yml +102 -0
  1445. data/spec/spec_tests/data/unified/valid-pass/poc-crud.yml +184 -0
  1446. data/spec/spec_tests/data/unified/valid-pass/poc-gridfs.yml +155 -0
  1447. data/spec/spec_tests/data/unified/valid-pass/poc-retryable-reads.yml +193 -0
  1448. data/spec/spec_tests/data/unified/valid-pass/poc-retryable-writes.yml +210 -0
  1449. data/spec/spec_tests/data/unified/valid-pass/poc-sessions.yml +215 -0
  1450. data/spec/spec_tests/data/unified/valid-pass/poc-transactions-convenient-api.yml +235 -0
  1451. data/spec/spec_tests/data/unified/valid-pass/poc-transactions-mongos-pin-auto.yml +169 -0
  1452. data/spec/spec_tests/data/unified/valid-pass/poc-transactions.yml +171 -0
  1453. data/spec/spec_tests/data/uri_options/compression-options.yml +1 -1
  1454. data/spec/spec_tests/data/uri_options/connection-options.yml +60 -0
  1455. data/spec/spec_tests/data/uri_options/srv-options.yml +96 -0
  1456. data/spec/spec_tests/data/versioned_api/crud-api-version-1-strict.yml +419 -0
  1457. data/spec/spec_tests/data/versioned_api/crud-api-version-1.yml +413 -0
  1458. data/spec/spec_tests/data/versioned_api/runcommand-helper-no-api-version-declared.yml +75 -0
  1459. data/spec/spec_tests/data/versioned_api/test-commands-deprecation-errors.yml +47 -0
  1460. data/spec/spec_tests/data/versioned_api/test-commands-strict-mode.yml +46 -0
  1461. data/spec/spec_tests/data/versioned_api/transaction-handling.yml +128 -0
  1462. data/spec/spec_tests/gridfs_spec.rb +3 -0
  1463. data/spec/spec_tests/gridfs_unified_spec.rb +13 -0
  1464. data/spec/spec_tests/load_balancers_spec.rb +15 -0
  1465. data/spec/spec_tests/max_staleness_spec.rb +3 -0
  1466. data/spec/spec_tests/read_write_concern_connection_string_spec.rb +3 -0
  1467. data/spec/spec_tests/read_write_concern_document_spec.rb +3 -0
  1468. data/spec/spec_tests/read_write_concern_operaton_spec.rb +3 -0
  1469. data/spec/spec_tests/retryable_reads_spec.rb +9 -3
  1470. data/spec/spec_tests/retryable_reads_unified_spec.rb +22 -0
  1471. data/spec/spec_tests/retryable_writes_spec.rb +14 -8
  1472. data/spec/spec_tests/retryable_writes_unified_spec.rb +21 -0
  1473. data/spec/spec_tests/sdam_integration_spec.rb +4 -1
  1474. data/spec/spec_tests/sdam_monitoring_spec.rb +14 -6
  1475. data/spec/spec_tests/sdam_spec.rb +5 -2
  1476. data/spec/spec_tests/seed_list_discovery_spec.rb +127 -0
  1477. data/spec/spec_tests/server_selection_rtt_spec.rb +3 -0
  1478. data/spec/spec_tests/server_selection_spec.rb +3 -0
  1479. data/spec/spec_tests/sessions_unified_spec.rb +13 -0
  1480. data/spec/spec_tests/transactions_api_spec.rb +3 -0
  1481. data/spec/spec_tests/transactions_spec.rb +3 -0
  1482. data/spec/spec_tests/transactions_unified_spec.rb +13 -0
  1483. data/spec/spec_tests/unified_spec.rb +23 -0
  1484. data/spec/spec_tests/uri_options_spec.rb +21 -2
  1485. data/spec/spec_tests/versioned_api_spec.rb +13 -0
  1486. data/spec/stress/cleanup_spec.rb +3 -0
  1487. data/spec/stress/connection_pool_stress_spec.rb +3 -0
  1488. data/spec/stress/connection_pool_timing_spec.rb +6 -2
  1489. data/spec/stress/fork_reconnect_stress_spec.rb +10 -10
  1490. data/spec/stress/push_monitor_close_spec.rb +44 -0
  1491. data/spec/support/authorization.rb +4 -1
  1492. data/spec/support/aws_utils/base.rb +3 -0
  1493. data/spec/support/aws_utils/inspector.rb +3 -0
  1494. data/spec/support/aws_utils/orchestrator.rb +3 -0
  1495. data/spec/support/aws_utils/provisioner.rb +3 -0
  1496. data/spec/support/aws_utils.rb +3 -0
  1497. data/spec/support/background_thread_registry.rb +7 -14
  1498. data/spec/support/certificates/README.md +3 -2
  1499. data/spec/support/certificates/atlas-ocsp-ca.crt +100 -25
  1500. data/spec/support/certificates/atlas-ocsp.crt +151 -40
  1501. data/spec/support/certificates/retrieve-atlas-cert +38 -0
  1502. data/spec/support/client_registry.rb +12 -5
  1503. data/spec/support/client_registry_macros.rb +7 -4
  1504. data/spec/support/cluster_tools.rb +5 -2
  1505. data/spec/support/common_shortcuts.rb +61 -7
  1506. data/spec/support/constraints.rb +3 -0
  1507. data/spec/support/crypt/corpus/corpus-encrypted.json +9515 -0
  1508. data/spec/support/crypt/corpus/corpus-key-aws.json +32 -32
  1509. data/spec/support/crypt/corpus/corpus-key-azure.json +33 -0
  1510. data/spec/support/crypt/corpus/corpus-key-gcp.json +35 -0
  1511. data/spec/support/crypt/corpus/corpus-key-kmip.json +32 -0
  1512. data/spec/support/crypt/corpus/corpus-key-local.json +30 -30
  1513. data/spec/support/crypt/corpus/corpus-schema.json +4399 -121
  1514. data/spec/support/crypt/corpus/corpus.json +4999 -37
  1515. data/spec/support/crypt/data_keys/key_document_azure.json +33 -0
  1516. data/spec/support/crypt/data_keys/key_document_gcp.json +37 -0
  1517. data/spec/support/crypt/data_keys/key_document_kmip.json +32 -0
  1518. data/spec/support/crypt/encryptedFields.json +33 -0
  1519. data/spec/support/crypt/keys/key1-document.json +30 -0
  1520. data/spec/support/crypt/schema_maps/schema_map_azure.json +17 -0
  1521. data/spec/support/crypt/schema_maps/schema_map_azure_key_alt_names.json +12 -0
  1522. data/spec/support/crypt/schema_maps/schema_map_gcp.json +17 -0
  1523. data/spec/support/crypt/schema_maps/schema_map_gcp_key_alt_names.json +12 -0
  1524. data/spec/support/crypt/schema_maps/schema_map_kmip.json +17 -0
  1525. data/spec/support/crypt/schema_maps/schema_map_kmip_key_alt_names.json +12 -0
  1526. data/spec/support/crypt.rb +261 -13
  1527. data/spec/support/dns.rb +3 -0
  1528. data/spec/support/json_ext_formatter.rb +3 -0
  1529. data/spec/support/keyword_struct.rb +3 -0
  1530. data/spec/support/local_resource_registry.rb +3 -0
  1531. data/spec/support/macros.rb +28 -0
  1532. data/spec/support/matchers.rb +17 -1
  1533. data/spec/support/mongos_macros.rb +17 -0
  1534. data/spec/support/monitoring_ext.rb +3 -0
  1535. data/spec/support/primary_socket.rb +3 -0
  1536. data/spec/support/sdam_formatter_integration.rb +3 -0
  1537. data/spec/{mongo/server/app_metadata_shared.rb → support/shared/app_metadata.rb} +38 -7
  1538. data/spec/support/shared/auth_context.rb +16 -0
  1539. data/spec/support/shared/protocol.rb +3 -0
  1540. data/spec/support/shared/scram_conversation.rb +5 -1
  1541. data/spec/support/shared/server_selector.rb +6 -3
  1542. data/spec/support/shared/session.rb +20 -11
  1543. data/spec/support/spec_config.rb +189 -24
  1544. data/spec/support/spec_setup.rb +51 -38
  1545. data/spec/support/using_hash.rb +31 -0
  1546. data/spec/support/utils.rb +125 -9
  1547. data.tar.gz.sig +0 -0
  1548. metadata +1751 -1188
  1549. metadata.gz.sig +0 -0
  1550. data/lib/mongo/collection/view/builder/find_command.rb +0 -170
  1551. data/lib/mongo/collection/view/builder/op_query.rb +0 -91
  1552. data/lib/mongo/cursor/builder/get_more_command.rb +0 -77
  1553. data/lib/mongo/cursor/builder/kill_cursors_command.rb +0 -108
  1554. data/lib/mongo/cursor/builder/op_get_more.rb +0 -61
  1555. data/lib/mongo/cursor/builder/op_kill_cursors.rb +0 -103
  1556. data/lib/mongo/operation/insert/legacy.rb +0 -65
  1557. data/lib/mongo/operation/shared/collections_info_or_list_collections.rb +0 -58
  1558. data/lib/mongo/operation/shared/op_msg_or_list_indexes_command.rb +0 -47
  1559. data/lib/mongo/operation/update/legacy/result.rb +0 -109
  1560. data/lib/mongo/operation/update/legacy.rb +0 -65
  1561. data/lib/mongo/server/context.rb +0 -69
  1562. data/spec/mongo/cursor/builder/op_kill_cursors_spec.rb +0 -61
  1563. data/spec/mongo/dbref_spec.rb +0 -149
  1564. data/spec/mongo/operation/kill_cursors_spec.rb +0 -41
  1565. data/spec/spec_tests/change_streams_spec.rb +0 -90
  1566. data/spec/spec_tests/command_monitoring_spec.rb +0 -66
  1567. data/spec/spec_tests/data/change_streams/change-streams-errors.yml +0 -101
  1568. data/spec/spec_tests/data/change_streams/change-streams-resume-errorLabels.yml +0 -1105
  1569. data/spec/spec_tests/data/change_streams/change-streams-resume-whitelist.yml +0 -1173
  1570. data/spec/spec_tests/data/change_streams/change-streams.yml +0 -536
  1571. data/spec/spec_tests/data/command_monitoring/bulkWrite.yml +0 -49
  1572. data/spec/spec_tests/data/command_monitoring/command.yml +0 -61
  1573. data/spec/spec_tests/data/command_monitoring/deleteMany.yml +0 -55
  1574. data/spec/spec_tests/data/command_monitoring/deleteOne.yml +0 -55
  1575. data/spec/spec_tests/data/command_monitoring/find.yml +0 -266
  1576. data/spec/spec_tests/data/command_monitoring/insertMany.yml +0 -75
  1577. data/spec/spec_tests/data/command_monitoring/insertOne.yml +0 -51
  1578. data/spec/spec_tests/data/command_monitoring/unacknowledgedBulkWrite.yml +0 -34
  1579. data/spec/spec_tests/data/command_monitoring/updateMany.yml +0 -65
  1580. data/spec/spec_tests/data/command_monitoring/updateOne.yml +0 -90
  1581. data/spec/spec_tests/data/crud_v2/aggregate-merge.yml +0 -103
  1582. data/spec/spec_tests/data/crud_v2/aggregate-out-readConcern.yml +0 -110
  1583. data/spec/spec_tests/data/crud_v2/bulkWrite-arrayFilters.yml +0 -103
  1584. data/spec/spec_tests/data/crud_v2/bulkWrite-delete-hint-clientError.yml +0 -63
  1585. data/spec/spec_tests/data/crud_v2/bulkWrite-delete-hint-serverError.yml +0 -92
  1586. data/spec/spec_tests/data/crud_v2/bulkWrite-delete-hint.yml +0 -103
  1587. data/spec/spec_tests/data/crud_v2/bulkWrite-update-hint-clientError.yml +0 -90
  1588. data/spec/spec_tests/data/crud_v2/bulkWrite-update-hint-serverError.yml +0 -147
  1589. data/spec/spec_tests/data/crud_v2/bulkWrite-update-hint.yml +0 -164
  1590. data/spec/spec_tests/data/crud_v2/db-aggregate.yml +0 -38
  1591. data/spec/spec_tests/data/crud_v2/deleteMany-hint-clientError.yml +0 -43
  1592. data/spec/spec_tests/data/crud_v2/deleteMany-hint-serverError.yml +0 -62
  1593. data/spec/spec_tests/data/crud_v2/deleteMany-hint.yml +0 -58
  1594. data/spec/spec_tests/data/crud_v2/deleteOne-hint-clientError.yml +0 -41
  1595. data/spec/spec_tests/data/crud_v2/deleteOne-hint-serverError.yml +0 -60
  1596. data/spec/spec_tests/data/crud_v2/deleteOne-hint.yml +0 -57
  1597. data/spec/spec_tests/data/crud_v2/find-allowdiskuse-clientError.yml +0 -28
  1598. data/spec/spec_tests/data/crud_v2/find-allowdiskuse-serverError.yml +0 -44
  1599. data/spec/spec_tests/data/crud_v2/find-allowdiskuse.yml +0 -50
  1600. data/spec/spec_tests/data/crud_v2/findOneAndDelete-hint-clientError.yml +0 -45
  1601. data/spec/spec_tests/data/crud_v2/findOneAndDelete-hint-serverError.yml +0 -60
  1602. data/spec/spec_tests/data/crud_v2/findOneAndDelete-hint.yml +0 -56
  1603. data/spec/spec_tests/data/crud_v2/findOneAndReplace-hint-clientError.yml +0 -40
  1604. data/spec/spec_tests/data/crud_v2/findOneAndReplace-hint-serverError.yml +0 -59
  1605. data/spec/spec_tests/data/crud_v2/findOneAndReplace-hint.yml +0 -55
  1606. data/spec/spec_tests/data/crud_v2/findOneAndUpdate-hint-clientError.yml +0 -40
  1607. data/spec/spec_tests/data/crud_v2/findOneAndUpdate-hint-serverError.yml +0 -58
  1608. data/spec/spec_tests/data/crud_v2/findOneAndUpdate-hint.yml +0 -55
  1609. data/spec/spec_tests/data/crud_v2/replaceOne-hint.yml +0 -61
  1610. data/spec/spec_tests/data/crud_v2/unacknowledged-bulkWrite-delete-hint-clientError.yml +0 -60
  1611. data/spec/spec_tests/data/crud_v2/unacknowledged-bulkWrite-update-hint-clientError.yml +0 -88
  1612. data/spec/spec_tests/data/crud_v2/unacknowledged-deleteMany-hint-clientError.yml +0 -40
  1613. data/spec/spec_tests/data/crud_v2/unacknowledged-deleteOne-hint-clientError.yml +0 -38
  1614. data/spec/spec_tests/data/crud_v2/unacknowledged-findOneAndDelete-hint-clientError.yml +0 -42
  1615. data/spec/spec_tests/data/crud_v2/unacknowledged-findOneAndReplace-hint-clientError.yml +0 -40
  1616. data/spec/spec_tests/data/crud_v2/unacknowledged-findOneAndUpdate-hint-clientError.yml +0 -40
  1617. data/spec/spec_tests/data/crud_v2/unacknowledged-replaceOne-hint-clientError.yml +0 -40
  1618. data/spec/spec_tests/data/crud_v2/unacknowledged-updateMany-hint-clientError.yml +0 -43
  1619. data/spec/spec_tests/data/crud_v2/unacknowledged-updateOne-hint-clientError.yml +0 -40
  1620. data/spec/spec_tests/data/crud_v2/updateMany-hint-clientError.yml +0 -45
  1621. data/spec/spec_tests/data/crud_v2/updateMany-hint-serverError.yml +0 -66
  1622. data/spec/spec_tests/data/crud_v2/updateMany-hint.yml +0 -65
  1623. data/spec/spec_tests/data/crud_v2/updateOne-hint-clientError.yml +0 -43
  1624. data/spec/spec_tests/data/crud_v2/updateOne-hint-serverError.yml +0 -62
  1625. data/spec/spec_tests/data/crud_v2/updateOne-hint.yml +0 -61
  1626. data/spec/spec_tests/data/crud_v2/updateWithPipelines.yml +0 -157
  1627. data/spec/spec_tests/dns_seedlist_discovery_spec.rb +0 -76
  1628. data/spec/support/cluster_config.rb +0 -207
  1629. data/spec/support/crypt/corpus/corpus_encrypted.json +0 -4152
  1630. data/spec/support/event_subscriber.rb +0 -212
  1631. data/spec/support/session_registry.rb +0 -52
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mongo
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.14.0
4
+ version: 2.18.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tyler Brock
@@ -12,26 +12,27 @@ bindir: bin
12
12
  cert_chain:
13
13
  - |
14
14
  -----BEGIN CERTIFICATE-----
15
- MIIDRDCCAiygAwIBAgIBATANBgkqhkiG9w0BAQsFADAmMSQwIgYDVQQDDBtkcml2
16
- ZXItcnVieS9EQz0xMGdlbi9EQz1jb20wHhcNMjAwMTIzMTkzNjAxWhcNMjEwMTIy
17
- MTkzNjAxWjAmMSQwIgYDVQQDDBtkcml2ZXItcnVieS9EQz0xMGdlbi9EQz1jb20w
18
- ggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDRXUgGvH0ZtWwDPc2umdHw
19
- B+INNm6jNTRp8PMyUKxPzxaxX2OiBQk9gLC3zsK9ZmlZu4lNfpHVSCEPoiP/fhPg
20
- Kyfq2xld3Qz0Pki5d5i0/r14343MTKiNiFulLlbbdlN0cXeEFNJHUycZnD2LOXwz
21
- egYGHOl14FI8t5visIWtqRnLXXIlDsBHzmeEZjUZRGSgjC0R3RT/I+Fk5yUhn1w4
22
- rqFyAiW+cjjzmT7mmqT0jV6fd0JFHbKnSgt9iPijKSimBgUOsorHwOTMlTzwsy0d
23
- ZT+al1RiT5zqlAJLxFHwmoYOxD/bSNtKsYl60ek0hK2mISBVy9BBmLvCgHDx5uSp
24
- AgMBAAGjfTB7MAkGA1UdEwQCMAAwCwYDVR0PBAQDAgSwMB0GA1UdDgQWBBRbd1mx
25
- fvSaVIwKI+tnEAYDW/B81zAgBgNVHREEGTAXgRVkcml2ZXItcnVieUAxMGdlbi5j
26
- b20wIAYDVR0SBBkwF4EVZHJpdmVyLXJ1YnlAMTBnZW4uY29tMA0GCSqGSIb3DQEB
27
- CwUAA4IBAQBfX4dwxG5PhtxES/LDEOaZIZXyaX6CKe367zhW+HxWbSOXMQJFkIQj
28
- m7tzT+sDFJXyiOv5cPtfpUam5pTiryzRw5HD6oxlPIt5vO15EJ69v++3m7shMLbw
29
- amZOajKXmu2ZGZfhOtj7bOTwmOj1AnWLKeOQIR3STvvfZCD+6dt1XenW7CdjCsxE
30
- ifervPjLFqFPsMOgaxikhgPK6bRtszrQhJSYlifKKzxbX1hYAsmGL7IxjubFSV5r
31
- gpvfPNWMwyBDlHaNS3GfO6cRRxBOvEG05GUCsvtTY4Bpe8yjE64wg1ymb47LMOnv
32
- Qb1lGORmf/opg45mluKUYl7pQNZHD0d3
15
+ MIIDfDCCAmSgAwIBAgIBATANBgkqhkiG9w0BAQUFADBCMRQwEgYDVQQDDAtkcml2
16
+ ZXItcnVieTEVMBMGCgmSJomT8ixkARkWBTEwZ2VuMRMwEQYKCZImiZPyLGQBGRYD
17
+ Y29tMB4XDTIyMDMzMDE5MTcwMloXDTIzMDMzMDE5MTcwMlowQjEUMBIGA1UEAwwL
18
+ ZHJpdmVyLXJ1YnkxFTATBgoJkiaJk/IsZAEZFgUxMGdlbjETMBEGCgmSJomT8ixk
19
+ ARkWA2NvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANFdSAa8fRm1
20
+ bAM9za6Z0fAH4g02bqM1NGnw8zJQrE/PFrFfY6IFCT2AsLfOwr1maVm7iU1+kdVI
21
+ IQ+iI/9+E+ArJ+rbGV3dDPQ+SLl3mLT+vXjfjcxMqI2IW6UuVtt2U3Rxd4QU0kdT
22
+ JxmcPYs5fDN6BgYc6XXgUjy3m+Kwha2pGctdciUOwEfOZ4RmNRlEZKCMLRHdFP8j
23
+ 4WTnJSGfXDiuoXICJb5yOPOZPuaapPSNXp93QkUdsqdKC32I+KMpKKYGBQ6yisfA
24
+ 5MyVPPCzLR1lP5qXVGJPnOqUAkvEUfCahg7EP9tI20qxiXrR6TSEraYhIFXL0EGY
25
+ u8KAcPHm5KkCAwEAAaN9MHswCQYDVR0TBAIwADALBgNVHQ8EBAMCBLAwHQYDVR0O
26
+ BBYEFFt3WbF+9JpUjAoj62cQBgNb8HzXMCAGA1UdEQQZMBeBFWRyaXZlci1ydWJ5
27
+ QDEwZ2VuLmNvbTAgBgNVHRIEGTAXgRVkcml2ZXItcnVieUAxMGdlbi5jb20wDQYJ
28
+ KoZIhvcNAQEFBQADggEBAM0s7jz2IGD8Ms035b1tMnbNP2CBPq3pen3KQj7IkGF7
29
+ x8LPDdOqUj4pUMLeefntX/PkSvwROo677TnWK6+GLayGm5xLHrZH3svybC6QtqTR
30
+ mVOLUoZ4TgUmtnMUa/ZvgrIsOeiCysjSf4WECuw7g+LE6jcpLepgYTLk2u1+5SgH
31
+ JVENj0BMkdeZIKkc2G97DSx3Zrmz7QWAaH+99XlajJbfcgvhDso+ffQkTBlOgLBg
32
+ +WyKQ+QTIdtDiyf2LQmxWnxt/W1CmScjdLS7/yXGkkB/D9Uy+sJD747O/B9P238Q
33
+ XnerrtyOu04RsWDvaZkCwSDVzoqfICh4CP1mlde73Ts=
33
34
  -----END CERTIFICATE-----
34
- date: 2020-12-01 00:00:00.000000000 Z
35
+ date: 2022-08-02 00:00:00.000000000 Z
35
36
  dependencies:
36
37
  - !ruby/object:Gem::Dependency
37
38
  name: bson
@@ -39,7 +40,7 @@ dependencies:
39
40
  requirements:
40
41
  - - ">="
41
42
  - !ruby/object:Gem::Version
42
- version: 4.8.2
43
+ version: 4.14.1
43
44
  - - "<"
44
45
  - !ruby/object:Gem::Version
45
46
  version: 5.0.0
@@ -49,7 +50,7 @@ dependencies:
49
50
  requirements:
50
51
  - - ">="
51
52
  - !ruby/object:Gem::Version
52
- version: 4.8.2
53
+ version: 4.14.1
53
54
  - - "<"
54
55
  - !ruby/object:Gem::Version
55
56
  version: 5.0.0
@@ -122,6 +123,7 @@ files:
122
123
  - lib/mongo/cluster/sdam_flow.rb
123
124
  - lib/mongo/cluster/topology.rb
124
125
  - lib/mongo/cluster/topology/base.rb
126
+ - lib/mongo/cluster/topology/load_balanced.rb
125
127
  - lib/mongo/cluster/topology/no_replica_set_options.rb
126
128
  - lib/mongo/cluster/topology/replica_set_no_primary.rb
127
129
  - lib/mongo/cluster/topology/replica_set_with_primary.rb
@@ -130,15 +132,13 @@ files:
130
132
  - lib/mongo/cluster/topology/unknown.rb
131
133
  - lib/mongo/cluster_time.rb
132
134
  - lib/mongo/collection.rb
135
+ - lib/mongo/collection/helpers.rb
136
+ - lib/mongo/collection/queryable_encryption.rb
133
137
  - lib/mongo/collection/view.rb
134
138
  - lib/mongo/collection/view/aggregation.rb
135
139
  - lib/mongo/collection/view/builder.rb
136
140
  - lib/mongo/collection/view/builder/aggregation.rb
137
- - lib/mongo/collection/view/builder/find_command.rb
138
- - lib/mongo/collection/view/builder/flags.rb
139
141
  - lib/mongo/collection/view/builder/map_reduce.rb
140
- - lib/mongo/collection/view/builder/modifiers.rb
141
- - lib/mongo/collection/view/builder/op_query.rb
142
142
  - lib/mongo/collection/view/change_stream.rb
143
143
  - lib/mongo/collection/view/change_stream/retryable.rb
144
144
  - lib/mongo/collection/view/explainable.rb
@@ -147,6 +147,9 @@ files:
147
147
  - lib/mongo/collection/view/map_reduce.rb
148
148
  - lib/mongo/collection/view/readable.rb
149
149
  - lib/mongo/collection/view/writable.rb
150
+ - lib/mongo/config.rb
151
+ - lib/mongo/config/options.rb
152
+ - lib/mongo/config/validators/option.rb
150
153
  - lib/mongo/crypt.rb
151
154
  - lib/mongo/crypt/auto_decryption_context.rb
152
155
  - lib/mongo/crypt/auto_encrypter.rb
@@ -161,20 +164,27 @@ files:
161
164
  - lib/mongo/crypt/explicit_encryption_context.rb
162
165
  - lib/mongo/crypt/handle.rb
163
166
  - lib/mongo/crypt/hooks.rb
167
+ - lib/mongo/crypt/kms.rb
168
+ - lib/mongo/crypt/kms/aws.rb
169
+ - lib/mongo/crypt/kms/azure.rb
170
+ - lib/mongo/crypt/kms/credentials.rb
171
+ - lib/mongo/crypt/kms/gcp.rb
172
+ - lib/mongo/crypt/kms/kmip.rb
173
+ - lib/mongo/crypt/kms/local.rb
174
+ - lib/mongo/crypt/kms/master_key_document.rb
164
175
  - lib/mongo/crypt/kms_context.rb
176
+ - lib/mongo/crypt/rewrap_many_data_key_context.rb
177
+ - lib/mongo/crypt/rewrap_many_data_key_result.rb
165
178
  - lib/mongo/crypt/status.rb
166
179
  - lib/mongo/cursor.rb
167
- - lib/mongo/cursor/builder.rb
168
- - lib/mongo/cursor/builder/get_more_command.rb
169
- - lib/mongo/cursor/builder/kill_cursors_command.rb
170
- - lib/mongo/cursor/builder/op_get_more.rb
171
- - lib/mongo/cursor/builder/op_kill_cursors.rb
180
+ - lib/mongo/cursor/kill_spec.rb
172
181
  - lib/mongo/database.rb
173
182
  - lib/mongo/database/view.rb
174
183
  - lib/mongo/dbref.rb
175
184
  - lib/mongo/distinguishing_semaphore.rb
176
185
  - lib/mongo/error.rb
177
186
  - lib/mongo/error/auth_error.rb
187
+ - lib/mongo/error/bad_load_balancer_target.rb
178
188
  - lib/mongo/error/bulk_write_error.rb
179
189
  - lib/mongo/error/change_stream_resumable.rb
180
190
  - lib/mongo/error/closed_stream.rb
@@ -187,11 +197,13 @@ files:
187
197
  - lib/mongo/error/file_not_found.rb
188
198
  - lib/mongo/error/handshake_error.rb
189
199
  - lib/mongo/error/insufficient_iteration_count.rb
200
+ - lib/mongo/error/internal_driver_error.rb
190
201
  - lib/mongo/error/invalid_address.rb
191
202
  - lib/mongo/error/invalid_application_name.rb
192
203
  - lib/mongo/error/invalid_bulk_operation.rb
193
204
  - lib/mongo/error/invalid_bulk_operation_type.rb
194
205
  - lib/mongo/error/invalid_collection_name.rb
206
+ - lib/mongo/error/invalid_config_option.rb
195
207
  - lib/mongo/error/invalid_cursor_operation.rb
196
208
  - lib/mongo/error/invalid_database_name.rb
197
209
  - lib/mongo/error/invalid_document.rb
@@ -213,34 +225,45 @@ files:
213
225
  - lib/mongo/error/invalid_uri.rb
214
226
  - lib/mongo/error/invalid_write_concern.rb
215
227
  - lib/mongo/error/kms_error.rb
228
+ - lib/mongo/error/labelable.rb
216
229
  - lib/mongo/error/lint_error.rb
217
230
  - lib/mongo/error/max_bson_size.rb
218
231
  - lib/mongo/error/max_message_size.rb
219
232
  - lib/mongo/error/mismatched_domain.rb
233
+ - lib/mongo/error/missing_connection.rb
220
234
  - lib/mongo/error/missing_file_chunk.rb
221
235
  - lib/mongo/error/missing_password.rb
222
236
  - lib/mongo/error/missing_resume_token.rb
223
237
  - lib/mongo/error/missing_scram_server_signature.rb
238
+ - lib/mongo/error/missing_service_id.rb
224
239
  - lib/mongo/error/mongocryptd_spawn_error.rb
225
240
  - lib/mongo/error/multi_index_drop.rb
226
241
  - lib/mongo/error/need_primary_server.rb
227
242
  - lib/mongo/error/no_server_available.rb
243
+ - lib/mongo/error/no_service_connection_available.rb
228
244
  - lib/mongo/error/no_srv_records.rb
229
245
  - lib/mongo/error/notable.rb
230
246
  - lib/mongo/error/operation_failure.rb
231
247
  - lib/mongo/error/parser.rb
232
248
  - lib/mongo/error/pool_closed_error.rb
233
249
  - lib/mongo/error/raise_original_error.rb
250
+ - lib/mongo/error/read_write_retryable.rb
234
251
  - lib/mongo/error/sdam_error_detection.rb
252
+ - lib/mongo/error/server_api_conflict.rb
253
+ - lib/mongo/error/server_api_not_supported.rb
235
254
  - lib/mongo/error/server_certificate_revoked.rb
236
255
  - lib/mongo/error/session_ended.rb
256
+ - lib/mongo/error/session_not_materialized.rb
237
257
  - lib/mongo/error/sessions_not_supported.rb
258
+ - lib/mongo/error/snapshot_session_invalid_server_version.rb
259
+ - lib/mongo/error/snapshot_session_transaction_prohibited.rb
238
260
  - lib/mongo/error/socket_error.rb
239
261
  - lib/mongo/error/socket_timeout_error.rb
240
262
  - lib/mongo/error/unchangeable_collection_option.rb
241
263
  - lib/mongo/error/unexpected_chunk_length.rb
242
264
  - lib/mongo/error/unexpected_response.rb
243
265
  - lib/mongo/error/unknown_payload_type.rb
266
+ - lib/mongo/error/unmet_dependency.rb
244
267
  - lib/mongo/error/unsupported_array_filters.rb
245
268
  - lib/mongo/error/unsupported_collation.rb
246
269
  - lib/mongo/error/unsupported_features.rb
@@ -315,6 +338,7 @@ files:
315
338
  - lib/mongo/operation/command.rb
316
339
  - lib/mongo/operation/command/command.rb
317
340
  - lib/mongo/operation/command/op_msg.rb
341
+ - lib/mongo/operation/context.rb
318
342
  - lib/mongo/operation/count.rb
319
343
  - lib/mongo/operation/count/command.rb
320
344
  - lib/mongo/operation/count/op_msg.rb
@@ -330,7 +354,6 @@ files:
330
354
  - lib/mongo/operation/delete.rb
331
355
  - lib/mongo/operation/delete/bulk_result.rb
332
356
  - lib/mongo/operation/delete/command.rb
333
- - lib/mongo/operation/delete/legacy.rb
334
357
  - lib/mongo/operation/delete/op_msg.rb
335
358
  - lib/mongo/operation/delete/result.rb
336
359
  - lib/mongo/operation/distinct.rb
@@ -351,6 +374,11 @@ files:
351
374
  - lib/mongo/operation/explain/op_msg.rb
352
375
  - lib/mongo/operation/explain/result.rb
353
376
  - lib/mongo/operation/find.rb
377
+ - lib/mongo/operation/find/builder.rb
378
+ - lib/mongo/operation/find/builder/command.rb
379
+ - lib/mongo/operation/find/builder/flags.rb
380
+ - lib/mongo/operation/find/builder/legacy.rb
381
+ - lib/mongo/operation/find/builder/modifiers.rb
354
382
  - lib/mongo/operation/find/command.rb
355
383
  - lib/mongo/operation/find/legacy.rb
356
384
  - lib/mongo/operation/find/legacy/result.rb
@@ -358,6 +386,7 @@ files:
358
386
  - lib/mongo/operation/find/result.rb
359
387
  - lib/mongo/operation/get_more.rb
360
388
  - lib/mongo/operation/get_more/command.rb
389
+ - lib/mongo/operation/get_more/command_builder.rb
361
390
  - lib/mongo/operation/get_more/legacy.rb
362
391
  - lib/mongo/operation/get_more/op_msg.rb
363
392
  - lib/mongo/operation/get_more/result.rb
@@ -369,12 +398,11 @@ files:
369
398
  - lib/mongo/operation/insert.rb
370
399
  - lib/mongo/operation/insert/bulk_result.rb
371
400
  - lib/mongo/operation/insert/command.rb
372
- - lib/mongo/operation/insert/legacy.rb
373
401
  - lib/mongo/operation/insert/op_msg.rb
374
402
  - lib/mongo/operation/insert/result.rb
375
403
  - lib/mongo/operation/kill_cursors.rb
376
404
  - lib/mongo/operation/kill_cursors/command.rb
377
- - lib/mongo/operation/kill_cursors/legacy.rb
405
+ - lib/mongo/operation/kill_cursors/command_builder.rb
378
406
  - lib/mongo/operation/kill_cursors/op_msg.rb
379
407
  - lib/mongo/operation/list_collections.rb
380
408
  - lib/mongo/operation/list_collections/command.rb
@@ -395,7 +423,6 @@ files:
395
423
  - lib/mongo/operation/result.rb
396
424
  - lib/mongo/operation/shared/bypass_document_validation.rb
397
425
  - lib/mongo/operation/shared/causal_consistency_supported.rb
398
- - lib/mongo/operation/shared/collections_info_or_list_collections.rb
399
426
  - lib/mongo/operation/shared/executable.rb
400
427
  - lib/mongo/operation/shared/executable_no_validate.rb
401
428
  - lib/mongo/operation/shared/executable_transaction_label.rb
@@ -404,8 +431,8 @@ files:
404
431
  - lib/mongo/operation/shared/object_id_generator.rb
405
432
  - lib/mongo/operation/shared/op_msg_or_command.rb
406
433
  - lib/mongo/operation/shared/op_msg_or_find_command.rb
407
- - lib/mongo/operation/shared/op_msg_or_list_indexes_command.rb
408
434
  - lib/mongo/operation/shared/polymorphic_lookup.rb
435
+ - lib/mongo/operation/shared/polymorphic_operation.rb
409
436
  - lib/mongo/operation/shared/polymorphic_result.rb
410
437
  - lib/mongo/operation/shared/read_preference_supported.rb
411
438
  - lib/mongo/operation/shared/response_handling.rb
@@ -413,13 +440,12 @@ files:
413
440
  - lib/mongo/operation/shared/result/use_legacy_error_parser.rb
414
441
  - lib/mongo/operation/shared/sessions_supported.rb
415
442
  - lib/mongo/operation/shared/specifiable.rb
443
+ - lib/mongo/operation/shared/validatable.rb
416
444
  - lib/mongo/operation/shared/write.rb
417
445
  - lib/mongo/operation/shared/write_concern_supported.rb
418
446
  - lib/mongo/operation/update.rb
419
447
  - lib/mongo/operation/update/bulk_result.rb
420
448
  - lib/mongo/operation/update/command.rb
421
- - lib/mongo/operation/update/legacy.rb
422
- - lib/mongo/operation/update/legacy/result.rb
423
449
  - lib/mongo/operation/update/op_msg.rb
424
450
  - lib/mongo/operation/update/result.rb
425
451
  - lib/mongo/operation/update_user.rb
@@ -429,11 +455,15 @@ files:
429
455
  - lib/mongo/operation/users_info/command.rb
430
456
  - lib/mongo/operation/users_info/op_msg.rb
431
457
  - lib/mongo/operation/users_info/result.rb
458
+ - lib/mongo/operation/write_command.rb
459
+ - lib/mongo/operation/write_command/command.rb
460
+ - lib/mongo/operation/write_command/op_msg.rb
432
461
  - lib/mongo/options.rb
433
462
  - lib/mongo/options/mapper.rb
434
463
  - lib/mongo/options/redacted.rb
435
464
  - lib/mongo/protocol.rb
436
465
  - lib/mongo/protocol/bit_vector.rb
466
+ - lib/mongo/protocol/caching_hash.rb
437
467
  - lib/mongo/protocol/compressed.rb
438
468
  - lib/mongo/protocol/delete.rb
439
469
  - lib/mongo/protocol/get_more.rb
@@ -455,10 +485,11 @@ files:
455
485
  - lib/mongo/server/connection_base.rb
456
486
  - lib/mongo/server/connection_common.rb
457
487
  - lib/mongo/server/connection_pool.rb
488
+ - lib/mongo/server/connection_pool/generation_manager.rb
458
489
  - lib/mongo/server/connection_pool/populator.rb
459
- - lib/mongo/server/context.rb
460
490
  - lib/mongo/server/description.rb
461
491
  - lib/mongo/server/description/features.rb
492
+ - lib/mongo/server/description/load_balancer.rb
462
493
  - lib/mongo/server/monitor.rb
463
494
  - lib/mongo/server/monitor/app_metadata.rb
464
495
  - lib/mongo/server/monitor/connection.rb
@@ -508,8 +539,10 @@ files:
508
539
  - spec/integration/awaited_ismaster_spec.rb
509
540
  - spec/integration/aws_auth_request_spec.rb
510
541
  - spec/integration/aws_credentials_retriever_spec.rb
542
+ - spec/integration/aws_lambda_examples_spec.rb
511
543
  - spec/integration/bson_symbol_spec.rb
512
544
  - spec/integration/bulk_insert_spec.rb
545
+ - spec/integration/bulk_write_error_message_spec.rb
513
546
  - spec/integration/bulk_write_spec.rb
514
547
  - spec/integration/change_stream_examples_spec.rb
515
548
  - spec/integration/change_stream_spec.rb
@@ -530,8 +563,14 @@ files:
530
563
  - spec/integration/client_side_encryption/corpus_spec.rb
531
564
  - spec/integration/client_side_encryption/custom_endpoint_spec.rb
532
565
  - spec/integration/client_side_encryption/data_key_spec.rb
566
+ - spec/integration/client_side_encryption/decryption_events_prose_spec.rb
533
567
  - spec/integration/client_side_encryption/explicit_encryption_spec.rb
568
+ - spec/integration/client_side_encryption/explicit_queryable_encryption_spec.rb
534
569
  - spec/integration/client_side_encryption/external_key_vault_spec.rb
570
+ - spec/integration/client_side_encryption/kms_tls_options_spec.rb
571
+ - spec/integration/client_side_encryption/kms_tls_spec.rb
572
+ - spec/integration/client_side_encryption/queryable_encryption_examples_spec.rb
573
+ - spec/integration/client_side_encryption/unique_index_on_key_alt_names_prose_spec.rb
535
574
  - spec/integration/client_side_encryption/views_spec.rb
536
575
  - spec/integration/client_spec.rb
537
576
  - spec/integration/client_update_spec.rb
@@ -542,6 +581,7 @@ files:
542
581
  - spec/integration/connection_pool_populator_spec.rb
543
582
  - spec/integration/connection_spec.rb
544
583
  - spec/integration/crud_spec.rb
584
+ - spec/integration/cursor_pinning_spec.rb
545
585
  - spec/integration/cursor_reaping_spec.rb
546
586
  - spec/integration/docs_examples_spec.rb
547
587
  - spec/integration/error_detection_spec.rb
@@ -549,12 +589,14 @@ files:
549
589
  - spec/integration/get_more_spec.rb
550
590
  - spec/integration/grid_fs_bucket_spec.rb
551
591
  - spec/integration/heartbeat_events_spec.rb
592
+ - spec/integration/map_reduce_spec.rb
552
593
  - spec/integration/mmapv1_spec.rb
553
594
  - spec/integration/mongos_pinning_spec.rb
554
595
  - spec/integration/ocsp_connectivity_spec.rb
555
596
  - spec/integration/ocsp_verifier_cache_spec.rb
556
597
  - spec/integration/ocsp_verifier_spec.rb
557
598
  - spec/integration/operation_failure_code_spec.rb
599
+ - spec/integration/operation_failure_message_spec.rb
558
600
  - spec/integration/query_cache_spec.rb
559
601
  - spec/integration/query_cache_transactions_spec.rb
560
602
  - spec/integration/read_concern_spec.rb
@@ -576,6 +618,7 @@ files:
576
618
  - spec/integration/sdam_error_handling_spec.rb
577
619
  - spec/integration/sdam_events_spec.rb
578
620
  - spec/integration/sdam_prose_spec.rb
621
+ - spec/integration/secondary_reads_spec.rb
579
622
  - spec/integration/server_description_spec.rb
580
623
  - spec/integration/server_monitor_spec.rb
581
624
  - spec/integration/server_selection_spec.rb
@@ -583,15 +626,21 @@ files:
583
626
  - spec/integration/server_spec.rb
584
627
  - spec/integration/shell_examples_spec.rb
585
628
  - spec/integration/size_limit_spec.rb
629
+ - spec/integration/snappy_compression_spec.rb
630
+ - spec/integration/snapshot_query_examples_spec.rb
586
631
  - spec/integration/srv_monitoring_spec.rb
587
632
  - spec/integration/srv_spec.rb
588
633
  - spec/integration/ssl_uri_options_spec.rb
589
634
  - spec/integration/step_down_spec.rb
590
635
  - spec/integration/time_zone_querying_spec.rb
636
+ - spec/integration/transaction_pinning_spec.rb
591
637
  - spec/integration/transactions_api_examples_spec.rb
592
638
  - spec/integration/transactions_examples_spec.rb
639
+ - spec/integration/truncated_utf8_spec.rb
640
+ - spec/integration/versioned_api_examples_spec.rb
593
641
  - spec/integration/x509_auth_spec.rb
594
642
  - spec/integration/zlib_compression_spec.rb
643
+ - spec/integration/zstd_compression_spec.rb
595
644
  - spec/kerberos/kerberos_spec.rb
596
645
  - spec/lite_spec_helper.rb
597
646
  - spec/mongo/address/ipv4_spec.rb
@@ -638,8 +687,6 @@ files:
638
687
  - spec/mongo/cluster_time_spec.rb
639
688
  - spec/mongo/collection/view/aggregation_spec.rb
640
689
  - spec/mongo/collection/view/builder/find_command_spec.rb
641
- - spec/mongo/collection/view/builder/flags_spec.rb
642
- - spec/mongo/collection/view/builder/modifiers_spec.rb
643
690
  - spec/mongo/collection/view/builder/op_query_spec.rb
644
691
  - spec/mongo/collection/view/change_stream_resume_spec.rb
645
692
  - spec/mongo/collection/view/change_stream_spec.rb
@@ -650,7 +697,11 @@ files:
650
697
  - spec/mongo/collection/view/readable_spec.rb
651
698
  - spec/mongo/collection/view/writable_spec.rb
652
699
  - spec/mongo/collection/view_spec.rb
700
+ - spec/mongo/collection_crud_spec.rb
701
+ - spec/mongo/collection_ddl_spec.rb
653
702
  - spec/mongo/collection_spec.rb
703
+ - spec/mongo/config/options_spec.rb
704
+ - spec/mongo/config_spec.rb
654
705
  - spec/mongo/crypt/auto_decryption_context_spec.rb
655
706
  - spec/mongo/crypt/auto_encrypter_spec.rb
656
707
  - spec/mongo/crypt/auto_encryption_context_spec.rb
@@ -668,13 +719,14 @@ files:
668
719
  - spec/mongo/crypt/explicit_encryption_context_spec.rb
669
720
  - spec/mongo/crypt/handle_spec.rb
670
721
  - spec/mongo/crypt/helpers/mongo_crypt_spec_helper.rb
722
+ - spec/mongo/crypt/hooks_spec.rb
723
+ - spec/mongo/crypt/kms/credentials_spec.rb
724
+ - spec/mongo/crypt/kms_spec.rb
671
725
  - spec/mongo/crypt/status_spec.rb
672
726
  - spec/mongo/cursor/builder/get_more_command_spec.rb
673
727
  - spec/mongo/cursor/builder/op_get_more_spec.rb
674
- - spec/mongo/cursor/builder/op_kill_cursors_spec.rb
675
728
  - spec/mongo/cursor_spec.rb
676
729
  - spec/mongo/database_spec.rb
677
- - spec/mongo/dbref_spec.rb
678
730
  - spec/mongo/distinguishing_semaphore_spec.rb
679
731
  - spec/mongo/error/bulk_write_error_spec.rb
680
732
  - spec/mongo/error/crypt_error_spec.rb
@@ -727,6 +779,7 @@ files:
727
779
  - spec/mongo/operation/aggregate_spec.rb
728
780
  - spec/mongo/operation/collections_info_spec.rb
729
781
  - spec/mongo/operation/command_spec.rb
782
+ - spec/mongo/operation/create/op_msg_spec.rb
730
783
  - spec/mongo/operation/create_index_spec.rb
731
784
  - spec/mongo/operation/create_user_spec.rb
732
785
  - spec/mongo/operation/delete/bulk_spec.rb
@@ -734,6 +787,8 @@ files:
734
787
  - spec/mongo/operation/delete/op_msg_spec.rb
735
788
  - spec/mongo/operation/delete_spec.rb
736
789
  - spec/mongo/operation/drop_index_spec.rb
790
+ - spec/mongo/operation/find/builder/flags_spec.rb
791
+ - spec/mongo/operation/find/builder/modifiers_spec.rb
737
792
  - spec/mongo/operation/find/legacy_spec.rb
738
793
  - spec/mongo/operation/get_more_spec.rb
739
794
  - spec/mongo/operation/indexes_spec.rb
@@ -741,7 +796,6 @@ files:
741
796
  - spec/mongo/operation/insert/command_spec.rb
742
797
  - spec/mongo/operation/insert/op_msg_spec.rb
743
798
  - spec/mongo/operation/insert_spec.rb
744
- - spec/mongo/operation/kill_cursors_spec.rb
745
799
  - spec/mongo/operation/limited_spec.rb
746
800
  - spec/mongo/operation/map_reduce_spec.rb
747
801
  - spec/mongo/operation/read_preference_legacy_spec.rb
@@ -755,6 +809,7 @@ files:
755
809
  - spec/mongo/operation/update_spec.rb
756
810
  - spec/mongo/operation/update_user_spec.rb
757
811
  - spec/mongo/options/redacted_spec.rb
812
+ - spec/mongo/protocol/caching_hash_spec.rb
758
813
  - spec/mongo/protocol/compressed_spec.rb
759
814
  - spec/mongo/protocol/delete_spec.rb
760
815
  - spec/mongo/protocol/get_more_spec.rb
@@ -765,12 +820,13 @@ files:
765
820
  - spec/mongo/protocol/registry_spec.rb
766
821
  - spec/mongo/protocol/reply_spec.rb
767
822
  - spec/mongo/protocol/update_spec.rb
823
+ - spec/mongo/query_cache_middleware_spec.rb
768
824
  - spec/mongo/query_cache_spec.rb
769
825
  - spec/mongo/retryable_spec.rb
770
826
  - spec/mongo/semaphore_spec.rb
771
- - spec/mongo/server/app_metadata_shared.rb
772
827
  - spec/mongo/server/app_metadata_spec.rb
773
828
  - spec/mongo/server/connection_auth_spec.rb
829
+ - spec/mongo/server/connection_common_spec.rb
774
830
  - spec/mongo/server/connection_pool/populator_spec.rb
775
831
  - spec/mongo/server/connection_pool_spec.rb
776
832
  - spec/mongo/server/connection_spec.rb
@@ -780,6 +836,7 @@ files:
780
836
  - spec/mongo/server/monitor/app_metadata_spec.rb
781
837
  - spec/mongo/server/monitor/connection_spec.rb
782
838
  - spec/mongo/server/monitor_spec.rb
839
+ - spec/mongo/server/push_monitor_spec.rb
783
840
  - spec/mongo/server/round_trip_time_averager_spec.rb
784
841
  - spec/mongo/server_selector/nearest_spec.rb
785
842
  - spec/mongo/server_selector/primary_preferred_spec.rb
@@ -799,6 +856,7 @@ files:
799
856
  - spec/mongo/srv/monitor_spec.rb
800
857
  - spec/mongo/srv/result_spec.rb
801
858
  - spec/mongo/timeout_spec.rb
859
+ - spec/mongo/tls_context_hooks_spec.rb
802
860
  - spec/mongo/uri/srv_protocol_spec.rb
803
861
  - spec/mongo/uri_option_parsing_spec.rb
804
862
  - spec/mongo/uri_spec.rb
@@ -833,25 +891,64 @@ files:
833
891
  - spec/runners/transactions/operation.rb
834
892
  - spec/runners/transactions/spec.rb
835
893
  - spec/runners/transactions/test.rb
894
+ - spec/runners/unified.rb
895
+ - spec/runners/unified/assertions.rb
896
+ - spec/runners/unified/change_stream_operations.rb
897
+ - spec/runners/unified/client_side_encryption_operations.rb
898
+ - spec/runners/unified/crud_operations.rb
899
+ - spec/runners/unified/ddl_operations.rb
900
+ - spec/runners/unified/entity_map.rb
901
+ - spec/runners/unified/error.rb
902
+ - spec/runners/unified/event_subscriber.rb
903
+ - spec/runners/unified/exceptions.rb
904
+ - spec/runners/unified/grid_fs_operations.rb
905
+ - spec/runners/unified/support_operations.rb
906
+ - spec/runners/unified/test.rb
907
+ - spec/runners/unified/test_group.rb
836
908
  - spec/shared/LICENSE
909
+ - spec/shared/bin/get-mongodb-download-url
910
+ - spec/shared/bin/s3-copy
911
+ - spec/shared/bin/s3-upload
837
912
  - spec/shared/lib/mrss/child_process_helper.rb
913
+ - spec/shared/lib/mrss/cluster_config.rb
838
914
  - spec/shared/lib/mrss/constraints.rb
915
+ - spec/shared/lib/mrss/docker_runner.rb
916
+ - spec/shared/lib/mrss/eg_config_utils.rb
917
+ - spec/shared/lib/mrss/event_subscriber.rb
839
918
  - spec/shared/lib/mrss/lite_constraints.rb
919
+ - spec/shared/lib/mrss/server_version_registry.rb
920
+ - spec/shared/lib/mrss/session_registry.rb
921
+ - spec/shared/lib/mrss/session_registry_legacy.rb
840
922
  - spec/shared/lib/mrss/spec_organizer.rb
923
+ - spec/shared/lib/mrss/utils.rb
924
+ - spec/shared/share/Dockerfile.erb
925
+ - spec/shared/share/haproxy-1.conf
926
+ - spec/shared/share/haproxy-2.conf
927
+ - spec/shared/shlib/config.sh
928
+ - spec/shared/shlib/distro.sh
929
+ - spec/shared/shlib/server.sh
930
+ - spec/shared/shlib/set_env.sh
931
+ - spec/solo/clean_exit_spec.rb
841
932
  - spec/spec_helper.rb
842
933
  - spec/spec_tests/auth_spec.rb
843
- - spec/spec_tests/change_streams_spec.rb
934
+ - spec/spec_tests/change_streams_unified_spec.rb
844
935
  - spec/spec_tests/client_side_encryption_spec.rb
936
+ - spec/spec_tests/client_side_encryption_unified_spec.rb
845
937
  - spec/spec_tests/cmap_spec.rb
846
- - spec/spec_tests/command_monitoring_spec.rb
938
+ - spec/spec_tests/collection_management_spec.rb
939
+ - spec/spec_tests/command_monitoring_unified_spec.rb
847
940
  - spec/spec_tests/connection_string_spec.rb
848
941
  - spec/spec_tests/crud_spec.rb
942
+ - spec/spec_tests/crud_unified_spec.rb
849
943
  - spec/spec_tests/data/auth/connection-string.yml
850
- - spec/spec_tests/data/change_streams/change-streams-errors.yml
851
- - spec/spec_tests/data/change_streams/change-streams-resume-errorLabels.yml
852
- - spec/spec_tests/data/change_streams/change-streams-resume-whitelist.yml
853
- - spec/spec_tests/data/change_streams/change-streams.yml
944
+ - spec/spec_tests/data/change_streams_unified/change-streams-errors.yml
945
+ - spec/spec_tests/data/change_streams_unified/change-streams-pre_and_post_images.yml
946
+ - spec/spec_tests/data/change_streams_unified/change-streams-resume-allowlist.yml
947
+ - spec/spec_tests/data/change_streams_unified/change-streams-resume-errorLabels.yml
948
+ - spec/spec_tests/data/change_streams_unified/change-streams-showExpandedEvents.yml
949
+ - spec/spec_tests/data/change_streams_unified/change-streams.yml
854
950
  - spec/spec_tests/data/client_side_encryption/aggregate.yml
951
+ - spec/spec_tests/data/client_side_encryption/azureKMS.yml
855
952
  - spec/spec_tests/data/client_side_encryption/badQueries.yml
856
953
  - spec/spec_tests/data/client_side_encryption/badSchema.yml
857
954
  - spec/spec_tests/data/client_side_encryption/basic.yml
@@ -860,6 +957,7 @@ files:
860
957
  - spec/spec_tests/data/client_side_encryption/bypassedCommand.yml
861
958
  - spec/spec_tests/data/client_side_encryption/count.yml
862
959
  - spec/spec_tests/data/client_side_encryption/countDocuments.yml
960
+ - spec/spec_tests/data/client_side_encryption/create-and-createIndexes.yml
863
961
  - spec/spec_tests/data/client_side_encryption/delete.yml
864
962
  - spec/spec_tests/data/client_side_encryption/distinct.yml
865
963
  - spec/spec_tests/data/client_side_encryption/explain.yml
@@ -867,6 +965,22 @@ files:
867
965
  - spec/spec_tests/data/client_side_encryption/findOneAndDelete.yml
868
966
  - spec/spec_tests/data/client_side_encryption/findOneAndReplace.yml
869
967
  - spec/spec_tests/data/client_side_encryption/findOneAndUpdate.yml
968
+ - spec/spec_tests/data/client_side_encryption/fle2-BypassQueryAnalysis.yml
969
+ - spec/spec_tests/data/client_side_encryption/fle2-Compact.yml
970
+ - spec/spec_tests/data/client_side_encryption/fle2-CreateCollection.yml
971
+ - spec/spec_tests/data/client_side_encryption/fle2-DecryptExistingData.yml
972
+ - spec/spec_tests/data/client_side_encryption/fle2-Delete.yml
973
+ - spec/spec_tests/data/client_side_encryption/fle2-EncryptedFields-vs-EncryptedFieldsMap.yml
974
+ - spec/spec_tests/data/client_side_encryption/fle2-EncryptedFields-vs-jsonSchema.yml
975
+ - spec/spec_tests/data/client_side_encryption/fle2-EncryptedFieldsMap-defaults.yml
976
+ - spec/spec_tests/data/client_side_encryption/fle2-FindOneAndUpdate.yml
977
+ - spec/spec_tests/data/client_side_encryption/fle2-InsertFind-Indexed.yml
978
+ - spec/spec_tests/data/client_side_encryption/fle2-InsertFind-Unindexed.yml
979
+ - spec/spec_tests/data/client_side_encryption/fle2-MissingKey.yml
980
+ - spec/spec_tests/data/client_side_encryption/fle2-NoEncryption.yml
981
+ - spec/spec_tests/data/client_side_encryption/fle2-Update.yml
982
+ - spec/spec_tests/data/client_side_encryption/fle2-validatorAndPartialFieldExpression.yml
983
+ - spec/spec_tests/data/client_side_encryption/gcpKMS.yml
870
984
  - spec/spec_tests/data/client_side_encryption/getMore.yml
871
985
  - spec/spec_tests/data/client_side_encryption/insert.yml
872
986
  - spec/spec_tests/data/client_side_encryption/keyAltName.yml
@@ -875,11 +989,24 @@ files:
875
989
  - spec/spec_tests/data/client_side_encryption/malformedCiphertext.yml
876
990
  - spec/spec_tests/data/client_side_encryption/maxWireVersion.yml
877
991
  - spec/spec_tests/data/client_side_encryption/missingKey.yml
992
+ - spec/spec_tests/data/client_side_encryption/noSchema.yml
878
993
  - spec/spec_tests/data/client_side_encryption/replaceOne.yml
879
994
  - spec/spec_tests/data/client_side_encryption/types.yml
995
+ - spec/spec_tests/data/client_side_encryption/unified/addKeyAltName.yml
996
+ - spec/spec_tests/data/client_side_encryption/unified/createDataKey-kms_providers-invalid.yml
997
+ - spec/spec_tests/data/client_side_encryption/unified/createDataKey.yml
998
+ - spec/spec_tests/data/client_side_encryption/unified/deleteKey.yml
999
+ - spec/spec_tests/data/client_side_encryption/unified/getKey.yml
1000
+ - spec/spec_tests/data/client_side_encryption/unified/getKeyByAltName.yml
1001
+ - spec/spec_tests/data/client_side_encryption/unified/getKeys.yml
1002
+ - spec/spec_tests/data/client_side_encryption/unified/removeKeyAltName.yml
1003
+ - spec/spec_tests/data/client_side_encryption/unified/rewrapManyDataKey-decrypt_failure.yml
1004
+ - spec/spec_tests/data/client_side_encryption/unified/rewrapManyDataKey-encrypt_failure.yml
1005
+ - spec/spec_tests/data/client_side_encryption/unified/rewrapManyDataKey.yml
880
1006
  - spec/spec_tests/data/client_side_encryption/unsupportedCommand.yml
881
1007
  - spec/spec_tests/data/client_side_encryption/updateMany.yml
882
1008
  - spec/spec_tests/data/client_side_encryption/updateOne.yml
1009
+ - spec/spec_tests/data/client_side_encryption/validatorAndPartialFieldExpression.yml
883
1010
  - spec/spec_tests/data/cmap/connection-must-have-id.yml
884
1011
  - spec/spec_tests/data/cmap/connection-must-order-ids.yml
885
1012
  - spec/spec_tests/data/cmap/pool-checkin-destroy-closed.yml
@@ -899,16 +1026,23 @@ files:
899
1026
  - spec/spec_tests/data/cmap/pool-create.yml
900
1027
  - spec/spec_tests/data/cmap/wait-queue-fairness.yml
901
1028
  - spec/spec_tests/data/cmap/wait-queue-timeout.yml
902
- - spec/spec_tests/data/command_monitoring/bulkWrite.yml
903
- - spec/spec_tests/data/command_monitoring/command.yml
904
- - spec/spec_tests/data/command_monitoring/deleteMany.yml
905
- - spec/spec_tests/data/command_monitoring/deleteOne.yml
906
- - spec/spec_tests/data/command_monitoring/find.yml
907
- - spec/spec_tests/data/command_monitoring/insertMany.yml
908
- - spec/spec_tests/data/command_monitoring/insertOne.yml
909
- - spec/spec_tests/data/command_monitoring/unacknowledgedBulkWrite.yml
910
- - spec/spec_tests/data/command_monitoring/updateMany.yml
911
- - spec/spec_tests/data/command_monitoring/updateOne.yml
1029
+ - spec/spec_tests/data/collection_management/clustered-indexes.yml
1030
+ - spec/spec_tests/data/collection_management/createCollection-pre_and_post_images.yml
1031
+ - spec/spec_tests/data/collection_management/modifyCollection-pre_and_post_images.yml
1032
+ - spec/spec_tests/data/collection_management/timeseries-collection.yml
1033
+ - spec/spec_tests/data/command_monitoring_unified/bulkWrite.yml
1034
+ - spec/spec_tests/data/command_monitoring_unified/command.yml
1035
+ - spec/spec_tests/data/command_monitoring_unified/deleteMany.yml
1036
+ - spec/spec_tests/data/command_monitoring_unified/deleteOne.yml
1037
+ - spec/spec_tests/data/command_monitoring_unified/find.yml
1038
+ - spec/spec_tests/data/command_monitoring_unified/insertMany.yml
1039
+ - spec/spec_tests/data/command_monitoring_unified/insertOne.yml
1040
+ - spec/spec_tests/data/command_monitoring_unified/pre-42-server-connection-id.yml
1041
+ - spec/spec_tests/data/command_monitoring_unified/redacted-commands.yml
1042
+ - spec/spec_tests/data/command_monitoring_unified/server-connection-id.yml
1043
+ - spec/spec_tests/data/command_monitoring_unified/unacknowledgedBulkWrite.yml
1044
+ - spec/spec_tests/data/command_monitoring_unified/updateMany.yml
1045
+ - spec/spec_tests/data/command_monitoring_unified/updateOne.yml
912
1046
  - spec/spec_tests/data/connection_string/invalid-uris.yml
913
1047
  - spec/spec_tests/data/connection_string/valid-auth.yml
914
1048
  - spec/spec_tests/data/connection_string/valid-db-with-dotted-name.yml
@@ -957,81 +1091,120 @@ files:
957
1091
  - spec/spec_tests/data/crud/write/updateOne-collation.yml
958
1092
  - spec/spec_tests/data/crud/write/updateOne-pre_2.6.yml
959
1093
  - spec/spec_tests/data/crud/write/updateOne.yml
960
- - spec/spec_tests/data/crud_v2/aggregate-merge.yml
961
- - spec/spec_tests/data/crud_v2/aggregate-out-readConcern.yml
962
- - spec/spec_tests/data/crud_v2/bulkWrite-arrayFilters.yml
963
- - spec/spec_tests/data/crud_v2/bulkWrite-delete-hint-clientError.yml
964
- - spec/spec_tests/data/crud_v2/bulkWrite-delete-hint-serverError.yml
965
- - spec/spec_tests/data/crud_v2/bulkWrite-delete-hint.yml
966
- - spec/spec_tests/data/crud_v2/bulkWrite-update-hint-clientError.yml
967
- - spec/spec_tests/data/crud_v2/bulkWrite-update-hint-serverError.yml
968
- - spec/spec_tests/data/crud_v2/bulkWrite-update-hint.yml
969
- - spec/spec_tests/data/crud_v2/db-aggregate.yml
970
- - spec/spec_tests/data/crud_v2/deleteMany-hint-clientError.yml
971
- - spec/spec_tests/data/crud_v2/deleteMany-hint-serverError.yml
972
- - spec/spec_tests/data/crud_v2/deleteMany-hint.yml
973
- - spec/spec_tests/data/crud_v2/deleteOne-hint-clientError.yml
974
- - spec/spec_tests/data/crud_v2/deleteOne-hint-serverError.yml
975
- - spec/spec_tests/data/crud_v2/deleteOne-hint.yml
976
- - spec/spec_tests/data/crud_v2/find-allowdiskuse-clientError.yml
977
- - spec/spec_tests/data/crud_v2/find-allowdiskuse-serverError.yml
978
- - spec/spec_tests/data/crud_v2/find-allowdiskuse.yml
979
- - spec/spec_tests/data/crud_v2/findOneAndDelete-hint-clientError.yml
980
- - spec/spec_tests/data/crud_v2/findOneAndDelete-hint-serverError.yml
981
- - spec/spec_tests/data/crud_v2/findOneAndDelete-hint.yml
982
- - spec/spec_tests/data/crud_v2/findOneAndReplace-hint-clientError.yml
983
- - spec/spec_tests/data/crud_v2/findOneAndReplace-hint-serverError.yml
984
- - spec/spec_tests/data/crud_v2/findOneAndReplace-hint.yml
985
- - spec/spec_tests/data/crud_v2/findOneAndUpdate-hint-clientError.yml
986
- - spec/spec_tests/data/crud_v2/findOneAndUpdate-hint-serverError.yml
987
- - spec/spec_tests/data/crud_v2/findOneAndUpdate-hint.yml
988
- - spec/spec_tests/data/crud_v2/replaceOne-hint.yml
989
- - spec/spec_tests/data/crud_v2/unacknowledged-bulkWrite-delete-hint-clientError.yml
990
- - spec/spec_tests/data/crud_v2/unacknowledged-bulkWrite-update-hint-clientError.yml
991
- - spec/spec_tests/data/crud_v2/unacknowledged-deleteMany-hint-clientError.yml
992
- - spec/spec_tests/data/crud_v2/unacknowledged-deleteOne-hint-clientError.yml
993
- - spec/spec_tests/data/crud_v2/unacknowledged-findOneAndDelete-hint-clientError.yml
994
- - spec/spec_tests/data/crud_v2/unacknowledged-findOneAndReplace-hint-clientError.yml
995
- - spec/spec_tests/data/crud_v2/unacknowledged-findOneAndUpdate-hint-clientError.yml
996
- - spec/spec_tests/data/crud_v2/unacknowledged-replaceOne-hint-clientError.yml
997
- - spec/spec_tests/data/crud_v2/unacknowledged-updateMany-hint-clientError.yml
998
- - spec/spec_tests/data/crud_v2/unacknowledged-updateOne-hint-clientError.yml
999
- - spec/spec_tests/data/crud_v2/updateMany-hint-clientError.yml
1000
- - spec/spec_tests/data/crud_v2/updateMany-hint-serverError.yml
1001
- - spec/spec_tests/data/crud_v2/updateMany-hint.yml
1002
- - spec/spec_tests/data/crud_v2/updateOne-hint-clientError.yml
1003
- - spec/spec_tests/data/crud_v2/updateOne-hint-serverError.yml
1004
- - spec/spec_tests/data/crud_v2/updateOne-hint.yml
1005
- - spec/spec_tests/data/crud_v2/updateWithPipelines.yml
1006
- - spec/spec_tests/data/dns_seedlist_discovery/direct-connection-false.yml
1007
- - spec/spec_tests/data/dns_seedlist_discovery/direct-connection-true.yml
1008
- - spec/spec_tests/data/dns_seedlist_discovery/longer-parent-in-return.yml
1009
- - spec/spec_tests/data/dns_seedlist_discovery/misformatted-option.yml
1010
- - spec/spec_tests/data/dns_seedlist_discovery/no-results.yml
1011
- - spec/spec_tests/data/dns_seedlist_discovery/not-enough-parts.yml
1012
- - spec/spec_tests/data/dns_seedlist_discovery/one-result-default-port.yml
1013
- - spec/spec_tests/data/dns_seedlist_discovery/one-txt-record-multiple-strings.yml
1014
- - spec/spec_tests/data/dns_seedlist_discovery/one-txt-record.yml
1015
- - spec/spec_tests/data/dns_seedlist_discovery/parent-part-mismatch1.yml
1016
- - spec/spec_tests/data/dns_seedlist_discovery/parent-part-mismatch2.yml
1017
- - spec/spec_tests/data/dns_seedlist_discovery/parent-part-mismatch3.yml
1018
- - spec/spec_tests/data/dns_seedlist_discovery/parent-part-mismatch4.yml
1019
- - spec/spec_tests/data/dns_seedlist_discovery/parent-part-mismatch5.yml
1020
- - spec/spec_tests/data/dns_seedlist_discovery/returned-parent-too-short.yml
1021
- - spec/spec_tests/data/dns_seedlist_discovery/returned-parent-wrong.yml
1022
- - spec/spec_tests/data/dns_seedlist_discovery/two-results-default-port.yml
1023
- - spec/spec_tests/data/dns_seedlist_discovery/two-results-nonstandard-port.yml
1024
- - spec/spec_tests/data/dns_seedlist_discovery/two-txt-records.yml
1025
- - spec/spec_tests/data/dns_seedlist_discovery/txt-record-not-allowed-option.yml
1026
- - spec/spec_tests/data/dns_seedlist_discovery/txt-record-with-overridden-ssl-option.yml
1027
- - spec/spec_tests/data/dns_seedlist_discovery/txt-record-with-overridden-uri-option.yml
1028
- - spec/spec_tests/data/dns_seedlist_discovery/txt-record-with-unallowed-option.yml
1029
- - spec/spec_tests/data/dns_seedlist_discovery/uri-with-port.yml
1030
- - spec/spec_tests/data/dns_seedlist_discovery/uri-with-two-hosts.yml
1094
+ - spec/spec_tests/data/crud_unified/aggregate-allowdiskuse.yml
1095
+ - spec/spec_tests/data/crud_unified/aggregate-let.yml
1096
+ - spec/spec_tests/data/crud_unified/aggregate-merge.yml
1097
+ - spec/spec_tests/data/crud_unified/aggregate-out-readConcern.yml
1098
+ - spec/spec_tests/data/crud_unified/aggregate-write-readPreference.yml
1099
+ - spec/spec_tests/data/crud_unified/aggregate.yml
1100
+ - spec/spec_tests/data/crud_unified/bulkWrite-arrayFilters-clientError.yml
1101
+ - spec/spec_tests/data/crud_unified/bulkWrite-arrayFilters.yml
1102
+ - spec/spec_tests/data/crud_unified/bulkWrite-comment.yml
1103
+ - spec/spec_tests/data/crud_unified/bulkWrite-delete-hint-clientError.yml
1104
+ - spec/spec_tests/data/crud_unified/bulkWrite-delete-hint-serverError.yml
1105
+ - spec/spec_tests/data/crud_unified/bulkWrite-delete-hint.yml
1106
+ - spec/spec_tests/data/crud_unified/bulkWrite-deleteMany-hint-unacknowledged.yml
1107
+ - spec/spec_tests/data/crud_unified/bulkWrite-deleteMany-let.yml
1108
+ - spec/spec_tests/data/crud_unified/bulkWrite-deleteOne-hint-unacknowledged.yml
1109
+ - spec/spec_tests/data/crud_unified/bulkWrite-deleteOne-let.yml
1110
+ - spec/spec_tests/data/crud_unified/bulkWrite-insertOne-dots_and_dollars.yml
1111
+ - spec/spec_tests/data/crud_unified/bulkWrite-replaceOne-dots_and_dollars.yml
1112
+ - spec/spec_tests/data/crud_unified/bulkWrite-replaceOne-hint-unacknowledged.yml
1113
+ - spec/spec_tests/data/crud_unified/bulkWrite-replaceOne-let.yml
1114
+ - spec/spec_tests/data/crud_unified/bulkWrite-update-hint-clientError.yml
1115
+ - spec/spec_tests/data/crud_unified/bulkWrite-update-hint-serverError.yml
1116
+ - spec/spec_tests/data/crud_unified/bulkWrite-update-hint.yml
1117
+ - spec/spec_tests/data/crud_unified/bulkWrite-update-validation.yml
1118
+ - spec/spec_tests/data/crud_unified/bulkWrite-updateMany-dots_and_dollars.yml
1119
+ - spec/spec_tests/data/crud_unified/bulkWrite-updateMany-hint-unacknowledged.yml
1120
+ - spec/spec_tests/data/crud_unified/bulkWrite-updateMany-let.yml
1121
+ - spec/spec_tests/data/crud_unified/bulkWrite-updateOne-dots_and_dollars.yml
1122
+ - spec/spec_tests/data/crud_unified/bulkWrite-updateOne-hint-unacknowledged.yml
1123
+ - spec/spec_tests/data/crud_unified/bulkWrite-updateOne-let.yml
1124
+ - spec/spec_tests/data/crud_unified/countDocuments-comment.yml
1125
+ - spec/spec_tests/data/crud_unified/db-aggregate-write-readPreference.yml
1126
+ - spec/spec_tests/data/crud_unified/db-aggregate.yml
1127
+ - spec/spec_tests/data/crud_unified/deleteMany-comment.yml
1128
+ - spec/spec_tests/data/crud_unified/deleteMany-hint-clientError.yml
1129
+ - spec/spec_tests/data/crud_unified/deleteMany-hint-serverError.yml
1130
+ - spec/spec_tests/data/crud_unified/deleteMany-hint-unacknowledged.yml
1131
+ - spec/spec_tests/data/crud_unified/deleteMany-hint.yml
1132
+ - spec/spec_tests/data/crud_unified/deleteMany-let.yml
1133
+ - spec/spec_tests/data/crud_unified/deleteOne-comment.yml
1134
+ - spec/spec_tests/data/crud_unified/deleteOne-hint-clientError.yml
1135
+ - spec/spec_tests/data/crud_unified/deleteOne-hint-serverError.yml
1136
+ - spec/spec_tests/data/crud_unified/deleteOne-hint-unacknowledged.yml
1137
+ - spec/spec_tests/data/crud_unified/deleteOne-hint.yml
1138
+ - spec/spec_tests/data/crud_unified/deleteOne-let.yml
1139
+ - spec/spec_tests/data/crud_unified/distinct-comment.yml
1140
+ - spec/spec_tests/data/crud_unified/estimatedDocumentCount-comment.yml
1141
+ - spec/spec_tests/data/crud_unified/estimatedDocumentCount.yml
1142
+ - spec/spec_tests/data/crud_unified/find-allowdiskuse-clientError.yml
1143
+ - spec/spec_tests/data/crud_unified/find-allowdiskuse-serverError.yml
1144
+ - spec/spec_tests/data/crud_unified/find-allowdiskuse.yml
1145
+ - spec/spec_tests/data/crud_unified/find-comment.yml
1146
+ - spec/spec_tests/data/crud_unified/find-let.yml
1147
+ - spec/spec_tests/data/crud_unified/find.yml
1148
+ - spec/spec_tests/data/crud_unified/findOneAndDelete-comment.yml
1149
+ - spec/spec_tests/data/crud_unified/findOneAndDelete-hint-clientError.yml
1150
+ - spec/spec_tests/data/crud_unified/findOneAndDelete-hint-serverError.yml
1151
+ - spec/spec_tests/data/crud_unified/findOneAndDelete-hint-unacknowledged.yml
1152
+ - spec/spec_tests/data/crud_unified/findOneAndDelete-hint.yml
1153
+ - spec/spec_tests/data/crud_unified/findOneAndDelete-let.yml
1154
+ - spec/spec_tests/data/crud_unified/findOneAndReplace-comment.yml
1155
+ - spec/spec_tests/data/crud_unified/findOneAndReplace-dots_and_dollars.yml
1156
+ - spec/spec_tests/data/crud_unified/findOneAndReplace-hint-clientError.yml
1157
+ - spec/spec_tests/data/crud_unified/findOneAndReplace-hint-serverError.yml
1158
+ - spec/spec_tests/data/crud_unified/findOneAndReplace-hint-unacknowledged.yml
1159
+ - spec/spec_tests/data/crud_unified/findOneAndReplace-hint.yml
1160
+ - spec/spec_tests/data/crud_unified/findOneAndReplace-let.yml
1161
+ - spec/spec_tests/data/crud_unified/findOneAndUpdate-comment.yml
1162
+ - spec/spec_tests/data/crud_unified/findOneAndUpdate-dots_and_dollars.yml
1163
+ - spec/spec_tests/data/crud_unified/findOneAndUpdate-hint-clientError.yml
1164
+ - spec/spec_tests/data/crud_unified/findOneAndUpdate-hint-serverError.yml
1165
+ - spec/spec_tests/data/crud_unified/findOneAndUpdate-hint-unacknowledged.yml
1166
+ - spec/spec_tests/data/crud_unified/findOneAndUpdate-hint.yml
1167
+ - spec/spec_tests/data/crud_unified/findOneAndUpdate-let.yml
1168
+ - spec/spec_tests/data/crud_unified/insertMany-comment.yml
1169
+ - spec/spec_tests/data/crud_unified/insertMany-dots_and_dollars.yml
1170
+ - spec/spec_tests/data/crud_unified/insertOne-comment.yml
1171
+ - spec/spec_tests/data/crud_unified/insertOne-dots_and_dollars.yml
1172
+ - spec/spec_tests/data/crud_unified/replaceOne-comment.yml
1173
+ - spec/spec_tests/data/crud_unified/replaceOne-dots_and_dollars.yml
1174
+ - spec/spec_tests/data/crud_unified/replaceOne-hint-unacknowledged.yml
1175
+ - spec/spec_tests/data/crud_unified/replaceOne-hint.yml
1176
+ - spec/spec_tests/data/crud_unified/replaceOne-let.yml
1177
+ - spec/spec_tests/data/crud_unified/replaceOne-validation.yml
1178
+ - spec/spec_tests/data/crud_unified/updateMany-comment.yml
1179
+ - spec/spec_tests/data/crud_unified/updateMany-dots_and_dollars.yml
1180
+ - spec/spec_tests/data/crud_unified/updateMany-hint-clientError.yml
1181
+ - spec/spec_tests/data/crud_unified/updateMany-hint-serverError.yml
1182
+ - spec/spec_tests/data/crud_unified/updateMany-hint-unacknowledged.yml
1183
+ - spec/spec_tests/data/crud_unified/updateMany-hint.yml
1184
+ - spec/spec_tests/data/crud_unified/updateMany-let.yml
1185
+ - spec/spec_tests/data/crud_unified/updateMany-validation.yml
1186
+ - spec/spec_tests/data/crud_unified/updateOne-comment.yml
1187
+ - spec/spec_tests/data/crud_unified/updateOne-dots_and_dollars.yml
1188
+ - spec/spec_tests/data/crud_unified/updateOne-hint-clientError.yml
1189
+ - spec/spec_tests/data/crud_unified/updateOne-hint-serverError.yml
1190
+ - spec/spec_tests/data/crud_unified/updateOne-hint-unacknowledged.yml
1191
+ - spec/spec_tests/data/crud_unified/updateOne-hint.yml
1192
+ - spec/spec_tests/data/crud_unified/updateOne-let.yml
1193
+ - spec/spec_tests/data/crud_unified/updateOne-validation.yml
1194
+ - spec/spec_tests/data/crud_unified/updateWithPipelines.yml
1031
1195
  - spec/spec_tests/data/gridfs/delete.yml
1032
1196
  - spec/spec_tests/data/gridfs/download.yml
1033
1197
  - spec/spec_tests/data/gridfs/download_by_name.yml
1034
1198
  - spec/spec_tests/data/gridfs/upload.yml
1199
+ - spec/spec_tests/data/gridfs_unified/delete.yml
1200
+ - spec/spec_tests/data/gridfs_unified/download.yml
1201
+ - spec/spec_tests/data/gridfs_unified/downloadByName.yml
1202
+ - spec/spec_tests/data/gridfs_unified/upload-disableMD5.yml
1203
+ - spec/spec_tests/data/gridfs_unified/upload.yml
1204
+ - spec/spec_tests/data/load_balancers/event-monitoring.yml
1205
+ - spec/spec_tests/data/load_balancers/lb-connection-establishment.yml
1206
+ - spec/spec_tests/data/load_balancers/non-lb-connection-establishment.yml
1207
+ - spec/spec_tests/data/load_balancers/server-selection.yml
1035
1208
  - spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/DefaultNoMaxStaleness.yml
1036
1209
  - spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/Incompatible.yml
1037
1210
  - spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/LastUpdateTime.yml
@@ -1076,147 +1249,162 @@ files:
1076
1249
  - spec/spec_tests/data/read_write_concern/operation/default-write-concern-3.2.yml
1077
1250
  - spec/spec_tests/data/read_write_concern/operation/default-write-concern-3.4.yml
1078
1251
  - spec/spec_tests/data/read_write_concern/operation/default-write-concern-4.2.yml
1079
- - spec/spec_tests/data/retryable_reads/aggregate-merge.yml
1080
- - spec/spec_tests/data/retryable_reads/aggregate-serverErrors.yml
1081
- - spec/spec_tests/data/retryable_reads/aggregate.yml
1082
- - spec/spec_tests/data/retryable_reads/changeStreams-client.watch-serverErrors.yml
1083
- - spec/spec_tests/data/retryable_reads/changeStreams-client.watch.yml
1084
- - spec/spec_tests/data/retryable_reads/changeStreams-db.coll.watch-serverErrors.yml
1085
- - spec/spec_tests/data/retryable_reads/changeStreams-db.coll.watch.yml
1086
- - spec/spec_tests/data/retryable_reads/changeStreams-db.watch-serverErrors.yml
1087
- - spec/spec_tests/data/retryable_reads/changeStreams-db.watch.yml
1088
- - spec/spec_tests/data/retryable_reads/count-serverErrors.yml
1089
- - spec/spec_tests/data/retryable_reads/count.yml
1090
- - spec/spec_tests/data/retryable_reads/countDocuments-serverErrors.yml
1091
- - spec/spec_tests/data/retryable_reads/countDocuments.yml
1092
- - spec/spec_tests/data/retryable_reads/distinct-serverErrors.yml
1093
- - spec/spec_tests/data/retryable_reads/distinct.yml
1094
- - spec/spec_tests/data/retryable_reads/estimatedDocumentCount-serverErrors.yml
1095
- - spec/spec_tests/data/retryable_reads/estimatedDocumentCount.yml
1096
- - spec/spec_tests/data/retryable_reads/find-serverErrors.yml
1097
- - spec/spec_tests/data/retryable_reads/find.yml
1098
- - spec/spec_tests/data/retryable_reads/findOne-serverErrors.yml
1099
- - spec/spec_tests/data/retryable_reads/findOne.yml
1100
- - spec/spec_tests/data/retryable_reads/gridfs-download-serverErrors.yml
1101
- - spec/spec_tests/data/retryable_reads/gridfs-download.yml
1102
- - spec/spec_tests/data/retryable_reads/gridfs-downloadByName-serverErrors.yml
1103
- - spec/spec_tests/data/retryable_reads/gridfs-downloadByName.yml
1104
- - spec/spec_tests/data/retryable_reads/listCollectionNames-serverErrors.yml
1105
- - spec/spec_tests/data/retryable_reads/listCollectionNames.yml
1106
- - spec/spec_tests/data/retryable_reads/listCollectionObjects-serverErrors.yml
1107
- - spec/spec_tests/data/retryable_reads/listCollectionObjects.yml
1108
- - spec/spec_tests/data/retryable_reads/listCollections-serverErrors.yml
1109
- - spec/spec_tests/data/retryable_reads/listCollections.yml
1110
- - spec/spec_tests/data/retryable_reads/listDatabaseNames-serverErrors.yml
1111
- - spec/spec_tests/data/retryable_reads/listDatabaseNames.yml
1112
- - spec/spec_tests/data/retryable_reads/listDatabaseObjects-serverErrors.yml
1113
- - spec/spec_tests/data/retryable_reads/listDatabaseObjects.yml
1114
- - spec/spec_tests/data/retryable_reads/listDatabases-serverErrors.yml
1115
- - spec/spec_tests/data/retryable_reads/listDatabases.yml
1116
- - spec/spec_tests/data/retryable_reads/listIndexNames-serverErrors.yml
1117
- - spec/spec_tests/data/retryable_reads/listIndexNames.yml
1118
- - spec/spec_tests/data/retryable_reads/listIndexes-serverErrors.yml
1119
- - spec/spec_tests/data/retryable_reads/listIndexes.yml
1120
- - spec/spec_tests/data/retryable_reads/mapReduce.yml
1121
- - spec/spec_tests/data/retryable_writes/bulkWrite-errorLabels.yml
1122
- - spec/spec_tests/data/retryable_writes/bulkWrite-serverErrors.yml
1123
- - spec/spec_tests/data/retryable_writes/bulkWrite.yml
1124
- - spec/spec_tests/data/retryable_writes/deleteMany.yml
1125
- - spec/spec_tests/data/retryable_writes/deleteOne-errorLabels.yml
1126
- - spec/spec_tests/data/retryable_writes/deleteOne-serverErrors.yml
1127
- - spec/spec_tests/data/retryable_writes/deleteOne.yml
1128
- - spec/spec_tests/data/retryable_writes/findOneAndDelete-errorLabels.yml
1129
- - spec/spec_tests/data/retryable_writes/findOneAndDelete-serverErrors.yml
1130
- - spec/spec_tests/data/retryable_writes/findOneAndDelete.yml
1131
- - spec/spec_tests/data/retryable_writes/findOneAndReplace-errorLabels.yml
1132
- - spec/spec_tests/data/retryable_writes/findOneAndReplace-serverErrors.yml
1133
- - spec/spec_tests/data/retryable_writes/findOneAndReplace.yml
1134
- - spec/spec_tests/data/retryable_writes/findOneAndUpdate-errorLabels.yml
1135
- - spec/spec_tests/data/retryable_writes/findOneAndUpdate-serverErrors.yml
1136
- - spec/spec_tests/data/retryable_writes/findOneAndUpdate.yml
1137
- - spec/spec_tests/data/retryable_writes/insertMany-errorLabels.yml
1138
- - spec/spec_tests/data/retryable_writes/insertMany-serverErrors.yml
1139
- - spec/spec_tests/data/retryable_writes/insertMany.yml
1140
- - spec/spec_tests/data/retryable_writes/insertOne-errorLabels.yml
1141
- - spec/spec_tests/data/retryable_writes/insertOne-serverErrors.yml
1142
- - spec/spec_tests/data/retryable_writes/insertOne.yml
1143
- - spec/spec_tests/data/retryable_writes/replaceOne-errorLabels.yml
1144
- - spec/spec_tests/data/retryable_writes/replaceOne-serverErrors.yml
1145
- - spec/spec_tests/data/retryable_writes/replaceOne.yml
1146
- - spec/spec_tests/data/retryable_writes/updateMany.yml
1147
- - spec/spec_tests/data/retryable_writes/updateOne-errorLabels.yml
1148
- - spec/spec_tests/data/retryable_writes/updateOne-serverErrors.yml
1149
- - spec/spec_tests/data/retryable_writes/updateOne.yml
1252
+ - spec/spec_tests/data/retryable_reads/legacy/aggregate-merge.yml
1253
+ - spec/spec_tests/data/retryable_reads/legacy/aggregate-serverErrors.yml
1254
+ - spec/spec_tests/data/retryable_reads/legacy/aggregate.yml
1255
+ - spec/spec_tests/data/retryable_reads/legacy/changeStreams-client.watch-serverErrors.yml
1256
+ - spec/spec_tests/data/retryable_reads/legacy/changeStreams-client.watch.yml
1257
+ - spec/spec_tests/data/retryable_reads/legacy/changeStreams-db.coll.watch-serverErrors.yml
1258
+ - spec/spec_tests/data/retryable_reads/legacy/changeStreams-db.coll.watch.yml
1259
+ - spec/spec_tests/data/retryable_reads/legacy/changeStreams-db.watch-serverErrors.yml
1260
+ - spec/spec_tests/data/retryable_reads/legacy/changeStreams-db.watch.yml
1261
+ - spec/spec_tests/data/retryable_reads/legacy/count-serverErrors.yml
1262
+ - spec/spec_tests/data/retryable_reads/legacy/count.yml
1263
+ - spec/spec_tests/data/retryable_reads/legacy/countDocuments-serverErrors.yml
1264
+ - spec/spec_tests/data/retryable_reads/legacy/countDocuments.yml
1265
+ - spec/spec_tests/data/retryable_reads/legacy/distinct-serverErrors.yml
1266
+ - spec/spec_tests/data/retryable_reads/legacy/distinct.yml
1267
+ - spec/spec_tests/data/retryable_reads/legacy/estimatedDocumentCount-serverErrors.yml
1268
+ - spec/spec_tests/data/retryable_reads/legacy/estimatedDocumentCount.yml
1269
+ - spec/spec_tests/data/retryable_reads/legacy/find-serverErrors.yml
1270
+ - spec/spec_tests/data/retryable_reads/legacy/find.yml
1271
+ - spec/spec_tests/data/retryable_reads/legacy/findOne-serverErrors.yml
1272
+ - spec/spec_tests/data/retryable_reads/legacy/findOne.yml
1273
+ - spec/spec_tests/data/retryable_reads/legacy/gridfs-download-serverErrors.yml
1274
+ - spec/spec_tests/data/retryable_reads/legacy/gridfs-download.yml
1275
+ - spec/spec_tests/data/retryable_reads/legacy/gridfs-downloadByName-serverErrors.yml
1276
+ - spec/spec_tests/data/retryable_reads/legacy/gridfs-downloadByName.yml
1277
+ - spec/spec_tests/data/retryable_reads/legacy/listCollectionNames-serverErrors.yml
1278
+ - spec/spec_tests/data/retryable_reads/legacy/listCollectionNames.yml
1279
+ - spec/spec_tests/data/retryable_reads/legacy/listCollectionObjects-serverErrors.yml
1280
+ - spec/spec_tests/data/retryable_reads/legacy/listCollectionObjects.yml
1281
+ - spec/spec_tests/data/retryable_reads/legacy/listCollections-serverErrors.yml
1282
+ - spec/spec_tests/data/retryable_reads/legacy/listCollections.yml
1283
+ - spec/spec_tests/data/retryable_reads/legacy/listDatabaseNames-serverErrors.yml
1284
+ - spec/spec_tests/data/retryable_reads/legacy/listDatabaseNames.yml
1285
+ - spec/spec_tests/data/retryable_reads/legacy/listDatabaseObjects-serverErrors.yml
1286
+ - spec/spec_tests/data/retryable_reads/legacy/listDatabaseObjects.yml
1287
+ - spec/spec_tests/data/retryable_reads/legacy/listDatabases-serverErrors.yml
1288
+ - spec/spec_tests/data/retryable_reads/legacy/listDatabases.yml
1289
+ - spec/spec_tests/data/retryable_reads/legacy/listIndexNames-serverErrors.yml
1290
+ - spec/spec_tests/data/retryable_reads/legacy/listIndexNames.yml
1291
+ - spec/spec_tests/data/retryable_reads/legacy/listIndexes-serverErrors.yml
1292
+ - spec/spec_tests/data/retryable_reads/legacy/listIndexes.yml
1293
+ - spec/spec_tests/data/retryable_reads/legacy/mapReduce.yml
1294
+ - spec/spec_tests/data/retryable_reads/unified/handshakeError.yml
1295
+ - spec/spec_tests/data/retryable_writes/legacy/bulkWrite-errorLabels.yml
1296
+ - spec/spec_tests/data/retryable_writes/legacy/bulkWrite-serverErrors.yml
1297
+ - spec/spec_tests/data/retryable_writes/legacy/bulkWrite.yml
1298
+ - spec/spec_tests/data/retryable_writes/legacy/deleteMany.yml
1299
+ - spec/spec_tests/data/retryable_writes/legacy/deleteOne-errorLabels.yml
1300
+ - spec/spec_tests/data/retryable_writes/legacy/deleteOne-serverErrors.yml
1301
+ - spec/spec_tests/data/retryable_writes/legacy/deleteOne.yml
1302
+ - spec/spec_tests/data/retryable_writes/legacy/findOneAndDelete-errorLabels.yml
1303
+ - spec/spec_tests/data/retryable_writes/legacy/findOneAndDelete-serverErrors.yml
1304
+ - spec/spec_tests/data/retryable_writes/legacy/findOneAndDelete.yml
1305
+ - spec/spec_tests/data/retryable_writes/legacy/findOneAndReplace-errorLabels.yml
1306
+ - spec/spec_tests/data/retryable_writes/legacy/findOneAndReplace-serverErrors.yml
1307
+ - spec/spec_tests/data/retryable_writes/legacy/findOneAndReplace.yml
1308
+ - spec/spec_tests/data/retryable_writes/legacy/findOneAndUpdate-errorLabels.yml
1309
+ - spec/spec_tests/data/retryable_writes/legacy/findOneAndUpdate-serverErrors.yml
1310
+ - spec/spec_tests/data/retryable_writes/legacy/findOneAndUpdate.yml
1311
+ - spec/spec_tests/data/retryable_writes/legacy/insertMany-errorLabels.yml
1312
+ - spec/spec_tests/data/retryable_writes/legacy/insertMany-serverErrors.yml
1313
+ - spec/spec_tests/data/retryable_writes/legacy/insertMany.yml
1314
+ - spec/spec_tests/data/retryable_writes/legacy/insertOne-errorLabels.yml
1315
+ - spec/spec_tests/data/retryable_writes/legacy/insertOne-serverErrors.yml
1316
+ - spec/spec_tests/data/retryable_writes/legacy/insertOne.yml
1317
+ - spec/spec_tests/data/retryable_writes/legacy/replaceOne-errorLabels.yml
1318
+ - spec/spec_tests/data/retryable_writes/legacy/replaceOne-serverErrors.yml
1319
+ - spec/spec_tests/data/retryable_writes/legacy/replaceOne.yml
1320
+ - spec/spec_tests/data/retryable_writes/legacy/updateMany.yml
1321
+ - spec/spec_tests/data/retryable_writes/legacy/updateOne-errorLabels.yml
1322
+ - spec/spec_tests/data/retryable_writes/legacy/updateOne-serverErrors.yml
1323
+ - spec/spec_tests/data/retryable_writes/legacy/updateOne.yml
1324
+ - spec/spec_tests/data/retryable_writes/unified/bulkWrite-serverErrors.yml
1325
+ - spec/spec_tests/data/retryable_writes/unified/handshakeError.yml
1326
+ - spec/spec_tests/data/retryable_writes/unified/insertOne-serverErrors.yml
1150
1327
  - spec/spec_tests/data/sdam/errors/error_handling_handshake.yml
1151
1328
  - spec/spec_tests/data/sdam/errors/non-stale-network-error.yml
1152
1329
  - spec/spec_tests/data/sdam/errors/non-stale-network-timeout-error.yml
1153
1330
  - spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-InterruptedAtShutdown.yml
1154
1331
  - spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-InterruptedDueToReplStateChange.yml
1155
- - spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-NotMaster.yml
1156
- - spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-NotMasterNoSlaveOk.yml
1157
- - spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-NotMasterOrSecondary.yml
1332
+ - spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-LegacyNotPrimary.yml
1333
+ - spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-NotPrimaryNoSecondaryOk.yml
1334
+ - spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-NotPrimaryOrSecondary.yml
1335
+ - spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-NotWritablePrimary.yml
1158
1336
  - spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-PrimarySteppedDown.yml
1159
1337
  - spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-ShutdownInProgress.yml
1160
1338
  - spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-InterruptedAtShutdown.yml
1161
1339
  - spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-InterruptedDueToReplStateChange.yml
1162
- - spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-NotMaster.yml
1163
- - spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-NotMasterNoSlaveOk.yml
1164
- - spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-NotMasterOrSecondary.yml
1340
+ - spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-LegacyNotPrimary.yml
1341
+ - spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-NotPrimaryNoSecondaryOk.yml
1342
+ - spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-NotPrimaryOrSecondary.yml
1343
+ - spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-NotWritablePrimary.yml
1165
1344
  - spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-PrimarySteppedDown.yml
1166
1345
  - spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-ShutdownInProgress.yml
1167
1346
  - spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-InterruptedAtShutdown.yml
1168
1347
  - spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-InterruptedDueToReplStateChange.yml
1169
- - spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-NotMaster.yml
1170
- - spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-NotMasterNoSlaveOk.yml
1171
- - spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-NotMasterOrSecondary.yml
1348
+ - spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-LegacyNotPrimary.yml
1349
+ - spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-NotPrimaryNoSecondaryOk.yml
1350
+ - spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-NotPrimaryOrSecondary.yml
1351
+ - spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-NotWritablePrimary.yml
1172
1352
  - spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-PrimarySteppedDown.yml
1173
1353
  - spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-ShutdownInProgress.yml
1174
1354
  - spec/spec_tests/data/sdam/errors/post-42-InterruptedAtShutdown.yml
1175
1355
  - spec/spec_tests/data/sdam/errors/post-42-InterruptedDueToReplStateChange.yml
1176
- - spec/spec_tests/data/sdam/errors/post-42-NotMaster.yml
1177
- - spec/spec_tests/data/sdam/errors/post-42-NotMasterNoSlaveOk.yml
1178
- - spec/spec_tests/data/sdam/errors/post-42-NotMasterOrSecondary.yml
1356
+ - spec/spec_tests/data/sdam/errors/post-42-LegacyNotPrimary.yml
1357
+ - spec/spec_tests/data/sdam/errors/post-42-NotPrimaryNoSecondaryOk.yml
1358
+ - spec/spec_tests/data/sdam/errors/post-42-NotPrimaryOrSecondary.yml
1359
+ - spec/spec_tests/data/sdam/errors/post-42-NotWritablePrimary.yml
1179
1360
  - spec/spec_tests/data/sdam/errors/post-42-PrimarySteppedDown.yml
1180
1361
  - spec/spec_tests/data/sdam/errors/post-42-ShutdownInProgress.yml
1181
1362
  - spec/spec_tests/data/sdam/errors/pre-42-InterruptedAtShutdown.yml
1182
1363
  - spec/spec_tests/data/sdam/errors/pre-42-InterruptedDueToReplStateChange.yml
1183
- - spec/spec_tests/data/sdam/errors/pre-42-NotMaster.yml
1184
- - spec/spec_tests/data/sdam/errors/pre-42-NotMasterNoSlaveOk.yml
1185
- - spec/spec_tests/data/sdam/errors/pre-42-NotMasterOrSecondary.yml
1364
+ - spec/spec_tests/data/sdam/errors/pre-42-LegacyNotPrimary.yml
1365
+ - spec/spec_tests/data/sdam/errors/pre-42-NotPrimaryNoSecondaryOk.yml
1366
+ - spec/spec_tests/data/sdam/errors/pre-42-NotPrimaryOrSecondary.yml
1367
+ - spec/spec_tests/data/sdam/errors/pre-42-NotWritablePrimary.yml
1186
1368
  - spec/spec_tests/data/sdam/errors/pre-42-PrimarySteppedDown.yml
1187
1369
  - spec/spec_tests/data/sdam/errors/pre-42-ShutdownInProgress.yml
1370
+ - spec/spec_tests/data/sdam/errors/prefer-error-code.yml
1188
1371
  - spec/spec_tests/data/sdam/errors/stale-generation-InterruptedAtShutdown.yml
1189
1372
  - spec/spec_tests/data/sdam/errors/stale-generation-InterruptedDueToReplStateChange.yml
1190
- - spec/spec_tests/data/sdam/errors/stale-generation-NotMaster.yml
1191
- - spec/spec_tests/data/sdam/errors/stale-generation-NotMasterNoSlaveOk.yml
1192
- - spec/spec_tests/data/sdam/errors/stale-generation-NotMasterOrSecondary.yml
1373
+ - spec/spec_tests/data/sdam/errors/stale-generation-NotPrimaryNoSecondaryOk.yml
1374
+ - spec/spec_tests/data/sdam/errors/stale-generation-NotPrimaryOrSecondary.yml
1375
+ - spec/spec_tests/data/sdam/errors/stale-generation-NotWritablePrimary.yml
1193
1376
  - spec/spec_tests/data/sdam/errors/stale-generation-PrimarySteppedDown.yml
1194
1377
  - spec/spec_tests/data/sdam/errors/stale-generation-ShutdownInProgress.yml
1195
1378
  - spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-InterruptedAtShutdown.yml
1196
1379
  - spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-InterruptedDueToReplStateChange.yml
1197
- - spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-NotMaster.yml
1198
- - spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-NotMasterNoSlaveOk.yml
1199
- - spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-NotMasterOrSecondary.yml
1380
+ - spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-LegacyNotPrimary.yml
1381
+ - spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-NotPrimaryNoSecondaryOk.yml
1382
+ - spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-NotPrimaryOrSecondary.yml
1383
+ - spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-NotWritablePrimary.yml
1200
1384
  - spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-PrimarySteppedDown.yml
1201
1385
  - spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-ShutdownInProgress.yml
1202
1386
  - spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-network.yml
1203
1387
  - spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-timeout.yml
1204
1388
  - spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-InterruptedAtShutdown.yml
1205
1389
  - spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-InterruptedDueToReplStateChange.yml
1206
- - spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-NotMaster.yml
1207
- - spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-NotMasterNoSlaveOk.yml
1208
- - spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-NotMasterOrSecondary.yml
1390
+ - spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-LegacyNotPrimary.yml
1391
+ - spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-NotPrimaryNoSecondaryOk.yml
1392
+ - spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-NotPrimaryOrSecondary.yml
1393
+ - spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-NotWritablePrimary.yml
1209
1394
  - spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-PrimarySteppedDown.yml
1210
1395
  - spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-ShutdownInProgress.yml
1211
1396
  - spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-network.yml
1212
1397
  - spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-timeout.yml
1213
1398
  - spec/spec_tests/data/sdam/errors/stale-topologyVersion-InterruptedAtShutdown.yml
1214
1399
  - spec/spec_tests/data/sdam/errors/stale-topologyVersion-InterruptedDueToReplStateChange.yml
1215
- - spec/spec_tests/data/sdam/errors/stale-topologyVersion-NotMaster.yml
1216
- - spec/spec_tests/data/sdam/errors/stale-topologyVersion-NotMasterNoSlaveOk.yml
1217
- - spec/spec_tests/data/sdam/errors/stale-topologyVersion-NotMasterOrSecondary.yml
1400
+ - spec/spec_tests/data/sdam/errors/stale-topologyVersion-LegacyNotPrimary.yml
1401
+ - spec/spec_tests/data/sdam/errors/stale-topologyVersion-NotPrimaryNoSecondaryOk.yml
1402
+ - spec/spec_tests/data/sdam/errors/stale-topologyVersion-NotPrimaryOrSecondary.yml
1403
+ - spec/spec_tests/data/sdam/errors/stale-topologyVersion-NotWritablePrimary.yml
1218
1404
  - spec/spec_tests/data/sdam/errors/stale-topologyVersion-PrimarySteppedDown.yml
1219
1405
  - spec/spec_tests/data/sdam/errors/stale-topologyVersion-ShutdownInProgress.yml
1406
+ - spec/spec_tests/data/sdam/errors/write_errors_ignored.yml
1407
+ - spec/spec_tests/data/sdam/load-balanced/discover_load_balancer.yml
1220
1408
  - spec/spec_tests/data/sdam/rs/compatible.yml
1221
1409
  - spec/spec_tests/data/sdam/rs/compatible_unknown.yml
1222
1410
  - spec/spec_tests/data/sdam/rs/discover_arbiters.yml
@@ -1301,7 +1489,6 @@ files:
1301
1489
  - spec/spec_tests/data/sdam/single/direct_connection_rsarbiter.yml
1302
1490
  - spec/spec_tests/data/sdam/single/direct_connection_rsprimary.yml
1303
1491
  - spec/spec_tests/data/sdam/single/direct_connection_rssecondary.yml
1304
- - spec/spec_tests/data/sdam/single/direct_connection_slave.yml
1305
1492
  - spec/spec_tests/data/sdam/single/direct_connection_standalone.yml
1306
1493
  - spec/spec_tests/data/sdam/single/direct_connection_unavailable_seed.yml
1307
1494
  - spec/spec_tests/data/sdam/single/direct_connection_wrong_set_name.yml
@@ -1312,6 +1499,7 @@ files:
1312
1499
  - spec/spec_tests/data/sdam/single/ruby_primary_different_address.yml
1313
1500
  - spec/spec_tests/data/sdam/single/ruby_primary_mismatched_me.yml
1314
1501
  - spec/spec_tests/data/sdam/single/standalone_removed.yml
1502
+ - spec/spec_tests/data/sdam/single/standalone_using_legacy_hello.yml
1315
1503
  - spec/spec_tests/data/sdam/single/too_new.yml
1316
1504
  - spec/spec_tests/data/sdam/single/too_old.yml
1317
1505
  - spec/spec_tests/data/sdam/single/too_old_then_upgraded.yml
@@ -1319,13 +1507,14 @@ files:
1319
1507
  - spec/spec_tests/data/sdam_integration/connectTimeoutMS.yml
1320
1508
  - spec/spec_tests/data/sdam_integration/find-network-error.yml
1321
1509
  - spec/spec_tests/data/sdam_integration/find-shutdown-error.yml
1510
+ - spec/spec_tests/data/sdam_integration/hello-command-error.yml
1511
+ - spec/spec_tests/data/sdam_integration/hello-network-error.yml
1512
+ - spec/spec_tests/data/sdam_integration/hello-timeout.yml
1322
1513
  - spec/spec_tests/data/sdam_integration/insert-network-error.yml
1323
1514
  - spec/spec_tests/data/sdam_integration/insert-shutdown-error.yml
1324
- - spec/spec_tests/data/sdam_integration/isMaster-command-error.yml
1325
- - spec/spec_tests/data/sdam_integration/isMaster-network-error.yml
1326
- - spec/spec_tests/data/sdam_integration/isMaster-timeout.yml
1327
1515
  - spec/spec_tests/data/sdam_integration/rediscover-quickly-after-step-down.yml
1328
1516
  - spec/spec_tests/data/sdam_monitoring/discovered_standalone.yml
1517
+ - spec/spec_tests/data/sdam_monitoring/load_balancer.yml
1329
1518
  - spec/spec_tests/data/sdam_monitoring/replica_set_other_chain.yml
1330
1519
  - spec/spec_tests/data/sdam_monitoring/replica_set_other_change.yml
1331
1520
  - spec/spec_tests/data/sdam_monitoring/replica_set_primary_address_change.yml
@@ -1341,6 +1530,56 @@ files:
1341
1530
  - spec/spec_tests/data/sdam_monitoring/standalone_repeated.yml
1342
1531
  - spec/spec_tests/data/sdam_monitoring/standalone_suppress_equal_description_changes.yml
1343
1532
  - spec/spec_tests/data/sdam_monitoring/standalone_to_rs_with_me_mismatch.yml
1533
+ - spec/spec_tests/data/seed_list_discovery/load-balanced/loadBalanced-directConnection.yml
1534
+ - spec/spec_tests/data/seed_list_discovery/load-balanced/loadBalanced-no-results.yml
1535
+ - spec/spec_tests/data/seed_list_discovery/load-balanced/loadBalanced-replicaSet-errors.yml
1536
+ - spec/spec_tests/data/seed_list_discovery/load-balanced/loadBalanced-true-multiple-hosts.yml
1537
+ - spec/spec_tests/data/seed_list_discovery/load-balanced/loadBalanced-true-txt.yml
1538
+ - spec/spec_tests/data/seed_list_discovery/load-balanced/srvMaxHosts-conflicts_with_loadBalanced-true-txt.yml
1539
+ - spec/spec_tests/data/seed_list_discovery/load-balanced/srvMaxHosts-conflicts_with_loadBalanced-true.yml
1540
+ - spec/spec_tests/data/seed_list_discovery/load-balanced/srvMaxHosts-zero-txt.yml
1541
+ - spec/spec_tests/data/seed_list_discovery/load-balanced/srvMaxHosts-zero.yml
1542
+ - spec/spec_tests/data/seed_list_discovery/replica-set/direct-connection-false.yml
1543
+ - spec/spec_tests/data/seed_list_discovery/replica-set/direct-connection-true.yml
1544
+ - spec/spec_tests/data/seed_list_discovery/replica-set/encoded-userinfo-and-db.yml
1545
+ - spec/spec_tests/data/seed_list_discovery/replica-set/loadBalanced-false-txt.yml
1546
+ - spec/spec_tests/data/seed_list_discovery/replica-set/longer-parent-in-return.yml
1547
+ - spec/spec_tests/data/seed_list_discovery/replica-set/misformatted-option.yml
1548
+ - spec/spec_tests/data/seed_list_discovery/replica-set/no-results.yml
1549
+ - spec/spec_tests/data/seed_list_discovery/replica-set/not-enough-parts.yml
1550
+ - spec/spec_tests/data/seed_list_discovery/replica-set/one-result-default-port.yml
1551
+ - spec/spec_tests/data/seed_list_discovery/replica-set/one-txt-record-multiple-strings.yml
1552
+ - spec/spec_tests/data/seed_list_discovery/replica-set/one-txt-record.yml
1553
+ - spec/spec_tests/data/seed_list_discovery/replica-set/parent-part-mismatch1.yml
1554
+ - spec/spec_tests/data/seed_list_discovery/replica-set/parent-part-mismatch2.yml
1555
+ - spec/spec_tests/data/seed_list_discovery/replica-set/parent-part-mismatch3.yml
1556
+ - spec/spec_tests/data/seed_list_discovery/replica-set/parent-part-mismatch4.yml
1557
+ - spec/spec_tests/data/seed_list_discovery/replica-set/parent-part-mismatch5.yml
1558
+ - spec/spec_tests/data/seed_list_discovery/replica-set/returned-parent-too-short.yml
1559
+ - spec/spec_tests/data/seed_list_discovery/replica-set/returned-parent-wrong.yml
1560
+ - spec/spec_tests/data/seed_list_discovery/replica-set/srv-service-name.yml
1561
+ - spec/spec_tests/data/seed_list_discovery/replica-set/srvMaxHosts-conflicts_with_replicaSet-txt.yml
1562
+ - spec/spec_tests/data/seed_list_discovery/replica-set/srvMaxHosts-conflicts_with_replicaSet.yml
1563
+ - spec/spec_tests/data/seed_list_discovery/replica-set/srvMaxHosts-equal_to_srv_records.yml
1564
+ - spec/spec_tests/data/seed_list_discovery/replica-set/srvMaxHosts-greater_than_srv_records.yml
1565
+ - spec/spec_tests/data/seed_list_discovery/replica-set/srvMaxHosts-less_than_srv_records.yml
1566
+ - spec/spec_tests/data/seed_list_discovery/replica-set/srvMaxHosts-zero-txt.yml
1567
+ - spec/spec_tests/data/seed_list_discovery/replica-set/srvMaxHosts-zero.yml
1568
+ - spec/spec_tests/data/seed_list_discovery/replica-set/two-results-default-port.yml
1569
+ - spec/spec_tests/data/seed_list_discovery/replica-set/two-results-nonstandard-port.yml
1570
+ - spec/spec_tests/data/seed_list_discovery/replica-set/two-txt-records.yml
1571
+ - spec/spec_tests/data/seed_list_discovery/replica-set/txt-record-not-allowed-option.yml
1572
+ - spec/spec_tests/data/seed_list_discovery/replica-set/txt-record-with-overridden-ssl-option.yml
1573
+ - spec/spec_tests/data/seed_list_discovery/replica-set/txt-record-with-overridden-uri-option.yml
1574
+ - spec/spec_tests/data/seed_list_discovery/replica-set/txt-record-with-unallowed-option.yml
1575
+ - spec/spec_tests/data/seed_list_discovery/replica-set/uri-with-admin-database.yml
1576
+ - spec/spec_tests/data/seed_list_discovery/replica-set/uri-with-auth.yml
1577
+ - spec/spec_tests/data/seed_list_discovery/replica-set/uri-with-port.yml
1578
+ - spec/spec_tests/data/seed_list_discovery/replica-set/uri-with-two-hosts.yml
1579
+ - spec/spec_tests/data/seed_list_discovery/sharded/srvMaxHosts-equal_to_srv_records.yml
1580
+ - spec/spec_tests/data/seed_list_discovery/sharded/srvMaxHosts-greater_than_srv_records.yml
1581
+ - spec/spec_tests/data/seed_list_discovery/sharded/srvMaxHosts-less_than_srv_records.yml
1582
+ - spec/spec_tests/data/seed_list_discovery/sharded/srvMaxHosts-zero.yml
1344
1583
  - spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/Nearest.yml
1345
1584
  - spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/Nearest_multiple.yml
1346
1585
  - spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/Nearest_non_matching.yml
@@ -1373,6 +1612,8 @@ files:
1373
1612
  - spec/spec_tests/data/server_selection/Sharded/read/SecondaryPreferred.yml
1374
1613
  - spec/spec_tests/data/server_selection/Single/read/SecondaryPreferred.yml
1375
1614
  - spec/spec_tests/data/server_selection/Unknown/read/SecondaryPreferred.yml
1615
+ - spec/spec_tests/data/server_selection/Unknown/read/ghost.yml
1616
+ - spec/spec_tests/data/server_selection/Unknown/write/ghost.yml
1376
1617
  - spec/spec_tests/data/server_selection_rtt/first_value.yml
1377
1618
  - spec/spec_tests/data/server_selection_rtt/first_value_zero.yml
1378
1619
  - spec/spec_tests/data/server_selection_rtt/value_test_1.yml
@@ -1380,6 +1621,11 @@ files:
1380
1621
  - spec/spec_tests/data/server_selection_rtt/value_test_3.yml
1381
1622
  - spec/spec_tests/data/server_selection_rtt/value_test_4.yml
1382
1623
  - spec/spec_tests/data/server_selection_rtt/value_test_5.yml
1624
+ - spec/spec_tests/data/sessions_unified/driver-sessions-server-support.yml
1625
+ - spec/spec_tests/data/sessions_unified/snapshot-sessions-not-supported-client-error.yml
1626
+ - spec/spec_tests/data/sessions_unified/snapshot-sessions-not-supported-server-error.yml
1627
+ - spec/spec_tests/data/sessions_unified/snapshot-sessions-unsupported-ops.yml
1628
+ - spec/spec_tests/data/sessions_unified/snapshot-sessions.yml
1383
1629
  - spec/spec_tests/data/transactions/abort.yml
1384
1630
  - spec/spec_tests/data/transactions/bulk.yml
1385
1631
  - spec/spec_tests/data/transactions/causal-consistency.yml
@@ -1421,6 +1667,24 @@ files:
1421
1667
  - spec/spec_tests/data/transactions_api/commit-writeconcernerror.yml
1422
1668
  - spec/spec_tests/data/transactions_api/commit.yml
1423
1669
  - spec/spec_tests/data/transactions_api/transaction-options.yml
1670
+ - spec/spec_tests/data/transactions_unified/do-not-retry-read-in-transaction.yml
1671
+ - spec/spec_tests/data/transactions_unified/mongos-unpin.yml
1672
+ - spec/spec_tests/data/transactions_unified/retryable-abort-handshake.yml
1673
+ - spec/spec_tests/data/transactions_unified/retryable-commit-handshake.yml
1674
+ - spec/spec_tests/data/unified/invalid/expectedEventsForClient-ignoreExtraEvents-type.yml
1675
+ - spec/spec_tests/data/unified/valid-fail/operation-failure.yml
1676
+ - spec/spec_tests/data/unified/valid-fail/operation-unsupported.yml
1677
+ - spec/spec_tests/data/unified/valid-pass/expectedEventsForClient-ignoreExtraEvents.yml
1678
+ - spec/spec_tests/data/unified/valid-pass/poc-change-streams.yml
1679
+ - spec/spec_tests/data/unified/valid-pass/poc-command-monitoring.yml
1680
+ - spec/spec_tests/data/unified/valid-pass/poc-crud.yml
1681
+ - spec/spec_tests/data/unified/valid-pass/poc-gridfs.yml
1682
+ - spec/spec_tests/data/unified/valid-pass/poc-retryable-reads.yml
1683
+ - spec/spec_tests/data/unified/valid-pass/poc-retryable-writes.yml
1684
+ - spec/spec_tests/data/unified/valid-pass/poc-sessions.yml
1685
+ - spec/spec_tests/data/unified/valid-pass/poc-transactions-convenient-api.yml
1686
+ - spec/spec_tests/data/unified/valid-pass/poc-transactions-mongos-pin-auto.yml
1687
+ - spec/spec_tests/data/unified/valid-pass/poc-transactions.yml
1424
1688
  - spec/spec_tests/data/uri_options/auth-options.yml
1425
1689
  - spec/spec_tests/data/uri_options/compression-options.yml
1426
1690
  - spec/spec_tests/data/uri_options/concern-options.yml
@@ -1429,27 +1693,43 @@ files:
1429
1693
  - spec/spec_tests/data/uri_options/read-preference-options.yml
1430
1694
  - spec/spec_tests/data/uri_options/ruby-auth-options.yml
1431
1695
  - spec/spec_tests/data/uri_options/ruby-connection-options.yml
1696
+ - spec/spec_tests/data/uri_options/srv-options.yml
1432
1697
  - spec/spec_tests/data/uri_options/tls-options.yml
1433
- - spec/spec_tests/dns_seedlist_discovery_spec.rb
1698
+ - spec/spec_tests/data/versioned_api/crud-api-version-1-strict.yml
1699
+ - spec/spec_tests/data/versioned_api/crud-api-version-1.yml
1700
+ - spec/spec_tests/data/versioned_api/runcommand-helper-no-api-version-declared.yml
1701
+ - spec/spec_tests/data/versioned_api/test-commands-deprecation-errors.yml
1702
+ - spec/spec_tests/data/versioned_api/test-commands-strict-mode.yml
1703
+ - spec/spec_tests/data/versioned_api/transaction-handling.yml
1434
1704
  - spec/spec_tests/gridfs_spec.rb
1705
+ - spec/spec_tests/gridfs_unified_spec.rb
1706
+ - spec/spec_tests/load_balancers_spec.rb
1435
1707
  - spec/spec_tests/max_staleness_spec.rb
1436
1708
  - spec/spec_tests/read_write_concern_connection_string_spec.rb
1437
1709
  - spec/spec_tests/read_write_concern_document_spec.rb
1438
1710
  - spec/spec_tests/read_write_concern_operaton_spec.rb
1439
1711
  - spec/spec_tests/retryable_reads_spec.rb
1712
+ - spec/spec_tests/retryable_reads_unified_spec.rb
1440
1713
  - spec/spec_tests/retryable_writes_spec.rb
1714
+ - spec/spec_tests/retryable_writes_unified_spec.rb
1441
1715
  - spec/spec_tests/sdam_integration_spec.rb
1442
1716
  - spec/spec_tests/sdam_monitoring_spec.rb
1443
1717
  - spec/spec_tests/sdam_spec.rb
1718
+ - spec/spec_tests/seed_list_discovery_spec.rb
1444
1719
  - spec/spec_tests/server_selection_rtt_spec.rb
1445
1720
  - spec/spec_tests/server_selection_spec.rb
1721
+ - spec/spec_tests/sessions_unified_spec.rb
1446
1722
  - spec/spec_tests/transactions_api_spec.rb
1447
1723
  - spec/spec_tests/transactions_spec.rb
1724
+ - spec/spec_tests/transactions_unified_spec.rb
1725
+ - spec/spec_tests/unified_spec.rb
1448
1726
  - spec/spec_tests/uri_options_spec.rb
1727
+ - spec/spec_tests/versioned_api_spec.rb
1449
1728
  - spec/stress/cleanup_spec.rb
1450
1729
  - spec/stress/connection_pool_stress_spec.rb
1451
1730
  - spec/stress/connection_pool_timing_spec.rb
1452
1731
  - spec/stress/fork_reconnect_stress_spec.rb
1732
+ - spec/stress/push_monitor_close_spec.rb
1453
1733
  - spec/support/authorization.rb
1454
1734
  - spec/support/aws_utils.rb
1455
1735
  - spec/support/aws_utils/base.rb
@@ -1477,6 +1757,7 @@ files:
1477
1757
  - spec/support/certificates/crl_client_revoked.pem
1478
1758
  - spec/support/certificates/multi-ca.crt
1479
1759
  - spec/support/certificates/python-ca.crt
1760
+ - spec/support/certificates/retrieve-atlas-cert
1480
1761
  - spec/support/certificates/server-int.crt
1481
1762
  - spec/support/certificates/server-second-level-bundle.pem
1482
1763
  - spec/support/certificates/server-second-level.crt
@@ -1485,53 +1766,69 @@ files:
1485
1766
  - spec/support/certificates/server.pem
1486
1767
  - spec/support/client_registry.rb
1487
1768
  - spec/support/client_registry_macros.rb
1488
- - spec/support/cluster_config.rb
1489
1769
  - spec/support/cluster_tools.rb
1490
1770
  - spec/support/common_shortcuts.rb
1491
1771
  - spec/support/constraints.rb
1492
1772
  - spec/support/crypt.rb
1773
+ - spec/support/crypt/corpus/corpus-encrypted.json
1493
1774
  - spec/support/crypt/corpus/corpus-key-aws.json
1775
+ - spec/support/crypt/corpus/corpus-key-azure.json
1776
+ - spec/support/crypt/corpus/corpus-key-gcp.json
1777
+ - spec/support/crypt/corpus/corpus-key-kmip.json
1494
1778
  - spec/support/crypt/corpus/corpus-key-local.json
1495
1779
  - spec/support/crypt/corpus/corpus-schema.json
1496
1780
  - spec/support/crypt/corpus/corpus.json
1497
- - spec/support/crypt/corpus/corpus_encrypted.json
1498
1781
  - spec/support/crypt/data_keys/key_document_aws.json
1782
+ - spec/support/crypt/data_keys/key_document_azure.json
1783
+ - spec/support/crypt/data_keys/key_document_gcp.json
1784
+ - spec/support/crypt/data_keys/key_document_kmip.json
1499
1785
  - spec/support/crypt/data_keys/key_document_local.json
1786
+ - spec/support/crypt/encryptedFields.json
1500
1787
  - spec/support/crypt/external/external-key.json
1501
1788
  - spec/support/crypt/external/external-schema.json
1789
+ - spec/support/crypt/keys/key1-document.json
1502
1790
  - spec/support/crypt/limits/limits-doc.json
1503
1791
  - spec/support/crypt/limits/limits-key.json
1504
1792
  - spec/support/crypt/limits/limits-schema.json
1505
1793
  - spec/support/crypt/schema_maps/schema_map_aws.json
1506
1794
  - spec/support/crypt/schema_maps/schema_map_aws_key_alt_names.json
1795
+ - spec/support/crypt/schema_maps/schema_map_azure.json
1796
+ - spec/support/crypt/schema_maps/schema_map_azure_key_alt_names.json
1797
+ - spec/support/crypt/schema_maps/schema_map_gcp.json
1798
+ - spec/support/crypt/schema_maps/schema_map_gcp_key_alt_names.json
1799
+ - spec/support/crypt/schema_maps/schema_map_kmip.json
1800
+ - spec/support/crypt/schema_maps/schema_map_kmip_key_alt_names.json
1507
1801
  - spec/support/crypt/schema_maps/schema_map_local.json
1508
1802
  - spec/support/crypt/schema_maps/schema_map_local_key_alt_names.json
1509
1803
  - spec/support/dns.rb
1510
- - spec/support/event_subscriber.rb
1511
1804
  - spec/support/json_ext_formatter.rb
1512
1805
  - spec/support/keyword_struct.rb
1513
1806
  - spec/support/local_resource_registry.rb
1807
+ - spec/support/macros.rb
1514
1808
  - spec/support/matchers.rb
1809
+ - spec/support/mongos_macros.rb
1515
1810
  - spec/support/monitoring_ext.rb
1516
1811
  - spec/support/ocsp
1517
1812
  - spec/support/primary_socket.rb
1518
1813
  - spec/support/sdam_formatter_integration.rb
1519
- - spec/support/session_registry.rb
1814
+ - spec/support/shared/app_metadata.rb
1815
+ - spec/support/shared/auth_context.rb
1520
1816
  - spec/support/shared/protocol.rb
1521
1817
  - spec/support/shared/scram_conversation.rb
1522
1818
  - spec/support/shared/server_selector.rb
1523
1819
  - spec/support/shared/session.rb
1524
1820
  - spec/support/spec_config.rb
1525
1821
  - spec/support/spec_setup.rb
1822
+ - spec/support/using_hash.rb
1526
1823
  - spec/support/utils.rb
1527
- homepage: https://docs.mongodb.com/ruby-driver/
1824
+ homepage: https://mongodb.com/docs/ruby-driver/
1528
1825
  licenses:
1529
1826
  - Apache-2.0
1530
1827
  metadata:
1531
1828
  bug_tracker_uri: https://jira.mongodb.org/projects/RUBY
1532
1829
  changelog_uri: https://github.com/mongodb/mongo-ruby-driver/releases
1533
- documentation_uri: https://docs.mongodb.com/ruby-driver/
1534
- homepage_uri: https://docs.mongodb.com/ruby-driver/
1830
+ documentation_uri: https://mongodb.com/docs/ruby-driver/
1831
+ homepage_uri: https://mongodb.com/docs/ruby-driver/
1535
1832
  source_code_uri: https://github.com/mongodb/mongo-ruby-driver
1536
1833
  post_install_message:
1537
1834
  rdoc_options: []
@@ -1541,7 +1838,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
1541
1838
  requirements:
1542
1839
  - - ">="
1543
1840
  - !ruby/object:Gem::Version
1544
- version: '2.3'
1841
+ version: '2.5'
1545
1842
  required_rubygems_version: !ruby/object:Gem::Requirement
1546
1843
  requirements:
1547
1844
  - - ">="
@@ -1554,1029 +1851,1295 @@ signing_key:
1554
1851
  specification_version: 4
1555
1852
  summary: Ruby driver for MongoDB
1556
1853
  test_files:
1557
- - spec/spec_helper.rb
1558
- - spec/shared/lib/mrss/constraints.rb
1559
- - spec/shared/lib/mrss/lite_constraints.rb
1560
- - spec/shared/lib/mrss/child_process_helper.rb
1561
- - spec/shared/lib/mrss/spec_organizer.rb
1562
- - spec/shared/LICENSE
1563
- - spec/USERS.md
1564
- - spec/README.md
1854
+ - spec/kerberos/kerberos_spec.rb
1855
+ - spec/mongo/options/redacted_spec.rb
1856
+ - spec/mongo/database_spec.rb
1857
+ - spec/mongo/bulk_write_spec.rb
1858
+ - spec/mongo/retryable_spec.rb
1859
+ - spec/mongo/server_spec.rb
1860
+ - spec/mongo/bson_spec.rb
1861
+ - spec/mongo/lint_spec.rb
1862
+ - spec/mongo/socket/ssl_spec.rb
1863
+ - spec/mongo/socket/unix_spec.rb
1864
+ - spec/mongo/socket/tcp_spec.rb
1865
+ - spec/mongo/socket_spec.rb
1866
+ - spec/mongo/uri/srv_protocol_spec.rb
1867
+ - spec/mongo/cursor/builder/get_more_command_spec.rb
1868
+ - spec/mongo/cursor/builder/op_get_more_spec.rb
1869
+ - spec/mongo/server_selector_spec.rb
1870
+ - spec/mongo/protocol/reply_spec.rb
1871
+ - spec/mongo/protocol/update_spec.rb
1872
+ - spec/mongo/protocol/compressed_spec.rb
1873
+ - spec/mongo/protocol/query_spec.rb
1874
+ - spec/mongo/protocol/insert_spec.rb
1875
+ - spec/mongo/protocol/delete_spec.rb
1876
+ - spec/mongo/protocol/kill_cursors_spec.rb
1877
+ - spec/mongo/protocol/msg_spec.rb
1878
+ - spec/mongo/protocol/caching_hash_spec.rb
1879
+ - spec/mongo/protocol/get_more_spec.rb
1880
+ - spec/mongo/protocol/registry_spec.rb
1881
+ - spec/mongo/client_encryption_spec.rb
1882
+ - spec/mongo/crypt/binding/mongocrypt_spec.rb
1883
+ - spec/mongo/crypt/binding/helpers_spec.rb
1884
+ - spec/mongo/crypt/binding/context_spec.rb
1885
+ - spec/mongo/crypt/binding/version_spec.rb
1886
+ - spec/mongo/crypt/binding/status_spec.rb
1887
+ - spec/mongo/crypt/binding/binary_spec.rb
1888
+ - spec/mongo/crypt/auto_decryption_context_spec.rb
1889
+ - spec/mongo/crypt/handle_spec.rb
1890
+ - spec/mongo/crypt/hooks_spec.rb
1891
+ - spec/mongo/crypt/explicit_encryption_context_spec.rb
1892
+ - spec/mongo/crypt/explicit_decryption_context_spec.rb
1893
+ - spec/mongo/crypt/binding_unloaded_spec.rb
1894
+ - spec/mongo/crypt/kms_spec.rb
1895
+ - spec/mongo/crypt/auto_encrypter_spec.rb
1896
+ - spec/mongo/crypt/status_spec.rb
1897
+ - spec/mongo/crypt/encryption_io_spec.rb
1898
+ - spec/mongo/crypt/auto_encryption_context_spec.rb
1899
+ - spec/mongo/crypt/helpers/mongo_crypt_spec_helper.rb
1900
+ - spec/mongo/crypt/binary_spec.rb
1901
+ - spec/mongo/crypt/data_key_context_spec.rb
1902
+ - spec/mongo/crypt/kms/credentials_spec.rb
1903
+ - spec/mongo/session/session_pool_spec.rb
1904
+ - spec/mongo/session/server_session_spec.rb
1905
+ - spec/mongo/tls_context_hooks_spec.rb
1906
+ - spec/mongo/cursor_spec.rb
1907
+ - spec/mongo/monitoring/event/cmap/connection_checked_in_spec.rb
1908
+ - spec/mongo/monitoring/event/cmap/pool_created_spec.rb
1909
+ - spec/mongo/monitoring/event/cmap/connection_closed_spec.rb
1910
+ - spec/mongo/monitoring/event/cmap/pool_cleared_spec.rb
1911
+ - spec/mongo/monitoring/event/cmap/connection_created_spec.rb
1912
+ - spec/mongo/monitoring/event/cmap/connection_checked_out_spec.rb
1913
+ - spec/mongo/monitoring/event/cmap/pool_closed_spec.rb
1914
+ - spec/mongo/monitoring/event/cmap/connection_ready_spec.rb
1915
+ - spec/mongo/monitoring/event/cmap/connection_check_out_failed_spec.rb
1916
+ - spec/mongo/monitoring/event/cmap/connection_check_out_started_spec.rb
1917
+ - spec/mongo/monitoring/event/topology_changed_spec.rb
1918
+ - spec/mongo/monitoring/event/server_closed_spec.rb
1919
+ - spec/mongo/monitoring/event/command_succeeded_spec.rb
1920
+ - spec/mongo/monitoring/event/server_opening_spec.rb
1921
+ - spec/mongo/monitoring/event/command_started_spec.rb
1922
+ - spec/mongo/monitoring/event/server_heartbeat_succeeded_spec.rb
1923
+ - spec/mongo/monitoring/event/topology_opening_spec.rb
1924
+ - spec/mongo/monitoring/event/topology_closed_spec.rb
1925
+ - spec/mongo/monitoring/event/command_failed_spec.rb
1926
+ - spec/mongo/monitoring/event/server_description_changed_spec.rb
1927
+ - spec/mongo/monitoring/event/server_heartbeat_failed_spec.rb
1928
+ - spec/mongo/monitoring/event/secure_spec.rb
1929
+ - spec/mongo/monitoring/event/server_heartbeat_started_spec.rb
1930
+ - spec/mongo/monitoring/command_log_subscriber_spec.rb
1931
+ - spec/mongo/timeout_spec.rb
1932
+ - spec/mongo/caching_cursor_spec.rb
1933
+ - spec/mongo/cluster/topology/sharded_spec.rb
1934
+ - spec/mongo/cluster/topology/replica_set_spec.rb
1935
+ - spec/mongo/cluster/topology/unknown_spec.rb
1936
+ - spec/mongo/cluster/topology/single_spec.rb
1937
+ - spec/mongo/cluster/topology_spec.rb
1938
+ - spec/mongo/cluster/periodic_executor_spec.rb
1939
+ - spec/mongo/cluster/cursor_reaper_spec.rb
1940
+ - spec/mongo/cluster/socket_reaper_spec.rb
1941
+ - spec/mongo/client_construction_spec.rb
1942
+ - spec/mongo/query_cache_middleware_spec.rb
1943
+ - spec/mongo/query_cache_spec.rb
1944
+ - spec/mongo/utils_spec.rb
1945
+ - spec/mongo/cluster_time_spec.rb
1946
+ - spec/mongo/distinguishing_semaphore_spec.rb
1947
+ - spec/mongo/uri_spec.rb
1948
+ - spec/mongo/config_spec.rb
1949
+ - spec/mongo/operation/aggregate/result_spec.rb
1950
+ - spec/mongo/operation/read_preference_legacy_spec.rb
1951
+ - spec/mongo/operation/delete/op_msg_spec.rb
1952
+ - spec/mongo/operation/delete/command_spec.rb
1953
+ - spec/mongo/operation/delete/bulk_spec.rb
1954
+ - spec/mongo/operation/drop_index_spec.rb
1955
+ - spec/mongo/operation/update_user_spec.rb
1956
+ - spec/mongo/operation/aggregate_spec.rb
1957
+ - spec/mongo/operation/update_spec.rb
1958
+ - spec/mongo/operation/map_reduce_spec.rb
1959
+ - spec/mongo/operation/find/legacy_spec.rb
1960
+ - spec/mongo/operation/find/builder/flags_spec.rb
1961
+ - spec/mongo/operation/find/builder/modifiers_spec.rb
1962
+ - spec/mongo/operation/create_user_spec.rb
1963
+ - spec/mongo/operation/create_index_spec.rb
1964
+ - spec/mongo/operation/update/op_msg_spec.rb
1965
+ - spec/mongo/operation/update/command_spec.rb
1966
+ - spec/mongo/operation/update/bulk_spec.rb
1967
+ - spec/mongo/operation/indexes_spec.rb
1968
+ - spec/mongo/operation/insert_spec.rb
1969
+ - spec/mongo/operation/remove_user_spec.rb
1970
+ - spec/mongo/operation/delete_spec.rb
1971
+ - spec/mongo/operation/collections_info_spec.rb
1972
+ - spec/mongo/operation/get_more_spec.rb
1973
+ - spec/mongo/operation/insert/op_msg_spec.rb
1974
+ - spec/mongo/operation/insert/command_spec.rb
1975
+ - spec/mongo/operation/insert/bulk_spec.rb
1976
+ - spec/mongo/operation/limited_spec.rb
1977
+ - spec/mongo/operation/command_spec.rb
1978
+ - spec/mongo/operation/specifiable_spec.rb
1979
+ - spec/mongo/operation/read_preference_op_msg_spec.rb
1980
+ - spec/mongo/operation/create/op_msg_spec.rb
1981
+ - spec/mongo/operation/result_spec.rb
1982
+ - spec/mongo/index/view_spec.rb
1983
+ - spec/mongo/id_spec.rb
1984
+ - spec/mongo/collection/view/iterable_spec.rb
1985
+ - spec/mongo/collection/view/immutable_spec.rb
1986
+ - spec/mongo/collection/view/map_reduce_spec.rb
1987
+ - spec/mongo/collection/view/builder/find_command_spec.rb
1988
+ - spec/mongo/collection/view/builder/op_query_spec.rb
1989
+ - spec/mongo/collection/view/explainable_spec.rb
1990
+ - spec/mongo/collection/view/writable_spec.rb
1991
+ - spec/mongo/collection/view/change_stream_spec.rb
1992
+ - spec/mongo/collection/view/aggregation_spec.rb
1993
+ - spec/mongo/collection/view/readable_spec.rb
1994
+ - spec/mongo/collection/view/change_stream_resume_spec.rb
1995
+ - spec/mongo/collection/view_spec.rb
1996
+ - spec/mongo/address/ipv6_spec.rb
1997
+ - spec/mongo/address/validator_spec.rb
1998
+ - spec/mongo/address/ipv4_spec.rb
1999
+ - spec/mongo/address/unix_spec.rb
2000
+ - spec/mongo/server_selector/primary_spec.rb
2001
+ - spec/mongo/server_selector/secondary_spec.rb
2002
+ - spec/mongo/server_selector/nearest_spec.rb
2003
+ - spec/mongo/server_selector/secondary_preferred_spec.rb
2004
+ - spec/mongo/server_selector/primary_preferred_spec.rb
2005
+ - spec/mongo/event/publisher_spec.rb
2006
+ - spec/mongo/event/subscriber_spec.rb
2007
+ - spec/mongo/collection_crud_spec.rb
2008
+ - spec/mongo/uri_option_parsing_spec.rb
2009
+ - spec/mongo/address_spec.rb
2010
+ - spec/mongo/session_spec.rb
2011
+ - spec/mongo/session_transaction_spec.rb
2012
+ - spec/mongo/semaphore_spec.rb
2013
+ - spec/mongo/cluster_spec.rb
2014
+ - spec/mongo/client_spec.rb
2015
+ - spec/mongo/grid/file_spec.rb
2016
+ - spec/mongo/grid/stream_spec.rb
2017
+ - spec/mongo/grid/file/info_spec.rb
2018
+ - spec/mongo/grid/file/chunk_spec.rb
2019
+ - spec/mongo/grid/fs_bucket_spec.rb
2020
+ - spec/mongo/grid/stream/write_spec.rb
2021
+ - spec/mongo/grid/stream/read_spec.rb
2022
+ - spec/mongo/config/options_spec.rb
2023
+ - spec/mongo/collection_spec.rb
2024
+ - spec/mongo/logger_spec.rb
2025
+ - spec/mongo/auth_spec.rb
2026
+ - spec/mongo/write_concern/acknowledged_spec.rb
2027
+ - spec/mongo/write_concern/unacknowledged_spec.rb
2028
+ - spec/mongo/write_concern_spec.rb
2029
+ - spec/mongo/bulk_write/ordered_combiner_spec.rb
2030
+ - spec/mongo/bulk_write/unordered_combiner_spec.rb
2031
+ - spec/mongo/bulk_write/result_spec.rb
2032
+ - spec/mongo/server/connection_pool_spec.rb
2033
+ - spec/mongo/server/connection_pool/populator_spec.rb
2034
+ - spec/mongo/server/description_spec.rb
2035
+ - spec/mongo/server/monitor/connection_spec.rb
2036
+ - spec/mongo/server/monitor/app_metadata_spec.rb
2037
+ - spec/mongo/server/round_trip_time_averager_spec.rb
2038
+ - spec/mongo/server/push_monitor_spec.rb
2039
+ - spec/mongo/server/monitor_spec.rb
2040
+ - spec/mongo/server/connection_spec.rb
2041
+ - spec/mongo/server/app_metadata_spec.rb
2042
+ - spec/mongo/server/description_query_methods_spec.rb
2043
+ - spec/mongo/server/connection_common_spec.rb
2044
+ - spec/mongo/server/description/features_spec.rb
2045
+ - spec/mongo/server/connection_auth_spec.rb
2046
+ - spec/mongo/monitoring_spec.rb
2047
+ - spec/mongo/collection_ddl_spec.rb
2048
+ - spec/mongo/auth/stringprep_spec.rb
2049
+ - spec/mongo/auth/x509_spec.rb
2050
+ - spec/mongo/auth/cr_spec.rb
2051
+ - spec/mongo/auth/invalid_mechanism_spec.rb
2052
+ - spec/mongo/auth/scram/conversation_spec.rb
2053
+ - spec/mongo/auth/user/view_spec.rb
2054
+ - spec/mongo/auth/scram_negotiation_spec.rb
2055
+ - spec/mongo/auth/stringprep/profiles/sasl_spec.rb
2056
+ - spec/mongo/auth/scram256/conversation_spec.rb
2057
+ - spec/mongo/auth/gssapi/conversation_spec.rb
2058
+ - spec/mongo/auth/ldap/conversation_spec.rb
2059
+ - spec/mongo/auth/user_spec.rb
2060
+ - spec/mongo/auth/aws/request_region_spec.rb
2061
+ - spec/mongo/auth/aws/request_spec.rb
2062
+ - spec/mongo/auth/scram_spec.rb
2063
+ - spec/mongo/auth/x509/conversation_spec.rb
2064
+ - spec/mongo/auth/ldap_spec.rb
2065
+ - spec/mongo/error/operation_failure_heavy_spec.rb
2066
+ - spec/mongo/error/bulk_write_error_spec.rb
2067
+ - spec/mongo/error/notable_spec.rb
2068
+ - spec/mongo/error/unsupported_option_spec.rb
2069
+ - spec/mongo/error/crypt_error_spec.rb
2070
+ - spec/mongo/error/operation_failure_spec.rb
2071
+ - spec/mongo/error/no_server_available_spec.rb
2072
+ - spec/mongo/error/max_bson_size_spec.rb
2073
+ - spec/mongo/error/parser_spec.rb
2074
+ - spec/mongo/srv/monitor_spec.rb
2075
+ - spec/mongo/srv/result_spec.rb
2076
+ - spec/runners/cmap/verifier.rb
2077
+ - spec/runners/auth.rb
2078
+ - spec/runners/server_selection.rb
2079
+ - spec/runners/cmap.rb
2080
+ - spec/runners/transactions.rb
2081
+ - spec/runners/sdam.rb
2082
+ - spec/runners/crud/context.rb
2083
+ - spec/runners/crud/spec.rb
2084
+ - spec/runners/crud/test_base.rb
2085
+ - spec/runners/crud/outcome.rb
2086
+ - spec/runners/crud/test.rb
2087
+ - spec/runners/crud/verifier.rb
2088
+ - spec/runners/crud/operation.rb
2089
+ - spec/runners/crud/requirement.rb
2090
+ - spec/runners/command_monitoring.rb
2091
+ - spec/runners/sdam/verifier.rb
2092
+ - spec/runners/crud.rb
2093
+ - spec/runners/change_streams/spec.rb
2094
+ - spec/runners/change_streams/outcome.rb
2095
+ - spec/runners/change_streams/test.rb
2096
+ - spec/runners/unified.rb
2097
+ - spec/runners/read_write_concern_document.rb
2098
+ - spec/runners/transactions/spec.rb
2099
+ - spec/runners/transactions/test.rb
2100
+ - spec/runners/transactions/operation.rb
2101
+ - spec/runners/unified/error.rb
2102
+ - spec/runners/unified/event_subscriber.rb
2103
+ - spec/runners/unified/ddl_operations.rb
2104
+ - spec/runners/unified/client_side_encryption_operations.rb
2105
+ - spec/runners/unified/grid_fs_operations.rb
2106
+ - spec/runners/unified/test.rb
2107
+ - spec/runners/unified/entity_map.rb
2108
+ - spec/runners/unified/crud_operations.rb
2109
+ - spec/runners/unified/change_stream_operations.rb
2110
+ - spec/runners/unified/assertions.rb
2111
+ - spec/runners/unified/test_group.rb
2112
+ - spec/runners/unified/exceptions.rb
2113
+ - spec/runners/unified/support_operations.rb
2114
+ - spec/runners/connection_string.rb
2115
+ - spec/runners/gridfs.rb
2116
+ - spec/runners/server_selection_rtt.rb
1565
2117
  - spec/lite_spec_helper.rb
1566
- - spec/atlas/operations_spec.rb
1567
- - spec/atlas/atlas_connectivity_spec.rb
2118
+ - spec/README.md
2119
+ - spec/solo/clean_exit_spec.rb
2120
+ - spec/stress/cleanup_spec.rb
2121
+ - spec/stress/connection_pool_timing_spec.rb
2122
+ - spec/stress/fork_reconnect_stress_spec.rb
2123
+ - spec/stress/connection_pool_stress_spec.rb
2124
+ - spec/stress/push_monitor_close_spec.rb
2125
+ - spec/USERS.md
2126
+ - spec/README.aws-auth.md
2127
+ - spec/spec_tests/client_side_encryption_unified_spec.rb
2128
+ - spec/spec_tests/max_staleness_spec.rb
2129
+ - spec/spec_tests/gridfs_spec.rb
1568
2130
  - spec/spec_tests/retryable_writes_spec.rb
1569
- - spec/spec_tests/uri_options_spec.rb
1570
- - spec/spec_tests/server_selection_rtt_spec.rb
1571
- - spec/spec_tests/change_streams_spec.rb
1572
- - spec/spec_tests/command_monitoring_spec.rb
1573
- - spec/spec_tests/connection_string_spec.rb
1574
- - spec/spec_tests/retryable_reads_spec.rb
1575
- - spec/spec_tests/server_selection_spec.rb
1576
- - spec/spec_tests/max_staleness_spec.rb
1577
- - spec/spec_tests/sdam_integration_spec.rb
1578
- - spec/spec_tests/client_side_encryption_spec.rb
1579
- - spec/spec_tests/transactions_spec.rb
1580
- - spec/spec_tests/dns_seedlist_discovery_spec.rb
1581
- - spec/spec_tests/auth_spec.rb
1582
- - spec/spec_tests/transactions_api_spec.rb
2131
+ - spec/spec_tests/transactions_unified_spec.rb
1583
2132
  - spec/spec_tests/read_write_concern_operaton_spec.rb
1584
2133
  - spec/spec_tests/read_write_concern_document_spec.rb
1585
- - spec/spec_tests/read_write_concern_connection_string_spec.rb
1586
- - spec/spec_tests/sdam_spec.rb
1587
- - spec/spec_tests/crud_spec.rb
1588
- - spec/spec_tests/gridfs_spec.rb
1589
- - spec/spec_tests/sdam_monitoring_spec.rb
1590
- - spec/spec_tests/data/sdam_integration/find-network-error.yml
1591
- - spec/spec_tests/data/sdam_integration/insert-network-error.yml
1592
- - spec/spec_tests/data/sdam_integration/isMaster-network-error.yml
1593
- - spec/spec_tests/data/sdam_integration/rediscover-quickly-after-step-down.yml
1594
- - spec/spec_tests/data/sdam_integration/connectTimeoutMS.yml
1595
- - spec/spec_tests/data/sdam_integration/insert-shutdown-error.yml
1596
- - spec/spec_tests/data/sdam_integration/isMaster-timeout.yml
1597
- - spec/spec_tests/data/sdam_integration/cancel-server-check.yml
1598
- - spec/spec_tests/data/sdam_integration/find-shutdown-error.yml
1599
- - spec/spec_tests/data/sdam_integration/isMaster-command-error.yml
1600
- - spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/SecondaryPreferred_non_matching.yml
1601
- - spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/SecondaryPreferred.yml
1602
- - spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/Secondary_non_matching.yml
1603
- - spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/SecondaryPreferred_tags.yml
1604
- - spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/Primary.yml
1605
- - spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/PrimaryPreferred.yml
1606
- - spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/PrimaryPreferred_non_matching.yml
1607
- - spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/Nearest.yml
1608
- - spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/Nearest_non_matching.yml
1609
- - spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/Nearest_multiple.yml
1610
- - spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/Secondary.yml
1611
- - spec/spec_tests/data/server_selection/Sharded/read/SecondaryPreferred.yml
1612
- - spec/spec_tests/data/server_selection/Sharded/read/Primary.yml
1613
- - spec/spec_tests/data/server_selection/Sharded/read/PrimaryPreferred.yml
1614
- - spec/spec_tests/data/server_selection/Sharded/read/Nearest.yml
1615
- - spec/spec_tests/data/server_selection/Sharded/read/Secondary.yml
1616
- - spec/spec_tests/data/server_selection/Unknown/read/SecondaryPreferred.yml
1617
- - spec/spec_tests/data/server_selection/Single/read/SecondaryPreferred.yml
1618
- - spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/SecondaryPreferred_non_matching.yml
1619
- - spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/SecondaryPreferred.yml
1620
- - spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/PossiblePrimaryNearest.yml
1621
- - spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/Secondary_non_matching.yml
1622
- - spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/Primary.yml
1623
- - spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/PossiblePrimary.yml
1624
- - spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/Secondary_multi_tags.yml
1625
- - spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/PrimaryPreferred.yml
1626
- - spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/PrimaryPreferred_non_matching.yml
1627
- - spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/Secondary_multi_tags2.yml
1628
- - spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/Nearest.yml
1629
- - spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/Nearest_non_matching.yml
1630
- - spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/Nearest_multiple.yml
1631
- - spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/Secondary.yml
1632
- - spec/spec_tests/data/client_side_encryption/localKMS.yml
1633
- - spec/spec_tests/data/client_side_encryption/keyAltName.yml
1634
- - spec/spec_tests/data/client_side_encryption/bulk.yml
1635
- - spec/spec_tests/data/client_side_encryption/getMore.yml
1636
- - spec/spec_tests/data/client_side_encryption/bypassAutoEncryption.yml
1637
- - spec/spec_tests/data/client_side_encryption/types.yml
1638
- - spec/spec_tests/data/client_side_encryption/bypassedCommand.yml
1639
- - spec/spec_tests/data/client_side_encryption/updateOne.yml
1640
- - spec/spec_tests/data/client_side_encryption/missingKey.yml
1641
- - spec/spec_tests/data/client_side_encryption/findOneAndReplace.yml
1642
- - spec/spec_tests/data/client_side_encryption/badSchema.yml
1643
- - spec/spec_tests/data/client_side_encryption/replaceOne.yml
1644
- - spec/spec_tests/data/client_side_encryption/updateMany.yml
1645
- - spec/spec_tests/data/client_side_encryption/explain.yml
1646
- - spec/spec_tests/data/client_side_encryption/countDocuments.yml
1647
- - spec/spec_tests/data/client_side_encryption/maxWireVersion.yml
1648
- - spec/spec_tests/data/client_side_encryption/insert.yml
1649
- - spec/spec_tests/data/client_side_encryption/findOneAndDelete.yml
1650
- - spec/spec_tests/data/client_side_encryption/distinct.yml
1651
- - spec/spec_tests/data/client_side_encryption/unsupportedCommand.yml
1652
- - spec/spec_tests/data/client_side_encryption/findOneAndUpdate.yml
1653
- - spec/spec_tests/data/client_side_encryption/localSchema.yml
1654
- - spec/spec_tests/data/client_side_encryption/delete.yml
1655
- - spec/spec_tests/data/client_side_encryption/find.yml
1656
- - spec/spec_tests/data/client_side_encryption/aggregate.yml
1657
- - spec/spec_tests/data/client_side_encryption/count.yml
1658
- - spec/spec_tests/data/client_side_encryption/basic.yml
1659
- - spec/spec_tests/data/client_side_encryption/badQueries.yml
1660
- - spec/spec_tests/data/client_side_encryption/malformedCiphertext.yml
1661
- - spec/spec_tests/data/uri_options/concern-options.yml
1662
- - spec/spec_tests/data/uri_options/connection-pool-options.yml
1663
- - spec/spec_tests/data/uri_options/connection-options.yml
1664
- - spec/spec_tests/data/uri_options/tls-options.yml
1665
- - spec/spec_tests/data/uri_options/read-preference-options.yml
1666
- - spec/spec_tests/data/uri_options/auth-options.yml
1667
- - spec/spec_tests/data/uri_options/ruby-connection-options.yml
1668
- - spec/spec_tests/data/uri_options/ruby-auth-options.yml
1669
- - spec/spec_tests/data/uri_options/compression-options.yml
1670
- - spec/spec_tests/data/retryable_writes/replaceOne-errorLabels.yml
1671
- - spec/spec_tests/data/retryable_writes/insertOne-errorLabels.yml
1672
- - spec/spec_tests/data/retryable_writes/bulkWrite-errorLabels.yml
1673
- - spec/spec_tests/data/retryable_writes/deleteMany.yml
1674
- - spec/spec_tests/data/retryable_writes/updateOne.yml
1675
- - spec/spec_tests/data/retryable_writes/deleteOne.yml
1676
- - spec/spec_tests/data/retryable_writes/findOneAndDelete-errorLabels.yml
1677
- - spec/spec_tests/data/retryable_writes/insertMany-errorLabels.yml
1678
- - spec/spec_tests/data/retryable_writes/findOneAndDelete-serverErrors.yml
1679
- - spec/spec_tests/data/retryable_writes/findOneAndReplace.yml
1680
- - spec/spec_tests/data/retryable_writes/insertOne.yml
1681
- - spec/spec_tests/data/retryable_writes/replaceOne.yml
1682
- - spec/spec_tests/data/retryable_writes/updateMany.yml
1683
- - spec/spec_tests/data/retryable_writes/findOneAndReplace-errorLabels.yml
1684
- - spec/spec_tests/data/retryable_writes/insertMany.yml
1685
- - spec/spec_tests/data/retryable_writes/deleteOne-serverErrors.yml
1686
- - spec/spec_tests/data/retryable_writes/insertOne-serverErrors.yml
1687
- - spec/spec_tests/data/retryable_writes/deleteOne-errorLabels.yml
1688
- - spec/spec_tests/data/retryable_writes/findOneAndReplace-serverErrors.yml
1689
- - spec/spec_tests/data/retryable_writes/findOneAndDelete.yml
1690
- - spec/spec_tests/data/retryable_writes/findOneAndUpdate-errorLabels.yml
1691
- - spec/spec_tests/data/retryable_writes/findOneAndUpdate.yml
1692
- - spec/spec_tests/data/retryable_writes/replaceOne-serverErrors.yml
1693
- - spec/spec_tests/data/retryable_writes/insertMany-serverErrors.yml
1694
- - spec/spec_tests/data/retryable_writes/findOneAndUpdate-serverErrors.yml
1695
- - spec/spec_tests/data/retryable_writes/bulkWrite-serverErrors.yml
1696
- - spec/spec_tests/data/retryable_writes/updateOne-errorLabels.yml
1697
- - spec/spec_tests/data/retryable_writes/updateOne-serverErrors.yml
1698
- - spec/spec_tests/data/retryable_writes/bulkWrite.yml
1699
- - spec/spec_tests/data/transactions_api/callback-retry.yml
1700
- - spec/spec_tests/data/transactions_api/callback-aborts.yml
1701
- - spec/spec_tests/data/transactions_api/commit-retry.yml
1702
- - spec/spec_tests/data/transactions_api/callback-commits.yml
1703
- - spec/spec_tests/data/transactions_api/commit-writeconcernerror.yml
1704
- - spec/spec_tests/data/transactions_api/commit-transienttransactionerror.yml
1705
- - spec/spec_tests/data/transactions_api/commit-transienttransactionerror-4.2.yml
1706
- - spec/spec_tests/data/transactions_api/transaction-options.yml
1707
- - spec/spec_tests/data/transactions_api/commit.yml
1708
- - spec/spec_tests/data/dns_seedlist_discovery/parent-part-mismatch3.yml
1709
- - spec/spec_tests/data/dns_seedlist_discovery/txt-record-with-unallowed-option.yml
1710
- - spec/spec_tests/data/dns_seedlist_discovery/returned-parent-too-short.yml
1711
- - spec/spec_tests/data/dns_seedlist_discovery/uri-with-port.yml
1712
- - spec/spec_tests/data/dns_seedlist_discovery/parent-part-mismatch1.yml
1713
- - spec/spec_tests/data/dns_seedlist_discovery/two-results-default-port.yml
1714
- - spec/spec_tests/data/dns_seedlist_discovery/not-enough-parts.yml
1715
- - spec/spec_tests/data/dns_seedlist_discovery/one-txt-record-multiple-strings.yml
1716
- - spec/spec_tests/data/dns_seedlist_discovery/one-result-default-port.yml
1717
- - spec/spec_tests/data/dns_seedlist_discovery/misformatted-option.yml
1718
- - spec/spec_tests/data/dns_seedlist_discovery/txt-record-not-allowed-option.yml
1719
- - spec/spec_tests/data/dns_seedlist_discovery/direct-connection-false.yml
1720
- - spec/spec_tests/data/dns_seedlist_discovery/uri-with-two-hosts.yml
1721
- - spec/spec_tests/data/dns_seedlist_discovery/returned-parent-wrong.yml
1722
- - spec/spec_tests/data/dns_seedlist_discovery/no-results.yml
1723
- - spec/spec_tests/data/dns_seedlist_discovery/parent-part-mismatch2.yml
1724
- - spec/spec_tests/data/dns_seedlist_discovery/parent-part-mismatch4.yml
1725
- - spec/spec_tests/data/dns_seedlist_discovery/two-results-nonstandard-port.yml
1726
- - spec/spec_tests/data/dns_seedlist_discovery/longer-parent-in-return.yml
1727
- - spec/spec_tests/data/dns_seedlist_discovery/parent-part-mismatch5.yml
1728
- - spec/spec_tests/data/dns_seedlist_discovery/txt-record-with-overridden-ssl-option.yml
1729
- - spec/spec_tests/data/dns_seedlist_discovery/direct-connection-true.yml
1730
- - spec/spec_tests/data/dns_seedlist_discovery/txt-record-with-overridden-uri-option.yml
1731
- - spec/spec_tests/data/dns_seedlist_discovery/two-txt-records.yml
1732
- - spec/spec_tests/data/dns_seedlist_discovery/one-txt-record.yml
1733
- - spec/spec_tests/data/change_streams/change-streams.yml
1734
- - spec/spec_tests/data/change_streams/change-streams-resume-errorLabels.yml
1735
- - spec/spec_tests/data/change_streams/change-streams-errors.yml
1736
- - spec/spec_tests/data/change_streams/change-streams-resume-whitelist.yml
1737
- - spec/spec_tests/data/cmap/pool-create-min-size.yml
2134
+ - spec/spec_tests/transactions_spec.rb
2135
+ - spec/spec_tests/data/read_write_concern/operation/default-write-concern-3.2.yml
2136
+ - spec/spec_tests/data/read_write_concern/operation/default-write-concern-4.2.yml
2137
+ - spec/spec_tests/data/read_write_concern/operation/default-write-concern-2.6.yml
2138
+ - spec/spec_tests/data/read_write_concern/operation/default-write-concern-3.4.yml
2139
+ - spec/spec_tests/data/read_write_concern/document/write-concern.yml
2140
+ - spec/spec_tests/data/read_write_concern/document/read-concern.yml
2141
+ - spec/spec_tests/data/read_write_concern/connection-string/write-concern.yml
2142
+ - spec/spec_tests/data/read_write_concern/connection-string/read-concern.yml
2143
+ - spec/spec_tests/data/cmap/pool-checkout-connection.yml
2144
+ - spec/spec_tests/data/cmap/pool-checkin.yml
1738
2145
  - spec/spec_tests/data/cmap/pool-close.yml
1739
2146
  - spec/spec_tests/data/cmap/pool-create-with-options.yml
1740
- - spec/spec_tests/data/cmap/wait-queue-timeout.yml
1741
- - spec/spec_tests/data/cmap/pool-checkout-no-stale.yml
1742
- - spec/spec_tests/data/cmap/pool-create-max-size.yml
1743
- - spec/spec_tests/data/cmap/wait-queue-fairness.yml
1744
- - spec/spec_tests/data/cmap/pool-checkin-make-available.yml
1745
- - spec/spec_tests/data/cmap/pool-close-destroy-conns.yml
1746
- - spec/spec_tests/data/cmap/pool-checkout-connection.yml
1747
- - spec/spec_tests/data/cmap/pool-checkin-destroy-stale.yml
2147
+ - spec/spec_tests/data/cmap/pool-checkin-destroy-closed.yml
2148
+ - spec/spec_tests/data/cmap/connection-must-order-ids.yml
2149
+ - spec/spec_tests/data/cmap/pool-checkout-no-idle.yml
1748
2150
  - spec/spec_tests/data/cmap/pool-create.yml
2151
+ - spec/spec_tests/data/cmap/pool-create-min-size.yml
2152
+ - spec/spec_tests/data/cmap/pool-checkout-no-stale.yml
1749
2153
  - spec/spec_tests/data/cmap/pool-checkout-multiple.yml
1750
2154
  - spec/spec_tests/data/cmap/pool-checkout-error-closed.yml
1751
- - spec/spec_tests/data/cmap/pool-checkin-destroy-closed.yml
1752
- - spec/spec_tests/data/cmap/pool-checkin.yml
1753
- - spec/spec_tests/data/cmap/connection-must-order-ids.yml
1754
2155
  - spec/spec_tests/data/cmap/connection-must-have-id.yml
1755
- - spec/spec_tests/data/cmap/pool-checkout-no-idle.yml
1756
- - spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/LongHeartbeat2.yml
1757
- - spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/SecondaryPreferred.yml
1758
- - spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/Secondary_tags2.yml
1759
- - spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/DefaultNoMaxStaleness.yml
1760
- - spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/Nearest2.yml
1761
- - spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/SecondaryPreferred_tags.yml
1762
- - spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/Incompatible.yml
1763
- - spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/Nearest_tags.yml
1764
- - spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/PrimaryPreferred.yml
1765
- - spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/ZeroMaxStaleness.yml
1766
- - spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/MaxStalenessTooSmall.yml
1767
- - spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/LongHeartbeat.yml
1768
- - spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/Nearest.yml
1769
- - spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/PrimaryPreferred_incompatible.yml
1770
- - spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/SecondaryPreferred_tags2.yml
1771
- - spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/Secondary_tags.yml
1772
- - spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/LastUpdateTime.yml
1773
- - spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/MaxStalenessWithModePrimary.yml
1774
- - spec/spec_tests/data/max_staleness/Sharded/Incompatible.yml
1775
- - spec/spec_tests/data/max_staleness/Sharded/SmallMaxStaleness.yml
1776
- - spec/spec_tests/data/max_staleness/Unknown/SmallMaxStaleness.yml
1777
- - spec/spec_tests/data/max_staleness/Single/Incompatible.yml
1778
- - spec/spec_tests/data/max_staleness/Single/SmallMaxStaleness.yml
1779
- - spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/SecondaryPreferred.yml
1780
- - spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/DefaultNoMaxStaleness.yml
1781
- - spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/Nearest2.yml
1782
- - spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/NoKnownServers.yml
1783
- - spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/SecondaryPreferred_tags.yml
1784
- - spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/Incompatible.yml
1785
- - spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/PrimaryPreferred.yml
1786
- - spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/ZeroMaxStaleness.yml
1787
- - spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/MaxStalenessTooSmall.yml
1788
- - spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/Nearest.yml
1789
- - spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/PrimaryPreferred_tags.yml
1790
- - spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/Secondary.yml
1791
- - spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/LastUpdateTime.yml
1792
- - spec/spec_tests/data/sdam_monitoring/replica_set_with_primary.yml
1793
- - spec/spec_tests/data/sdam_monitoring/replica_set_with_no_primary.yml
1794
- - spec/spec_tests/data/sdam_monitoring/standalone_repeated.yml
1795
- - spec/spec_tests/data/sdam_monitoring/required_replica_set.yml
1796
- - spec/spec_tests/data/sdam_monitoring/replica_set_with_second_seed_removal.yml
1797
- - spec/spec_tests/data/sdam_monitoring/replica_set_with_me_mismatch.yml
1798
- - spec/spec_tests/data/sdam_monitoring/replica_set_other_change.yml
1799
- - spec/spec_tests/data/sdam_monitoring/standalone_suppress_equal_description_changes.yml
1800
- - spec/spec_tests/data/sdam_monitoring/replica_set_with_removal.yml
1801
- - spec/spec_tests/data/sdam_monitoring/replica_set_with_primary_removal.yml
1802
- - spec/spec_tests/data/sdam_monitoring/standalone_to_rs_with_me_mismatch.yml
1803
- - spec/spec_tests/data/sdam_monitoring/replica_set_with_primary_and_secondary.yml
1804
- - spec/spec_tests/data/sdam_monitoring/standalone.yml
1805
- - spec/spec_tests/data/sdam_monitoring/replica_set_primary_address_change.yml
1806
- - spec/spec_tests/data/sdam_monitoring/discovered_standalone.yml
1807
- - spec/spec_tests/data/sdam_monitoring/replica_set_other_chain.yml
1808
- - spec/spec_tests/data/connection_string/valid-unix_socket-absolute.yml
1809
- - spec/spec_tests/data/connection_string/valid-unix_socket-relative.yml
2156
+ - spec/spec_tests/data/cmap/pool-close-destroy-conns.yml
2157
+ - spec/spec_tests/data/cmap/pool-checkin-destroy-stale.yml
2158
+ - spec/spec_tests/data/cmap/wait-queue-timeout.yml
2159
+ - spec/spec_tests/data/cmap/pool-create-max-size.yml
2160
+ - spec/spec_tests/data/cmap/pool-checkin-make-available.yml
2161
+ - spec/spec_tests/data/cmap/wait-queue-fairness.yml
2162
+ - spec/spec_tests/data/versioned_api/runcommand-helper-no-api-version-declared.yml
2163
+ - spec/spec_tests/data/versioned_api/crud-api-version-1-strict.yml
2164
+ - spec/spec_tests/data/versioned_api/test-commands-deprecation-errors.yml
2165
+ - spec/spec_tests/data/versioned_api/test-commands-strict-mode.yml
2166
+ - spec/spec_tests/data/versioned_api/crud-api-version-1.yml
2167
+ - spec/spec_tests/data/versioned_api/transaction-handling.yml
2168
+ - spec/spec_tests/data/sdam_integration/find-network-error.yml
2169
+ - spec/spec_tests/data/sdam_integration/insert-shutdown-error.yml
2170
+ - spec/spec_tests/data/sdam_integration/hello-command-error.yml
2171
+ - spec/spec_tests/data/sdam_integration/insert-network-error.yml
2172
+ - spec/spec_tests/data/sdam_integration/hello-timeout.yml
2173
+ - spec/spec_tests/data/sdam_integration/hello-network-error.yml
2174
+ - spec/spec_tests/data/sdam_integration/rediscover-quickly-after-step-down.yml
2175
+ - spec/spec_tests/data/sdam_integration/cancel-server-check.yml
2176
+ - spec/spec_tests/data/sdam_integration/find-shutdown-error.yml
2177
+ - spec/spec_tests/data/sdam_integration/connectTimeoutMS.yml
2178
+ - spec/spec_tests/data/crud_unified/findOneAndUpdate-hint-serverError.yml
2179
+ - spec/spec_tests/data/crud_unified/findOneAndUpdate-dots_and_dollars.yml
2180
+ - spec/spec_tests/data/crud_unified/findOneAndUpdate-hint-unacknowledged.yml
2181
+ - spec/spec_tests/data/crud_unified/bulkWrite-updateOne-let.yml
2182
+ - spec/spec_tests/data/crud_unified/find-allowdiskuse-serverError.yml
2183
+ - spec/spec_tests/data/crud_unified/updateMany-hint-serverError.yml
2184
+ - spec/spec_tests/data/crud_unified/bulkWrite-deleteMany-let.yml
2185
+ - spec/spec_tests/data/crud_unified/replaceOne-comment.yml
2186
+ - spec/spec_tests/data/crud_unified/updateOne-hint-clientError.yml
2187
+ - spec/spec_tests/data/crud_unified/updateOne-hint.yml
2188
+ - spec/spec_tests/data/crud_unified/bulkWrite-update-hint-serverError.yml
2189
+ - spec/spec_tests/data/crud_unified/findOneAndDelete-hint-unacknowledged.yml
2190
+ - spec/spec_tests/data/crud_unified/updateOne-validation.yml
2191
+ - spec/spec_tests/data/crud_unified/bulkWrite-deleteOne-let.yml
2192
+ - spec/spec_tests/data/crud_unified/deleteMany-hint-clientError.yml
2193
+ - spec/spec_tests/data/crud_unified/findOneAndReplace-let.yml
2194
+ - spec/spec_tests/data/crud_unified/updateOne-comment.yml
2195
+ - spec/spec_tests/data/crud_unified/insertMany-dots_and_dollars.yml
2196
+ - spec/spec_tests/data/crud_unified/replaceOne-hint.yml
2197
+ - spec/spec_tests/data/crud_unified/findOneAndReplace-hint.yml
2198
+ - spec/spec_tests/data/crud_unified/bulkWrite-delete-hint-serverError.yml
2199
+ - spec/spec_tests/data/crud_unified/updateMany-dots_and_dollars.yml
2200
+ - spec/spec_tests/data/crud_unified/updateWithPipelines.yml
2201
+ - spec/spec_tests/data/crud_unified/insertOne-comment.yml
2202
+ - spec/spec_tests/data/crud_unified/aggregate-write-readPreference.yml
2203
+ - spec/spec_tests/data/crud_unified/db-aggregate-write-readPreference.yml
2204
+ - spec/spec_tests/data/crud_unified/bulkWrite-updateOne-hint-unacknowledged.yml
2205
+ - spec/spec_tests/data/crud_unified/insertOne-dots_and_dollars.yml
2206
+ - spec/spec_tests/data/crud_unified/bulkWrite-deleteOne-hint-unacknowledged.yml
2207
+ - spec/spec_tests/data/crud_unified/db-aggregate.yml
2208
+ - spec/spec_tests/data/crud_unified/bulkWrite-updateMany-dots_and_dollars.yml
2209
+ - spec/spec_tests/data/crud_unified/bulkWrite-replaceOne-hint-unacknowledged.yml
2210
+ - spec/spec_tests/data/crud_unified/deleteOne-comment.yml
2211
+ - spec/spec_tests/data/crud_unified/updateMany-hint-unacknowledged.yml
2212
+ - spec/spec_tests/data/crud_unified/updateMany-comment.yml
2213
+ - spec/spec_tests/data/crud_unified/aggregate-let.yml
2214
+ - spec/spec_tests/data/crud_unified/findOneAndReplace-dots_and_dollars.yml
2215
+ - spec/spec_tests/data/crud_unified/updateOne-hint-unacknowledged.yml
2216
+ - spec/spec_tests/data/crud_unified/bulkWrite-insertOne-dots_and_dollars.yml
2217
+ - spec/spec_tests/data/crud_unified/findOneAndReplace-comment.yml
2218
+ - spec/spec_tests/data/crud_unified/deleteMany-hint-unacknowledged.yml
2219
+ - spec/spec_tests/data/crud_unified/deleteMany-let.yml
2220
+ - spec/spec_tests/data/crud_unified/updateMany-validation.yml
2221
+ - spec/spec_tests/data/crud_unified/replaceOne-hint-unacknowledged.yml
2222
+ - spec/spec_tests/data/crud_unified/find-comment.yml
2223
+ - spec/spec_tests/data/crud_unified/updateMany-hint.yml
2224
+ - spec/spec_tests/data/crud_unified/find-allowdiskuse.yml
2225
+ - spec/spec_tests/data/crud_unified/aggregate-allowdiskuse.yml
2226
+ - spec/spec_tests/data/crud_unified/aggregate-out-readConcern.yml
2227
+ - spec/spec_tests/data/crud_unified/deleteMany-hint.yml
2228
+ - spec/spec_tests/data/crud_unified/bulkWrite-comment.yml
2229
+ - spec/spec_tests/data/crud_unified/deleteOne-hint-clientError.yml
2230
+ - spec/spec_tests/data/crud_unified/insertMany-comment.yml
2231
+ - spec/spec_tests/data/crud_unified/updateMany-hint-clientError.yml
2232
+ - spec/spec_tests/data/crud_unified/bulkWrite-update-hint-clientError.yml
2233
+ - spec/spec_tests/data/crud_unified/replaceOne-dots_and_dollars.yml
2234
+ - spec/spec_tests/data/crud_unified/findOneAndDelete-let.yml
2235
+ - spec/spec_tests/data/crud_unified/findOneAndUpdate-comment.yml
2236
+ - spec/spec_tests/data/crud_unified/findOneAndReplace-hint-unacknowledged.yml
2237
+ - spec/spec_tests/data/crud_unified/deleteMany-comment.yml
2238
+ - spec/spec_tests/data/crud_unified/deleteOne-hint-serverError.yml
2239
+ - spec/spec_tests/data/crud_unified/bulkWrite-updateMany-let.yml
2240
+ - spec/spec_tests/data/crud_unified/findOneAndUpdate-hint-clientError.yml
2241
+ - spec/spec_tests/data/crud_unified/bulkWrite-replaceOne-let.yml
2242
+ - spec/spec_tests/data/crud_unified/estimatedDocumentCount.yml
2243
+ - spec/spec_tests/data/crud_unified/findOneAndUpdate-let.yml
2244
+ - spec/spec_tests/data/crud_unified/find.yml
2245
+ - spec/spec_tests/data/crud_unified/distinct-comment.yml
2246
+ - spec/spec_tests/data/crud_unified/bulkWrite-deleteMany-hint-unacknowledged.yml
2247
+ - spec/spec_tests/data/crud_unified/bulkWrite-arrayFilters.yml
2248
+ - spec/spec_tests/data/crud_unified/aggregate.yml
2249
+ - spec/spec_tests/data/crud_unified/findOneAndDelete-hint.yml
2250
+ - spec/spec_tests/data/crud_unified/deleteOne-hint-unacknowledged.yml
2251
+ - spec/spec_tests/data/crud_unified/bulkWrite-replaceOne-dots_and_dollars.yml
2252
+ - spec/spec_tests/data/crud_unified/bulkWrite-update-hint.yml
2253
+ - spec/spec_tests/data/crud_unified/findOneAndDelete-hint-clientError.yml
2254
+ - spec/spec_tests/data/crud_unified/bulkWrite-arrayFilters-clientError.yml
2255
+ - spec/spec_tests/data/crud_unified/estimatedDocumentCount-comment.yml
2256
+ - spec/spec_tests/data/crud_unified/findOneAndReplace-hint-serverError.yml
2257
+ - spec/spec_tests/data/crud_unified/aggregate-merge.yml
2258
+ - spec/spec_tests/data/crud_unified/find-allowdiskuse-clientError.yml
2259
+ - spec/spec_tests/data/crud_unified/deleteOne-hint.yml
2260
+ - spec/spec_tests/data/crud_unified/replaceOne-validation.yml
2261
+ - spec/spec_tests/data/crud_unified/find-let.yml
2262
+ - spec/spec_tests/data/crud_unified/countDocuments-comment.yml
2263
+ - spec/spec_tests/data/crud_unified/replaceOne-let.yml
2264
+ - spec/spec_tests/data/crud_unified/updateOne-hint-serverError.yml
2265
+ - spec/spec_tests/data/crud_unified/deleteOne-let.yml
2266
+ - spec/spec_tests/data/crud_unified/bulkWrite-update-validation.yml
2267
+ - spec/spec_tests/data/crud_unified/deleteMany-hint-serverError.yml
2268
+ - spec/spec_tests/data/crud_unified/bulkWrite-updateOne-dots_and_dollars.yml
2269
+ - spec/spec_tests/data/crud_unified/findOneAndUpdate-hint.yml
2270
+ - spec/spec_tests/data/crud_unified/bulkWrite-delete-hint.yml
2271
+ - spec/spec_tests/data/crud_unified/bulkWrite-updateMany-hint-unacknowledged.yml
2272
+ - spec/spec_tests/data/crud_unified/bulkWrite-delete-hint-clientError.yml
2273
+ - spec/spec_tests/data/crud_unified/findOneAndReplace-hint-clientError.yml
2274
+ - spec/spec_tests/data/crud_unified/findOneAndDelete-hint-serverError.yml
2275
+ - spec/spec_tests/data/crud_unified/updateOne-dots_and_dollars.yml
2276
+ - spec/spec_tests/data/crud_unified/updateMany-let.yml
2277
+ - spec/spec_tests/data/crud_unified/findOneAndDelete-comment.yml
2278
+ - spec/spec_tests/data/crud_unified/updateOne-let.yml
2279
+ - spec/spec_tests/data/server_selection_rtt/first_value_zero.yml
2280
+ - spec/spec_tests/data/server_selection_rtt/value_test_5.yml
2281
+ - spec/spec_tests/data/server_selection_rtt/value_test_1.yml
2282
+ - spec/spec_tests/data/server_selection_rtt/first_value.yml
2283
+ - spec/spec_tests/data/server_selection_rtt/value_test_2.yml
2284
+ - spec/spec_tests/data/server_selection_rtt/value_test_3.yml
2285
+ - spec/spec_tests/data/server_selection_rtt/value_test_4.yml
2286
+ - spec/spec_tests/data/connection_string/valid-auth.yml
1810
2287
  - spec/spec_tests/data/connection_string/valid-host_identifiers.yml
2288
+ - spec/spec_tests/data/connection_string/valid-db-with-dotted-name.yml
1811
2289
  - spec/spec_tests/data/connection_string/valid-warnings.yml
1812
- - spec/spec_tests/data/connection_string/valid-auth.yml
1813
2290
  - spec/spec_tests/data/connection_string/invalid-uris.yml
2291
+ - spec/spec_tests/data/connection_string/valid-unix_socket-relative.yml
1814
2292
  - spec/spec_tests/data/connection_string/valid-options.yml
1815
- - spec/spec_tests/data/connection_string/valid-db-with-dotted-name.yml
1816
- - spec/spec_tests/data/gridfs/download.yml
1817
- - spec/spec_tests/data/gridfs/download_by_name.yml
1818
- - spec/spec_tests/data/gridfs/upload.yml
1819
- - spec/spec_tests/data/gridfs/delete.yml
1820
- - spec/spec_tests/data/transactions/bulk.yml
1821
- - spec/spec_tests/data/transactions/errors.yml
1822
- - spec/spec_tests/data/transactions/create-collection.yml
1823
- - spec/spec_tests/data/transactions/isolation.yml
1824
- - spec/spec_tests/data/transactions/read-pref.yml
1825
- - spec/spec_tests/data/transactions/create-index.yml
1826
- - spec/spec_tests/data/transactions/retryable-abort.yml
1827
- - spec/spec_tests/data/transactions/abort.yml
1828
- - spec/spec_tests/data/transactions/findOneAndReplace.yml
1829
- - spec/spec_tests/data/transactions/retryable-commit-errorLabels.yml
1830
- - spec/spec_tests/data/transactions/retryable-commit.yml
1831
- - spec/spec_tests/data/transactions/transaction-options-repl.yml
1832
- - spec/spec_tests/data/transactions/mongos-pin-auto.yml
1833
- - spec/spec_tests/data/transactions/retryable-abort-errorLabels.yml
1834
- - spec/spec_tests/data/transactions/insert.yml
1835
- - spec/spec_tests/data/transactions/findOneAndDelete.yml
1836
- - spec/spec_tests/data/transactions/findOneAndUpdate.yml
1837
- - spec/spec_tests/data/transactions/delete.yml
1838
- - spec/spec_tests/data/transactions/mongos-recovery-token.yml
1839
- - spec/spec_tests/data/transactions/retryable-writes.yml
1840
- - spec/spec_tests/data/transactions/count.yml
1841
- - spec/spec_tests/data/transactions/transaction-options.yml
1842
- - spec/spec_tests/data/transactions/read-concern.yml
1843
- - spec/spec_tests/data/transactions/pin-mongos.yml
1844
- - spec/spec_tests/data/transactions/update.yml
1845
- - spec/spec_tests/data/transactions/error-labels.yml
1846
- - spec/spec_tests/data/transactions/causal-consistency.yml
1847
- - spec/spec_tests/data/transactions/errors-client.yml
1848
- - spec/spec_tests/data/transactions/commit.yml
1849
- - spec/spec_tests/data/transactions/reads.yml
1850
- - spec/spec_tests/data/transactions/write-concern.yml
1851
- - spec/spec_tests/data/transactions/run-command.yml
1852
- - spec/spec_tests/data/retryable_reads/listIndexes.yml
1853
- - spec/spec_tests/data/retryable_reads/changeStreams-db.coll.watch-serverErrors.yml
1854
- - spec/spec_tests/data/retryable_reads/listDatabases-serverErrors.yml
1855
- - spec/spec_tests/data/retryable_reads/listIndexNames-serverErrors.yml
1856
- - spec/spec_tests/data/retryable_reads/listCollectionObjects-serverErrors.yml
1857
- - spec/spec_tests/data/retryable_reads/countDocuments-serverErrors.yml
1858
- - spec/spec_tests/data/retryable_reads/listCollections.yml
1859
- - spec/spec_tests/data/retryable_reads/listCollections-serverErrors.yml
1860
- - spec/spec_tests/data/retryable_reads/listDatabaseNames-serverErrors.yml
1861
- - spec/spec_tests/data/retryable_reads/listDatabaseObjects-serverErrors.yml
1862
- - spec/spec_tests/data/retryable_reads/find-serverErrors.yml
1863
- - spec/spec_tests/data/retryable_reads/findOne.yml
1864
- - spec/spec_tests/data/retryable_reads/mapReduce.yml
1865
- - spec/spec_tests/data/retryable_reads/countDocuments.yml
1866
- - spec/spec_tests/data/retryable_reads/listIndexNames.yml
1867
- - spec/spec_tests/data/retryable_reads/changeStreams-db.watch-serverErrors.yml
1868
- - spec/spec_tests/data/retryable_reads/listDatabases.yml
1869
- - spec/spec_tests/data/retryable_reads/aggregate-merge.yml
1870
- - spec/spec_tests/data/retryable_reads/aggregate-serverErrors.yml
1871
- - spec/spec_tests/data/retryable_reads/changeStreams-db.watch.yml
1872
- - spec/spec_tests/data/retryable_reads/listCollectionNames.yml
1873
- - spec/spec_tests/data/retryable_reads/gridfs-downloadByName.yml
1874
- - spec/spec_tests/data/retryable_reads/changeStreams-client.watch.yml
1875
- - spec/spec_tests/data/retryable_reads/distinct.yml
1876
- - spec/spec_tests/data/retryable_reads/changeStreams-db.coll.watch.yml
1877
- - spec/spec_tests/data/retryable_reads/gridfs-download.yml
1878
- - spec/spec_tests/data/retryable_reads/listDatabaseObjects.yml
1879
- - spec/spec_tests/data/retryable_reads/findOne-serverErrors.yml
1880
- - spec/spec_tests/data/retryable_reads/find.yml
1881
- - spec/spec_tests/data/retryable_reads/listCollectionNames-serverErrors.yml
1882
- - spec/spec_tests/data/retryable_reads/aggregate.yml
1883
- - spec/spec_tests/data/retryable_reads/count.yml
1884
- - spec/spec_tests/data/retryable_reads/count-serverErrors.yml
1885
- - spec/spec_tests/data/retryable_reads/gridfs-downloadByName-serverErrors.yml
1886
- - spec/spec_tests/data/retryable_reads/listDatabaseNames.yml
1887
- - spec/spec_tests/data/retryable_reads/listIndexes-serverErrors.yml
1888
- - spec/spec_tests/data/retryable_reads/listCollectionObjects.yml
1889
- - spec/spec_tests/data/retryable_reads/gridfs-download-serverErrors.yml
1890
- - spec/spec_tests/data/retryable_reads/changeStreams-client.watch-serverErrors.yml
1891
- - spec/spec_tests/data/retryable_reads/estimatedDocumentCount.yml
1892
- - spec/spec_tests/data/retryable_reads/distinct-serverErrors.yml
1893
- - spec/spec_tests/data/retryable_reads/estimatedDocumentCount-serverErrors.yml
1894
- - spec/spec_tests/data/command_monitoring/deleteMany.yml
1895
- - spec/spec_tests/data/command_monitoring/updateOne.yml
1896
- - spec/spec_tests/data/command_monitoring/deleteOne.yml
1897
- - spec/spec_tests/data/command_monitoring/insertOne.yml
1898
- - spec/spec_tests/data/command_monitoring/updateMany.yml
1899
- - spec/spec_tests/data/command_monitoring/insertMany.yml
1900
- - spec/spec_tests/data/command_monitoring/find.yml
1901
- - spec/spec_tests/data/command_monitoring/command.yml
1902
- - spec/spec_tests/data/command_monitoring/unacknowledgedBulkWrite.yml
1903
- - spec/spec_tests/data/command_monitoring/bulkWrite.yml
1904
- - spec/spec_tests/data/crud/read/find-collation.yml
1905
- - spec/spec_tests/data/crud/read/aggregate-out.yml
1906
- - spec/spec_tests/data/crud/read/aggregate-collation.yml
1907
- - spec/spec_tests/data/crud/read/count-empty.yml
1908
- - spec/spec_tests/data/crud/read/distinct.yml
2293
+ - spec/spec_tests/data/connection_string/valid-unix_socket-absolute.yml
2294
+ - spec/spec_tests/data/gridfs_unified/downloadByName.yml
2295
+ - spec/spec_tests/data/gridfs_unified/delete.yml
2296
+ - spec/spec_tests/data/gridfs_unified/download.yml
2297
+ - spec/spec_tests/data/gridfs_unified/upload.yml
2298
+ - spec/spec_tests/data/gridfs_unified/upload-disableMD5.yml
1909
2299
  - spec/spec_tests/data/crud/read/distinct-collation.yml
2300
+ - spec/spec_tests/data/crud/read/count-empty.yml
2301
+ - spec/spec_tests/data/crud/read/find-collation.yml
2302
+ - spec/spec_tests/data/crud/read/count.yml
1910
2303
  - spec/spec_tests/data/crud/read/find.yml
1911
2304
  - spec/spec_tests/data/crud/read/aggregate.yml
1912
- - spec/spec_tests/data/crud/read/count.yml
2305
+ - spec/spec_tests/data/crud/read/aggregate-out.yml
2306
+ - spec/spec_tests/data/crud/read/aggregate-collation.yml
1913
2307
  - spec/spec_tests/data/crud/read/count-collation.yml
1914
- - spec/spec_tests/data/crud/write/deleteMany.yml
1915
- - spec/spec_tests/data/crud/write/updateOne-collation.yml
1916
- - spec/spec_tests/data/crud/write/updateOne.yml
1917
- - spec/spec_tests/data/crud/write/bulkWrite-arrayFilters.yml
2308
+ - spec/spec_tests/data/crud/read/distinct.yml
2309
+ - spec/spec_tests/data/crud/write/replaceOne-collation.yml
2310
+ - spec/spec_tests/data/crud/write/deleteMany-collation.yml
2311
+ - spec/spec_tests/data/crud/write/insertOne.yml
1918
2312
  - spec/spec_tests/data/crud/write/deleteOne.yml
1919
- - spec/spec_tests/data/crud/write/findOneAndUpdate-arrayFilters.yml
2313
+ - spec/spec_tests/data/crud/write/findOneAndReplace-upsert_pre_2.6.yml
2314
+ - spec/spec_tests/data/crud/write/deleteOne-collation.yml
2315
+ - spec/spec_tests/data/crud/write/updateMany-arrayFilters.yml
2316
+ - spec/spec_tests/data/crud/write/findOneAndUpdate.yml
2317
+ - spec/spec_tests/data/crud/write/deleteMany.yml
2318
+ - spec/spec_tests/data/crud/write/updateOne-collation.yml
1920
2319
  - spec/spec_tests/data/crud/write/updateOne-pre_2.6.yml
2320
+ - spec/spec_tests/data/crud/write/findOneAndReplace-upsert.yml
2321
+ - spec/spec_tests/data/crud/write/findOneAndReplace-collation.yml
1921
2322
  - spec/spec_tests/data/crud/write/replaceOne-upsert.yml
1922
- - spec/spec_tests/data/crud/write/findOneAndReplace.yml
1923
- - spec/spec_tests/data/crud/write/insertOne.yml
2323
+ - spec/spec_tests/data/crud/write/findOneAndDelete.yml
1924
2324
  - spec/spec_tests/data/crud/write/replaceOne.yml
1925
- - spec/spec_tests/data/crud/write/deleteOne-collation.yml
2325
+ - spec/spec_tests/data/crud/write/updateMany-collation.yml
2326
+ - spec/spec_tests/data/crud/write/findOneAndReplace.yml
2327
+ - spec/spec_tests/data/crud/write/findOneAndUpdate-arrayFilters.yml
1926
2328
  - spec/spec_tests/data/crud/write/updateMany.yml
2329
+ - spec/spec_tests/data/crud/write/bulkWrite-arrayFilters.yml
1927
2330
  - spec/spec_tests/data/crud/write/updateOne-arrayFilters.yml
1928
- - spec/spec_tests/data/crud/write/insertMany.yml
2331
+ - spec/spec_tests/data/crud/write/updateOne.yml
1929
2332
  - spec/spec_tests/data/crud/write/bulkWrite-collation.yml
1930
- - spec/spec_tests/data/crud/write/updateMany-arrayFilters.yml
1931
- - spec/spec_tests/data/crud/write/findOneAndDelete-collation.yml
1932
- - spec/spec_tests/data/crud/write/findOneAndDelete.yml
1933
- - spec/spec_tests/data/crud/write/findOneAndUpdate.yml
1934
- - spec/spec_tests/data/crud/write/findOneAndReplace-collation.yml
1935
- - spec/spec_tests/data/crud/write/replaceOne-collation.yml
1936
- - spec/spec_tests/data/crud/write/findOneAndReplace-upsert_pre_2.6.yml
2333
+ - spec/spec_tests/data/crud/write/bulkWrite.yml
1937
2334
  - spec/spec_tests/data/crud/write/replaceOne-pre_2.6.yml
1938
2335
  - spec/spec_tests/data/crud/write/updateMany-pre_2.6.yml
1939
- - spec/spec_tests/data/crud/write/updateMany-collation.yml
1940
- - spec/spec_tests/data/crud/write/findOneAndReplace-upsert.yml
1941
2336
  - spec/spec_tests/data/crud/write/findOneAndUpdate-collation.yml
1942
- - spec/spec_tests/data/crud/write/deleteMany-collation.yml
1943
- - spec/spec_tests/data/crud/write/bulkWrite.yml
1944
- - spec/spec_tests/data/sdam/single/direct_connection_rsarbiter.yml
1945
- - spec/spec_tests/data/sdam/single/direct_connection_unavailable_seed.yml
1946
- - spec/spec_tests/data/sdam/single/ruby_primary_mismatched_me.yml
1947
- - spec/spec_tests/data/sdam/single/too_old.yml
1948
- - spec/spec_tests/data/sdam/single/compatible.yml
1949
- - spec/spec_tests/data/sdam/single/direct_connection_rsprimary.yml
1950
- - spec/spec_tests/data/sdam/single/ruby_primary_different_address.yml
1951
- - spec/spec_tests/data/sdam/single/direct_connection_external_ip.yml
2337
+ - spec/spec_tests/data/crud/write/insertMany.yml
2338
+ - spec/spec_tests/data/crud/write/findOneAndDelete-collation.yml
2339
+ - spec/spec_tests/data/max_staleness/Single/Incompatible.yml
2340
+ - spec/spec_tests/data/max_staleness/Single/SmallMaxStaleness.yml
2341
+ - spec/spec_tests/data/max_staleness/Unknown/SmallMaxStaleness.yml
2342
+ - spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/NoKnownServers.yml
2343
+ - spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/SecondaryPreferred_tags.yml
2344
+ - spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/PrimaryPreferred.yml
2345
+ - spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/Incompatible.yml
2346
+ - spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/LastUpdateTime.yml
2347
+ - spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/SecondaryPreferred.yml
2348
+ - spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/Nearest2.yml
2349
+ - spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/Secondary.yml
2350
+ - spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/PrimaryPreferred_tags.yml
2351
+ - spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/Nearest.yml
2352
+ - spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/DefaultNoMaxStaleness.yml
2353
+ - spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/ZeroMaxStaleness.yml
2354
+ - spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/MaxStalenessTooSmall.yml
2355
+ - spec/spec_tests/data/max_staleness/Sharded/Incompatible.yml
2356
+ - spec/spec_tests/data/max_staleness/Sharded/SmallMaxStaleness.yml
2357
+ - spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/SecondaryPreferred_tags.yml
2358
+ - spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/PrimaryPreferred.yml
2359
+ - spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/MaxStalenessWithModePrimary.yml
2360
+ - spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/Incompatible.yml
2361
+ - spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/LastUpdateTime.yml
2362
+ - spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/SecondaryPreferred.yml
2363
+ - spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/Nearest2.yml
2364
+ - spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/Secondary_tags.yml
2365
+ - spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/Nearest.yml
2366
+ - spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/LongHeartbeat2.yml
2367
+ - spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/SecondaryPreferred_tags2.yml
2368
+ - spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/Nearest_tags.yml
2369
+ - spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/DefaultNoMaxStaleness.yml
2370
+ - spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/ZeroMaxStaleness.yml
2371
+ - spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/MaxStalenessTooSmall.yml
2372
+ - spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/Secondary_tags2.yml
2373
+ - spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/PrimaryPreferred_incompatible.yml
2374
+ - spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/LongHeartbeat.yml
2375
+ - spec/spec_tests/data/sdam_monitoring/standalone_suppress_equal_description_changes.yml
2376
+ - spec/spec_tests/data/sdam_monitoring/replica_set_with_no_primary.yml
2377
+ - spec/spec_tests/data/sdam_monitoring/replica_set_other_chain.yml
2378
+ - spec/spec_tests/data/sdam_monitoring/standalone.yml
2379
+ - spec/spec_tests/data/sdam_monitoring/discovered_standalone.yml
2380
+ - spec/spec_tests/data/sdam_monitoring/standalone_to_rs_with_me_mismatch.yml
2381
+ - spec/spec_tests/data/sdam_monitoring/required_replica_set.yml
2382
+ - spec/spec_tests/data/sdam_monitoring/replica_set_with_second_seed_removal.yml
2383
+ - spec/spec_tests/data/sdam_monitoring/replica_set_primary_address_change.yml
2384
+ - spec/spec_tests/data/sdam_monitoring/replica_set_with_primary_and_secondary.yml
2385
+ - spec/spec_tests/data/sdam_monitoring/replica_set_with_primary.yml
2386
+ - spec/spec_tests/data/sdam_monitoring/replica_set_with_me_mismatch.yml
2387
+ - spec/spec_tests/data/sdam_monitoring/replica_set_other_change.yml
2388
+ - spec/spec_tests/data/sdam_monitoring/load_balancer.yml
2389
+ - spec/spec_tests/data/sdam_monitoring/replica_set_with_removal.yml
2390
+ - spec/spec_tests/data/sdam_monitoring/standalone_repeated.yml
2391
+ - spec/spec_tests/data/sdam_monitoring/replica_set_with_primary_removal.yml
2392
+ - spec/spec_tests/data/retryable_reads/legacy/find-serverErrors.yml
2393
+ - spec/spec_tests/data/retryable_reads/legacy/changeStreams-db.watch-serverErrors.yml
2394
+ - spec/spec_tests/data/retryable_reads/legacy/estimatedDocumentCount-serverErrors.yml
2395
+ - spec/spec_tests/data/retryable_reads/legacy/listCollections-serverErrors.yml
2396
+ - spec/spec_tests/data/retryable_reads/legacy/findOne.yml
2397
+ - spec/spec_tests/data/retryable_reads/legacy/gridfs-download-serverErrors.yml
2398
+ - spec/spec_tests/data/retryable_reads/legacy/changeStreams-db.coll.watch.yml
2399
+ - spec/spec_tests/data/retryable_reads/legacy/listIndexes.yml
2400
+ - spec/spec_tests/data/retryable_reads/legacy/gridfs-downloadByName-serverErrors.yml
2401
+ - spec/spec_tests/data/retryable_reads/legacy/listDatabaseObjects-serverErrors.yml
2402
+ - spec/spec_tests/data/retryable_reads/legacy/listIndexes-serverErrors.yml
2403
+ - spec/spec_tests/data/retryable_reads/legacy/listCollectionObjects-serverErrors.yml
2404
+ - spec/spec_tests/data/retryable_reads/legacy/listIndexNames-serverErrors.yml
2405
+ - spec/spec_tests/data/retryable_reads/legacy/listIndexNames.yml
2406
+ - spec/spec_tests/data/retryable_reads/legacy/listDatabaseNames.yml
2407
+ - spec/spec_tests/data/retryable_reads/legacy/countDocuments.yml
2408
+ - spec/spec_tests/data/retryable_reads/legacy/findOne-serverErrors.yml
2409
+ - spec/spec_tests/data/retryable_reads/legacy/count.yml
2410
+ - spec/spec_tests/data/retryable_reads/legacy/listDatabases.yml
2411
+ - spec/spec_tests/data/retryable_reads/legacy/mapReduce.yml
2412
+ - spec/spec_tests/data/retryable_reads/legacy/gridfs-download.yml
2413
+ - spec/spec_tests/data/retryable_reads/legacy/estimatedDocumentCount.yml
2414
+ - spec/spec_tests/data/retryable_reads/legacy/listDatabaseObjects.yml
2415
+ - spec/spec_tests/data/retryable_reads/legacy/find.yml
2416
+ - spec/spec_tests/data/retryable_reads/legacy/changeStreams-client.watch-serverErrors.yml
2417
+ - spec/spec_tests/data/retryable_reads/legacy/aggregate.yml
2418
+ - spec/spec_tests/data/retryable_reads/legacy/listDatabases-serverErrors.yml
2419
+ - spec/spec_tests/data/retryable_reads/legacy/changeStreams-db.watch.yml
2420
+ - spec/spec_tests/data/retryable_reads/legacy/changeStreams-client.watch.yml
2421
+ - spec/spec_tests/data/retryable_reads/legacy/aggregate-merge.yml
2422
+ - spec/spec_tests/data/retryable_reads/legacy/aggregate-serverErrors.yml
2423
+ - spec/spec_tests/data/retryable_reads/legacy/countDocuments-serverErrors.yml
2424
+ - spec/spec_tests/data/retryable_reads/legacy/listDatabaseNames-serverErrors.yml
2425
+ - spec/spec_tests/data/retryable_reads/legacy/changeStreams-db.coll.watch-serverErrors.yml
2426
+ - spec/spec_tests/data/retryable_reads/legacy/distinct.yml
2427
+ - spec/spec_tests/data/retryable_reads/legacy/listCollectionNames.yml
2428
+ - spec/spec_tests/data/retryable_reads/legacy/distinct-serverErrors.yml
2429
+ - spec/spec_tests/data/retryable_reads/legacy/listCollectionObjects.yml
2430
+ - spec/spec_tests/data/retryable_reads/legacy/gridfs-downloadByName.yml
2431
+ - spec/spec_tests/data/retryable_reads/legacy/count-serverErrors.yml
2432
+ - spec/spec_tests/data/retryable_reads/legacy/listCollectionNames-serverErrors.yml
2433
+ - spec/spec_tests/data/retryable_reads/legacy/listCollections.yml
2434
+ - spec/spec_tests/data/retryable_reads/unified/handshakeError.yml
2435
+ - spec/spec_tests/data/gridfs/delete.yml
2436
+ - spec/spec_tests/data/gridfs/download.yml
2437
+ - spec/spec_tests/data/gridfs/upload.yml
2438
+ - spec/spec_tests/data/gridfs/download_by_name.yml
2439
+ - spec/spec_tests/data/client_side_encryption/keyAltName.yml
2440
+ - spec/spec_tests/data/client_side_encryption/fle2-NoEncryption.yml
2441
+ - spec/spec_tests/data/client_side_encryption/azureKMS.yml
2442
+ - spec/spec_tests/data/client_side_encryption/localKMS.yml
2443
+ - spec/spec_tests/data/client_side_encryption/malformedCiphertext.yml
2444
+ - spec/spec_tests/data/client_side_encryption/badQueries.yml
2445
+ - spec/spec_tests/data/client_side_encryption/bypassedCommand.yml
2446
+ - spec/spec_tests/data/client_side_encryption/explain.yml
2447
+ - spec/spec_tests/data/client_side_encryption/bulk.yml
2448
+ - spec/spec_tests/data/client_side_encryption/create-and-createIndexes.yml
2449
+ - spec/spec_tests/data/client_side_encryption/fle2-EncryptedFields-vs-jsonSchema.yml
2450
+ - spec/spec_tests/data/client_side_encryption/fle2-EncryptedFields-vs-EncryptedFieldsMap.yml
2451
+ - spec/spec_tests/data/client_side_encryption/localSchema.yml
2452
+ - spec/spec_tests/data/client_side_encryption/fle2-Compact.yml
2453
+ - spec/spec_tests/data/client_side_encryption/fle2-Delete.yml
2454
+ - spec/spec_tests/data/client_side_encryption/findOneAndUpdate.yml
2455
+ - spec/spec_tests/data/client_side_encryption/fle2-MissingKey.yml
2456
+ - spec/spec_tests/data/client_side_encryption/types.yml
2457
+ - spec/spec_tests/data/client_side_encryption/maxWireVersion.yml
2458
+ - spec/spec_tests/data/client_side_encryption/delete.yml
2459
+ - spec/spec_tests/data/client_side_encryption/countDocuments.yml
2460
+ - spec/spec_tests/data/client_side_encryption/unsupportedCommand.yml
2461
+ - spec/spec_tests/data/client_side_encryption/bypassAutoEncryption.yml
2462
+ - spec/spec_tests/data/client_side_encryption/fle2-CreateCollection.yml
2463
+ - spec/spec_tests/data/client_side_encryption/count.yml
2464
+ - spec/spec_tests/data/client_side_encryption/findOneAndDelete.yml
2465
+ - spec/spec_tests/data/client_side_encryption/missingKey.yml
2466
+ - spec/spec_tests/data/client_side_encryption/replaceOne.yml
2467
+ - spec/spec_tests/data/client_side_encryption/fle2-FindOneAndUpdate.yml
2468
+ - spec/spec_tests/data/client_side_encryption/insert.yml
2469
+ - spec/spec_tests/data/client_side_encryption/badSchema.yml
2470
+ - spec/spec_tests/data/client_side_encryption/gcpKMS.yml
2471
+ - spec/spec_tests/data/client_side_encryption/findOneAndReplace.yml
2472
+ - spec/spec_tests/data/client_side_encryption/fle2-BypassQueryAnalysis.yml
2473
+ - spec/spec_tests/data/client_side_encryption/noSchema.yml
2474
+ - spec/spec_tests/data/client_side_encryption/find.yml
2475
+ - spec/spec_tests/data/client_side_encryption/updateMany.yml
2476
+ - spec/spec_tests/data/client_side_encryption/aggregate.yml
2477
+ - spec/spec_tests/data/client_side_encryption/fle2-validatorAndPartialFieldExpression.yml
2478
+ - spec/spec_tests/data/client_side_encryption/fle2-DecryptExistingData.yml
2479
+ - spec/spec_tests/data/client_side_encryption/fle2-Update.yml
2480
+ - spec/spec_tests/data/client_side_encryption/getMore.yml
2481
+ - spec/spec_tests/data/client_side_encryption/updateOne.yml
2482
+ - spec/spec_tests/data/client_side_encryption/fle2-InsertFind-Indexed.yml
2483
+ - spec/spec_tests/data/client_side_encryption/unified/createDataKey-kms_providers-invalid.yml
2484
+ - spec/spec_tests/data/client_side_encryption/unified/rewrapManyDataKey-decrypt_failure.yml
2485
+ - spec/spec_tests/data/client_side_encryption/unified/getKey.yml
2486
+ - spec/spec_tests/data/client_side_encryption/unified/removeKeyAltName.yml
2487
+ - spec/spec_tests/data/client_side_encryption/unified/addKeyAltName.yml
2488
+ - spec/spec_tests/data/client_side_encryption/unified/getKeys.yml
2489
+ - spec/spec_tests/data/client_side_encryption/unified/deleteKey.yml
2490
+ - spec/spec_tests/data/client_side_encryption/unified/rewrapManyDataKey-encrypt_failure.yml
2491
+ - spec/spec_tests/data/client_side_encryption/unified/createDataKey.yml
2492
+ - spec/spec_tests/data/client_side_encryption/unified/getKeyByAltName.yml
2493
+ - spec/spec_tests/data/client_side_encryption/unified/rewrapManyDataKey.yml
2494
+ - spec/spec_tests/data/client_side_encryption/distinct.yml
2495
+ - spec/spec_tests/data/client_side_encryption/fle2-EncryptedFieldsMap-defaults.yml
2496
+ - spec/spec_tests/data/client_side_encryption/basic.yml
2497
+ - spec/spec_tests/data/client_side_encryption/validatorAndPartialFieldExpression.yml
2498
+ - spec/spec_tests/data/client_side_encryption/fle2-InsertFind-Unindexed.yml
2499
+ - spec/spec_tests/data/retryable_writes/legacy/findOneAndReplace-errorLabels.yml
2500
+ - spec/spec_tests/data/retryable_writes/legacy/insertOne.yml
2501
+ - spec/spec_tests/data/retryable_writes/legacy/findOneAndReplace-serverErrors.yml
2502
+ - spec/spec_tests/data/retryable_writes/legacy/deleteOne.yml
2503
+ - spec/spec_tests/data/retryable_writes/legacy/findOneAndUpdate.yml
2504
+ - spec/spec_tests/data/retryable_writes/legacy/replaceOne-serverErrors.yml
2505
+ - spec/spec_tests/data/retryable_writes/legacy/deleteMany.yml
2506
+ - spec/spec_tests/data/retryable_writes/legacy/insertOne-serverErrors.yml
2507
+ - spec/spec_tests/data/retryable_writes/legacy/findOneAndDelete-errorLabels.yml
2508
+ - spec/spec_tests/data/retryable_writes/legacy/insertMany-serverErrors.yml
2509
+ - spec/spec_tests/data/retryable_writes/legacy/findOneAndUpdate-serverErrors.yml
2510
+ - spec/spec_tests/data/retryable_writes/legacy/insertOne-errorLabels.yml
2511
+ - spec/spec_tests/data/retryable_writes/legacy/findOneAndDelete.yml
2512
+ - spec/spec_tests/data/retryable_writes/legacy/deleteOne-serverErrors.yml
2513
+ - spec/spec_tests/data/retryable_writes/legacy/replaceOne.yml
2514
+ - spec/spec_tests/data/retryable_writes/legacy/findOneAndReplace.yml
2515
+ - spec/spec_tests/data/retryable_writes/legacy/findOneAndDelete-serverErrors.yml
2516
+ - spec/spec_tests/data/retryable_writes/legacy/findOneAndUpdate-errorLabels.yml
2517
+ - spec/spec_tests/data/retryable_writes/legacy/updateMany.yml
2518
+ - spec/spec_tests/data/retryable_writes/legacy/bulkWrite-errorLabels.yml
2519
+ - spec/spec_tests/data/retryable_writes/legacy/updateOne-serverErrors.yml
2520
+ - spec/spec_tests/data/retryable_writes/legacy/insertMany-errorLabels.yml
2521
+ - spec/spec_tests/data/retryable_writes/legacy/updateOne.yml
2522
+ - spec/spec_tests/data/retryable_writes/legacy/deleteOne-errorLabels.yml
2523
+ - spec/spec_tests/data/retryable_writes/legacy/bulkWrite.yml
2524
+ - spec/spec_tests/data/retryable_writes/legacy/replaceOne-errorLabels.yml
2525
+ - spec/spec_tests/data/retryable_writes/legacy/insertMany.yml
2526
+ - spec/spec_tests/data/retryable_writes/legacy/bulkWrite-serverErrors.yml
2527
+ - spec/spec_tests/data/retryable_writes/legacy/updateOne-errorLabels.yml
2528
+ - spec/spec_tests/data/retryable_writes/unified/handshakeError.yml
2529
+ - spec/spec_tests/data/retryable_writes/unified/insertOne-serverErrors.yml
2530
+ - spec/spec_tests/data/retryable_writes/unified/bulkWrite-serverErrors.yml
2531
+ - spec/spec_tests/data/command_monitoring_unified/insertOne.yml
2532
+ - spec/spec_tests/data/command_monitoring_unified/deleteOne.yml
2533
+ - spec/spec_tests/data/command_monitoring_unified/deleteMany.yml
2534
+ - spec/spec_tests/data/command_monitoring_unified/redacted-commands.yml
2535
+ - spec/spec_tests/data/command_monitoring_unified/pre-42-server-connection-id.yml
2536
+ - spec/spec_tests/data/command_monitoring_unified/command.yml
2537
+ - spec/spec_tests/data/command_monitoring_unified/server-connection-id.yml
2538
+ - spec/spec_tests/data/command_monitoring_unified/find.yml
2539
+ - spec/spec_tests/data/command_monitoring_unified/updateMany.yml
2540
+ - spec/spec_tests/data/command_monitoring_unified/updateOne.yml
2541
+ - spec/spec_tests/data/command_monitoring_unified/bulkWrite.yml
2542
+ - spec/spec_tests/data/command_monitoring_unified/unacknowledgedBulkWrite.yml
2543
+ - spec/spec_tests/data/command_monitoring_unified/insertMany.yml
2544
+ - spec/spec_tests/data/sdam/single/direct_connection_standalone.yml
1952
2545
  - spec/spec_tests/data/sdam/single/discover_unavailable_seed.yml
1953
2546
  - spec/spec_tests/data/sdam/single/direct_connection_wrong_set_name.yml
1954
- - spec/spec_tests/data/sdam/single/not_ok_response.yml
1955
- - spec/spec_tests/data/sdam/single/direct_connection_mongos.yml
1956
- - spec/spec_tests/data/sdam/single/too_new.yml
2547
+ - spec/spec_tests/data/sdam/single/direct_connection_unavailable_seed.yml
1957
2548
  - spec/spec_tests/data/sdam/single/direct_connection_rssecondary.yml
1958
- - spec/spec_tests/data/sdam/single/direct_connection_standalone.yml
1959
- - spec/spec_tests/data/sdam/single/standalone_removed.yml
1960
- - spec/spec_tests/data/sdam/single/direct_connection_slave.yml
1961
2549
  - spec/spec_tests/data/sdam/single/ls_timeout_standalone.yml
1962
- - spec/spec_tests/data/sdam/single/direct_connection_replicaset.yml
2550
+ - spec/spec_tests/data/sdam/single/standalone_removed.yml
2551
+ - spec/spec_tests/data/sdam/single/not_ok_response.yml
2552
+ - spec/spec_tests/data/sdam/single/direct_connection_mongos.yml
2553
+ - spec/spec_tests/data/sdam/single/standalone_using_legacy_hello.yml
1963
2554
  - spec/spec_tests/data/sdam/single/discover_standalone.yml
2555
+ - spec/spec_tests/data/sdam/single/direct_connection_rsprimary.yml
2556
+ - spec/spec_tests/data/sdam/single/ruby_primary_mismatched_me.yml
2557
+ - spec/spec_tests/data/sdam/single/direct_connection_external_ip.yml
1964
2558
  - spec/spec_tests/data/sdam/single/too_old_then_upgraded.yml
1965
- - spec/spec_tests/data/sdam/rs/primary_disconnect.yml
1966
- - spec/spec_tests/data/sdam/rs/primary_wrong_set_name.yml
1967
- - spec/spec_tests/data/sdam/rs/primary_becomes_standalone.yml
1968
- - spec/spec_tests/data/sdam/rs/repeated.yml
1969
- - spec/spec_tests/data/sdam/rs/use_setversion_without_electionid.yml
2559
+ - spec/spec_tests/data/sdam/single/direct_connection_replicaset.yml
2560
+ - spec/spec_tests/data/sdam/single/too_new.yml
2561
+ - spec/spec_tests/data/sdam/single/ruby_primary_different_address.yml
2562
+ - spec/spec_tests/data/sdam/single/direct_connection_rsarbiter.yml
2563
+ - spec/spec_tests/data/sdam/single/too_old.yml
2564
+ - spec/spec_tests/data/sdam/single/compatible.yml
2565
+ - spec/spec_tests/data/sdam/sharded/mongos_disconnect.yml
2566
+ - spec/spec_tests/data/sdam/sharded/ls_timeout_mongos.yml
2567
+ - spec/spec_tests/data/sdam/sharded/normalize_uri_case.yml
2568
+ - spec/spec_tests/data/sdam/sharded/ruby_primary_mismatched_me.yml
2569
+ - spec/spec_tests/data/sdam/sharded/too_new.yml
2570
+ - spec/spec_tests/data/sdam/sharded/discover_single_mongos.yml
2571
+ - spec/spec_tests/data/sdam/sharded/ruby_primary_different_address.yml
2572
+ - spec/spec_tests/data/sdam/sharded/non_mongos_removed.yml
2573
+ - spec/spec_tests/data/sdam/sharded/multiple_mongoses.yml
2574
+ - spec/spec_tests/data/sdam/sharded/too_old.yml
2575
+ - spec/spec_tests/data/sdam/sharded/compatible.yml
2576
+ - spec/spec_tests/data/sdam/rs/primary_mismatched_me.yml
2577
+ - spec/spec_tests/data/sdam/rs/primary_becomes_ghost.yml
2578
+ - spec/spec_tests/data/sdam/rs/discover_primary_replicaset.yml
1970
2579
  - spec/spec_tests/data/sdam/rs/incompatible_arbiter.yml
1971
- - spec/spec_tests/data/sdam/rs/primary_reports_new_member.yml
1972
- - spec/spec_tests/data/sdam/rs/new_primary_new_electionid.yml
1973
- - spec/spec_tests/data/sdam/rs/hosts_differ_from_seeds.yml
1974
- - spec/spec_tests/data/sdam/rs/discover_secondary_replicaset.yml
1975
- - spec/spec_tests/data/sdam/rs/primary_changes_set_name.yml
1976
- - spec/spec_tests/data/sdam/rs/stepdown_change_set_name.yml
2580
+ - spec/spec_tests/data/sdam/rs/primary_to_no_primary_mismatched_me.yml
2581
+ - spec/spec_tests/data/sdam/rs/discover_secondary.yml
2582
+ - spec/spec_tests/data/sdam/rs/new_primary_wrong_set_name.yml
2583
+ - spec/spec_tests/data/sdam/rs/discover_rsother_replicaset.yml
2584
+ - spec/spec_tests/data/sdam/rs/primary_disconnect.yml
1977
2585
  - spec/spec_tests/data/sdam/rs/setversion_without_electionid.yml
1978
- - spec/spec_tests/data/sdam/rs/too_old.yml
1979
- - spec/spec_tests/data/sdam/rs/discover_primary_replicaset.yml
1980
- - spec/spec_tests/data/sdam/rs/secondary_ignore_ok_0.yml
1981
- - spec/spec_tests/data/sdam/rs/discover_passives_replicaset.yml
1982
- - spec/spec_tests/data/sdam/rs/compatible.yml
1983
- - spec/spec_tests/data/sdam/rs/equal_electionids.yml
1984
- - spec/spec_tests/data/sdam/rs/primary_mismatched_me.yml
1985
- - spec/spec_tests/data/sdam/rs/member_reconfig.yml
1986
- - spec/spec_tests/data/sdam/rs/primary_hint_from_secondary_with_mismatched_me.yml
1987
- - spec/spec_tests/data/sdam/rs/new_primary.yml
1988
- - spec/spec_tests/data/sdam/rs/compatible_unknown.yml
1989
- - spec/spec_tests/data/sdam/rs/sec_not_auth.yml
1990
- - spec/spec_tests/data/sdam/rs/topology_version_greater.yml
1991
- - spec/spec_tests/data/sdam/rs/discover_arbiters.yml
1992
- - spec/spec_tests/data/sdam/rs/null_election_id.yml
1993
- - spec/spec_tests/data/sdam/rs/discover_ghost_replicaset.yml
1994
- - spec/spec_tests/data/sdam/rs/incompatible_other.yml
2586
+ - spec/spec_tests/data/sdam/rs/response_from_removed.yml
2587
+ - spec/spec_tests/data/sdam/rs/use_setversion_without_electionid.yml
2588
+ - spec/spec_tests/data/sdam/rs/primary_disconnect_setversion.yml
2589
+ - spec/spec_tests/data/sdam/rs/discover_hidden_replicaset.yml
2590
+ - spec/spec_tests/data/sdam/rs/unexpected_mongos.yml
2591
+ - spec/spec_tests/data/sdam/rs/incompatible_ghost.yml
1995
2592
  - spec/spec_tests/data/sdam/rs/discover_rsother.yml
2593
+ - spec/spec_tests/data/sdam/rs/new_primary.yml
1996
2594
  - spec/spec_tests/data/sdam/rs/topology_version_less.yml
1997
- - spec/spec_tests/data/sdam/rs/discover_secondary.yml
1998
- - spec/spec_tests/data/sdam/rs/discover_primary.yml
2595
+ - spec/spec_tests/data/sdam/rs/primary_becomes_mongos.yml
2596
+ - spec/spec_tests/data/sdam/rs/discover_passives_replicaset.yml
2597
+ - spec/spec_tests/data/sdam/rs/non_rs_member.yml
2598
+ - spec/spec_tests/data/sdam/rs/secondary_wrong_set_name_with_primary.yml
2599
+ - spec/spec_tests/data/sdam/rs/primary_reports_new_member.yml
1999
2600
  - spec/spec_tests/data/sdam/rs/normalize_case.yml
2000
- - spec/spec_tests/data/sdam/rs/discover_ghost.yml
2001
- - spec/spec_tests/data/sdam/rs/new_primary_new_setversion.yml
2002
- - spec/spec_tests/data/sdam/rs/wrong_set_name.yml
2601
+ - spec/spec_tests/data/sdam/rs/discover_ghost_replicaset.yml
2602
+ - spec/spec_tests/data/sdam/rs/discover_passives.yml
2603
+ - spec/spec_tests/data/sdam/rs/compatible_unknown.yml
2604
+ - spec/spec_tests/data/sdam/rs/new_primary_new_electionid.yml
2003
2605
  - spec/spec_tests/data/sdam/rs/secondary_wrong_set_name.yml
2004
- - spec/spec_tests/data/sdam/rs/unexpected_mongos.yml
2606
+ - spec/spec_tests/data/sdam/rs/primary_hint_from_secondary_with_mismatched_me.yml
2607
+ - spec/spec_tests/data/sdam/rs/replicaset_rsnp.yml
2608
+ - spec/spec_tests/data/sdam/rs/primary_becomes_standalone.yml
2005
2609
  - spec/spec_tests/data/sdam/rs/secondary_mismatched_me.yml
2006
- - spec/spec_tests/data/sdam/rs/new_primary_wrong_set_name.yml
2007
- - spec/spec_tests/data/sdam/rs/ruby_secondary_wrong_set_name_with_primary_second.yml
2008
- - spec/spec_tests/data/sdam/rs/discover_arbiters_replicaset.yml
2009
- - spec/spec_tests/data/sdam/rs/discovery.yml
2010
- - spec/spec_tests/data/sdam/rs/secondary_wrong_set_name_with_primary.yml
2011
2610
  - spec/spec_tests/data/sdam/rs/primary_mismatched_me_not_removed.yml
2012
- - spec/spec_tests/data/sdam/rs/too_new.yml
2611
+ - spec/spec_tests/data/sdam/rs/discover_secondary_replicaset.yml
2612
+ - spec/spec_tests/data/sdam/rs/ls_timeout.yml
2613
+ - spec/spec_tests/data/sdam/rs/ruby_primary_address_change.yml
2013
2614
  - spec/spec_tests/data/sdam/rs/member_standalone.yml
2014
- - spec/spec_tests/data/sdam/rs/primary_disconnect_electionid.yml
2015
- - spec/spec_tests/data/sdam/rs/primary_becomes_mongos.yml
2615
+ - spec/spec_tests/data/sdam/rs/member_reconfig.yml
2616
+ - spec/spec_tests/data/sdam/rs/primary_wrong_set_name.yml
2617
+ - spec/spec_tests/data/sdam/rs/topology_version_greater.yml
2016
2618
  - spec/spec_tests/data/sdam/rs/discover_hidden.yml
2017
- - spec/spec_tests/data/sdam/rs/response_from_removed.yml
2018
- - spec/spec_tests/data/sdam/rs/primary_disconnect_setversion.yml
2019
- - spec/spec_tests/data/sdam/rs/discover_hidden_replicaset.yml
2619
+ - spec/spec_tests/data/sdam/rs/discover_arbiters_replicaset.yml
2620
+ - spec/spec_tests/data/sdam/rs/too_new.yml
2621
+ - spec/spec_tests/data/sdam/rs/primary_changes_set_name.yml
2622
+ - spec/spec_tests/data/sdam/rs/repeated.yml
2623
+ - spec/spec_tests/data/sdam/rs/null_election_id.yml
2624
+ - spec/spec_tests/data/sdam/rs/discover_ghost.yml
2625
+ - spec/spec_tests/data/sdam/rs/discovery.yml
2020
2626
  - spec/spec_tests/data/sdam/rs/topology_version_equal.yml
2021
- - spec/spec_tests/data/sdam/rs/incompatible_ghost.yml
2022
- - spec/spec_tests/data/sdam/rs/non_rs_member.yml
2023
- - spec/spec_tests/data/sdam/rs/normalize_case_me.yml
2024
- - spec/spec_tests/data/sdam/rs/ruby_primary_address_change.yml
2025
- - spec/spec_tests/data/sdam/rs/primary_to_no_primary_mismatched_me.yml
2026
- - spec/spec_tests/data/sdam/rs/discover_rsother_replicaset.yml
2027
- - spec/spec_tests/data/sdam/rs/ls_timeout.yml
2028
- - spec/spec_tests/data/sdam/rs/primary_becomes_ghost.yml
2029
- - spec/spec_tests/data/sdam/rs/discover_passives.yml
2030
- - spec/spec_tests/data/sdam/rs/replicaset_rsnp.yml
2031
- - spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-timeout.yml
2627
+ - spec/spec_tests/data/sdam/rs/primary_disconnect_electionid.yml
2628
+ - spec/spec_tests/data/sdam/rs/discover_primary.yml
2629
+ - spec/spec_tests/data/sdam/rs/incompatible_other.yml
2630
+ - spec/spec_tests/data/sdam/rs/ruby_secondary_wrong_set_name_with_primary_second.yml
2631
+ - spec/spec_tests/data/sdam/rs/wrong_set_name.yml
2632
+ - spec/spec_tests/data/sdam/rs/hosts_differ_from_seeds.yml
2633
+ - spec/spec_tests/data/sdam/rs/too_old.yml
2634
+ - spec/spec_tests/data/sdam/rs/discover_arbiters.yml
2635
+ - spec/spec_tests/data/sdam/rs/sec_not_auth.yml
2636
+ - spec/spec_tests/data/sdam/rs/secondary_ignore_ok_0.yml
2637
+ - spec/spec_tests/data/sdam/rs/normalize_case_me.yml
2638
+ - spec/spec_tests/data/sdam/rs/compatible.yml
2639
+ - spec/spec_tests/data/sdam/rs/equal_electionids.yml
2640
+ - spec/spec_tests/data/sdam/rs/stepdown_change_set_name.yml
2641
+ - spec/spec_tests/data/sdam/rs/new_primary_new_setversion.yml
2642
+ - spec/spec_tests/data/sdam/load-balanced/discover_load_balancer.yml
2643
+ - spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-NotPrimaryNoSecondaryOk.yml
2644
+ - spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-LegacyNotPrimary.yml
2645
+ - spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-ShutdownInProgress.yml
2646
+ - spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-LegacyNotPrimary.yml
2647
+ - spec/spec_tests/data/sdam/errors/prefer-error-code.yml
2648
+ - spec/spec_tests/data/sdam/errors/post-42-InterruptedAtShutdown.yml
2649
+ - spec/spec_tests/data/sdam/errors/stale-generation-InterruptedDueToReplStateChange.yml
2650
+ - spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-timeout.yml
2651
+ - spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-NotPrimaryOrSecondary.yml
2652
+ - spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-PrimarySteppedDown.yml
2653
+ - spec/spec_tests/data/sdam/errors/non-stale-network-timeout-error.yml
2654
+ - spec/spec_tests/data/sdam/errors/pre-42-LegacyNotPrimary.yml
2655
+ - spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-InterruptedAtShutdown.yml
2032
2656
  - spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-PrimarySteppedDown.yml
2033
- - spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-InterruptedAtShutdown.yml
2034
- - spec/spec_tests/data/sdam/errors/stale-topologyVersion-PrimarySteppedDown.yml
2035
- - spec/spec_tests/data/sdam/errors/stale-topologyVersion-InterruptedDueToReplStateChange.yml
2036
- - spec/spec_tests/data/sdam/errors/post-42-PrimarySteppedDown.yml
2037
- - spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-InterruptedDueToReplStateChange.yml
2038
- - spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-NotMasterNoSlaveOk.yml
2039
- - spec/spec_tests/data/sdam/errors/stale-generation-NotMaster.yml
2657
+ - spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-PrimarySteppedDown.yml
2658
+ - spec/spec_tests/data/sdam/errors/pre-42-NotPrimaryOrSecondary.yml
2659
+ - spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-NotWritablePrimary.yml
2660
+ - spec/spec_tests/data/sdam/errors/pre-42-PrimarySteppedDown.yml
2661
+ - spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-NotWritablePrimary.yml
2662
+ - spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-NotPrimaryNoSecondaryOk.yml
2663
+ - spec/spec_tests/data/sdam/errors/post-42-ShutdownInProgress.yml
2664
+ - spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-NotPrimaryOrSecondary.yml
2665
+ - spec/spec_tests/data/sdam/errors/post-42-NotPrimaryOrSecondary.yml
2666
+ - spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-NotPrimaryNoSecondaryOk.yml
2667
+ - spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-NotPrimaryNoSecondaryOk.yml
2668
+ - spec/spec_tests/data/sdam/errors/pre-42-InterruptedAtShutdown.yml
2669
+ - spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-LegacyNotPrimary.yml
2670
+ - spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-ShutdownInProgress.yml
2671
+ - spec/spec_tests/data/sdam/errors/stale-generation-NotPrimaryOrSecondary.yml
2040
2672
  - spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-InterruptedDueToReplStateChange.yml
2041
- - spec/spec_tests/data/sdam/errors/stale-generation-NotMasterNoSlaveOk.yml
2042
- - spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-InterruptedAtShutdown.yml
2043
- - spec/spec_tests/data/sdam/errors/stale-generation-NotMasterOrSecondary.yml
2044
- - spec/spec_tests/data/sdam/errors/stale-topologyVersion-ShutdownInProgress.yml
2045
- - spec/spec_tests/data/sdam/errors/stale-generation-PrimarySteppedDown.yml
2673
+ - spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-InterruptedAtShutdown.yml
2674
+ - spec/spec_tests/data/sdam/errors/pre-42-NotPrimaryNoSecondaryOk.yml
2675
+ - spec/spec_tests/data/sdam/errors/stale-generation-NotWritablePrimary.yml
2046
2676
  - spec/spec_tests/data/sdam/errors/non-stale-network-error.yml
2677
+ - spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-ShutdownInProgress.yml
2678
+ - spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-network.yml
2679
+ - spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-NotPrimaryOrSecondary.yml
2680
+ - spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-InterruptedDueToReplStateChange.yml
2681
+ - spec/spec_tests/data/sdam/errors/stale-generation-ShutdownInProgress.yml
2682
+ - spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-ShutdownInProgress.yml
2683
+ - spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-timeout.yml
2684
+ - spec/spec_tests/data/sdam/errors/post-42-PrimarySteppedDown.yml
2685
+ - spec/spec_tests/data/sdam/errors/stale-topologyVersion-InterruptedAtShutdown.yml
2686
+ - spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-ShutdownInProgress.yml
2687
+ - spec/spec_tests/data/sdam/errors/error_handling_handshake.yml
2688
+ - spec/spec_tests/data/sdam/errors/stale-topologyVersion-InterruptedDueToReplStateChange.yml
2689
+ - spec/spec_tests/data/sdam/errors/stale-topologyVersion-NotWritablePrimary.yml
2690
+ - spec/spec_tests/data/sdam/errors/post-42-NotWritablePrimary.yml
2691
+ - spec/spec_tests/data/sdam/errors/stale-topologyVersion-NotPrimaryNoSecondaryOk.yml
2692
+ - spec/spec_tests/data/sdam/errors/post-42-LegacyNotPrimary.yml
2693
+ - spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-NotPrimaryOrSecondary.yml
2694
+ - spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-NotPrimaryOrSecondary.yml
2695
+ - spec/spec_tests/data/sdam/errors/stale-generation-InterruptedAtShutdown.yml
2696
+ - spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-PrimarySteppedDown.yml
2047
2697
  - spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-InterruptedAtShutdown.yml
2048
- - spec/spec_tests/data/sdam/errors/stale-topologyVersion-NotMasterOrSecondary.yml
2049
- - spec/spec_tests/data/sdam/errors/stale-topologyVersion-NotMaster.yml
2050
- - spec/spec_tests/data/sdam/errors/post-42-NotMasterNoSlaveOk.yml
2051
- - spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-NotMasterNoSlaveOk.yml
2052
- - spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-NotMaster.yml
2053
- - spec/spec_tests/data/sdam/errors/post-42-InterruptedDueToReplStateChange.yml
2698
+ - spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-NotPrimaryNoSecondaryOk.yml
2699
+ - spec/spec_tests/data/sdam/errors/pre-42-NotWritablePrimary.yml
2054
2700
  - spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-network.yml
2055
- - spec/spec_tests/data/sdam/errors/post-42-NotMasterOrSecondary.yml
2056
- - spec/spec_tests/data/sdam/errors/pre-42-NotMaster.yml
2057
- - spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-NotMaster.yml
2058
- - spec/spec_tests/data/sdam/errors/pre-42-NotMasterOrSecondary.yml
2059
- - spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-NotMasterNoSlaveOk.yml
2060
- - spec/spec_tests/data/sdam/errors/post-42-NotMaster.yml
2061
- - spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-NotMasterOrSecondary.yml
2062
- - spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-PrimarySteppedDown.yml
2063
- - spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-InterruptedAtShutdown.yml
2064
- - spec/spec_tests/data/sdam/errors/stale-topologyVersion-NotMasterNoSlaveOk.yml
2065
- - spec/spec_tests/data/sdam/errors/pre-42-ShutdownInProgress.yml
2066
- - spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-ShutdownInProgress.yml
2067
- - spec/spec_tests/data/sdam/errors/pre-42-PrimarySteppedDown.yml
2068
- - spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-NotMaster.yml
2069
- - spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-ShutdownInProgress.yml
2070
- - spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-NotMaster.yml
2071
- - spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-NotMasterOrSecondary.yml
2072
- - spec/spec_tests/data/sdam/errors/stale-generation-ShutdownInProgress.yml
2073
- - spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-NotMaster.yml
2074
- - spec/spec_tests/data/sdam/errors/post-42-InterruptedAtShutdown.yml
2075
- - spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-ShutdownInProgress.yml
2701
+ - spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-LegacyNotPrimary.yml
2702
+ - spec/spec_tests/data/sdam/errors/post-42-NotPrimaryNoSecondaryOk.yml
2703
+ - spec/spec_tests/data/sdam/errors/stale-generation-PrimarySteppedDown.yml
2704
+ - spec/spec_tests/data/sdam/errors/stale-topologyVersion-NotPrimaryOrSecondary.yml
2076
2705
  - spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-InterruptedAtShutdown.yml
2077
- - spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-NotMasterOrSecondary.yml
2078
- - spec/spec_tests/data/sdam/errors/pre-42-InterruptedDueToReplStateChange.yml
2079
- - spec/spec_tests/data/sdam/errors/pre-42-InterruptedAtShutdown.yml
2706
+ - spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-NotWritablePrimary.yml
2080
2707
  - spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-InterruptedDueToReplStateChange.yml
2081
- - spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-InterruptedDueToReplStateChange.yml
2082
- - spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-network.yml
2083
- - spec/spec_tests/data/sdam/errors/post-42-ShutdownInProgress.yml
2708
+ - spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-LegacyNotPrimary.yml
2709
+ - spec/spec_tests/data/sdam/errors/stale-topologyVersion-LegacyNotPrimary.yml
2084
2710
  - spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-InterruptedDueToReplStateChange.yml
2085
- - spec/spec_tests/data/sdam/errors/stale-generation-InterruptedDueToReplStateChange.yml
2086
- - spec/spec_tests/data/sdam/errors/non-stale-network-timeout-error.yml
2087
- - spec/spec_tests/data/sdam/errors/pre-42-NotMasterNoSlaveOk.yml
2088
- - spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-ShutdownInProgress.yml
2089
- - spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-ShutdownInProgress.yml
2090
- - spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-greater-PrimarySteppedDown.yml
2091
- - spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-PrimarySteppedDown.yml
2092
- - spec/spec_tests/data/sdam/errors/stale-topologyVersion-InterruptedAtShutdown.yml
2093
- - spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-NotMasterNoSlaveOk.yml
2094
- - spec/spec_tests/data/sdam/errors/error_handling_handshake.yml
2095
- - spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-NotMasterOrSecondary.yml
2711
+ - spec/spec_tests/data/sdam/errors/pre-42-InterruptedDueToReplStateChange.yml
2712
+ - spec/spec_tests/data/sdam/errors/stale-topologyVersion-ShutdownInProgress.yml
2713
+ - spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-NotWritablePrimary.yml
2714
+ - spec/spec_tests/data/sdam/errors/write_errors_ignored.yml
2096
2715
  - spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-PrimarySteppedDown.yml
2097
- - spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-timeout.yml
2098
- - spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-NotMasterNoSlaveOk.yml
2099
- - spec/spec_tests/data/sdam/errors/stale-generation-beforeHandshakeCompletes-NotMasterOrSecondary.yml
2100
- - spec/spec_tests/data/sdam/errors/stale-generation-InterruptedAtShutdown.yml
2101
- - spec/spec_tests/data/sdam/sharded/ruby_primary_mismatched_me.yml
2102
- - spec/spec_tests/data/sdam/sharded/too_old.yml
2103
- - spec/spec_tests/data/sdam/sharded/compatible.yml
2104
- - spec/spec_tests/data/sdam/sharded/ruby_primary_different_address.yml
2105
- - spec/spec_tests/data/sdam/sharded/mongos_disconnect.yml
2106
- - spec/spec_tests/data/sdam/sharded/non_mongos_removed.yml
2107
- - spec/spec_tests/data/sdam/sharded/normalize_uri_case.yml
2108
- - spec/spec_tests/data/sdam/sharded/ls_timeout_mongos.yml
2109
- - spec/spec_tests/data/sdam/sharded/too_new.yml
2110
- - spec/spec_tests/data/sdam/sharded/multiple_mongoses.yml
2111
- - spec/spec_tests/data/sdam/sharded/discover_single_mongos.yml
2112
- - spec/spec_tests/data/read_write_concern/document/read-concern.yml
2113
- - spec/spec_tests/data/read_write_concern/document/write-concern.yml
2114
- - spec/spec_tests/data/read_write_concern/operation/default-write-concern-2.6.yml
2115
- - spec/spec_tests/data/read_write_concern/operation/default-write-concern-3.4.yml
2116
- - spec/spec_tests/data/read_write_concern/operation/default-write-concern-3.2.yml
2117
- - spec/spec_tests/data/read_write_concern/operation/default-write-concern-4.2.yml
2118
- - spec/spec_tests/data/read_write_concern/connection-string/read-concern.yml
2119
- - spec/spec_tests/data/read_write_concern/connection-string/write-concern.yml
2716
+ - spec/spec_tests/data/sdam/errors/stale-generation-NotPrimaryNoSecondaryOk.yml
2717
+ - spec/spec_tests/data/sdam/errors/stale-generation-afterHandshakeCompletes-InterruptedDueToReplStateChange.yml
2718
+ - spec/spec_tests/data/sdam/errors/post-42-InterruptedDueToReplStateChange.yml
2719
+ - spec/spec_tests/data/sdam/errors/pre-42-ShutdownInProgress.yml
2720
+ - spec/spec_tests/data/sdam/errors/stale-topologyVersion-PrimarySteppedDown.yml
2721
+ - spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-missing-InterruptedAtShutdown.yml
2722
+ - spec/spec_tests/data/sdam/errors/non-stale-topologyVersion-proccessId-changed-NotWritablePrimary.yml
2723
+ - spec/spec_tests/data/change_streams_unified/change-streams-resume-errorLabels.yml
2724
+ - spec/spec_tests/data/change_streams_unified/change-streams-errors.yml
2725
+ - spec/spec_tests/data/change_streams_unified/change-streams-pre_and_post_images.yml
2726
+ - spec/spec_tests/data/change_streams_unified/change-streams-showExpandedEvents.yml
2727
+ - spec/spec_tests/data/change_streams_unified/change-streams.yml
2728
+ - spec/spec_tests/data/change_streams_unified/change-streams-resume-allowlist.yml
2729
+ - spec/spec_tests/data/uri_options/ruby-connection-options.yml
2730
+ - spec/spec_tests/data/uri_options/ruby-auth-options.yml
2731
+ - spec/spec_tests/data/uri_options/connection-pool-options.yml
2732
+ - spec/spec_tests/data/uri_options/compression-options.yml
2733
+ - spec/spec_tests/data/uri_options/read-preference-options.yml
2734
+ - spec/spec_tests/data/uri_options/connection-options.yml
2735
+ - spec/spec_tests/data/uri_options/srv-options.yml
2736
+ - spec/spec_tests/data/uri_options/tls-options.yml
2737
+ - spec/spec_tests/data/uri_options/auth-options.yml
2738
+ - spec/spec_tests/data/uri_options/concern-options.yml
2739
+ - spec/spec_tests/data/server_selection/Single/read/SecondaryPreferred.yml
2740
+ - spec/spec_tests/data/server_selection/Unknown/read/SecondaryPreferred.yml
2741
+ - spec/spec_tests/data/server_selection/Unknown/read/ghost.yml
2742
+ - spec/spec_tests/data/server_selection/Unknown/write/ghost.yml
2743
+ - spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/PrimaryPreferred.yml
2744
+ - spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/Secondary_multi_tags2.yml
2745
+ - spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/Nearest_multiple.yml
2746
+ - spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/SecondaryPreferred.yml
2747
+ - spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/Secondary.yml
2748
+ - spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/PrimaryPreferred_non_matching.yml
2749
+ - spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/Primary.yml
2750
+ - spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/PossiblePrimary.yml
2751
+ - spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/Nearest.yml
2752
+ - spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/SecondaryPreferred_non_matching.yml
2753
+ - spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/Nearest_non_matching.yml
2754
+ - spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/PossiblePrimaryNearest.yml
2755
+ - spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/Secondary_non_matching.yml
2756
+ - spec/spec_tests/data/server_selection/ReplicaSetNoPrimary/read/Secondary_multi_tags.yml
2757
+ - spec/spec_tests/data/server_selection/Sharded/read/PrimaryPreferred.yml
2758
+ - spec/spec_tests/data/server_selection/Sharded/read/SecondaryPreferred.yml
2759
+ - spec/spec_tests/data/server_selection/Sharded/read/Secondary.yml
2760
+ - spec/spec_tests/data/server_selection/Sharded/read/Primary.yml
2761
+ - spec/spec_tests/data/server_selection/Sharded/read/Nearest.yml
2762
+ - spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/SecondaryPreferred_tags.yml
2763
+ - spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/PrimaryPreferred.yml
2764
+ - spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/Nearest_multiple.yml
2765
+ - spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/SecondaryPreferred.yml
2766
+ - spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/Secondary.yml
2767
+ - spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/PrimaryPreferred_non_matching.yml
2768
+ - spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/Primary.yml
2769
+ - spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/Nearest.yml
2770
+ - spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/SecondaryPreferred_non_matching.yml
2771
+ - spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/Nearest_non_matching.yml
2772
+ - spec/spec_tests/data/server_selection/ReplicaSetWithPrimary/read/Secondary_non_matching.yml
2773
+ - spec/spec_tests/data/load_balancers/lb-connection-establishment.yml
2774
+ - spec/spec_tests/data/load_balancers/non-lb-connection-establishment.yml
2775
+ - spec/spec_tests/data/load_balancers/server-selection.yml
2776
+ - spec/spec_tests/data/load_balancers/event-monitoring.yml
2777
+ - spec/spec_tests/data/transactions/retryable-commit-errorLabels.yml
2778
+ - spec/spec_tests/data/transactions/causal-consistency.yml
2779
+ - spec/spec_tests/data/transactions/write-concern.yml
2780
+ - spec/spec_tests/data/transactions/bulk.yml
2781
+ - spec/spec_tests/data/transactions/retryable-commit.yml
2782
+ - spec/spec_tests/data/transactions/reads.yml
2783
+ - spec/spec_tests/data/transactions/error-labels.yml
2784
+ - spec/spec_tests/data/transactions/abort.yml
2785
+ - spec/spec_tests/data/transactions/read-concern.yml
2786
+ - spec/spec_tests/data/transactions/pin-mongos.yml
2787
+ - spec/spec_tests/data/transactions/findOneAndUpdate.yml
2788
+ - spec/spec_tests/data/transactions/run-command.yml
2789
+ - spec/spec_tests/data/transactions/transaction-options.yml
2790
+ - spec/spec_tests/data/transactions/delete.yml
2791
+ - spec/spec_tests/data/transactions/errors-client.yml
2792
+ - spec/spec_tests/data/transactions/commit.yml
2793
+ - spec/spec_tests/data/transactions/count.yml
2794
+ - spec/spec_tests/data/transactions/findOneAndDelete.yml
2795
+ - spec/spec_tests/data/transactions/transaction-options-repl.yml
2796
+ - spec/spec_tests/data/transactions/mongos-recovery-token.yml
2797
+ - spec/spec_tests/data/transactions/insert.yml
2798
+ - spec/spec_tests/data/transactions/isolation.yml
2799
+ - spec/spec_tests/data/transactions/findOneAndReplace.yml
2800
+ - spec/spec_tests/data/transactions/retryable-abort.yml
2801
+ - spec/spec_tests/data/transactions/create-collection.yml
2802
+ - spec/spec_tests/data/transactions/mongos-pin-auto.yml
2803
+ - spec/spec_tests/data/transactions/retryable-abort-errorLabels.yml
2804
+ - spec/spec_tests/data/transactions/create-index.yml
2805
+ - spec/spec_tests/data/transactions/read-pref.yml
2806
+ - spec/spec_tests/data/transactions/update.yml
2807
+ - spec/spec_tests/data/transactions/errors.yml
2808
+ - spec/spec_tests/data/transactions/retryable-writes.yml
2809
+ - spec/spec_tests/data/unified/valid-pass/poc-retryable-reads.yml
2810
+ - spec/spec_tests/data/unified/valid-pass/expectedEventsForClient-ignoreExtraEvents.yml
2811
+ - spec/spec_tests/data/unified/valid-pass/poc-gridfs.yml
2812
+ - spec/spec_tests/data/unified/valid-pass/poc-sessions.yml
2813
+ - spec/spec_tests/data/unified/valid-pass/poc-retryable-writes.yml
2814
+ - spec/spec_tests/data/unified/valid-pass/poc-transactions-convenient-api.yml
2815
+ - spec/spec_tests/data/unified/valid-pass/poc-crud.yml
2816
+ - spec/spec_tests/data/unified/valid-pass/poc-command-monitoring.yml
2817
+ - spec/spec_tests/data/unified/valid-pass/poc-transactions.yml
2818
+ - spec/spec_tests/data/unified/valid-pass/poc-change-streams.yml
2819
+ - spec/spec_tests/data/unified/valid-pass/poc-transactions-mongos-pin-auto.yml
2820
+ - spec/spec_tests/data/unified/valid-fail/operation-unsupported.yml
2821
+ - spec/spec_tests/data/unified/valid-fail/operation-failure.yml
2822
+ - spec/spec_tests/data/unified/invalid/expectedEventsForClient-ignoreExtraEvents-type.yml
2823
+ - spec/spec_tests/data/transactions_unified/retryable-commit-handshake.yml
2824
+ - spec/spec_tests/data/transactions_unified/retryable-abort-handshake.yml
2825
+ - spec/spec_tests/data/transactions_unified/do-not-retry-read-in-transaction.yml
2826
+ - spec/spec_tests/data/transactions_unified/mongos-unpin.yml
2827
+ - spec/spec_tests/data/collection_management/createCollection-pre_and_post_images.yml
2828
+ - spec/spec_tests/data/collection_management/clustered-indexes.yml
2829
+ - spec/spec_tests/data/collection_management/modifyCollection-pre_and_post_images.yml
2830
+ - spec/spec_tests/data/collection_management/timeseries-collection.yml
2831
+ - spec/spec_tests/data/sessions_unified/snapshot-sessions-unsupported-ops.yml
2832
+ - spec/spec_tests/data/sessions_unified/driver-sessions-server-support.yml
2833
+ - spec/spec_tests/data/sessions_unified/snapshot-sessions-not-supported-client-error.yml
2834
+ - spec/spec_tests/data/sessions_unified/snapshot-sessions-not-supported-server-error.yml
2835
+ - spec/spec_tests/data/sessions_unified/snapshot-sessions.yml
2836
+ - spec/spec_tests/data/seed_list_discovery/sharded/srvMaxHosts-greater_than_srv_records.yml
2837
+ - spec/spec_tests/data/seed_list_discovery/sharded/srvMaxHosts-less_than_srv_records.yml
2838
+ - spec/spec_tests/data/seed_list_discovery/sharded/srvMaxHosts-equal_to_srv_records.yml
2839
+ - spec/spec_tests/data/seed_list_discovery/sharded/srvMaxHosts-zero.yml
2840
+ - spec/spec_tests/data/seed_list_discovery/replica-set/srvMaxHosts-greater_than_srv_records.yml
2841
+ - spec/spec_tests/data/seed_list_discovery/replica-set/longer-parent-in-return.yml
2842
+ - spec/spec_tests/data/seed_list_discovery/replica-set/srvMaxHosts-less_than_srv_records.yml
2843
+ - spec/spec_tests/data/seed_list_discovery/replica-set/uri-with-auth.yml
2844
+ - spec/spec_tests/data/seed_list_discovery/replica-set/not-enough-parts.yml
2845
+ - spec/spec_tests/data/seed_list_discovery/replica-set/srv-service-name.yml
2846
+ - spec/spec_tests/data/seed_list_discovery/replica-set/returned-parent-wrong.yml
2847
+ - spec/spec_tests/data/seed_list_discovery/replica-set/txt-record-with-overridden-ssl-option.yml
2848
+ - spec/spec_tests/data/seed_list_discovery/replica-set/no-results.yml
2849
+ - spec/spec_tests/data/seed_list_discovery/replica-set/parent-part-mismatch5.yml
2850
+ - spec/spec_tests/data/seed_list_discovery/replica-set/srvMaxHosts-conflicts_with_replicaSet.yml
2851
+ - spec/spec_tests/data/seed_list_discovery/replica-set/one-result-default-port.yml
2852
+ - spec/spec_tests/data/seed_list_discovery/replica-set/srvMaxHosts-equal_to_srv_records.yml
2853
+ - spec/spec_tests/data/seed_list_discovery/replica-set/parent-part-mismatch3.yml
2854
+ - spec/spec_tests/data/seed_list_discovery/replica-set/srvMaxHosts-zero.yml
2855
+ - spec/spec_tests/data/seed_list_discovery/replica-set/one-txt-record-multiple-strings.yml
2856
+ - spec/spec_tests/data/seed_list_discovery/replica-set/parent-part-mismatch2.yml
2857
+ - spec/spec_tests/data/seed_list_discovery/replica-set/uri-with-two-hosts.yml
2858
+ - spec/spec_tests/data/seed_list_discovery/replica-set/one-txt-record.yml
2859
+ - spec/spec_tests/data/seed_list_discovery/replica-set/srvMaxHosts-conflicts_with_replicaSet-txt.yml
2860
+ - spec/spec_tests/data/seed_list_discovery/replica-set/encoded-userinfo-and-db.yml
2861
+ - spec/spec_tests/data/seed_list_discovery/replica-set/direct-connection-false.yml
2862
+ - spec/spec_tests/data/seed_list_discovery/replica-set/parent-part-mismatch4.yml
2863
+ - spec/spec_tests/data/seed_list_discovery/replica-set/two-txt-records.yml
2864
+ - spec/spec_tests/data/seed_list_discovery/replica-set/uri-with-port.yml
2865
+ - spec/spec_tests/data/seed_list_discovery/replica-set/txt-record-not-allowed-option.yml
2866
+ - spec/spec_tests/data/seed_list_discovery/replica-set/parent-part-mismatch1.yml
2867
+ - spec/spec_tests/data/seed_list_discovery/replica-set/txt-record-with-unallowed-option.yml
2868
+ - spec/spec_tests/data/seed_list_discovery/replica-set/uri-with-admin-database.yml
2869
+ - spec/spec_tests/data/seed_list_discovery/replica-set/returned-parent-too-short.yml
2870
+ - spec/spec_tests/data/seed_list_discovery/replica-set/direct-connection-true.yml
2871
+ - spec/spec_tests/data/seed_list_discovery/replica-set/txt-record-with-overridden-uri-option.yml
2872
+ - spec/spec_tests/data/seed_list_discovery/replica-set/misformatted-option.yml
2873
+ - spec/spec_tests/data/seed_list_discovery/replica-set/loadBalanced-false-txt.yml
2874
+ - spec/spec_tests/data/seed_list_discovery/replica-set/two-results-nonstandard-port.yml
2875
+ - spec/spec_tests/data/seed_list_discovery/replica-set/two-results-default-port.yml
2876
+ - spec/spec_tests/data/seed_list_discovery/replica-set/srvMaxHosts-zero-txt.yml
2877
+ - spec/spec_tests/data/seed_list_discovery/load-balanced/loadBalanced-replicaSet-errors.yml
2878
+ - spec/spec_tests/data/seed_list_discovery/load-balanced/srvMaxHosts-conflicts_with_loadBalanced-true-txt.yml
2879
+ - spec/spec_tests/data/seed_list_discovery/load-balanced/loadBalanced-true-multiple-hosts.yml
2880
+ - spec/spec_tests/data/seed_list_discovery/load-balanced/loadBalanced-no-results.yml
2881
+ - spec/spec_tests/data/seed_list_discovery/load-balanced/loadBalanced-directConnection.yml
2882
+ - spec/spec_tests/data/seed_list_discovery/load-balanced/srvMaxHosts-zero.yml
2883
+ - spec/spec_tests/data/seed_list_discovery/load-balanced/loadBalanced-true-txt.yml
2884
+ - spec/spec_tests/data/seed_list_discovery/load-balanced/srvMaxHosts-conflicts_with_loadBalanced-true.yml
2885
+ - spec/spec_tests/data/seed_list_discovery/load-balanced/srvMaxHosts-zero-txt.yml
2120
2886
  - spec/spec_tests/data/auth/connection-string.yml
2121
- - spec/spec_tests/data/server_selection_rtt/first_value.yml
2122
- - spec/spec_tests/data/server_selection_rtt/first_value_zero.yml
2123
- - spec/spec_tests/data/server_selection_rtt/value_test_1.yml
2124
- - spec/spec_tests/data/server_selection_rtt/value_test_3.yml
2125
- - spec/spec_tests/data/server_selection_rtt/value_test_5.yml
2126
- - spec/spec_tests/data/server_selection_rtt/value_test_2.yml
2127
- - spec/spec_tests/data/server_selection_rtt/value_test_4.yml
2128
- - spec/spec_tests/data/crud_v2/bulkWrite-delete-hint-serverError.yml
2129
- - spec/spec_tests/data/crud_v2/deleteOne-hint-clientError.yml
2130
- - spec/spec_tests/data/crud_v2/updateOne-hint.yml
2131
- - spec/spec_tests/data/crud_v2/db-aggregate.yml
2132
- - spec/spec_tests/data/crud_v2/unacknowledged-updateOne-hint-clientError.yml
2133
- - spec/spec_tests/data/crud_v2/bulkWrite-delete-hint-clientError.yml
2134
- - spec/spec_tests/data/crud_v2/unacknowledged-deleteOne-hint-clientError.yml
2135
- - spec/spec_tests/data/crud_v2/bulkWrite-update-hint.yml
2136
- - spec/spec_tests/data/crud_v2/unacknowledged-findOneAndUpdate-hint-clientError.yml
2137
- - spec/spec_tests/data/crud_v2/findOneAndReplace-hint.yml
2138
- - spec/spec_tests/data/crud_v2/updateMany-hint.yml
2139
- - spec/spec_tests/data/crud_v2/deleteMany-hint.yml
2140
- - spec/spec_tests/data/crud_v2/deleteOne-hint-serverError.yml
2141
- - spec/spec_tests/data/crud_v2/find-allowdiskuse-serverError.yml
2142
- - spec/spec_tests/data/crud_v2/findOneAndUpdate-hint.yml
2143
- - spec/spec_tests/data/crud_v2/updateMany-hint-serverError.yml
2144
- - spec/spec_tests/data/crud_v2/bulkWrite-arrayFilters.yml
2145
- - spec/spec_tests/data/crud_v2/bulkWrite-delete-hint.yml
2146
- - spec/spec_tests/data/crud_v2/findOneAndDelete-hint.yml
2147
- - spec/spec_tests/data/crud_v2/updateOne-hint-clientError.yml
2148
- - spec/spec_tests/data/crud_v2/replaceOne-hint.yml
2149
- - spec/spec_tests/data/crud_v2/unacknowledged-deleteMany-hint-clientError.yml
2150
- - spec/spec_tests/data/crud_v2/unacknowledged-bulkWrite-update-hint-clientError.yml
2151
- - spec/spec_tests/data/crud_v2/deleteMany-hint-clientError.yml
2152
- - spec/spec_tests/data/crud_v2/updateOne-hint-serverError.yml
2153
- - spec/spec_tests/data/crud_v2/aggregate-merge.yml
2154
- - spec/spec_tests/data/crud_v2/findOneAndUpdate-hint-serverError.yml
2155
- - spec/spec_tests/data/crud_v2/updateMany-hint-clientError.yml
2156
- - spec/spec_tests/data/crud_v2/deleteOne-hint.yml
2157
- - spec/spec_tests/data/crud_v2/updateWithPipelines.yml
2158
- - spec/spec_tests/data/crud_v2/findOneAndReplace-hint-serverError.yml
2159
- - spec/spec_tests/data/crud_v2/find-allowdiskuse.yml
2160
- - spec/spec_tests/data/crud_v2/findOneAndDelete-hint-clientError.yml
2161
- - spec/spec_tests/data/crud_v2/findOneAndUpdate-hint-clientError.yml
2162
- - spec/spec_tests/data/crud_v2/bulkWrite-update-hint-clientError.yml
2163
- - spec/spec_tests/data/crud_v2/findOneAndReplace-hint-clientError.yml
2164
- - spec/spec_tests/data/crud_v2/unacknowledged-updateMany-hint-clientError.yml
2165
- - spec/spec_tests/data/crud_v2/unacknowledged-findOneAndReplace-hint-clientError.yml
2166
- - spec/spec_tests/data/crud_v2/unacknowledged-bulkWrite-delete-hint-clientError.yml
2167
- - spec/spec_tests/data/crud_v2/find-allowdiskuse-clientError.yml
2168
- - spec/spec_tests/data/crud_v2/findOneAndDelete-hint-serverError.yml
2169
- - spec/spec_tests/data/crud_v2/aggregate-out-readConcern.yml
2170
- - spec/spec_tests/data/crud_v2/unacknowledged-replaceOne-hint-clientError.yml
2171
- - spec/spec_tests/data/crud_v2/deleteMany-hint-serverError.yml
2172
- - spec/spec_tests/data/crud_v2/bulkWrite-update-hint-serverError.yml
2173
- - spec/spec_tests/data/crud_v2/unacknowledged-findOneAndDelete-hint-clientError.yml
2887
+ - spec/spec_tests/data/transactions_api/callback-aborts.yml
2888
+ - spec/spec_tests/data/transactions_api/transaction-options.yml
2889
+ - spec/spec_tests/data/transactions_api/commit-writeconcernerror.yml
2890
+ - spec/spec_tests/data/transactions_api/commit.yml
2891
+ - spec/spec_tests/data/transactions_api/commit-transienttransactionerror.yml
2892
+ - spec/spec_tests/data/transactions_api/callback-commits.yml
2893
+ - spec/spec_tests/data/transactions_api/commit-retry.yml
2894
+ - spec/spec_tests/data/transactions_api/commit-transienttransactionerror-4.2.yml
2895
+ - spec/spec_tests/data/transactions_api/callback-retry.yml
2896
+ - spec/spec_tests/command_monitoring_unified_spec.rb
2897
+ - spec/spec_tests/client_side_encryption_spec.rb
2898
+ - spec/spec_tests/retryable_writes_unified_spec.rb
2899
+ - spec/spec_tests/connection_string_spec.rb
2900
+ - spec/spec_tests/sessions_unified_spec.rb
2901
+ - spec/spec_tests/versioned_api_spec.rb
2902
+ - spec/spec_tests/crud_spec.rb
2903
+ - spec/spec_tests/change_streams_unified_spec.rb
2904
+ - spec/spec_tests/sdam_monitoring_spec.rb
2905
+ - spec/spec_tests/seed_list_discovery_spec.rb
2906
+ - spec/spec_tests/unified_spec.rb
2907
+ - spec/spec_tests/server_selection_spec.rb
2908
+ - spec/spec_tests/crud_unified_spec.rb
2909
+ - spec/spec_tests/transactions_api_spec.rb
2910
+ - spec/spec_tests/uri_options_spec.rb
2174
2911
  - spec/spec_tests/cmap_spec.rb
2175
- - spec/NOTES.aws-auth.md
2176
- - spec/support/authorization.rb
2177
- - spec/support/shared/session.rb
2178
- - spec/support/shared/protocol.rb
2179
- - spec/support/shared/server_selector.rb
2180
- - spec/support/shared/scram_conversation.rb
2181
- - spec/support/session_registry.rb
2182
- - spec/support/keyword_struct.rb
2183
- - spec/support/client_registry_macros.rb
2184
- - spec/support/constraints.rb
2185
- - spec/support/matchers.rb
2186
- - spec/support/sdam_formatter_integration.rb
2187
- - spec/support/crypt/corpus/corpus.json
2188
- - spec/support/crypt/corpus/corpus-schema.json
2189
- - spec/support/crypt/corpus/corpus-key-aws.json
2190
- - spec/support/crypt/corpus/corpus-key-local.json
2191
- - spec/support/crypt/corpus/corpus_encrypted.json
2192
- - spec/support/crypt/external/external-key.json
2193
- - spec/support/crypt/external/external-schema.json
2194
- - spec/support/crypt/schema_maps/schema_map_aws.json
2195
- - spec/support/crypt/schema_maps/schema_map_local_key_alt_names.json
2196
- - spec/support/crypt/schema_maps/schema_map_aws_key_alt_names.json
2197
- - spec/support/crypt/schema_maps/schema_map_local.json
2198
- - spec/support/crypt/data_keys/key_document_local.json
2199
- - spec/support/crypt/data_keys/key_document_aws.json
2200
- - spec/support/crypt/limits/limits-key.json
2201
- - spec/support/crypt/limits/limits-doc.json
2202
- - spec/support/crypt/limits/limits-schema.json
2203
- - spec/support/dns.rb
2204
- - spec/support/aws_utils/base.rb
2205
- - spec/support/aws_utils/orchestrator.rb
2206
- - spec/support/aws_utils/inspector.rb
2207
- - spec/support/aws_utils/provisioner.rb
2208
- - spec/support/json_ext_formatter.rb
2209
- - spec/support/utils.rb
2210
- - spec/support/primary_socket.rb
2211
- - spec/support/ocsp
2212
- - spec/support/cluster_config.rb
2213
- - spec/support/monitoring_ext.rb
2214
- - spec/support/event_subscriber.rb
2215
- - spec/support/client_registry.rb
2216
- - spec/support/spec_config.rb
2217
- - spec/support/spec_setup.rb
2218
- - spec/support/aws_utils.rb
2219
- - spec/support/common_shortcuts.rb
2220
- - spec/support/background_thread_registry.rb
2221
- - spec/support/crypt.rb
2222
- - spec/support/local_resource_registry.rb
2223
- - spec/support/cluster_tools.rb
2224
- - spec/support/certificates/atlas-ocsp.crt
2225
- - spec/support/certificates/multi-ca.crt
2226
- - spec/support/certificates/client-x509.key
2227
- - spec/support/certificates/atlas-ocsp-ca.crt
2228
- - spec/support/certificates/README.md
2229
- - spec/support/certificates/client-second-level.crt
2230
- - spec/support/certificates/python-ca.crt
2231
- - spec/support/certificates/crl.pem
2232
- - spec/support/certificates/client.crt
2233
- - spec/support/certificates/client-second-level.key
2234
- - spec/support/certificates/client.key
2235
- - spec/support/certificates/client-encrypted.key
2236
- - spec/support/certificates/server-second-level-bundle.pem
2237
- - spec/support/certificates/client-second-level.pem
2238
- - spec/support/certificates/server-int.crt
2239
- - spec/support/certificates/crl_client_revoked.pem
2240
- - spec/support/certificates/client-int.crt
2241
- - spec/support/certificates/client.pem
2242
- - spec/support/certificates/client-x509.crt
2243
- - spec/support/certificates/server-second-level.crt
2244
- - spec/support/certificates/server-second-level.key
2245
- - spec/support/certificates/client-second-level-bundle.pem
2246
- - spec/support/certificates/ca.crt
2247
- - spec/support/certificates/client-x509.pem
2248
- - spec/support/certificates/server.pem
2249
- - spec/support/certificates/server-second-level.pem
2250
- - spec/runners/gridfs.rb
2251
- - spec/runners/transactions.rb
2252
- - spec/runners/sdam.rb
2253
- - spec/runners/read_write_concern_document.rb
2254
- - spec/runners/auth.rb
2255
- - spec/runners/change_streams/outcome.rb
2256
- - spec/runners/change_streams/spec.rb
2257
- - spec/runners/change_streams/test.rb
2258
- - spec/runners/connection_string.rb
2259
- - spec/runners/cmap/verifier.rb
2260
- - spec/runners/cmap.rb
2261
- - spec/runners/server_selection.rb
2262
- - spec/runners/transactions/spec.rb
2263
- - spec/runners/transactions/operation.rb
2264
- - spec/runners/transactions/test.rb
2265
- - spec/runners/crud/outcome.rb
2266
- - spec/runners/crud/test_base.rb
2267
- - spec/runners/crud/context.rb
2268
- - spec/runners/crud/spec.rb
2269
- - spec/runners/crud/requirement.rb
2270
- - spec/runners/crud/operation.rb
2271
- - spec/runners/crud/test.rb
2272
- - spec/runners/crud/verifier.rb
2273
- - spec/runners/command_monitoring.rb
2274
- - spec/runners/sdam/verifier.rb
2275
- - spec/runners/server_selection_rtt.rb
2276
- - spec/runners/crud.rb
2277
- - spec/README.aws-auth.md
2278
- - spec/integration/grid_fs_bucket_spec.rb
2912
+ - spec/spec_tests/sdam_spec.rb
2913
+ - spec/spec_tests/retryable_reads_unified_spec.rb
2914
+ - spec/spec_tests/retryable_reads_spec.rb
2915
+ - spec/spec_tests/sdam_integration_spec.rb
2916
+ - spec/spec_tests/collection_management_spec.rb
2917
+ - spec/spec_tests/auth_spec.rb
2918
+ - spec/spec_tests/load_balancers_spec.rb
2919
+ - spec/spec_tests/gridfs_unified_spec.rb
2920
+ - spec/spec_tests/read_write_concern_connection_string_spec.rb
2921
+ - spec/spec_tests/server_selection_rtt_spec.rb
2922
+ - spec/atlas/operations_spec.rb
2923
+ - spec/atlas/atlas_connectivity_spec.rb
2924
+ - spec/spec_helper.rb
2925
+ - spec/integration/check_clean_slate_spec.rb
2926
+ - spec/integration/bulk_insert_spec.rb
2927
+ - spec/integration/bulk_write_spec.rb
2928
+ - spec/integration/step_down_spec.rb
2929
+ - spec/integration/read_concern_spec.rb
2930
+ - spec/integration/mmapv1_spec.rb
2931
+ - spec/integration/sdam_prose_spec.rb
2932
+ - spec/integration/server_spec.rb
2933
+ - spec/integration/server_description_spec.rb
2934
+ - spec/integration/retryable_writes_errors_spec.rb
2935
+ - spec/integration/sdam_events_spec.rb
2936
+ - spec/integration/cursor_reaping_spec.rb
2937
+ - spec/integration/ssl_uri_options_spec.rb
2938
+ - spec/integration/cursor_pinning_spec.rb
2939
+ - spec/integration/server_selector_spec.rb
2940
+ - spec/integration/query_cache_transactions_spec.rb
2279
2941
  - spec/integration/mongos_pinning_spec.rb
2280
- - spec/integration/sdam_error_handling_spec.rb
2281
- - spec/integration/server_monitor_spec.rb
2282
2942
  - spec/integration/aws_auth_request_spec.rb
2283
- - spec/integration/bson_symbol_spec.rb
2284
- - spec/integration/query_cache_transactions_spec.rb
2285
- - spec/integration/bulk_write_spec.rb
2286
- - spec/integration/client_side_encryption/corpus_spec.rb
2287
- - spec/integration/client_side_encryption/external_key_vault_spec.rb
2943
+ - spec/integration/change_stream_examples_spec.rb
2944
+ - spec/integration/client_authentication_options_spec.rb
2945
+ - spec/integration/transactions_api_examples_spec.rb
2946
+ - spec/integration/client_construction_aws_auth_spec.rb
2947
+ - spec/integration/reconnect_spec.rb
2948
+ - spec/integration/operation_failure_message_spec.rb
2949
+ - spec/integration/heartbeat_events_spec.rb
2950
+ - spec/integration/sdam_error_handling_spec.rb
2951
+ - spec/integration/versioned_api_examples_spec.rb
2952
+ - spec/integration/client_construction_spec.rb
2953
+ - spec/integration/map_reduce_spec.rb
2954
+ - spec/integration/crud_spec.rb
2955
+ - spec/integration/truncated_utf8_spec.rb
2956
+ - spec/integration/shell_examples_spec.rb
2957
+ - spec/integration/query_cache_spec.rb
2958
+ - spec/integration/collection_indexes_prose_spec.rb
2959
+ - spec/integration/aws_credentials_retriever_spec.rb
2960
+ - spec/integration/client_side_encryption/queryable_encryption_examples_spec.rb
2961
+ - spec/integration/client_side_encryption/kms_tls_options_spec.rb
2288
2962
  - spec/integration/client_side_encryption/bypass_mongocryptd_spawn_spec.rb
2289
- - spec/integration/client_side_encryption/auto_encryption_mongocryptd_spawn_spec.rb
2290
- - spec/integration/client_side_encryption/auto_encryption_command_monitoring_spec.rb
2291
2963
  - spec/integration/client_side_encryption/auto_encryption_reconnect_spec.rb
2964
+ - spec/integration/client_side_encryption/corpus_spec.rb
2965
+ - spec/integration/client_side_encryption/decryption_events_prose_spec.rb
2966
+ - spec/integration/client_side_encryption/explicit_queryable_encryption_spec.rb
2967
+ - spec/integration/client_side_encryption/unique_index_on_key_alt_names_prose_spec.rb
2968
+ - spec/integration/client_side_encryption/auto_encryption_mongocryptd_spawn_spec.rb
2292
2969
  - spec/integration/client_side_encryption/auto_encryption_bulk_writes_spec.rb
2293
2970
  - spec/integration/client_side_encryption/auto_encryption_old_wire_version_spec.rb
2294
- - spec/integration/client_side_encryption/views_spec.rb
2295
- - spec/integration/client_side_encryption/client_close_spec.rb
2971
+ - spec/integration/client_side_encryption/data_key_spec.rb
2296
2972
  - spec/integration/client_side_encryption/explicit_encryption_spec.rb
2297
2973
  - spec/integration/client_side_encryption/auto_encryption_spec.rb
2974
+ - spec/integration/client_side_encryption/views_spec.rb
2975
+ - spec/integration/client_side_encryption/auto_encryption_command_monitoring_spec.rb
2976
+ - spec/integration/client_side_encryption/kms_tls_spec.rb
2298
2977
  - spec/integration/client_side_encryption/custom_endpoint_spec.rb
2299
- - spec/integration/client_side_encryption/data_key_spec.rb
2978
+ - spec/integration/client_side_encryption/external_key_vault_spec.rb
2300
2979
  - spec/integration/client_side_encryption/bson_size_limit_spec.rb
2301
- - spec/integration/change_stream_spec.rb
2302
- - spec/integration/transactions_api_examples_spec.rb
2303
- - spec/integration/heartbeat_events_spec.rb
2980
+ - spec/integration/client_side_encryption/client_close_spec.rb
2981
+ - spec/integration/retryable_writes/retryable_writes_36_and_older_spec.rb
2982
+ - spec/integration/retryable_writes/retryable_writes_40_and_newer_spec.rb
2983
+ - spec/integration/retryable_writes/shared/only_supports_legacy_retries.rb
2984
+ - spec/integration/retryable_writes/shared/adds_diagnostics.rb
2304
2985
  - spec/integration/retryable_writes/shared/supports_legacy_retries.rb
2305
2986
  - spec/integration/retryable_writes/shared/supports_retries.rb
2987
+ - spec/integration/retryable_writes/shared/supports_modern_retries.rb
2988
+ - spec/integration/retryable_writes/shared/does_not_support_retries.rb
2306
2989
  - spec/integration/retryable_writes/shared/performs_legacy_retries.rb
2307
2990
  - spec/integration/retryable_writes/shared/performs_no_retries.rb
2308
- - spec/integration/retryable_writes/shared/adds_diagnostics.rb
2309
- - spec/integration/retryable_writes/shared/supports_modern_retries.rb
2310
- - spec/integration/retryable_writes/shared/only_supports_legacy_retries.rb
2311
2991
  - spec/integration/retryable_writes/shared/performs_modern_retries.rb
2312
- - spec/integration/retryable_writes/shared/does_not_support_retries.rb
2313
- - spec/integration/retryable_writes/retryable_writes_36_and_older_spec.rb
2314
- - spec/integration/retryable_writes/retryable_writes_40_and_newer_spec.rb
2315
- - spec/integration/retryable_writes_errors_spec.rb
2316
- - spec/integration/x509_auth_spec.rb
2317
- - spec/integration/fork_reconnect_spec.rb
2318
- - spec/integration/command_monitoring_spec.rb
2319
- - spec/integration/collection_indexes_prose_spec.rb
2320
- - spec/integration/connection_spec.rb
2321
- - spec/integration/client_construction_spec.rb
2322
- - spec/integration/ocsp_verifier_cache_spec.rb
2323
- - spec/integration/connect_single_rs_name_spec.rb
2324
2992
  - spec/integration/server_selection_spec.rb
2325
- - spec/integration/reconnect_spec.rb
2326
- - spec/integration/client_authentication_options_spec.rb
2327
- - spec/integration/check_clean_slate_spec.rb
2328
- - spec/integration/client_construction_aws_auth_spec.rb
2329
- - spec/integration/ssl_uri_options_spec.rb
2330
- - spec/integration/mmapv1_spec.rb
2331
- - spec/integration/ocsp_connectivity_spec.rb
2993
+ - spec/integration/connection_pool_populator_spec.rb
2332
2994
  - spec/integration/awaited_ismaster_spec.rb
2995
+ - spec/integration/snapshot_query_examples_spec.rb
2996
+ - spec/integration/time_zone_querying_spec.rb
2997
+ - spec/integration/aws_lambda_examples_spec.rb
2998
+ - spec/integration/transaction_pinning_spec.rb
2999
+ - spec/integration/change_stream_spec.rb
2333
3000
  - spec/integration/docs_examples_spec.rb
3001
+ - spec/integration/srv_monitoring_spec.rb
3002
+ - spec/integration/ocsp_verifier_cache_spec.rb
3003
+ - spec/integration/ocsp_connectivity_spec.rb
2334
3004
  - spec/integration/srv_spec.rb
2335
- - spec/integration/get_more_spec.rb
2336
- - spec/integration/read_preference_spec.rb
2337
- - spec/integration/sdam_prose_spec.rb
2338
- - spec/integration/aws_credentials_retriever_spec.rb
2339
- - spec/integration/auth_spec.rb
2340
- - spec/integration/retryable_errors_spec.rb
2341
- - spec/integration/shell_examples_spec.rb
2342
- - spec/integration/server_spec.rb
2343
- - spec/integration/change_stream_examples_spec.rb
2344
- - spec/integration/sdam_events_spec.rb
2345
- - spec/integration/step_down_spec.rb
2346
- - spec/integration/read_concern_spec.rb
2347
- - spec/integration/cursor_reaping_spec.rb
2348
- - spec/integration/bulk_insert_spec.rb
2349
- - spec/integration/crud_spec.rb
2350
- - spec/integration/error_detection_spec.rb
2351
- - spec/integration/server_description_spec.rb
3005
+ - spec/integration/secondary_reads_spec.rb
3006
+ - spec/integration/client_connectivity_spec.rb
3007
+ - spec/integration/connection_spec.rb
2352
3008
  - spec/integration/client_spec.rb
2353
- - spec/integration/query_cache_spec.rb
3009
+ - spec/integration/size_limit_spec.rb
3010
+ - spec/integration/command_monitoring_spec.rb
3011
+ - spec/integration/operation_failure_code_spec.rb
2354
3012
  - spec/integration/client_update_spec.rb
2355
- - spec/integration/time_zone_querying_spec.rb
3013
+ - spec/integration/grid_fs_bucket_spec.rb
3014
+ - spec/integration/connect_single_rs_name_spec.rb
3015
+ - spec/integration/get_more_spec.rb
2356
3016
  - spec/integration/ocsp_verifier_spec.rb
2357
- - spec/integration/size_limit_spec.rb
3017
+ - spec/integration/server_monitor_spec.rb
3018
+ - spec/integration/auth_spec.rb
3019
+ - spec/integration/snappy_compression_spec.rb
2358
3020
  - spec/integration/command_spec.rb
2359
- - spec/integration/operation_failure_code_spec.rb
2360
- - spec/integration/client_connectivity_spec.rb
2361
- - spec/integration/server_selector_spec.rb
3021
+ - spec/integration/read_preference_spec.rb
3022
+ - spec/integration/bson_symbol_spec.rb
3023
+ - spec/integration/fork_reconnect_spec.rb
3024
+ - spec/integration/x509_auth_spec.rb
2362
3025
  - spec/integration/transactions_examples_spec.rb
3026
+ - spec/integration/retryable_errors_spec.rb
3027
+ - spec/integration/zstd_compression_spec.rb
3028
+ - spec/integration/error_detection_spec.rb
3029
+ - spec/integration/bulk_write_error_message_spec.rb
2363
3030
  - spec/integration/zlib_compression_spec.rb
2364
- - spec/integration/connection_pool_populator_spec.rb
2365
- - spec/integration/srv_monitoring_spec.rb
2366
- - spec/stress/cleanup_spec.rb
2367
- - spec/stress/connection_pool_stress_spec.rb
2368
- - spec/stress/fork_reconnect_stress_spec.rb
2369
- - spec/stress/connection_pool_timing_spec.rb
2370
- - spec/kerberos/kerberos_spec.rb
2371
- - spec/mongo/server/connection_pool/populator_spec.rb
2372
- - spec/mongo/server/app_metadata_shared.rb
2373
- - spec/mongo/server/app_metadata_spec.rb
2374
- - spec/mongo/server/connection_spec.rb
2375
- - spec/mongo/server/monitor/app_metadata_spec.rb
2376
- - spec/mongo/server/monitor/connection_spec.rb
2377
- - spec/mongo/server/connection_pool_spec.rb
2378
- - spec/mongo/server/description_query_methods_spec.rb
2379
- - spec/mongo/server/description_spec.rb
2380
- - spec/mongo/server/connection_auth_spec.rb
2381
- - spec/mongo/server/description/features_spec.rb
2382
- - spec/mongo/server/round_trip_time_averager_spec.rb
2383
- - spec/mongo/server/monitor_spec.rb
2384
- - spec/mongo/dbref_spec.rb
2385
- - spec/mongo/collection_spec.rb
2386
- - spec/mongo/operation/insert_spec.rb
2387
- - spec/mongo/operation/result_spec.rb
2388
- - spec/mongo/operation/indexes_spec.rb
2389
- - spec/mongo/operation/read_preference_op_msg_spec.rb
2390
- - spec/mongo/operation/drop_index_spec.rb
2391
- - spec/mongo/operation/kill_cursors_spec.rb
2392
- - spec/mongo/operation/create_index_spec.rb
2393
- - spec/mongo/operation/find/legacy_spec.rb
2394
- - spec/mongo/operation/aggregate_spec.rb
2395
- - spec/mongo/operation/delete/op_msg_spec.rb
2396
- - spec/mongo/operation/delete/command_spec.rb
2397
- - spec/mongo/operation/delete/bulk_spec.rb
2398
- - spec/mongo/operation/delete_spec.rb
2399
- - spec/mongo/operation/specifiable_spec.rb
2400
- - spec/mongo/operation/get_more_spec.rb
2401
- - spec/mongo/operation/create_user_spec.rb
2402
- - spec/mongo/operation/insert/op_msg_spec.rb
2403
- - spec/mongo/operation/insert/command_spec.rb
2404
- - spec/mongo/operation/insert/bulk_spec.rb
2405
- - spec/mongo/operation/remove_user_spec.rb
2406
- - spec/mongo/operation/limited_spec.rb
2407
- - spec/mongo/operation/read_preference_legacy_spec.rb
2408
- - spec/mongo/operation/update/op_msg_spec.rb
2409
- - spec/mongo/operation/update/command_spec.rb
2410
- - spec/mongo/operation/update/bulk_spec.rb
2411
- - spec/mongo/operation/collections_info_spec.rb
2412
- - spec/mongo/operation/command_spec.rb
2413
- - spec/mongo/operation/update_user_spec.rb
2414
- - spec/mongo/operation/update_spec.rb
2415
- - spec/mongo/operation/map_reduce_spec.rb
2416
- - spec/mongo/operation/aggregate/result_spec.rb
2417
- - spec/mongo/address/ipv4_spec.rb
2418
- - spec/mongo/address/ipv6_spec.rb
2419
- - spec/mongo/address/validator_spec.rb
2420
- - spec/mongo/address/unix_spec.rb
2421
- - spec/mongo/caching_cursor_spec.rb
2422
- - spec/mongo/protocol/insert_spec.rb
2423
- - spec/mongo/protocol/reply_spec.rb
2424
- - spec/mongo/protocol/kill_cursors_spec.rb
2425
- - spec/mongo/protocol/delete_spec.rb
2426
- - spec/mongo/protocol/msg_spec.rb
2427
- - spec/mongo/protocol/query_spec.rb
2428
- - spec/mongo/protocol/get_more_spec.rb
2429
- - spec/mongo/protocol/compressed_spec.rb
2430
- - spec/mongo/protocol/registry_spec.rb
2431
- - spec/mongo/protocol/update_spec.rb
2432
- - spec/mongo/cluster/socket_reaper_spec.rb
2433
- - spec/mongo/cluster/cursor_reaper_spec.rb
2434
- - spec/mongo/cluster/topology/sharded_spec.rb
2435
- - spec/mongo/cluster/topology/unknown_spec.rb
2436
- - spec/mongo/cluster/topology/single_spec.rb
2437
- - spec/mongo/cluster/topology/replica_set_spec.rb
2438
- - spec/mongo/cluster/topology_spec.rb
2439
- - spec/mongo/cluster/periodic_executor_spec.rb
2440
- - spec/mongo/client_encryption_spec.rb
2441
- - spec/mongo/bulk_write_spec.rb
2442
- - spec/mongo/index/view_spec.rb
2443
- - spec/mongo/write_concern_spec.rb
2444
- - spec/mongo/session/server_session_spec.rb
2445
- - spec/mongo/session/session_pool_spec.rb
2446
- - spec/mongo/utils_spec.rb
2447
- - spec/mongo/monitoring/command_log_subscriber_spec.rb
2448
- - spec/mongo/monitoring/event/command_failed_spec.rb
2449
- - spec/mongo/monitoring/event/server_description_changed_spec.rb
2450
- - spec/mongo/monitoring/event/topology_opening_spec.rb
2451
- - spec/mongo/monitoring/event/secure_spec.rb
2452
- - spec/mongo/monitoring/event/command_started_spec.rb
2453
- - spec/mongo/monitoring/event/server_closed_spec.rb
2454
- - spec/mongo/monitoring/event/topology_changed_spec.rb
2455
- - spec/mongo/monitoring/event/server_opening_spec.rb
2456
- - spec/mongo/monitoring/event/cmap/connection_check_out_failed_spec.rb
2457
- - spec/mongo/monitoring/event/cmap/pool_closed_spec.rb
2458
- - spec/mongo/monitoring/event/cmap/connection_ready_spec.rb
2459
- - spec/mongo/monitoring/event/cmap/connection_check_out_started_spec.rb
2460
- - spec/mongo/monitoring/event/cmap/connection_created_spec.rb
2461
- - spec/mongo/monitoring/event/cmap/connection_checked_in_spec.rb
2462
- - spec/mongo/monitoring/event/cmap/pool_created_spec.rb
2463
- - spec/mongo/monitoring/event/cmap/connection_checked_out_spec.rb
2464
- - spec/mongo/monitoring/event/cmap/connection_closed_spec.rb
2465
- - spec/mongo/monitoring/event/cmap/pool_cleared_spec.rb
2466
- - spec/mongo/monitoring/event/server_heartbeat_failed_spec.rb
2467
- - spec/mongo/monitoring/event/command_succeeded_spec.rb
2468
- - spec/mongo/monitoring/event/topology_closed_spec.rb
2469
- - spec/mongo/monitoring/event/server_heartbeat_succeeded_spec.rb
2470
- - spec/mongo/monitoring/event/server_heartbeat_started_spec.rb
2471
- - spec/mongo/server_selector/secondary_preferred_spec.rb
2472
- - spec/mongo/server_selector/secondary_spec.rb
2473
- - spec/mongo/server_selector/primary_spec.rb
2474
- - spec/mongo/server_selector/primary_preferred_spec.rb
2475
- - spec/mongo/server_selector/nearest_spec.rb
2476
- - spec/mongo/options/redacted_spec.rb
2477
- - spec/mongo/write_concern/acknowledged_spec.rb
2478
- - spec/mongo/write_concern/unacknowledged_spec.rb
2479
- - spec/mongo/socket/ssl_spec.rb
2480
- - spec/mongo/socket/tcp_spec.rb
2481
- - spec/mongo/socket/unix_spec.rb
2482
- - spec/mongo/id_spec.rb
2483
- - spec/mongo/uri/srv_protocol_spec.rb
2484
- - spec/mongo/client_construction_spec.rb
2485
- - spec/mongo/cursor/builder/op_kill_cursors_spec.rb
2486
- - spec/mongo/cursor/builder/get_more_command_spec.rb
2487
- - spec/mongo/cursor/builder/op_get_more_spec.rb
2488
- - spec/mongo/session_spec.rb
2489
- - spec/mongo/crypt/auto_decryption_context_spec.rb
2490
- - spec/mongo/crypt/explicit_decryption_context_spec.rb
2491
- - spec/mongo/crypt/explicit_encryption_context_spec.rb
2492
- - spec/mongo/crypt/binding_unloaded_spec.rb
2493
- - spec/mongo/crypt/helpers/mongo_crypt_spec_helper.rb
2494
- - spec/mongo/crypt/data_key_context_spec.rb
2495
- - spec/mongo/crypt/auto_encryption_context_spec.rb
2496
- - spec/mongo/crypt/auto_encrypter_spec.rb
2497
- - spec/mongo/crypt/binary_spec.rb
2498
- - spec/mongo/crypt/status_spec.rb
2499
- - spec/mongo/crypt/binding/version_spec.rb
2500
- - spec/mongo/crypt/binding/context_spec.rb
2501
- - spec/mongo/crypt/binding/helpers_spec.rb
2502
- - spec/mongo/crypt/binding/binary_spec.rb
2503
- - spec/mongo/crypt/binding/status_spec.rb
2504
- - spec/mongo/crypt/binding/mongocrypt_spec.rb
2505
- - spec/mongo/crypt/encryption_io_spec.rb
2506
- - spec/mongo/crypt/handle_spec.rb
2507
- - spec/mongo/error/crypt_error_spec.rb
2508
- - spec/mongo/error/unsupported_option_spec.rb
2509
- - spec/mongo/error/notable_spec.rb
2510
- - spec/mongo/error/no_server_available_spec.rb
2511
- - spec/mongo/error/operation_failure_spec.rb
2512
- - spec/mongo/error/operation_failure_heavy_spec.rb
2513
- - spec/mongo/error/max_bson_size_spec.rb
2514
- - spec/mongo/error/bulk_write_error_spec.rb
2515
- - spec/mongo/error/parser_spec.rb
2516
- - spec/mongo/database_spec.rb
2517
- - spec/mongo/auth_spec.rb
2518
- - spec/mongo/retryable_spec.rb
2519
- - spec/mongo/bulk_write/result_spec.rb
2520
- - spec/mongo/bulk_write/ordered_combiner_spec.rb
2521
- - spec/mongo/bulk_write/unordered_combiner_spec.rb
2522
- - spec/mongo/server_spec.rb
2523
- - spec/mongo/uri_spec.rb
2524
- - spec/mongo/distinguishing_semaphore_spec.rb
2525
- - spec/mongo/socket_spec.rb
2526
- - spec/mongo/event/subscriber_spec.rb
2527
- - spec/mongo/event/publisher_spec.rb
2528
- - spec/mongo/grid/file/chunk_spec.rb
2529
- - spec/mongo/grid/file/info_spec.rb
2530
- - spec/mongo/grid/fs_bucket_spec.rb
2531
- - spec/mongo/grid/stream/write_spec.rb
2532
- - spec/mongo/grid/stream/read_spec.rb
2533
- - spec/mongo/grid/file_spec.rb
2534
- - spec/mongo/grid/stream_spec.rb
2535
- - spec/mongo/logger_spec.rb
2536
- - spec/mongo/address_spec.rb
2537
- - spec/mongo/collection/view/immutable_spec.rb
2538
- - spec/mongo/collection/view/change_stream_spec.rb
2539
- - spec/mongo/collection/view/aggregation_spec.rb
2540
- - spec/mongo/collection/view/builder/find_command_spec.rb
2541
- - spec/mongo/collection/view/builder/modifiers_spec.rb
2542
- - spec/mongo/collection/view/builder/flags_spec.rb
2543
- - spec/mongo/collection/view/builder/op_query_spec.rb
2544
- - spec/mongo/collection/view/readable_spec.rb
2545
- - spec/mongo/collection/view/writable_spec.rb
2546
- - spec/mongo/collection/view/change_stream_resume_spec.rb
2547
- - spec/mongo/collection/view/map_reduce_spec.rb
2548
- - spec/mongo/collection/view/explainable_spec.rb
2549
- - spec/mongo/collection/view/iterable_spec.rb
2550
- - spec/mongo/collection/view_spec.rb
2551
- - spec/mongo/client_spec.rb
2552
- - spec/mongo/cluster_spec.rb
2553
- - spec/mongo/timeout_spec.rb
2554
- - spec/mongo/query_cache_spec.rb
2555
- - spec/mongo/bson_spec.rb
2556
- - spec/mongo/srv/result_spec.rb
2557
- - spec/mongo/srv/monitor_spec.rb
2558
- - spec/mongo/session_transaction_spec.rb
2559
- - spec/mongo/monitoring_spec.rb
2560
- - spec/mongo/lint_spec.rb
2561
- - spec/mongo/semaphore_spec.rb
2562
- - spec/mongo/server_selector_spec.rb
2563
- - spec/mongo/cursor_spec.rb
2564
- - spec/mongo/uri_option_parsing_spec.rb
2565
- - spec/mongo/auth/scram/conversation_spec.rb
2566
- - spec/mongo/auth/x509_spec.rb
2567
- - spec/mongo/auth/user_spec.rb
2568
- - spec/mongo/auth/x509/conversation_spec.rb
2569
- - spec/mongo/auth/scram256/conversation_spec.rb
2570
- - spec/mongo/auth/scram_negotiation_spec.rb
2571
- - spec/mongo/auth/scram_spec.rb
2572
- - spec/mongo/auth/stringprep_spec.rb
2573
- - spec/mongo/auth/aws/request_region_spec.rb
2574
- - spec/mongo/auth/aws/request_spec.rb
2575
- - spec/mongo/auth/ldap/conversation_spec.rb
2576
- - spec/mongo/auth/gssapi/conversation_spec.rb
2577
- - spec/mongo/auth/cr_spec.rb
2578
- - spec/mongo/auth/user/view_spec.rb
2579
- - spec/mongo/auth/ldap_spec.rb
2580
- - spec/mongo/auth/invalid_mechanism_spec.rb
2581
- - spec/mongo/auth/stringprep/profiles/sasl_spec.rb
2582
- - spec/mongo/cluster_time_spec.rb
3031
+ - spec/NOTES.aws-auth.md
3032
+ - spec/support/constraints.rb
3033
+ - spec/support/keyword_struct.rb
3034
+ - spec/support/sdam_formatter_integration.rb
3035
+ - spec/support/local_resource_registry.rb
3036
+ - spec/support/common_shortcuts.rb
3037
+ - spec/support/crypt/limits/limits-doc.json
3038
+ - spec/support/crypt/limits/limits-key.json
3039
+ - spec/support/crypt/limits/limits-schema.json
3040
+ - spec/support/crypt/external/external-key.json
3041
+ - spec/support/crypt/external/external-schema.json
3042
+ - spec/support/crypt/data_keys/key_document_local.json
3043
+ - spec/support/crypt/data_keys/key_document_kmip.json
3044
+ - spec/support/crypt/data_keys/key_document_aws.json
3045
+ - spec/support/crypt/data_keys/key_document_gcp.json
3046
+ - spec/support/crypt/data_keys/key_document_azure.json
3047
+ - spec/support/crypt/encryptedFields.json
3048
+ - spec/support/crypt/schema_maps/schema_map_local_key_alt_names.json
3049
+ - spec/support/crypt/schema_maps/schema_map_aws_key_alt_names.json
3050
+ - spec/support/crypt/schema_maps/schema_map_kmip.json
3051
+ - spec/support/crypt/schema_maps/schema_map_azure.json
3052
+ - spec/support/crypt/schema_maps/schema_map_kmip_key_alt_names.json
3053
+ - spec/support/crypt/schema_maps/schema_map_local.json
3054
+ - spec/support/crypt/schema_maps/schema_map_gcp_key_alt_names.json
3055
+ - spec/support/crypt/schema_maps/schema_map_aws.json
3056
+ - spec/support/crypt/schema_maps/schema_map_gcp.json
3057
+ - spec/support/crypt/schema_maps/schema_map_azure_key_alt_names.json
3058
+ - spec/support/crypt/keys/key1-document.json
3059
+ - spec/support/crypt/corpus/corpus.json
3060
+ - spec/support/crypt/corpus/corpus-encrypted.json
3061
+ - spec/support/crypt/corpus/corpus-key-aws.json
3062
+ - spec/support/crypt/corpus/corpus-key-azure.json
3063
+ - spec/support/crypt/corpus/corpus-key-gcp.json
3064
+ - spec/support/crypt/corpus/corpus-key-kmip.json
3065
+ - spec/support/crypt/corpus/corpus-schema.json
3066
+ - spec/support/crypt/corpus/corpus-key-local.json
3067
+ - spec/support/mongos_macros.rb
3068
+ - spec/support/primary_socket.rb
3069
+ - spec/support/dns.rb
3070
+ - spec/support/utils.rb
3071
+ - spec/support/matchers.rb
3072
+ - spec/support/ocsp
3073
+ - spec/support/macros.rb
3074
+ - spec/support/spec_config.rb
3075
+ - spec/support/spec_setup.rb
3076
+ - spec/support/certificates/client-second-level.crt
3077
+ - spec/support/certificates/client-second-level-bundle.pem
3078
+ - spec/support/certificates/client.crt
3079
+ - spec/support/certificates/python-ca.crt
3080
+ - spec/support/certificates/server-int.crt
3081
+ - spec/support/certificates/client-second-level.pem
3082
+ - spec/support/certificates/server.pem
3083
+ - spec/support/certificates/client-x509.crt
3084
+ - spec/support/certificates/server-second-level.pem
3085
+ - spec/support/certificates/README.md
3086
+ - spec/support/certificates/server-second-level.key
3087
+ - spec/support/certificates/client.key
3088
+ - spec/support/certificates/crl_client_revoked.pem
3089
+ - spec/support/certificates/atlas-ocsp.crt
3090
+ - spec/support/certificates/client-second-level.key
3091
+ - spec/support/certificates/multi-ca.crt
3092
+ - spec/support/certificates/crl.pem
3093
+ - spec/support/certificates/client-encrypted.key
3094
+ - spec/support/certificates/retrieve-atlas-cert
3095
+ - spec/support/certificates/client-int.crt
3096
+ - spec/support/certificates/client-x509.pem
3097
+ - spec/support/certificates/server-second-level-bundle.pem
3098
+ - spec/support/certificates/atlas-ocsp-ca.crt
3099
+ - spec/support/certificates/ca.crt
3100
+ - spec/support/certificates/client-x509.key
3101
+ - spec/support/certificates/server-second-level.crt
3102
+ - spec/support/certificates/client.pem
3103
+ - spec/support/aws_utils.rb
3104
+ - spec/support/background_thread_registry.rb
3105
+ - spec/support/using_hash.rb
3106
+ - spec/support/client_registry.rb
3107
+ - spec/support/client_registry_macros.rb
3108
+ - spec/support/json_ext_formatter.rb
3109
+ - spec/support/aws_utils/orchestrator.rb
3110
+ - spec/support/aws_utils/inspector.rb
3111
+ - spec/support/aws_utils/provisioner.rb
3112
+ - spec/support/aws_utils/base.rb
3113
+ - spec/support/authorization.rb
3114
+ - spec/support/monitoring_ext.rb
3115
+ - spec/support/cluster_tools.rb
3116
+ - spec/support/shared/app_metadata.rb
3117
+ - spec/support/shared/server_selector.rb
3118
+ - spec/support/shared/scram_conversation.rb
3119
+ - spec/support/shared/session.rb
3120
+ - spec/support/shared/protocol.rb
3121
+ - spec/support/shared/auth_context.rb
3122
+ - spec/support/crypt.rb
3123
+ - spec/shared/share/Dockerfile.erb
3124
+ - spec/shared/share/haproxy-2.conf
3125
+ - spec/shared/share/haproxy-1.conf
3126
+ - spec/shared/bin/s3-copy
3127
+ - spec/shared/bin/get-mongodb-download-url
3128
+ - spec/shared/bin/s3-upload
3129
+ - spec/shared/shlib/distro.sh
3130
+ - spec/shared/shlib/set_env.sh
3131
+ - spec/shared/shlib/config.sh
3132
+ - spec/shared/shlib/server.sh
3133
+ - spec/shared/LICENSE
3134
+ - spec/shared/lib/mrss/constraints.rb
3135
+ - spec/shared/lib/mrss/cluster_config.rb
3136
+ - spec/shared/lib/mrss/child_process_helper.rb
3137
+ - spec/shared/lib/mrss/eg_config_utils.rb
3138
+ - spec/shared/lib/mrss/event_subscriber.rb
3139
+ - spec/shared/lib/mrss/utils.rb
3140
+ - spec/shared/lib/mrss/server_version_registry.rb
3141
+ - spec/shared/lib/mrss/session_registry.rb
3142
+ - spec/shared/lib/mrss/lite_constraints.rb
3143
+ - spec/shared/lib/mrss/docker_runner.rb
3144
+ - spec/shared/lib/mrss/spec_organizer.rb
3145
+ - spec/shared/lib/mrss/session_registry_legacy.rb