mongo 2.13.0 → 2.15.0.alpha

Sign up to get free protection for your applications and to get access to all the features.
Files changed (375) hide show
  1. checksums.yaml +4 -4
  2. checksums.yaml.gz.sig +1 -4
  3. data.tar.gz.sig +0 -0
  4. data/README.md +4 -1
  5. data/Rakefile +46 -18
  6. data/lib/mongo.rb +32 -0
  7. data/lib/mongo/address.rb +1 -1
  8. data/lib/mongo/address/ipv4.rb +1 -1
  9. data/lib/mongo/address/ipv6.rb +1 -1
  10. data/lib/mongo/auth/aws/conversation.rb +1 -4
  11. data/lib/mongo/auth/base.rb +13 -7
  12. data/lib/mongo/auth/conversation_base.rb +32 -0
  13. data/lib/mongo/auth/cr/conversation.rb +6 -29
  14. data/lib/mongo/auth/gssapi/conversation.rb +4 -15
  15. data/lib/mongo/auth/ldap/conversation.rb +3 -14
  16. data/lib/mongo/auth/sasl_conversation_base.rb +1 -13
  17. data/lib/mongo/auth/scram_conversation_base.rb +7 -34
  18. data/lib/mongo/auth/user/view.rb +16 -9
  19. data/lib/mongo/auth/x509/conversation.rb +4 -25
  20. data/lib/mongo/background_thread.rb +11 -0
  21. data/lib/mongo/bulk_write.rb +38 -18
  22. data/lib/mongo/caching_cursor.rb +74 -0
  23. data/lib/mongo/client.rb +142 -16
  24. data/lib/mongo/cluster.rb +22 -31
  25. data/lib/mongo/cluster/reapers/cursor_reaper.rb +6 -2
  26. data/lib/mongo/cluster/sdam_flow.rb +14 -0
  27. data/lib/mongo/cluster/topology/single.rb +1 -1
  28. data/lib/mongo/collection.rb +58 -18
  29. data/lib/mongo/collection/view.rb +24 -20
  30. data/lib/mongo/collection/view/aggregation.rb +26 -5
  31. data/lib/mongo/collection/view/builder/find_command.rb +38 -18
  32. data/lib/mongo/collection/view/change_stream.rb +1 -1
  33. data/lib/mongo/collection/view/explainable.rb +27 -8
  34. data/lib/mongo/collection/view/iterable.rb +73 -13
  35. data/lib/mongo/collection/view/map_reduce.rb +2 -2
  36. data/lib/mongo/collection/view/readable.rb +57 -21
  37. data/lib/mongo/collection/view/writable.rb +29 -15
  38. data/lib/mongo/crypt/encryption_io.rb +6 -6
  39. data/lib/mongo/cursor.rb +18 -5
  40. data/lib/mongo/database.rb +28 -5
  41. data/lib/mongo/database/view.rb +2 -2
  42. data/lib/mongo/error.rb +11 -1
  43. data/lib/mongo/error/bulk_write_error.rb +17 -3
  44. data/lib/mongo/error/internal_driver_error.rb +22 -0
  45. data/lib/mongo/error/invalid_read_concern.rb +28 -0
  46. data/lib/mongo/error/operation_failure.rb +26 -7
  47. data/lib/mongo/error/parser.rb +65 -12
  48. data/lib/mongo/error/server_api_conflict.rb +23 -0
  49. data/lib/mongo/error/server_api_not_supported.rb +24 -0
  50. data/lib/mongo/error/server_certificate_revoked.rb +22 -0
  51. data/lib/mongo/error/unmet_dependency.rb +21 -0
  52. data/lib/mongo/error/unsupported_option.rb +14 -12
  53. data/lib/mongo/grid/fs_bucket.rb +37 -37
  54. data/lib/mongo/index/view.rb +21 -11
  55. data/lib/mongo/lint.rb +2 -1
  56. data/lib/mongo/logger.rb +3 -3
  57. data/lib/mongo/monitoring.rb +13 -4
  58. data/lib/mongo/monitoring/event/server_heartbeat_failed.rb +27 -16
  59. data/lib/mongo/monitoring/event/server_heartbeat_succeeded.rb +26 -15
  60. data/lib/mongo/operation.rb +4 -2
  61. data/lib/mongo/operation/aggregate/result.rb +9 -8
  62. data/lib/mongo/operation/collections_info.rb +18 -1
  63. data/lib/mongo/operation/collections_info/command.rb +5 -0
  64. data/lib/mongo/operation/collections_info/result.rb +18 -1
  65. data/lib/mongo/operation/context.rb +99 -0
  66. data/lib/mongo/operation/delete/bulk_result.rb +2 -0
  67. data/lib/mongo/operation/delete/result.rb +3 -0
  68. data/lib/mongo/operation/explain/command.rb +4 -0
  69. data/lib/mongo/operation/explain/legacy.rb +4 -0
  70. data/lib/mongo/operation/explain/op_msg.rb +6 -0
  71. data/lib/mongo/operation/explain/result.rb +3 -0
  72. data/lib/mongo/operation/find/legacy/result.rb +2 -0
  73. data/lib/mongo/operation/find/result.rb +13 -0
  74. data/lib/mongo/operation/get_more/result.rb +3 -0
  75. data/lib/mongo/operation/indexes.rb +15 -1
  76. data/lib/mongo/operation/indexes/result.rb +5 -0
  77. data/lib/mongo/operation/insert/bulk_result.rb +5 -0
  78. data/lib/mongo/operation/insert/command.rb +2 -2
  79. data/lib/mongo/operation/insert/legacy.rb +2 -2
  80. data/lib/mongo/operation/insert/op_msg.rb +2 -2
  81. data/lib/mongo/operation/insert/result.rb +5 -0
  82. data/lib/mongo/operation/list_collections/result.rb +9 -1
  83. data/lib/mongo/operation/map_reduce/result.rb +10 -0
  84. data/lib/mongo/operation/parallel_scan/result.rb +4 -0
  85. data/lib/mongo/operation/result.rb +37 -6
  86. data/lib/mongo/operation/shared/bypass_document_validation.rb +1 -0
  87. data/lib/mongo/operation/shared/causal_consistency_supported.rb +1 -0
  88. data/lib/mongo/operation/shared/executable.rb +25 -14
  89. data/lib/mongo/operation/shared/executable_no_validate.rb +2 -2
  90. data/lib/mongo/operation/shared/idable.rb +2 -1
  91. data/lib/mongo/operation/shared/limited.rb +1 -0
  92. data/lib/mongo/operation/shared/object_id_generator.rb +1 -0
  93. data/lib/mongo/operation/shared/op_msg_or_command.rb +1 -7
  94. data/lib/mongo/operation/shared/op_msg_or_find_command.rb +1 -7
  95. data/lib/mongo/operation/shared/polymorphic_operation.rb +39 -0
  96. data/lib/mongo/operation/shared/response_handling.rb +23 -23
  97. data/lib/mongo/operation/shared/result/aggregatable.rb +1 -0
  98. data/lib/mongo/operation/shared/sessions_supported.rb +14 -2
  99. data/lib/mongo/operation/shared/specifiable.rb +1 -0
  100. data/lib/mongo/operation/shared/write.rb +9 -18
  101. data/lib/mongo/operation/shared/write_concern_supported.rb +1 -0
  102. data/lib/mongo/operation/update/legacy/result.rb +7 -0
  103. data/lib/mongo/operation/update/result.rb +8 -0
  104. data/lib/mongo/operation/users_info/result.rb +3 -0
  105. data/lib/mongo/protocol/compressed.rb +51 -5
  106. data/lib/mongo/protocol/message.rb +31 -4
  107. data/lib/mongo/protocol/msg.rb +37 -12
  108. data/lib/mongo/protocol/query.rb +36 -0
  109. data/lib/mongo/query_cache.rb +272 -0
  110. data/lib/mongo/retryable.rb +9 -2
  111. data/lib/mongo/server.rb +12 -16
  112. data/lib/mongo/server/app_metadata.rb +52 -18
  113. data/lib/mongo/server/connection.rb +5 -0
  114. data/lib/mongo/server/connection_base.rb +16 -15
  115. data/lib/mongo/server/connection_common.rb +2 -2
  116. data/lib/mongo/server/connection_pool.rb +9 -4
  117. data/lib/mongo/server/description.rb +12 -1
  118. data/lib/mongo/server/description/features.rb +9 -8
  119. data/lib/mongo/server/monitor.rb +21 -2
  120. data/lib/mongo/server/monitor/app_metadata.rb +1 -1
  121. data/lib/mongo/server/monitor/connection.rb +12 -13
  122. data/lib/mongo/server/pending_connection.rb +26 -8
  123. data/lib/mongo/server/push_monitor.rb +12 -2
  124. data/lib/mongo/server_selector/base.rb +5 -1
  125. data/lib/mongo/session.rb +7 -3
  126. data/lib/mongo/session/session_pool.rb +4 -2
  127. data/lib/mongo/socket.rb +35 -8
  128. data/lib/mongo/socket/ocsp_cache.rb +97 -0
  129. data/lib/mongo/socket/ocsp_verifier.rb +368 -0
  130. data/lib/mongo/socket/ssl.rb +53 -24
  131. data/lib/mongo/srv/monitor.rb +7 -24
  132. data/lib/mongo/srv/resolver.rb +14 -10
  133. data/lib/mongo/timeout.rb +2 -0
  134. data/lib/mongo/uri.rb +21 -390
  135. data/lib/mongo/uri/options_mapper.rb +620 -0
  136. data/lib/mongo/uri/srv_protocol.rb +3 -2
  137. data/lib/mongo/utils.rb +27 -1
  138. data/lib/mongo/version.rb +1 -1
  139. data/spec/NOTES.aws-auth.md +12 -7
  140. data/spec/README.md +87 -2
  141. data/spec/integration/auth_spec.rb +25 -15
  142. data/spec/integration/bson_symbol_spec.rb +4 -2
  143. data/spec/integration/bulk_write_error_message_spec.rb +41 -0
  144. data/spec/integration/bulk_write_spec.rb +48 -0
  145. data/spec/integration/change_stream_spec.rb +5 -5
  146. data/spec/integration/client_authentication_options_spec.rb +92 -28
  147. data/spec/integration/client_side_encryption/auto_encryption_bulk_writes_spec.rb +6 -2
  148. data/spec/integration/command_monitoring_spec.rb +2 -2
  149. data/spec/integration/connection_pool_populator_spec.rb +4 -2
  150. data/spec/integration/connection_spec.rb +2 -0
  151. data/spec/integration/cursor_reaping_spec.rb +54 -18
  152. data/spec/integration/docs_examples_spec.rb +8 -1
  153. data/spec/integration/fork_reconnect_spec.rb +60 -2
  154. data/spec/integration/ocsp_connectivity_spec.rb +26 -0
  155. data/spec/integration/ocsp_verifier_cache_spec.rb +188 -0
  156. data/spec/integration/ocsp_verifier_spec.rb +340 -0
  157. data/spec/integration/operation_failure_code_spec.rb +1 -1
  158. data/spec/integration/operation_failure_message_spec.rb +90 -0
  159. data/spec/integration/query_cache_spec.rb +1045 -0
  160. data/spec/integration/query_cache_transactions_spec.rb +190 -0
  161. data/spec/integration/reconnect_spec.rb +1 -1
  162. data/spec/integration/retryable_writes/retryable_writes_40_and_newer_spec.rb +1 -0
  163. data/spec/integration/retryable_writes/shared/performs_legacy_retries.rb +2 -0
  164. data/spec/integration/sdam_error_handling_spec.rb +86 -1
  165. data/spec/integration/sdam_events_spec.rb +8 -7
  166. data/spec/integration/server_selection_spec.rb +36 -0
  167. data/spec/integration/size_limit_spec.rb +20 -19
  168. data/spec/integration/snappy_compression_spec.rb +25 -0
  169. data/spec/integration/srv_monitoring_spec.rb +39 -4
  170. data/spec/integration/srv_spec.rb +56 -0
  171. data/spec/integration/transactions_examples_spec.rb +23 -7
  172. data/spec/integration/zlib_compression_spec.rb +1 -1
  173. data/spec/integration/zstd_compression_spec.rb +26 -0
  174. data/spec/lite_spec_helper.rb +15 -5
  175. data/spec/mongo/address_spec.rb +16 -12
  176. data/spec/mongo/auth/ldap/conversation_spec.rb +1 -1
  177. data/spec/mongo/auth/ldap_spec.rb +5 -1
  178. data/spec/mongo/auth/scram_negotiation_spec.rb +1 -1
  179. data/spec/mongo/auth/scram_spec.rb +1 -1
  180. data/spec/mongo/auth/user_spec.rb +1 -1
  181. data/spec/mongo/auth/x509/conversation_spec.rb +3 -3
  182. data/spec/mongo/bulk_write_spec.rb +2 -2
  183. data/spec/mongo/caching_cursor_spec.rb +70 -0
  184. data/spec/mongo/client_construction_spec.rb +273 -35
  185. data/spec/mongo/client_encryption_spec.rb +16 -10
  186. data/spec/mongo/client_spec.rb +64 -0
  187. data/spec/mongo/cluster/topology/replica_set_spec.rb +1 -1
  188. data/spec/mongo/cluster/topology/sharded_spec.rb +1 -1
  189. data/spec/mongo/cluster/topology/single_spec.rb +15 -6
  190. data/spec/mongo/cluster/topology/unknown_spec.rb +1 -1
  191. data/spec/mongo/cluster/topology_spec.rb +1 -1
  192. data/spec/mongo/cluster_spec.rb +6 -18
  193. data/spec/mongo/collection/view/change_stream_resume_spec.rb +1 -1
  194. data/spec/mongo/collection/view/explainable_spec.rb +87 -4
  195. data/spec/mongo/collection/view/map_reduce_spec.rb +2 -0
  196. data/spec/mongo/collection/view/readable_spec.rb +50 -0
  197. data/spec/mongo/collection_crud_spec.rb +4357 -0
  198. data/spec/mongo/collection_ddl_spec.rb +534 -0
  199. data/spec/mongo/collection_spec.rb +5 -4787
  200. data/spec/mongo/crypt/auto_decryption_context_spec.rb +1 -1
  201. data/spec/mongo/crypt/auto_encryption_context_spec.rb +1 -1
  202. data/spec/mongo/crypt/binary_spec.rb +1 -6
  203. data/spec/mongo/crypt/binding/binary_spec.rb +1 -6
  204. data/spec/mongo/crypt/binding/context_spec.rb +2 -7
  205. data/spec/mongo/crypt/binding/helpers_spec.rb +1 -6
  206. data/spec/mongo/crypt/binding/mongocrypt_spec.rb +2 -7
  207. data/spec/mongo/crypt/binding/status_spec.rb +1 -6
  208. data/spec/mongo/crypt/binding/version_spec.rb +1 -6
  209. data/spec/mongo/crypt/data_key_context_spec.rb +1 -1
  210. data/spec/mongo/crypt/explicit_decryption_context_spec.rb +1 -1
  211. data/spec/mongo/crypt/explicit_encryption_context_spec.rb +1 -1
  212. data/spec/mongo/crypt/status_spec.rb +1 -6
  213. data/spec/mongo/database_spec.rb +174 -4
  214. data/spec/mongo/error/bulk_write_error_spec.rb +3 -3
  215. data/spec/mongo/error/no_server_available_spec.rb +1 -1
  216. data/spec/mongo/error/parser_spec.rb +37 -6
  217. data/spec/mongo/index/view_spec.rb +8 -2
  218. data/spec/mongo/logger_spec.rb +13 -11
  219. data/spec/mongo/monitoring/event/server_closed_spec.rb +1 -1
  220. data/spec/mongo/monitoring/event/server_heartbeat_failed_spec.rb +1 -1
  221. data/spec/mongo/monitoring/event/server_heartbeat_succeeded_spec.rb +1 -1
  222. data/spec/mongo/monitoring/event/server_opening_spec.rb +1 -1
  223. data/spec/mongo/monitoring/event/topology_changed_spec.rb +1 -1
  224. data/spec/mongo/monitoring/event/topology_closed_spec.rb +1 -1
  225. data/spec/mongo/monitoring/event/topology_opening_spec.rb +1 -1
  226. data/spec/mongo/operation/aggregate_spec.rb +2 -1
  227. data/spec/mongo/operation/collections_info_spec.rb +4 -1
  228. data/spec/mongo/operation/command_spec.rb +6 -3
  229. data/spec/mongo/operation/create_index_spec.rb +6 -3
  230. data/spec/mongo/operation/create_user_spec.rb +6 -3
  231. data/spec/mongo/operation/delete/bulk_spec.rb +9 -6
  232. data/spec/mongo/operation/delete/op_msg_spec.rb +3 -3
  233. data/spec/mongo/operation/delete_spec.rb +11 -7
  234. data/spec/mongo/operation/drop_index_spec.rb +6 -2
  235. data/spec/mongo/operation/find/legacy_spec.rb +3 -1
  236. data/spec/mongo/operation/get_more_spec.rb +3 -1
  237. data/spec/mongo/operation/indexes_spec.rb +5 -1
  238. data/spec/mongo/operation/insert/bulk_spec.rb +10 -7
  239. data/spec/mongo/operation/insert/command_spec.rb +2 -2
  240. data/spec/mongo/operation/insert/op_msg_spec.rb +3 -3
  241. data/spec/mongo/operation/insert_spec.rb +15 -12
  242. data/spec/mongo/operation/map_reduce_spec.rb +5 -2
  243. data/spec/mongo/operation/read_preference_op_msg_spec.rb +1 -1
  244. data/spec/mongo/operation/remove_user_spec.rb +6 -3
  245. data/spec/mongo/operation/result_spec.rb +1 -1
  246. data/spec/mongo/operation/update/bulk_spec.rb +9 -6
  247. data/spec/mongo/operation/update/command_spec.rb +2 -2
  248. data/spec/mongo/operation/update/op_msg_spec.rb +3 -3
  249. data/spec/mongo/operation/update_spec.rb +10 -7
  250. data/spec/mongo/operation/update_user_spec.rb +4 -1
  251. data/spec/mongo/protocol/compressed_spec.rb +26 -12
  252. data/spec/mongo/query_cache_middleware_spec.rb +55 -0
  253. data/spec/mongo/query_cache_spec.rb +280 -0
  254. data/spec/mongo/retryable_spec.rb +3 -2
  255. data/spec/mongo/server/app_metadata_shared.rb +2 -2
  256. data/spec/mongo/server/app_metadata_spec.rb +2 -0
  257. data/spec/mongo/server/connection_pool/populator_spec.rb +3 -1
  258. data/spec/mongo/server/connection_pool_spec.rb +8 -4
  259. data/spec/mongo/server/connection_spec.rb +39 -25
  260. data/spec/mongo/server/description_spec.rb +18 -0
  261. data/spec/mongo/server/monitor/connection_spec.rb +17 -7
  262. data/spec/mongo/server/monitor_spec.rb +9 -1
  263. data/spec/mongo/server_selector_spec.rb +2 -2
  264. data/spec/mongo/server_spec.rb +15 -2
  265. data/spec/mongo/socket/ssl_spec.rb +44 -4
  266. data/spec/mongo/socket_spec.rb +2 -2
  267. data/spec/mongo/tls_context_hooks_spec.rb +37 -0
  268. data/spec/mongo/uri/srv_protocol_spec.rb +64 -33
  269. data/spec/mongo/uri_option_parsing_spec.rb +11 -11
  270. data/spec/mongo/uri_spec.rb +68 -41
  271. data/spec/mongo/utils_spec.rb +39 -0
  272. data/spec/runners/auth.rb +3 -0
  273. data/spec/runners/change_streams/test.rb +1 -1
  274. data/spec/runners/connection_string.rb +31 -124
  275. data/spec/runners/crud/requirement.rb +40 -3
  276. data/spec/runners/crud/test_base.rb +0 -19
  277. data/spec/runners/crud/verifier.rb +8 -0
  278. data/spec/runners/server_selection.rb +1 -1
  279. data/spec/runners/transactions/operation.rb +13 -2
  280. data/spec/runners/transactions/test.rb +3 -2
  281. data/spec/runners/unified.rb +96 -0
  282. data/spec/runners/unified/assertions.rb +249 -0
  283. data/spec/runners/unified/change_stream_operations.rb +26 -0
  284. data/spec/runners/unified/crud_operations.rb +199 -0
  285. data/spec/runners/unified/ddl_operations.rb +96 -0
  286. data/spec/runners/unified/entity_map.rb +39 -0
  287. data/spec/runners/unified/error.rb +25 -0
  288. data/spec/runners/unified/event_subscriber.rb +91 -0
  289. data/spec/runners/unified/exceptions.rb +21 -0
  290. data/spec/runners/unified/grid_fs_operations.rb +55 -0
  291. data/spec/runners/unified/support_operations.rb +250 -0
  292. data/spec/runners/unified/test.rb +393 -0
  293. data/spec/runners/unified/test_group.rb +28 -0
  294. data/spec/runners/unified/using_hash.rb +31 -0
  295. data/spec/shared/LICENSE +20 -0
  296. data/spec/shared/bin/get-mongodb-download-url +17 -0
  297. data/spec/shared/lib/mrss/child_process_helper.rb +80 -0
  298. data/spec/shared/lib/mrss/cluster_config.rb +218 -0
  299. data/spec/shared/lib/mrss/constraints.rb +346 -0
  300. data/spec/shared/lib/mrss/docker_runner.rb +262 -0
  301. data/spec/shared/lib/mrss/lite_constraints.rb +175 -0
  302. data/spec/shared/lib/mrss/server_version_registry.rb +112 -0
  303. data/spec/shared/lib/mrss/spec_organizer.rb +149 -0
  304. data/spec/shared/lib/mrss/utils.rb +15 -0
  305. data/spec/shared/share/Dockerfile.erb +231 -0
  306. data/spec/shared/shlib/distro.sh +73 -0
  307. data/spec/shared/shlib/server.sh +290 -0
  308. data/spec/shared/shlib/set_env.sh +128 -0
  309. data/spec/solo/clean_exit_spec.rb +21 -0
  310. data/spec/spec_helper.rb +7 -2
  311. data/spec/spec_tests/cmap_spec.rb +7 -3
  312. data/spec/spec_tests/crud_unified_spec.rb +10 -0
  313. data/spec/spec_tests/data/change_streams/change-streams-errors.yml +0 -1
  314. data/spec/spec_tests/data/change_streams/change-streams.yml +0 -2
  315. data/spec/spec_tests/data/cmap/pool-checkout-connection.yml +6 -2
  316. data/spec/spec_tests/data/cmap/pool-create-min-size.yml +3 -0
  317. data/spec/spec_tests/data/connection_string/valid-warnings.yml +24 -0
  318. data/spec/spec_tests/data/crud_unified/estimatedDocumentCount.yml +267 -0
  319. data/spec/spec_tests/data/retryable_reads/estimatedDocumentCount-4.9.yml +60 -0
  320. data/spec/spec_tests/data/retryable_reads/{estimatedDocumentCount.yml → estimatedDocumentCount-pre4.9.yml} +2 -0
  321. data/spec/spec_tests/data/retryable_reads/estimatedDocumentCount-serverErrors-4.9.yml +146 -0
  322. data/spec/spec_tests/data/retryable_reads/{estimatedDocumentCount-serverErrors.yml → estimatedDocumentCount-serverErrors-pre4.9.yml} +2 -0
  323. data/spec/spec_tests/data/retryable_reads/listIndexNames.yml +1 -1
  324. data/spec/spec_tests/data/sdam_monitoring/discovered_standalone.yml +1 -3
  325. data/spec/spec_tests/data/sdam_monitoring/standalone.yml +2 -2
  326. data/spec/spec_tests/data/sdam_monitoring/standalone_repeated.yml +2 -2
  327. data/spec/spec_tests/data/sdam_monitoring/standalone_suppress_equal_description_changes.yml +2 -2
  328. data/spec/spec_tests/data/sdam_monitoring/standalone_to_rs_with_me_mismatch.yml +2 -2
  329. data/spec/spec_tests/data/unified/valid-fail/operation-failure.yml +31 -0
  330. data/spec/spec_tests/data/unified/valid-pass/poc-change-streams.yml +220 -0
  331. data/spec/spec_tests/data/unified/valid-pass/poc-command-monitoring.yml +102 -0
  332. data/spec/spec_tests/data/unified/valid-pass/poc-crud.yml +184 -0
  333. data/spec/spec_tests/data/unified/valid-pass/poc-gridfs.yml +155 -0
  334. data/spec/spec_tests/data/unified/valid-pass/poc-retryable-reads.yml +193 -0
  335. data/spec/spec_tests/data/unified/valid-pass/poc-retryable-writes.yml +210 -0
  336. data/spec/spec_tests/data/unified/valid-pass/poc-sessions.yml +215 -0
  337. data/spec/spec_tests/data/unified/valid-pass/poc-transactions-convenient-api.yml +235 -0
  338. data/spec/spec_tests/data/unified/valid-pass/poc-transactions-mongos-pin-auto.yml +169 -0
  339. data/spec/spec_tests/data/unified/valid-pass/poc-transactions.yml +170 -0
  340. data/spec/spec_tests/data/uri_options/auth-options.yml +25 -0
  341. data/spec/spec_tests/data/uri_options/compression-options.yml +7 -4
  342. data/spec/spec_tests/data/uri_options/read-preference-options.yml +24 -0
  343. data/spec/spec_tests/data/uri_options/ruby-connection-options.yml +1 -0
  344. data/spec/spec_tests/data/uri_options/tls-options.yml +160 -4
  345. data/spec/spec_tests/data/versioned_api/crud-api-version-1-strict.yml +416 -0
  346. data/spec/spec_tests/data/versioned_api/crud-api-version-1.yml +409 -0
  347. data/spec/spec_tests/data/versioned_api/runcommand-helper-no-api-version-declared.yml +67 -0
  348. data/spec/spec_tests/data/versioned_api/test-commands-deprecation-errors.yml +47 -0
  349. data/spec/spec_tests/data/versioned_api/test-commands-strict-mode.yml +44 -0
  350. data/spec/spec_tests/data/versioned_api/transaction-handling.yml +180 -0
  351. data/spec/spec_tests/dns_seedlist_discovery_spec.rb +9 -1
  352. data/spec/spec_tests/unified_spec.rb +15 -0
  353. data/spec/spec_tests/uri_options_spec.rb +47 -33
  354. data/spec/spec_tests/versioned_api_spec.rb +10 -0
  355. data/spec/stress/fork_reconnect_stress_spec.rb +1 -1
  356. data/spec/support/certificates/atlas-ocsp-ca.crt +28 -0
  357. data/spec/support/certificates/atlas-ocsp.crt +41 -0
  358. data/spec/support/client_registry_macros.rb +11 -2
  359. data/spec/support/common_shortcuts.rb +59 -0
  360. data/spec/support/constraints.rb +6 -253
  361. data/spec/support/matchers.rb +16 -0
  362. data/spec/support/ocsp +1 -0
  363. data/spec/support/session_registry.rb +52 -0
  364. data/spec/support/shared/session.rb +2 -2
  365. data/spec/support/spec_config.rb +68 -3
  366. data/spec/support/spec_setup.rb +48 -38
  367. data/spec/support/utils.rb +102 -4
  368. metadata +1087 -936
  369. metadata.gz.sig +0 -0
  370. data/lib/mongo/operation/shared/collections_info_or_list_collections.rb +0 -56
  371. data/lib/mongo/operation/shared/op_msg_or_list_indexes_command.rb +0 -47
  372. data/spec/support/child_process_helper.rb +0 -78
  373. data/spec/support/cluster_config.rb +0 -207
  374. data/spec/support/lite_constraints.rb +0 -141
  375. data/spec/support/spec_organizer.rb +0 -129
@@ -0,0 +1,102 @@
1
+ description: "poc-command-monitoring"
2
+
3
+ schemaVersion: "1.0"
4
+
5
+ createEntities:
6
+ - client:
7
+ id: &client0 client0
8
+ observeEvents:
9
+ - commandStartedEvent
10
+ - commandSucceededEvent
11
+ - commandFailedEvent
12
+ - database:
13
+ id: &database0 database0
14
+ client: *client0
15
+ databaseName: &database0Name command-monitoring-tests
16
+ - collection:
17
+ id: &collection0 collection0
18
+ database: *database0
19
+ collectionName: &collection0Name test
20
+
21
+ initialData:
22
+ - collectionName: *collection0Name
23
+ databaseName: *database0Name
24
+ documents:
25
+ - { _id: 1, x: 11 }
26
+ - { _id: 2, x: 22 }
27
+ - { _id: 3, x: 33 }
28
+ - { _id: 4, x: 44 }
29
+ - { _id: 5, x: 55 }
30
+
31
+ tests:
32
+ - description: "A successful find event with a getmore and the server kills the cursor"
33
+ runOnRequirements:
34
+ - minServerVersion: "3.1"
35
+ topologies: [ single, replicaset ]
36
+ operations:
37
+ - name: find
38
+ object: *collection0
39
+ arguments:
40
+ filter: { _id: { $gte: 1 }}
41
+ sort: { _id: 1 }
42
+ batchSize: 3
43
+ limit: 4
44
+ expectEvents:
45
+ - client: *client0
46
+ events:
47
+ - commandStartedEvent:
48
+ command:
49
+ find: *collection0Name
50
+ filter: { _id: { $gte : 1 } }
51
+ sort: { _id: 1 }
52
+ batchSize: 3
53
+ limit: 4
54
+ commandName: find
55
+ databaseName: *database0Name
56
+ - commandSucceededEvent:
57
+ reply:
58
+ ok: 1
59
+ cursor:
60
+ id: { $$type: [ int, long ] }
61
+ ns: &namespace command-monitoring-tests.test
62
+ firstBatch:
63
+ - { _id: 1, x: 11 }
64
+ - { _id: 2, x: 22 }
65
+ - { _id: 3, x: 33 }
66
+ commandName: find
67
+ - commandStartedEvent:
68
+ command:
69
+ getMore: { $$type: [ int, long ] }
70
+ collection: *collection0Name
71
+ # https://jira.mongodb.org/browse/RUBY-2443
72
+ batchSize: 3
73
+ commandName: getMore
74
+ databaseName: *database0Name
75
+ - commandSucceededEvent:
76
+ reply:
77
+ ok: 1
78
+ cursor:
79
+ id: 0
80
+ ns: *namespace
81
+ nextBatch:
82
+ - { _id: 4, x: 44 }
83
+ commandName: getMore
84
+
85
+ - description: "A failed find event"
86
+ operations:
87
+ - name: find
88
+ object: *collection0
89
+ arguments:
90
+ filter: { $or: true }
91
+ expectError: { isError: true }
92
+ expectEvents:
93
+ - client: *client0
94
+ events:
95
+ - commandStartedEvent:
96
+ command:
97
+ find: *collection0Name
98
+ filter: { $or: true }
99
+ commandName: find
100
+ databaseName: *database0Name
101
+ - commandFailedEvent:
102
+ commandName: find
@@ -0,0 +1,184 @@
1
+ description: "poc-crud"
2
+
3
+ schemaVersion: "1.0"
4
+
5
+ createEntities:
6
+ - client:
7
+ id: &client0 client0
8
+ observeEvents: [ commandStartedEvent ]
9
+ - database:
10
+ id: &database0 database0
11
+ client: *client0
12
+ databaseName: &database0Name crud-tests
13
+ - database:
14
+ id: &database1 database1
15
+ client: *client0
16
+ databaseName: &database1Name admin
17
+ - collection:
18
+ id: &collection0 collection0
19
+ database: *database0
20
+ collectionName: &collection0Name coll0
21
+ - collection:
22
+ id: &collection1 collection1
23
+ database: *database0
24
+ collectionName: &collection1Name coll1
25
+ - collection:
26
+ id: &collection2 collection2
27
+ database: *database0
28
+ collectionName: &collection2Name coll2
29
+ collectionOptions:
30
+ readConcern: { level: majority }
31
+
32
+ initialData:
33
+ - collectionName: *collection0Name
34
+ databaseName: *database0Name
35
+ documents:
36
+ - { _id: 1, x: 11 }
37
+ - { _id: 2, x: 22 }
38
+ - collectionName: *collection1Name
39
+ databaseName: *database0Name
40
+ documents:
41
+ - { _id: 1, x: 11 }
42
+ - collectionName: *collection2Name
43
+ databaseName: *database0Name
44
+ documents:
45
+ - { _id: 1, x: 11 }
46
+ - { _id: 2, x: 22 }
47
+ - { _id: 3, x: 33 }
48
+ - collectionName: &out aggregate_out
49
+ databaseName: *database0Name
50
+ documents: []
51
+
52
+ tests:
53
+ - description: "BulkWrite with mixed ordered operations"
54
+ operations:
55
+ - name: bulkWrite
56
+ object: *collection0
57
+ arguments:
58
+ requests:
59
+ - insertOne:
60
+ document: { _id: 3, x: 33 }
61
+ - updateOne:
62
+ filter: { _id: 2 }
63
+ update: { $inc: { x: 1 } }
64
+ - updateMany:
65
+ filter: { _id: { $gt: 1 } }
66
+ update: { $inc: { x: 1 } }
67
+ - insertOne:
68
+ document: { _id: 4, x: 44 }
69
+ - deleteMany:
70
+ filter: { x: { $nin: [ 24, 34 ] } }
71
+ - replaceOne:
72
+ filter: { _id: 4 }
73
+ replacement: { _id: 4, x: 44 }
74
+ upsert: true
75
+ ordered: true
76
+ expectResult:
77
+ deletedCount: 2
78
+ insertedCount: 2
79
+ insertedIds: { $$unsetOrMatches: { 0: 3, 3: 4 } }
80
+ matchedCount: 3
81
+ modifiedCount: 3
82
+ upsertedCount: 1
83
+ upsertedIds: { 5: 4 }
84
+ outcome:
85
+ - collectionName: *collection0Name
86
+ databaseName: *database0Name
87
+ documents:
88
+ - {_id: 2, x: 24 }
89
+ - {_id: 3, x: 34 }
90
+ - {_id: 4, x: 44 }
91
+
92
+ - description: "InsertMany continue-on-error behavior with unordered (duplicate key in requests)"
93
+ operations:
94
+ - name: insertMany
95
+ object: *collection1
96
+ arguments:
97
+ documents:
98
+ - { _id: 2, x: 22 }
99
+ - { _id: 2, x: 22 }
100
+ - { _id: 3, x: 33 }
101
+ ordered: false
102
+ expectError:
103
+ expectResult:
104
+ deletedCount: 0
105
+ insertedCount: 2
106
+ # Since the map of insertedIds is generated before execution it
107
+ # could indicate inserts that did not actually succeed. We omit
108
+ # this field rather than expect drivers to provide an accurate
109
+ # map filtered by write errors.
110
+ matchedCount: 0
111
+ modifiedCount: 0
112
+ upsertedCount: 0
113
+ upsertedIds: { }
114
+ outcome:
115
+ - collectionName: *collection1Name
116
+ databaseName: *database0Name
117
+ documents:
118
+ - { _id: 1, x: 11 }
119
+ - { _id: 2, x: 22 }
120
+ - { _id: 3, x: 33 }
121
+
122
+ - description: "ReplaceOne prohibits atomic modifiers"
123
+ skipReason: RUBY-2437
124
+ operations:
125
+ - name: replaceOne
126
+ object: *collection1
127
+ arguments:
128
+ filter: { _id: 1 }
129
+ replacement: { $set: { x: 22 }}
130
+ expectError:
131
+ isClientError: true
132
+ expectEvents:
133
+ - client: *client0
134
+ events: []
135
+ outcome:
136
+ - collectionName: *collection1Name
137
+ databaseName: *database0Name
138
+ documents:
139
+ - { _id: 1, x: 11 }
140
+
141
+ - description: "readConcern majority with out stage"
142
+ runOnRequirements:
143
+ - minServerVersion: "4.1.0"
144
+ topologies: [ replicaset, sharded-replicaset ]
145
+ operations:
146
+ - name: aggregate
147
+ object: *collection2
148
+ arguments:
149
+ pipeline: &pipeline
150
+ - $sort: { x : 1 }
151
+ - $match: { _id: { $gt: 1 } }
152
+ - $out: *out
153
+ expectEvents:
154
+ - client: *client0
155
+ events:
156
+ - commandStartedEvent:
157
+ command:
158
+ aggregate: *collection2Name
159
+ pipeline: *pipeline
160
+ readConcern: { level: majority }
161
+ # The following two assertions were not in the original test
162
+ commandName: aggregate
163
+ databaseName: *database0Name
164
+ outcome:
165
+ - collectionName: *out
166
+ databaseName: *database0Name
167
+ documents:
168
+ - { _id: 2, x: 22 }
169
+ - { _id: 3, x: 33 }
170
+
171
+ - description: "Aggregate with $listLocalSessions"
172
+ runOnRequirements:
173
+ - minServerVersion: "3.6.0"
174
+ operations:
175
+ - name: aggregate
176
+ object: *database1
177
+ arguments:
178
+ pipeline:
179
+ - $listLocalSessions: { }
180
+ - $limit: 1
181
+ - $addFields: { dummy: "dummy field"}
182
+ - $project: { _id: 0, dummy: 1}
183
+ expectResult:
184
+ - { dummy: "dummy field" }
@@ -0,0 +1,155 @@
1
+ description: "poc-gridfs"
2
+
3
+ schemaVersion: "1.0"
4
+
5
+ createEntities:
6
+ - client:
7
+ id: &client0 client0
8
+ - database:
9
+ id: &database0 database0
10
+ client: *client0
11
+ databaseName: &database0Name gridfs-tests
12
+ - bucket:
13
+ id: &bucket0 bucket0
14
+ database: *database0
15
+ - collection:
16
+ id: &bucket0_files_collection bucket0_files_collection
17
+ database: *database0
18
+ collectionName: &bucket0_files_collectionName fs.files
19
+ - collection:
20
+ id: &bucket0_chunks_collection bucket0_chunks_collection
21
+ database: *database0
22
+ collectionName: &bucket0_chunks_collectionName fs.chunks
23
+
24
+ initialData:
25
+ - collectionName: *bucket0_files_collectionName
26
+ databaseName: *database0Name
27
+ documents:
28
+ - _id: { $oid: "000000000000000000000005" }
29
+ length: 10
30
+ chunkSize: 4
31
+ uploadDate: { $date: "1970-01-01T00:00:00.000Z" }
32
+ md5: "57d83cd477bfb1ccd975ab33d827a92b"
33
+ filename: "length-10"
34
+ contentType: "application/octet-stream"
35
+ aliases: []
36
+ metadata: {}
37
+ - collectionName: *bucket0_chunks_collectionName
38
+ databaseName: *database0Name
39
+ documents:
40
+ - _id: { $oid: "000000000000000000000005" }
41
+ files_id: { $oid: "000000000000000000000005" }
42
+ n: 0
43
+ data: { $binary: { base64: "ESIzRA==", subType: "00" } } # hex: 11223344
44
+ - _id: { $oid: "000000000000000000000006" }
45
+ files_id: { $oid: "000000000000000000000005" }
46
+ n: 1
47
+ data: { $binary: { base64: "VWZ3iA==", subType: "00" } } # hex: 55667788
48
+ - _id: { $oid: "000000000000000000000007" }
49
+ files_id: { $oid: "000000000000000000000005" }
50
+ n: 2
51
+ data: { $binary: { base64: "mao=", subType: "00" } } # hex: 99aa
52
+
53
+ tests:
54
+ # Changed from original test ("length is 8") to operate on same initialData
55
+ - description: "Delete when length is 10"
56
+ operations:
57
+ - name: delete
58
+ object: *bucket0
59
+ arguments:
60
+ id: { $oid: "000000000000000000000005" }
61
+ # Original test uses "assert.data" syntax to modify outcome collection for
62
+ # comparison. This can be accomplished using "outcome" directly.
63
+ outcome:
64
+ - collectionName: *bucket0_files_collectionName
65
+ databaseName: *database0Name
66
+ documents: []
67
+ - collectionName: *bucket0_chunks_collectionName
68
+ databaseName: *database0Name
69
+ documents: []
70
+
71
+ - description: "Download when there are three chunks"
72
+ operations:
73
+ # Original test uses "download" operation. We use an explicit operation
74
+ # that returns a stream and then assert the contents of that stream.
75
+ - name: download
76
+ object: *bucket0
77
+ arguments:
78
+ id: { $oid: "000000000000000000000005" }
79
+ expectResult: { $$matchesHexBytes: "112233445566778899aa" }
80
+
81
+ - description: "Download when files entry does not exist"
82
+ operations:
83
+ - name: download
84
+ object: *bucket0
85
+ arguments:
86
+ id: { $oid: "000000000000000000000000" }
87
+ # Original test expects "FileNotFound" error, which isn't specified
88
+ expectError: { isError: true }
89
+
90
+ - description: "Download when an intermediate chunk is missing"
91
+ operations:
92
+ # Original test uses "arrange" syntax to modify initialData. This can be
93
+ # accomplished as a delete operation on the chunks collection.
94
+ - name: deleteOne
95
+ object: *bucket0_chunks_collection
96
+ arguments:
97
+ filter:
98
+ files_id: { $oid: "000000000000000000000005" }
99
+ n: 1
100
+ expectResult:
101
+ deletedCount: 1
102
+ - name: download
103
+ object: *bucket0
104
+ arguments:
105
+ id: { $oid: "000000000000000000000005" }
106
+ # Original test expects "ChunkIsMissing" error, which isn't specified
107
+ expectError: { isError: true }
108
+
109
+ - description: "Upload when length is 5"
110
+ operations:
111
+ # Original test uses "upload" operation. We use an explicit operation
112
+ # that takes a stream, which has been created from the expected hex bytes.
113
+ - name: upload
114
+ object: *bucket0
115
+ arguments:
116
+ filename: filename
117
+ source: { $$hexBytes: "1122334455" }
118
+ chunkSizeBytes: 4
119
+ # Original test references the result directly in "assert.data". Here,
120
+ # we need to save the result as an entity, which we can later reference.
121
+ expectResult: { $$type: objectId }
122
+ saveResultAsEntity: &oid0 oid0
123
+ # "outcome" does not allow operators, but we can perform the assertions
124
+ # with separate find operations.
125
+ - name: find
126
+ object: *bucket0_files_collection
127
+ arguments:
128
+ filter: {}
129
+ sort: { uploadDate: -1 }
130
+ limit: 1
131
+ expectResult:
132
+ - _id: { $$matchesEntity: *oid0 }
133
+ length: 5
134
+ chunkSize: 4
135
+ uploadDate: { $$type: date }
136
+ # The md5 field is deprecated so some drivers do not calculate it when uploading files.
137
+ md5: { $$unsetOrMatches: "283d4fea5dded59cf837d3047328f5af" }
138
+ filename: filename
139
+ - name: find
140
+ object: *bucket0_chunks_collection
141
+ arguments:
142
+ # We cannot use the saved ObjectId when querying, but filtering by a
143
+ # non-zero timestamp will exclude initialData and sort can return the
144
+ # expected chunks in order.
145
+ filter: { _id: { $gt: { $oid: "000000000000000000000007" } } }
146
+ sort: { n: 1 }
147
+ expectResult:
148
+ - _id: { $$type: objectId }
149
+ files_id: { $$matchesEntity: *oid0 }
150
+ n: 0
151
+ data: { $binary: { base64: "ESIzRA==", subType: "00" } } # hex 11223344
152
+ - _id: { $$type: objectId }
153
+ files_id: { $$matchesEntity: *oid0 }
154
+ n: 1
155
+ data: { $binary: { base64: "VQ==", subType: "00" } } # hex 55
@@ -0,0 +1,193 @@
1
+ description: "poc-retryable-reads"
2
+
3
+ schemaVersion: "1.0"
4
+
5
+ runOnRequirements:
6
+ - minServerVersion: "4.0"
7
+ topologies: [ single, replicaset ]
8
+ - minServerVersion: "4.1.7"
9
+ topologies: [ sharded ]
10
+
11
+ createEntities:
12
+ - client:
13
+ id: &client0 client0
14
+ useMultipleMongoses: false
15
+ observeEvents: [ commandStartedEvent ]
16
+ - client:
17
+ id: &client1 client1
18
+ uriOptions: { retryReads: false }
19
+ useMultipleMongoses: false
20
+ observeEvents: [ commandStartedEvent ]
21
+ - database:
22
+ id: &database0 database0
23
+ client: *client0
24
+ databaseName: &databaseName retryable-reads-tests
25
+ - database:
26
+ id: &database1 database1
27
+ client: *client1
28
+ databaseName: *databaseName
29
+ - collection:
30
+ id: &collection0 collection0
31
+ database: *database0
32
+ collectionName: &collectionName coll
33
+ - collection:
34
+ id: &collection1 collection1
35
+ database: *database1
36
+ collectionName: *collectionName
37
+
38
+ initialData:
39
+ - collectionName: *collectionName
40
+ databaseName: *databaseName
41
+ documents:
42
+ - {_id: 1, x: 11}
43
+ - {_id: 2, x: 22}
44
+ - {_id: 3, x: 33}
45
+
46
+ tests:
47
+ - description: "Aggregate succeeds after InterruptedAtShutdown"
48
+ operations:
49
+ - name: failPoint
50
+ object: testRunner
51
+ arguments:
52
+ client: *client0
53
+ failPoint:
54
+ configureFailPoint: failCommand
55
+ mode: { times: 1 }
56
+ data:
57
+ failCommands: [ aggregate ]
58
+ errorCode: 11600 # InterruptedAtShutdown
59
+ - name: aggregate
60
+ object: *collection0
61
+ arguments:
62
+ pipeline: &pipeline
63
+ - $match: { _id: { $gt: 1 } }
64
+ - $sort: { x: 1 }
65
+ expectResult:
66
+ - { _id: 2, x: 22 }
67
+ - { _id: 3, x: 33 }
68
+ expectEvents:
69
+ - client: *client0
70
+ events:
71
+ - commandStartedEvent:
72
+ command:
73
+ aggregate: *collectionName
74
+ pipeline: *pipeline
75
+ databaseName: *databaseName
76
+ - commandStartedEvent:
77
+ command:
78
+ aggregate: *collectionName
79
+ pipeline: *pipeline
80
+ databaseName: *databaseName
81
+
82
+ - description: "Find succeeds on second attempt"
83
+ operations:
84
+ - name: failPoint
85
+ object: testRunner
86
+ arguments:
87
+ client: *client0
88
+ failPoint:
89
+ configureFailPoint: failCommand
90
+ mode: { times: 1 }
91
+ data:
92
+ failCommands: [ find ]
93
+ closeConnection: true
94
+ # Find options and expected result changed to use common initialData
95
+ - name: find
96
+ object: collection0
97
+ arguments:
98
+ filter: {}
99
+ sort: { _id: 1 }
100
+ limit: 2
101
+ expectResult:
102
+ - { _id: 1, x: 11 }
103
+ - { _id: 2, x: 22 }
104
+ expectEvents:
105
+ - client: *client0
106
+ events:
107
+ - &findAttempt
108
+ commandStartedEvent:
109
+ command:
110
+ find: *collectionName
111
+ filter: {}
112
+ sort: { _id: 1 }
113
+ limit: 2
114
+ databaseName: *databaseName
115
+ - *findAttempt
116
+
117
+ - description: "Find fails on first attempt"
118
+ operations:
119
+ - name: failPoint
120
+ object: testRunner
121
+ arguments:
122
+ client: *client0
123
+ failPoint:
124
+ configureFailPoint: failCommand
125
+ mode: { times: 1 }
126
+ data:
127
+ failCommands: [ find ]
128
+ closeConnection: true
129
+ - name: find
130
+ object: collection1 # client uses retryReads=false
131
+ arguments:
132
+ filter: {}
133
+ # Other arguments in the original test are not relevant
134
+ expectError: { isError: true }
135
+ expectEvents:
136
+ - client: *client1
137
+ events:
138
+ - commandStartedEvent:
139
+ command:
140
+ find: *collectionName
141
+ filter: {}
142
+ databaseName: *databaseName
143
+
144
+ - description: "Find fails on second attempt"
145
+ operations:
146
+ - name: failPoint
147
+ object: testRunner
148
+ arguments:
149
+ client: *client0
150
+ failPoint:
151
+ configureFailPoint: failCommand
152
+ mode: { times: 2 }
153
+ data:
154
+ failCommands: [ find ]
155
+ closeConnection: true
156
+ - name: find
157
+ object: collection0
158
+ arguments:
159
+ filter: {}
160
+ # Other arguments in the original test are not relevant
161
+ expectError: { isError: true }
162
+ expectEvents:
163
+ - client: *client0
164
+ events:
165
+ - &findAttempt
166
+ commandStartedEvent:
167
+ command:
168
+ find: *collectionName
169
+ filter: {}
170
+ databaseName: *databaseName
171
+ - *findAttempt
172
+
173
+ - description: "ListDatabases succeeds on second attempt"
174
+ operations:
175
+ - name: failPoint
176
+ object: testRunner
177
+ arguments:
178
+ client: *client0
179
+ failPoint:
180
+ configureFailPoint: failCommand
181
+ mode: { times: 1 }
182
+ data:
183
+ failCommands: [ listDatabases ]
184
+ closeConnection: true
185
+ - name: listDatabases
186
+ object: *client0
187
+ expectEvents:
188
+ - client: *client0
189
+ events:
190
+ - commandStartedEvent:
191
+ command: { listDatabases: 1 }
192
+ - commandStartedEvent:
193
+ command: { listDatabases: 1 }