mongoid-ultra 9.0.0.0.alpha1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1086) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +22 -0
  3. data/README.md +156 -0
  4. data/Rakefile +34 -0
  5. data/lib/config/locales/en.yml +706 -0
  6. data/lib/mongoid/association/accessors.rb +430 -0
  7. data/lib/mongoid/association/bindable.rb +227 -0
  8. data/lib/mongoid/association/builders.rb +86 -0
  9. data/lib/mongoid/association/constrainable.rb +42 -0
  10. data/lib/mongoid/association/depending.rb +128 -0
  11. data/lib/mongoid/association/eager.rb +159 -0
  12. data/lib/mongoid/association/eager_loadable.rb +58 -0
  13. data/lib/mongoid/association/embedded/batchable.rb +396 -0
  14. data/lib/mongoid/association/embedded/cyclic.rb +102 -0
  15. data/lib/mongoid/association/embedded/eager.rb +22 -0
  16. data/lib/mongoid/association/embedded/embedded_in/binding.rb +74 -0
  17. data/lib/mongoid/association/embedded/embedded_in/buildable.rb +38 -0
  18. data/lib/mongoid/association/embedded/embedded_in/proxy.rb +124 -0
  19. data/lib/mongoid/association/embedded/embedded_in.rb +141 -0
  20. data/lib/mongoid/association/embedded/embeds_many/binding.rb +42 -0
  21. data/lib/mongoid/association/embedded/embeds_many/buildable.rb +46 -0
  22. data/lib/mongoid/association/embedded/embeds_many/proxy.rb +584 -0
  23. data/lib/mongoid/association/embedded/embeds_many.rb +183 -0
  24. data/lib/mongoid/association/embedded/embeds_one/binding.rb +43 -0
  25. data/lib/mongoid/association/embedded/embeds_one/buildable.rb +53 -0
  26. data/lib/mongoid/association/embedded/embeds_one/proxy.rb +183 -0
  27. data/lib/mongoid/association/embedded/embeds_one.rb +150 -0
  28. data/lib/mongoid/association/embedded.rb +7 -0
  29. data/lib/mongoid/association/macros.rb +228 -0
  30. data/lib/mongoid/association/many.rb +202 -0
  31. data/lib/mongoid/association/marshalable.rb +31 -0
  32. data/lib/mongoid/association/nested/many.rb +192 -0
  33. data/lib/mongoid/association/nested/nested_buildable.rb +66 -0
  34. data/lib/mongoid/association/nested/one.rb +154 -0
  35. data/lib/mongoid/association/nested.rb +15 -0
  36. data/lib/mongoid/association/one.rb +53 -0
  37. data/lib/mongoid/association/options.rb +127 -0
  38. data/lib/mongoid/association/proxy.rb +200 -0
  39. data/lib/mongoid/association/referenced/auto_save.rb +74 -0
  40. data/lib/mongoid/association/referenced/belongs_to/binding.rb +83 -0
  41. data/lib/mongoid/association/referenced/belongs_to/buildable.rb +48 -0
  42. data/lib/mongoid/association/referenced/belongs_to/eager.rb +73 -0
  43. data/lib/mongoid/association/referenced/belongs_to/proxy.rb +124 -0
  44. data/lib/mongoid/association/referenced/belongs_to.rb +226 -0
  45. data/lib/mongoid/association/referenced/counter_cache.rb +152 -0
  46. data/lib/mongoid/association/referenced/has_and_belongs_to_many/binding.rb +72 -0
  47. data/lib/mongoid/association/referenced/has_and_belongs_to_many/buildable.rb +40 -0
  48. data/lib/mongoid/association/referenced/has_and_belongs_to_many/eager.rb +53 -0
  49. data/lib/mongoid/association/referenced/has_and_belongs_to_many/proxy.rb +345 -0
  50. data/lib/mongoid/association/referenced/has_and_belongs_to_many.rb +277 -0
  51. data/lib/mongoid/association/referenced/has_many/binding.rb +36 -0
  52. data/lib/mongoid/association/referenced/has_many/buildable.rb +38 -0
  53. data/lib/mongoid/association/referenced/has_many/eager.rb +44 -0
  54. data/lib/mongoid/association/referenced/has_many/enumerable.rb +490 -0
  55. data/lib/mongoid/association/referenced/has_many/proxy.rb +552 -0
  56. data/lib/mongoid/association/referenced/has_many.rb +251 -0
  57. data/lib/mongoid/association/referenced/has_one/binding.rb +42 -0
  58. data/lib/mongoid/association/referenced/has_one/buildable.rb +74 -0
  59. data/lib/mongoid/association/referenced/has_one/eager.rb +36 -0
  60. data/lib/mongoid/association/referenced/has_one/proxy.rb +108 -0
  61. data/lib/mongoid/association/referenced/has_one.rb +184 -0
  62. data/lib/mongoid/association/referenced/syncable.rb +155 -0
  63. data/lib/mongoid/association/referenced.rb +9 -0
  64. data/lib/mongoid/association/reflections.rb +69 -0
  65. data/lib/mongoid/association/relatable.rb +489 -0
  66. data/lib/mongoid/association.rb +135 -0
  67. data/lib/mongoid/atomic/modifiers.rb +297 -0
  68. data/lib/mongoid/atomic/paths/embedded/many.rb +60 -0
  69. data/lib/mongoid/atomic/paths/embedded/one.rb +40 -0
  70. data/lib/mongoid/atomic/paths/embedded.rb +27 -0
  71. data/lib/mongoid/atomic/paths/root.rb +36 -0
  72. data/lib/mongoid/atomic/paths.rb +4 -0
  73. data/lib/mongoid/atomic.rb +332 -0
  74. data/lib/mongoid/attributes/dynamic.rb +141 -0
  75. data/lib/mongoid/attributes/nested.rb +93 -0
  76. data/lib/mongoid/attributes/processing.rb +139 -0
  77. data/lib/mongoid/attributes/projector.rb +119 -0
  78. data/lib/mongoid/attributes/readonly.rb +73 -0
  79. data/lib/mongoid/attributes.rb +368 -0
  80. data/lib/mongoid/cacheable.rb +33 -0
  81. data/lib/mongoid/changeable.rb +520 -0
  82. data/lib/mongoid/clients/factory.rb +115 -0
  83. data/lib/mongoid/clients/options.rb +119 -0
  84. data/lib/mongoid/clients/sessions.rb +146 -0
  85. data/lib/mongoid/clients/storage_options.rb +76 -0
  86. data/lib/mongoid/clients/validators/storage.rb +46 -0
  87. data/lib/mongoid/clients/validators.rb +3 -0
  88. data/lib/mongoid/clients.rb +79 -0
  89. data/lib/mongoid/collection_configurable.rb +58 -0
  90. data/lib/mongoid/composable.rb +132 -0
  91. data/lib/mongoid/config/defaults.rb +45 -0
  92. data/lib/mongoid/config/encryption.rb +203 -0
  93. data/lib/mongoid/config/environment.rb +82 -0
  94. data/lib/mongoid/config/introspection.rb +150 -0
  95. data/lib/mongoid/config/options.rb +86 -0
  96. data/lib/mongoid/config/validators/async_query_executor.rb +24 -0
  97. data/lib/mongoid/config/validators/client.rb +128 -0
  98. data/lib/mongoid/config/validators/option.rb +24 -0
  99. data/lib/mongoid/config/validators.rb +5 -0
  100. data/lib/mongoid/config.rb +380 -0
  101. data/lib/mongoid/contextual/aggregable/memory.rb +122 -0
  102. data/lib/mongoid/contextual/aggregable/mongo.rb +140 -0
  103. data/lib/mongoid/contextual/aggregable/none.rb +65 -0
  104. data/lib/mongoid/contextual/aggregable.rb +17 -0
  105. data/lib/mongoid/contextual/atomic.rb +245 -0
  106. data/lib/mongoid/contextual/command.rb +32 -0
  107. data/lib/mongoid/contextual/geo_near.rb +236 -0
  108. data/lib/mongoid/contextual/map_reduce.rb +230 -0
  109. data/lib/mongoid/contextual/memory.rb +770 -0
  110. data/lib/mongoid/contextual/mongo/documents_loader.rb +177 -0
  111. data/lib/mongoid/contextual/mongo.rb +1065 -0
  112. data/lib/mongoid/contextual/none.rb +326 -0
  113. data/lib/mongoid/contextual/queryable.rb +24 -0
  114. data/lib/mongoid/contextual.rb +66 -0
  115. data/lib/mongoid/copyable.rb +115 -0
  116. data/lib/mongoid/criteria/findable.rb +143 -0
  117. data/lib/mongoid/criteria/includable.rb +93 -0
  118. data/lib/mongoid/criteria/inspectable.rb +24 -0
  119. data/lib/mongoid/criteria/marshalable.rb +55 -0
  120. data/lib/mongoid/criteria/modifiable.rb +235 -0
  121. data/lib/mongoid/criteria/options.rb +24 -0
  122. data/lib/mongoid/criteria/permission.rb +71 -0
  123. data/lib/mongoid/criteria/queryable/aggregable.rb +109 -0
  124. data/lib/mongoid/criteria/queryable/expandable.rb +68 -0
  125. data/lib/mongoid/criteria/queryable/extensions/array.rb +151 -0
  126. data/lib/mongoid/criteria/queryable/extensions/big_decimal.rb +55 -0
  127. data/lib/mongoid/criteria/queryable/extensions/boolean.rb +33 -0
  128. data/lib/mongoid/criteria/queryable/extensions/date.rb +63 -0
  129. data/lib/mongoid/criteria/queryable/extensions/date_time.rb +52 -0
  130. data/lib/mongoid/criteria/queryable/extensions/hash.rb +163 -0
  131. data/lib/mongoid/criteria/queryable/extensions/nil_class.rb +75 -0
  132. data/lib/mongoid/criteria/queryable/extensions/numeric.rb +73 -0
  133. data/lib/mongoid/criteria/queryable/extensions/object.rb +182 -0
  134. data/lib/mongoid/criteria/queryable/extensions/range.rb +102 -0
  135. data/lib/mongoid/criteria/queryable/extensions/regexp.rb +72 -0
  136. data/lib/mongoid/criteria/queryable/extensions/set.rb +33 -0
  137. data/lib/mongoid/criteria/queryable/extensions/string.rb +112 -0
  138. data/lib/mongoid/criteria/queryable/extensions/symbol.rb +64 -0
  139. data/lib/mongoid/criteria/queryable/extensions/time.rb +60 -0
  140. data/lib/mongoid/criteria/queryable/extensions/time_with_zone.rb +66 -0
  141. data/lib/mongoid/criteria/queryable/extensions.rb +25 -0
  142. data/lib/mongoid/criteria/queryable/key.rb +177 -0
  143. data/lib/mongoid/criteria/queryable/macroable.rb +26 -0
  144. data/lib/mongoid/criteria/queryable/mergeable.rb +434 -0
  145. data/lib/mongoid/criteria/queryable/optional.rb +380 -0
  146. data/lib/mongoid/criteria/queryable/options.rb +136 -0
  147. data/lib/mongoid/criteria/queryable/pipeline.rb +106 -0
  148. data/lib/mongoid/criteria/queryable/selectable.rb +952 -0
  149. data/lib/mongoid/criteria/queryable/selector.rb +289 -0
  150. data/lib/mongoid/criteria/queryable/smash.rb +128 -0
  151. data/lib/mongoid/criteria/queryable/storable.rb +237 -0
  152. data/lib/mongoid/criteria/queryable.rb +90 -0
  153. data/lib/mongoid/criteria/scopable.rb +166 -0
  154. data/lib/mongoid/criteria/translator.rb +45 -0
  155. data/lib/mongoid/criteria.rb +570 -0
  156. data/lib/mongoid/deprecable.rb +36 -0
  157. data/lib/mongoid/deprecation.rb +25 -0
  158. data/lib/mongoid/document.rb +389 -0
  159. data/lib/mongoid/encryptable.rb +49 -0
  160. data/lib/mongoid/equality.rb +63 -0
  161. data/lib/mongoid/errors/ambiguous_relationship.rb +50 -0
  162. data/lib/mongoid/errors/attribute_not_loaded.rb +33 -0
  163. data/lib/mongoid/errors/callback.rb +24 -0
  164. data/lib/mongoid/errors/create_collection_failure.rb +33 -0
  165. data/lib/mongoid/errors/criteria_argument_required.rb +18 -0
  166. data/lib/mongoid/errors/delete_restriction.rb +26 -0
  167. data/lib/mongoid/errors/document_not_destroyed.rb +22 -0
  168. data/lib/mongoid/errors/document_not_found.rb +125 -0
  169. data/lib/mongoid/errors/drop_collection_failure.rb +27 -0
  170. data/lib/mongoid/errors/empty_config_file.rb +25 -0
  171. data/lib/mongoid/errors/immutable_attribute.rb +26 -0
  172. data/lib/mongoid/errors/in_memory_collation_not_supported.rb +19 -0
  173. data/lib/mongoid/errors/invalid_async_query_executor.rb +25 -0
  174. data/lib/mongoid/errors/invalid_auto_encryption_configuration.rb +32 -0
  175. data/lib/mongoid/errors/invalid_collection.rb +19 -0
  176. data/lib/mongoid/errors/invalid_config_file.rb +25 -0
  177. data/lib/mongoid/errors/invalid_config_option.rb +26 -0
  178. data/lib/mongoid/errors/invalid_dependent_strategy.rb +31 -0
  179. data/lib/mongoid/errors/invalid_discriminator_key_target.rb +24 -0
  180. data/lib/mongoid/errors/invalid_dot_dollar_assignment.rb +23 -0
  181. data/lib/mongoid/errors/invalid_elem_match_operator.rb +32 -0
  182. data/lib/mongoid/errors/invalid_estimated_count_criteria.rb +25 -0
  183. data/lib/mongoid/errors/invalid_estimated_count_scoping.rb +25 -0
  184. data/lib/mongoid/errors/invalid_expression_operator.rb +27 -0
  185. data/lib/mongoid/errors/invalid_field.rb +65 -0
  186. data/lib/mongoid/errors/invalid_field_operator.rb +32 -0
  187. data/lib/mongoid/errors/invalid_field_option.rb +34 -0
  188. data/lib/mongoid/errors/invalid_field_type.rb +26 -0
  189. data/lib/mongoid/errors/invalid_find.rb +18 -0
  190. data/lib/mongoid/errors/invalid_global_executor_concurrency.rb +22 -0
  191. data/lib/mongoid/errors/invalid_includes.rb +31 -0
  192. data/lib/mongoid/errors/invalid_index.rb +27 -0
  193. data/lib/mongoid/errors/invalid_options.rb +27 -0
  194. data/lib/mongoid/errors/invalid_path.rb +20 -0
  195. data/lib/mongoid/errors/invalid_persistence_option.rb +26 -0
  196. data/lib/mongoid/errors/invalid_query.rb +40 -0
  197. data/lib/mongoid/errors/invalid_relation.rb +61 -0
  198. data/lib/mongoid/errors/invalid_relation_option.rb +28 -0
  199. data/lib/mongoid/errors/invalid_scope.rb +23 -0
  200. data/lib/mongoid/errors/invalid_session_nesting.rb +16 -0
  201. data/lib/mongoid/errors/invalid_set_polymorphic_relation.rb +39 -0
  202. data/lib/mongoid/errors/invalid_storage_options.rb +26 -0
  203. data/lib/mongoid/errors/invalid_storage_parent.rb +27 -0
  204. data/lib/mongoid/errors/invalid_time.rb +21 -0
  205. data/lib/mongoid/errors/invalid_transaction_nesting.rb +16 -0
  206. data/lib/mongoid/errors/inverse_not_found.rb +28 -0
  207. data/lib/mongoid/errors/mixed_client_configuration.rb +27 -0
  208. data/lib/mongoid/errors/mixed_relations.rb +31 -0
  209. data/lib/mongoid/errors/mongoid_error.rb +91 -0
  210. data/lib/mongoid/errors/nested_attributes_metadata_not_found.rb +27 -0
  211. data/lib/mongoid/errors/no_client_config.rb +21 -0
  212. data/lib/mongoid/errors/no_client_database.rb +26 -0
  213. data/lib/mongoid/errors/no_client_hosts.rb +26 -0
  214. data/lib/mongoid/errors/no_clients_config.rb +19 -0
  215. data/lib/mongoid/errors/no_default_client.rb +22 -0
  216. data/lib/mongoid/errors/no_environment.rb +18 -0
  217. data/lib/mongoid/errors/no_map_reduce_output.rb +23 -0
  218. data/lib/mongoid/errors/no_metadata.rb +20 -0
  219. data/lib/mongoid/errors/no_parent.rb +23 -0
  220. data/lib/mongoid/errors/readonly_attribute.rb +24 -0
  221. data/lib/mongoid/errors/readonly_document.rb +21 -0
  222. data/lib/mongoid/errors/rollback.rb +14 -0
  223. data/lib/mongoid/errors/scope_overwrite.rb +22 -0
  224. data/lib/mongoid/errors/sessions_not_supported.rb +16 -0
  225. data/lib/mongoid/errors/too_many_nested_attribute_records.rb +22 -0
  226. data/lib/mongoid/errors/transaction_error.rb +22 -0
  227. data/lib/mongoid/errors/transactions_not_supported.rb +16 -0
  228. data/lib/mongoid/errors/unknown_attribute.rb +24 -0
  229. data/lib/mongoid/errors/unknown_model.rb +24 -0
  230. data/lib/mongoid/errors/unsaved_document.rb +20 -0
  231. data/lib/mongoid/errors/unsupported_javascript.rb +26 -0
  232. data/lib/mongoid/errors/validations.rb +30 -0
  233. data/lib/mongoid/errors.rb +73 -0
  234. data/lib/mongoid/evolvable.rb +18 -0
  235. data/lib/mongoid/extensions/array.rb +173 -0
  236. data/lib/mongoid/extensions/big_decimal.rb +90 -0
  237. data/lib/mongoid/extensions/binary.rb +42 -0
  238. data/lib/mongoid/extensions/boolean.rb +26 -0
  239. data/lib/mongoid/extensions/date.rb +87 -0
  240. data/lib/mongoid/extensions/date_time.rb +60 -0
  241. data/lib/mongoid/extensions/decimal128.rb +36 -0
  242. data/lib/mongoid/extensions/false_class.rb +35 -0
  243. data/lib/mongoid/extensions/float.rb +55 -0
  244. data/lib/mongoid/extensions/hash.rb +248 -0
  245. data/lib/mongoid/extensions/integer.rb +63 -0
  246. data/lib/mongoid/extensions/module.rb +27 -0
  247. data/lib/mongoid/extensions/nil_class.rb +30 -0
  248. data/lib/mongoid/extensions/object.rb +250 -0
  249. data/lib/mongoid/extensions/object_id.rb +49 -0
  250. data/lib/mongoid/extensions/range.rb +108 -0
  251. data/lib/mongoid/extensions/raw_value.rb +32 -0
  252. data/lib/mongoid/extensions/regexp.rb +34 -0
  253. data/lib/mongoid/extensions/set.rb +57 -0
  254. data/lib/mongoid/extensions/string.rb +171 -0
  255. data/lib/mongoid/extensions/symbol.rb +38 -0
  256. data/lib/mongoid/extensions/time.rb +105 -0
  257. data/lib/mongoid/extensions/time_with_zone.rb +74 -0
  258. data/lib/mongoid/extensions/true_class.rb +35 -0
  259. data/lib/mongoid/extensions.rb +27 -0
  260. data/lib/mongoid/factory.rb +134 -0
  261. data/lib/mongoid/fields/encrypted.rb +41 -0
  262. data/lib/mongoid/fields/foreign_key.rb +166 -0
  263. data/lib/mongoid/fields/localized.rb +99 -0
  264. data/lib/mongoid/fields/standard.rb +241 -0
  265. data/lib/mongoid/fields/validators/macro.rb +125 -0
  266. data/lib/mongoid/fields/validators.rb +3 -0
  267. data/lib/mongoid/fields.rb +851 -0
  268. data/lib/mongoid/findable.rb +243 -0
  269. data/lib/mongoid/indexable/specification.rb +138 -0
  270. data/lib/mongoid/indexable/validators/options.rb +110 -0
  271. data/lib/mongoid/indexable.rb +148 -0
  272. data/lib/mongoid/inspectable.rb +52 -0
  273. data/lib/mongoid/interceptable.rb +320 -0
  274. data/lib/mongoid/loadable.rb +82 -0
  275. data/lib/mongoid/loggable.rb +66 -0
  276. data/lib/mongoid/matchable.rb +23 -0
  277. data/lib/mongoid/matcher/all.rb +22 -0
  278. data/lib/mongoid/matcher/and.rb +21 -0
  279. data/lib/mongoid/matcher/bits.rb +41 -0
  280. data/lib/mongoid/matcher/bits_all_clear.rb +20 -0
  281. data/lib/mongoid/matcher/bits_all_set.rb +20 -0
  282. data/lib/mongoid/matcher/bits_any_clear.rb +20 -0
  283. data/lib/mongoid/matcher/bits_any_set.rb +20 -0
  284. data/lib/mongoid/matcher/elem_match.rb +36 -0
  285. data/lib/mongoid/matcher/elem_match_expression.rb +20 -0
  286. data/lib/mongoid/matcher/eq.rb +11 -0
  287. data/lib/mongoid/matcher/eq_impl.rb +62 -0
  288. data/lib/mongoid/matcher/eq_impl_with_regexp.rb +25 -0
  289. data/lib/mongoid/matcher/exists.rb +15 -0
  290. data/lib/mongoid/matcher/expression.rb +35 -0
  291. data/lib/mongoid/matcher/expression_operator.rb +19 -0
  292. data/lib/mongoid/matcher/field_expression.rb +62 -0
  293. data/lib/mongoid/matcher/field_operator.rb +54 -0
  294. data/lib/mongoid/matcher/gt.rb +17 -0
  295. data/lib/mongoid/matcher/gte.rb +17 -0
  296. data/lib/mongoid/matcher/in.rb +25 -0
  297. data/lib/mongoid/matcher/lt.rb +17 -0
  298. data/lib/mongoid/matcher/lte.rb +17 -0
  299. data/lib/mongoid/matcher/mod.rb +17 -0
  300. data/lib/mongoid/matcher/ne.rb +16 -0
  301. data/lib/mongoid/matcher/nin.rb +11 -0
  302. data/lib/mongoid/matcher/nor.rb +25 -0
  303. data/lib/mongoid/matcher/not.rb +29 -0
  304. data/lib/mongoid/matcher/or.rb +21 -0
  305. data/lib/mongoid/matcher/regex.rb +41 -0
  306. data/lib/mongoid/matcher/size.rb +26 -0
  307. data/lib/mongoid/matcher/type.rb +99 -0
  308. data/lib/mongoid/matcher.rb +115 -0
  309. data/lib/mongoid/persistable/creatable.rb +184 -0
  310. data/lib/mongoid/persistable/deletable.rb +136 -0
  311. data/lib/mongoid/persistable/destroyable.rb +80 -0
  312. data/lib/mongoid/persistable/incrementable.rb +35 -0
  313. data/lib/mongoid/persistable/logical.rb +36 -0
  314. data/lib/mongoid/persistable/maxable.rb +36 -0
  315. data/lib/mongoid/persistable/minable.rb +36 -0
  316. data/lib/mongoid/persistable/multipliable.rb +35 -0
  317. data/lib/mongoid/persistable/poppable.rb +36 -0
  318. data/lib/mongoid/persistable/pullable.rb +50 -0
  319. data/lib/mongoid/persistable/pushable.rb +66 -0
  320. data/lib/mongoid/persistable/renamable.rb +37 -0
  321. data/lib/mongoid/persistable/savable.rb +59 -0
  322. data/lib/mongoid/persistable/settable.rb +93 -0
  323. data/lib/mongoid/persistable/unsettable.rb +36 -0
  324. data/lib/mongoid/persistable/updatable.rb +233 -0
  325. data/lib/mongoid/persistable/upsertable.rb +82 -0
  326. data/lib/mongoid/persistable.rb +317 -0
  327. data/lib/mongoid/persistence_context.rb +275 -0
  328. data/lib/mongoid/positional.rb +72 -0
  329. data/lib/mongoid/query_cache.rb +64 -0
  330. data/lib/mongoid/railtie.rb +122 -0
  331. data/lib/mongoid/railties/console_sandbox.rb +41 -0
  332. data/lib/mongoid/railties/controller_runtime.rb +88 -0
  333. data/lib/mongoid/railties/database.rake +93 -0
  334. data/lib/mongoid/reloadable.rb +94 -0
  335. data/lib/mongoid/scopable.rb +323 -0
  336. data/lib/mongoid/selectable.rb +49 -0
  337. data/lib/mongoid/serializable.rb +170 -0
  338. data/lib/mongoid/shardable.rb +154 -0
  339. data/lib/mongoid/stateful.rb +155 -0
  340. data/lib/mongoid/stringified_symbol.rb +52 -0
  341. data/lib/mongoid/tasks/database.rake +51 -0
  342. data/lib/mongoid/tasks/database.rb +214 -0
  343. data/lib/mongoid/tasks/encryption.rake +19 -0
  344. data/lib/mongoid/tasks/encryption.rb +102 -0
  345. data/lib/mongoid/threaded/lifecycle.rb +150 -0
  346. data/lib/mongoid/threaded.rb +396 -0
  347. data/lib/mongoid/timestamps/created/short.rb +20 -0
  348. data/lib/mongoid/timestamps/created.rb +34 -0
  349. data/lib/mongoid/timestamps/short.rb +11 -0
  350. data/lib/mongoid/timestamps/timeless.rb +95 -0
  351. data/lib/mongoid/timestamps/updated/short.rb +20 -0
  352. data/lib/mongoid/timestamps/updated.rb +44 -0
  353. data/lib/mongoid/timestamps.rb +17 -0
  354. data/lib/mongoid/touchable.rb +228 -0
  355. data/lib/mongoid/traversable.rb +337 -0
  356. data/lib/mongoid/utils.rb +22 -0
  357. data/lib/mongoid/validatable/associated.rb +47 -0
  358. data/lib/mongoid/validatable/format.rb +21 -0
  359. data/lib/mongoid/validatable/length.rb +21 -0
  360. data/lib/mongoid/validatable/localizable.rb +29 -0
  361. data/lib/mongoid/validatable/macros.rb +89 -0
  362. data/lib/mongoid/validatable/presence.rb +81 -0
  363. data/lib/mongoid/validatable/queryable.rb +29 -0
  364. data/lib/mongoid/validatable/uniqueness.rb +304 -0
  365. data/lib/mongoid/validatable.rb +163 -0
  366. data/lib/mongoid/version.rb +5 -0
  367. data/lib/mongoid/warnings.rb +30 -0
  368. data/lib/mongoid.rb +157 -0
  369. data/lib/rails/generators/mongoid/config/config_generator.rb +36 -0
  370. data/lib/rails/generators/mongoid/config/templates/mongoid.rb +24 -0
  371. data/lib/rails/generators/mongoid/config/templates/mongoid.yml +137 -0
  372. data/lib/rails/generators/mongoid/model/model_generator.rb +25 -0
  373. data/lib/rails/generators/mongoid/model/templates/model.rb.tt +19 -0
  374. data/lib/rails/generators/mongoid_generator.rb +29 -0
  375. data/lib/rails/mongoid.rb +27 -0
  376. data/spec/README.md +33 -0
  377. data/spec/config/mongoid.yml +70 -0
  378. data/spec/config/mongoid_with_schema_map_uuid.yml +27 -0
  379. data/spec/integration/app_spec.rb +377 -0
  380. data/spec/integration/associations/belongs_to_spec.rb +33 -0
  381. data/spec/integration/associations/embedded_dirty_spec.rb +57 -0
  382. data/spec/integration/associations/embedded_spec.rb +351 -0
  383. data/spec/integration/associations/embeds_many_spec.rb +219 -0
  384. data/spec/integration/associations/embeds_one_spec.rb +41 -0
  385. data/spec/integration/associations/foreign_key_spec.rb +107 -0
  386. data/spec/integration/associations/foreign_key_spec_models.rb +64 -0
  387. data/spec/integration/associations/has_and_belongs_to_many_spec.rb +21 -0
  388. data/spec/integration/associations/has_many_spec.rb +128 -0
  389. data/spec/integration/associations/has_one_spec.rb +272 -0
  390. data/spec/integration/associations/nested_attributes_assignment_spec.rb +115 -0
  391. data/spec/integration/associations/reverse_population_spec.rb +34 -0
  392. data/spec/integration/associations/reverse_population_spec_models.rb +36 -0
  393. data/spec/integration/associations/scope_option_spec.rb +101 -0
  394. data/spec/integration/atomic/modifiers_spec.rb +116 -0
  395. data/spec/integration/bson_regexp_raw_spec.rb +19 -0
  396. data/spec/integration/callbacks_models.rb +155 -0
  397. data/spec/integration/callbacks_spec.rb +557 -0
  398. data/spec/integration/contextual/empty_spec.rb +141 -0
  399. data/spec/integration/criteria/alias_query_spec.rb +97 -0
  400. data/spec/integration/criteria/date_field_spec.rb +40 -0
  401. data/spec/integration/criteria/default_scope_spec.rb +72 -0
  402. data/spec/integration/criteria/logical_spec.rb +105 -0
  403. data/spec/integration/criteria/range_spec.rb +357 -0
  404. data/spec/integration/criteria/raw_value_spec.rb +525 -0
  405. data/spec/integration/criteria/time_with_zone_spec.rb +142 -0
  406. data/spec/integration/discriminator_key_spec.rb +391 -0
  407. data/spec/integration/discriminator_value_spec.rb +206 -0
  408. data/spec/integration/document_spec.rb +51 -0
  409. data/spec/integration/dots_and_dollars_spec.rb +277 -0
  410. data/spec/integration/encryption_spec.rb +81 -0
  411. data/spec/integration/i18n_fallbacks_spec.rb +74 -0
  412. data/spec/integration/matcher_examples_spec.rb +765 -0
  413. data/spec/integration/matcher_operator_data/all.yml +140 -0
  414. data/spec/integration/matcher_operator_data/and.yml +93 -0
  415. data/spec/integration/matcher_operator_data/bits_all_clear.yml +159 -0
  416. data/spec/integration/matcher_operator_data/bits_all_set.yml +159 -0
  417. data/spec/integration/matcher_operator_data/bits_any_clear.yml +159 -0
  418. data/spec/integration/matcher_operator_data/bits_any_set.yml +159 -0
  419. data/spec/integration/matcher_operator_data/comment.yml +22 -0
  420. data/spec/integration/matcher_operator_data/elem_match.yml +409 -0
  421. data/spec/integration/matcher_operator_data/elem_match_expr.yml +213 -0
  422. data/spec/integration/matcher_operator_data/eq.yml +191 -0
  423. data/spec/integration/matcher_operator_data/exists.yml +213 -0
  424. data/spec/integration/matcher_operator_data/generic_op.yml +17 -0
  425. data/spec/integration/matcher_operator_data/gt.yml +132 -0
  426. data/spec/integration/matcher_operator_data/gt_types.yml +63 -0
  427. data/spec/integration/matcher_operator_data/gte.yml +132 -0
  428. data/spec/integration/matcher_operator_data/gte_types.yml +15 -0
  429. data/spec/integration/matcher_operator_data/implicit.yml +331 -0
  430. data/spec/integration/matcher_operator_data/implicit_traversal.yml +112 -0
  431. data/spec/integration/matcher_operator_data/in.yml +210 -0
  432. data/spec/integration/matcher_operator_data/invalid_op.yml +59 -0
  433. data/spec/integration/matcher_operator_data/invalid_syntax.yml +39 -0
  434. data/spec/integration/matcher_operator_data/lt.yml +132 -0
  435. data/spec/integration/matcher_operator_data/lt_types.yml +15 -0
  436. data/spec/integration/matcher_operator_data/lte.yml +132 -0
  437. data/spec/integration/matcher_operator_data/lte_types.yml +15 -0
  438. data/spec/integration/matcher_operator_data/mod.yml +55 -0
  439. data/spec/integration/matcher_operator_data/multiple.yml +29 -0
  440. data/spec/integration/matcher_operator_data/ne.yml +150 -0
  441. data/spec/integration/matcher_operator_data/ne_types.yml +15 -0
  442. data/spec/integration/matcher_operator_data/nin.yml +114 -0
  443. data/spec/integration/matcher_operator_data/nor.yml +126 -0
  444. data/spec/integration/matcher_operator_data/not.yml +196 -0
  445. data/spec/integration/matcher_operator_data/or.yml +137 -0
  446. data/spec/integration/matcher_operator_data/regex.yml +174 -0
  447. data/spec/integration/matcher_operator_data/regex_options.yml +72 -0
  448. data/spec/integration/matcher_operator_data/size.yml +174 -0
  449. data/spec/integration/matcher_operator_data/type.yml +70 -0
  450. data/spec/integration/matcher_operator_data/type_array.yml +16 -0
  451. data/spec/integration/matcher_operator_data/type_binary.yml +18 -0
  452. data/spec/integration/matcher_operator_data/type_boolean.yml +39 -0
  453. data/spec/integration/matcher_operator_data/type_code.yml +26 -0
  454. data/spec/integration/matcher_operator_data/type_code_with_scope.yml +26 -0
  455. data/spec/integration/matcher_operator_data/type_date.yml +39 -0
  456. data/spec/integration/matcher_operator_data/type_db_pointer.yml +19 -0
  457. data/spec/integration/matcher_operator_data/type_decimal.yml +41 -0
  458. data/spec/integration/matcher_operator_data/type_double.yml +15 -0
  459. data/spec/integration/matcher_operator_data/type_int32.yml +33 -0
  460. data/spec/integration/matcher_operator_data/type_int64.yml +33 -0
  461. data/spec/integration/matcher_operator_data/type_max_key.yml +17 -0
  462. data/spec/integration/matcher_operator_data/type_min_key.yml +17 -0
  463. data/spec/integration/matcher_operator_data/type_null.yml +23 -0
  464. data/spec/integration/matcher_operator_data/type_object.yml +23 -0
  465. data/spec/integration/matcher_operator_data/type_object_id.yml +25 -0
  466. data/spec/integration/matcher_operator_data/type_regex.yml +44 -0
  467. data/spec/integration/matcher_operator_data/type_string.yml +15 -0
  468. data/spec/integration/matcher_operator_data/type_symbol.yml +32 -0
  469. data/spec/integration/matcher_operator_data/type_timestamp.yml +25 -0
  470. data/spec/integration/matcher_operator_data/type_undefined.yml +17 -0
  471. data/spec/integration/matcher_operator_spec.rb +122 -0
  472. data/spec/integration/matcher_spec.rb +237 -0
  473. data/spec/integration/persistence/range_field_spec.rb +350 -0
  474. data/spec/integration/server_query_spec.rb +141 -0
  475. data/spec/integration/shardable_spec.rb +148 -0
  476. data/spec/integration/stringified_symbol_field_spec.rb +203 -0
  477. data/spec/lite_spec_helper.rb +77 -0
  478. data/spec/mongoid/association/accessors_spec.rb +1049 -0
  479. data/spec/mongoid/association/auto_save_spec.rb +403 -0
  480. data/spec/mongoid/association/builders_spec.rb +255 -0
  481. data/spec/mongoid/association/constrainable_spec.rb +117 -0
  482. data/spec/mongoid/association/counter_cache_spec.rb +452 -0
  483. data/spec/mongoid/association/depending_spec.rb +959 -0
  484. data/spec/mongoid/association/eager_spec.rb +331 -0
  485. data/spec/mongoid/association/embedded/cyclic_spec.rb +180 -0
  486. data/spec/mongoid/association/embedded/dirty_spec.rb +67 -0
  487. data/spec/mongoid/association/embedded/embedded_in/binding_spec.rb +174 -0
  488. data/spec/mongoid/association/embedded/embedded_in/buildable_spec.rb +90 -0
  489. data/spec/mongoid/association/embedded/embedded_in/proxy_spec.rb +646 -0
  490. data/spec/mongoid/association/embedded/embedded_in_spec.rb +914 -0
  491. data/spec/mongoid/association/embedded/embeds_many/binding_spec.rb +56 -0
  492. data/spec/mongoid/association/embedded/embeds_many/buildable_spec.rb +218 -0
  493. data/spec/mongoid/association/embedded/embeds_many/proxy_spec.rb +4858 -0
  494. data/spec/mongoid/association/embedded/embeds_many_models.rb +241 -0
  495. data/spec/mongoid/association/embedded/embeds_many_query_spec.rb +63 -0
  496. data/spec/mongoid/association/embedded/embeds_many_spec.rb +932 -0
  497. data/spec/mongoid/association/embedded/embeds_one/binding_spec.rb +79 -0
  498. data/spec/mongoid/association/embedded/embeds_one/buildable_spec.rb +106 -0
  499. data/spec/mongoid/association/embedded/embeds_one/proxy_spec.rb +1038 -0
  500. data/spec/mongoid/association/embedded/embeds_one_dnl_models.rb +8 -0
  501. data/spec/mongoid/association/embedded/embeds_one_models.rb +77 -0
  502. data/spec/mongoid/association/embedded/embeds_one_query_spec.rb +28 -0
  503. data/spec/mongoid/association/embedded/embeds_one_spec.rb +984 -0
  504. data/spec/mongoid/association/macros_spec.rb +1116 -0
  505. data/spec/mongoid/association/nested/many_spec.rb +232 -0
  506. data/spec/mongoid/association/nested/one_spec.rb +253 -0
  507. data/spec/mongoid/association/options_spec.rb +1323 -0
  508. data/spec/mongoid/association/polymorphic_spec.rb +162 -0
  509. data/spec/mongoid/association/referenced/belongs_to/binding_spec.rb +244 -0
  510. data/spec/mongoid/association/referenced/belongs_to/buildable_spec.rb +292 -0
  511. data/spec/mongoid/association/referenced/belongs_to/eager_spec.rb +412 -0
  512. data/spec/mongoid/association/referenced/belongs_to/proxy_spec.rb +1388 -0
  513. data/spec/mongoid/association/referenced/belongs_to_models.rb +11 -0
  514. data/spec/mongoid/association/referenced/belongs_to_query_spec.rb +57 -0
  515. data/spec/mongoid/association/referenced/belongs_to_spec.rb +2030 -0
  516. data/spec/mongoid/association/referenced/has_and_belongs_to_many/binding_spec.rb +180 -0
  517. data/spec/mongoid/association/referenced/has_and_belongs_to_many/buildable_spec.rb +148 -0
  518. data/spec/mongoid/association/referenced/has_and_belongs_to_many/eager_spec.rb +196 -0
  519. data/spec/mongoid/association/referenced/has_and_belongs_to_many/proxy_persistence_spec.rb +76 -0
  520. data/spec/mongoid/association/referenced/has_and_belongs_to_many/proxy_spec.rb +3812 -0
  521. data/spec/mongoid/association/referenced/has_and_belongs_to_many_models.rb +92 -0
  522. data/spec/mongoid/association/referenced/has_and_belongs_to_many_query_spec.rb +39 -0
  523. data/spec/mongoid/association/referenced/has_and_belongs_to_many_spec.rb +1104 -0
  524. data/spec/mongoid/association/referenced/has_many/binding_spec.rb +155 -0
  525. data/spec/mongoid/association/referenced/has_many/buildable_spec.rb +251 -0
  526. data/spec/mongoid/association/referenced/has_many/eager_spec.rb +290 -0
  527. data/spec/mongoid/association/referenced/has_many/enumerable_spec.rb +2232 -0
  528. data/spec/mongoid/association/referenced/has_many/proxy_query_spec.rb +23 -0
  529. data/spec/mongoid/association/referenced/has_many/proxy_spec.rb +4118 -0
  530. data/spec/mongoid/association/referenced/has_many_models.rb +97 -0
  531. data/spec/mongoid/association/referenced/has_many_query_spec.rb +37 -0
  532. data/spec/mongoid/association/referenced/has_many_spec.rb +1273 -0
  533. data/spec/mongoid/association/referenced/has_one/binding_spec.rb +133 -0
  534. data/spec/mongoid/association/referenced/has_one/buildable_spec.rb +159 -0
  535. data/spec/mongoid/association/referenced/has_one/eager_spec.rb +193 -0
  536. data/spec/mongoid/association/referenced/has_one/proxy_spec.rb +1248 -0
  537. data/spec/mongoid/association/referenced/has_one_models.rb +113 -0
  538. data/spec/mongoid/association/referenced/has_one_query_spec.rb +37 -0
  539. data/spec/mongoid/association/referenced/has_one_spec.rb +1383 -0
  540. data/spec/mongoid/association/reflections_spec.rb +92 -0
  541. data/spec/mongoid/association/syncable_spec.rb +513 -0
  542. data/spec/mongoid/association_spec.rb +191 -0
  543. data/spec/mongoid/atomic/modifiers_spec.rb +505 -0
  544. data/spec/mongoid/atomic/paths/embedded/many_spec.rb +120 -0
  545. data/spec/mongoid/atomic/paths/embedded/one_spec.rb +112 -0
  546. data/spec/mongoid/atomic/paths/root_spec.rb +50 -0
  547. data/spec/mongoid/atomic/paths_spec.rb +350 -0
  548. data/spec/mongoid/atomic_spec.rb +412 -0
  549. data/spec/mongoid/attributes/dynamic_spec.rb +152 -0
  550. data/spec/mongoid/attributes/nested_spec.rb +5000 -0
  551. data/spec/mongoid/attributes/nested_spec_models.rb +48 -0
  552. data/spec/mongoid/attributes/projector_data/embedded.yml +105 -0
  553. data/spec/mongoid/attributes/projector_data/fields.yml +93 -0
  554. data/spec/mongoid/attributes/projector_spec.rb +40 -0
  555. data/spec/mongoid/attributes/readonly_spec.rb +271 -0
  556. data/spec/mongoid/attributes_spec.rb +2709 -0
  557. data/spec/mongoid/cacheable_spec.rb +114 -0
  558. data/spec/mongoid/changeable_spec.rb +2189 -0
  559. data/spec/mongoid/clients/factory_spec.rb +471 -0
  560. data/spec/mongoid/clients/options_spec.rb +521 -0
  561. data/spec/mongoid/clients/sessions_spec.rb +297 -0
  562. data/spec/mongoid/clients/transactions_spec.rb +1077 -0
  563. data/spec/mongoid/clients/transactions_spec_models.rb +114 -0
  564. data/spec/mongoid/clients_spec.rb +1218 -0
  565. data/spec/mongoid/collection_configurable_spec.rb +158 -0
  566. data/spec/mongoid/composable_spec.rb +33 -0
  567. data/spec/mongoid/config/defaults_spec.rb +92 -0
  568. data/spec/mongoid/config/encryption_spec.rb +150 -0
  569. data/spec/mongoid/config/environment_spec.rb +175 -0
  570. data/spec/mongoid/config/introspection_spec.rb +113 -0
  571. data/spec/mongoid/config/options_spec.rb +75 -0
  572. data/spec/mongoid/config_spec.rb +861 -0
  573. data/spec/mongoid/contextual/aggregable/memory_spec.rb +573 -0
  574. data/spec/mongoid/contextual/aggregable/memory_table.yml +88 -0
  575. data/spec/mongoid/contextual/aggregable/memory_table_spec.rb +62 -0
  576. data/spec/mongoid/contextual/aggregable/mongo_spec.rb +595 -0
  577. data/spec/mongoid/contextual/aggregable/none_spec.rb +48 -0
  578. data/spec/mongoid/contextual/atomic_spec.rb +1142 -0
  579. data/spec/mongoid/contextual/geo_near_spec.rb +471 -0
  580. data/spec/mongoid/contextual/map_reduce_spec.rb +459 -0
  581. data/spec/mongoid/contextual/memory_spec.rb +2931 -0
  582. data/spec/mongoid/contextual/mongo/documents_loader_spec.rb +193 -0
  583. data/spec/mongoid/contextual/mongo_spec.rb +4534 -0
  584. data/spec/mongoid/contextual/none_spec.rb +170 -0
  585. data/spec/mongoid/copyable_spec.rb +1142 -0
  586. data/spec/mongoid/copyable_spec_models.rb +47 -0
  587. data/spec/mongoid/criteria/findable_spec.rb +1132 -0
  588. data/spec/mongoid/criteria/includable_spec.rb +1492 -0
  589. data/spec/mongoid/criteria/includable_spec_models.rb +54 -0
  590. data/spec/mongoid/criteria/inspectable_spec.rb +29 -0
  591. data/spec/mongoid/criteria/marshalable_spec.rb +47 -0
  592. data/spec/mongoid/criteria/modifiable_spec.rb +1812 -0
  593. data/spec/mongoid/criteria/options_spec.rb +31 -0
  594. data/spec/mongoid/criteria/queryable/aggregable_spec.rb +372 -0
  595. data/spec/mongoid/criteria/queryable/expandable_spec.rb +61 -0
  596. data/spec/mongoid/criteria/queryable/extensions/array_spec.rb +513 -0
  597. data/spec/mongoid/criteria/queryable/extensions/big_decimal_spec.rb +169 -0
  598. data/spec/mongoid/criteria/queryable/extensions/boolean_spec.rb +215 -0
  599. data/spec/mongoid/criteria/queryable/extensions/date_spec.rb +352 -0
  600. data/spec/mongoid/criteria/queryable/extensions/date_time_spec.rb +434 -0
  601. data/spec/mongoid/criteria/queryable/extensions/float_spec.rb +67 -0
  602. data/spec/mongoid/criteria/queryable/extensions/hash_spec.rb +314 -0
  603. data/spec/mongoid/criteria/queryable/extensions/integer_spec.rb +67 -0
  604. data/spec/mongoid/criteria/queryable/extensions/nil_class_spec.rb +79 -0
  605. data/spec/mongoid/criteria/queryable/extensions/numeric_spec.rb +119 -0
  606. data/spec/mongoid/criteria/queryable/extensions/object_spec.rb +110 -0
  607. data/spec/mongoid/criteria/queryable/extensions/range_spec.rb +370 -0
  608. data/spec/mongoid/criteria/queryable/extensions/regexp_raw_spec.rb +91 -0
  609. data/spec/mongoid/criteria/queryable/extensions/regexp_spec.rb +92 -0
  610. data/spec/mongoid/criteria/queryable/extensions/set_spec.rb +41 -0
  611. data/spec/mongoid/criteria/queryable/extensions/string_spec.rb +264 -0
  612. data/spec/mongoid/criteria/queryable/extensions/symbol_spec.rb +110 -0
  613. data/spec/mongoid/criteria/queryable/extensions/time_spec.rb +406 -0
  614. data/spec/mongoid/criteria/queryable/extensions/time_with_zone_spec.rb +387 -0
  615. data/spec/mongoid/criteria/queryable/key_spec.rb +96 -0
  616. data/spec/mongoid/criteria/queryable/mergeable_spec.rb +182 -0
  617. data/spec/mongoid/criteria/queryable/optional_spec.rb +1332 -0
  618. data/spec/mongoid/criteria/queryable/options_spec.rb +362 -0
  619. data/spec/mongoid/criteria/queryable/pipeline_spec.rb +214 -0
  620. data/spec/mongoid/criteria/queryable/queryable_spec.rb +139 -0
  621. data/spec/mongoid/criteria/queryable/selectable_logical_spec.rb +2538 -0
  622. data/spec/mongoid/criteria/queryable/selectable_shared_examples.rb +38 -0
  623. data/spec/mongoid/criteria/queryable/selectable_spec.rb +2327 -0
  624. data/spec/mongoid/criteria/queryable/selectable_where_spec.rb +589 -0
  625. data/spec/mongoid/criteria/queryable/selector_spec.rb +990 -0
  626. data/spec/mongoid/criteria/queryable/smash_spec.rb +32 -0
  627. data/spec/mongoid/criteria/queryable/storable_spec.rb +203 -0
  628. data/spec/mongoid/criteria/scopable_spec.rb +601 -0
  629. data/spec/mongoid/criteria/translator_spec.rb +132 -0
  630. data/spec/mongoid/criteria_projection_spec.rb +406 -0
  631. data/spec/mongoid/criteria_spec.rb +3238 -0
  632. data/spec/mongoid/document_fields_spec.rb +262 -0
  633. data/spec/mongoid/document_persistence_context_spec.rb +32 -0
  634. data/spec/mongoid/document_query_spec.rb +89 -0
  635. data/spec/mongoid/document_spec.rb +1365 -0
  636. data/spec/mongoid/equality_spec.rb +241 -0
  637. data/spec/mongoid/errors/ambiguous_relationship_spec.rb +31 -0
  638. data/spec/mongoid/errors/attribute_not_loaded_spec.rb +31 -0
  639. data/spec/mongoid/errors/callback_spec.rb +31 -0
  640. data/spec/mongoid/errors/delete_restriction_spec.rb +31 -0
  641. data/spec/mongoid/errors/document_not_destroyed_spec.rb +35 -0
  642. data/spec/mongoid/errors/document_not_found_spec.rb +182 -0
  643. data/spec/mongoid/errors/invalid_collection_spec.rb +38 -0
  644. data/spec/mongoid/errors/invalid_config_file_spec.rb +31 -0
  645. data/spec/mongoid/errors/invalid_config_option_spec.rb +31 -0
  646. data/spec/mongoid/errors/invalid_field_option_spec.rb +31 -0
  647. data/spec/mongoid/errors/invalid_field_spec.rb +39 -0
  648. data/spec/mongoid/errors/invalid_field_type_spec.rb +55 -0
  649. data/spec/mongoid/errors/invalid_find_spec.rb +31 -0
  650. data/spec/mongoid/errors/invalid_includes_spec.rb +42 -0
  651. data/spec/mongoid/errors/invalid_index_spec.rb +31 -0
  652. data/spec/mongoid/errors/invalid_options_spec.rb +31 -0
  653. data/spec/mongoid/errors/invalid_path_spec.rb +25 -0
  654. data/spec/mongoid/errors/invalid_relation_spec.rb +39 -0
  655. data/spec/mongoid/errors/invalid_scope_spec.rb +31 -0
  656. data/spec/mongoid/errors/invalid_set_polymorphic_relation_spec.rb +19 -0
  657. data/spec/mongoid/errors/invalid_storage_options_spec.rb +31 -0
  658. data/spec/mongoid/errors/invalid_time_spec.rb +31 -0
  659. data/spec/mongoid/errors/inverse_not_found_spec.rb +31 -0
  660. data/spec/mongoid/errors/mixed_client_configuration_spec.rb +31 -0
  661. data/spec/mongoid/errors/mixed_relations_spec.rb +31 -0
  662. data/spec/mongoid/errors/mongoid_error_spec.rb +83 -0
  663. data/spec/mongoid/errors/nested_attributes_metadata_not_found_spec.rb +31 -0
  664. data/spec/mongoid/errors/no_client_config_spec.rb +31 -0
  665. data/spec/mongoid/errors/no_client_database_spec.rb +31 -0
  666. data/spec/mongoid/errors/no_client_hosts_spec.rb +31 -0
  667. data/spec/mongoid/errors/no_clients_config_spec.rb +31 -0
  668. data/spec/mongoid/errors/no_environment_spec.rb +31 -0
  669. data/spec/mongoid/errors/no_map_reduce_output_spec.rb +31 -0
  670. data/spec/mongoid/errors/no_metadata_spec.rb +25 -0
  671. data/spec/mongoid/errors/no_parent_spec.rb +31 -0
  672. data/spec/mongoid/errors/readonly_attribute_spec.rb +31 -0
  673. data/spec/mongoid/errors/readonly_document_spec.rb +31 -0
  674. data/spec/mongoid/errors/scope_overwrite_spec.rb +31 -0
  675. data/spec/mongoid/errors/too_many_nested_attribute_records_spec.rb +31 -0
  676. data/spec/mongoid/errors/unknown_attribute_spec.rb +31 -0
  677. data/spec/mongoid/errors/unsaved_document_spec.rb +39 -0
  678. data/spec/mongoid/errors/unsupported_javascript_spec.rb +31 -0
  679. data/spec/mongoid/errors/validations_spec.rb +47 -0
  680. data/spec/mongoid/extensions/array_spec.rb +620 -0
  681. data/spec/mongoid/extensions/big_decimal_spec.rb +908 -0
  682. data/spec/mongoid/extensions/binary_spec.rb +97 -0
  683. data/spec/mongoid/extensions/boolean_spec.rb +137 -0
  684. data/spec/mongoid/extensions/date_class_mongoize_spec.rb +339 -0
  685. data/spec/mongoid/extensions/date_spec.rb +131 -0
  686. data/spec/mongoid/extensions/date_time_spec.rb +107 -0
  687. data/spec/mongoid/extensions/decimal128_spec.rb +46 -0
  688. data/spec/mongoid/extensions/false_class_spec.rb +44 -0
  689. data/spec/mongoid/extensions/float_spec.rb +140 -0
  690. data/spec/mongoid/extensions/hash_spec.rb +518 -0
  691. data/spec/mongoid/extensions/integer_spec.rb +135 -0
  692. data/spec/mongoid/extensions/module_spec.rb +44 -0
  693. data/spec/mongoid/extensions/nil_class_spec.rb +13 -0
  694. data/spec/mongoid/extensions/object_id_spec.rb +948 -0
  695. data/spec/mongoid/extensions/object_spec.rb +288 -0
  696. data/spec/mongoid/extensions/range_spec.rb +364 -0
  697. data/spec/mongoid/extensions/raw_value_spec.rb +66 -0
  698. data/spec/mongoid/extensions/regexp_spec.rb +97 -0
  699. data/spec/mongoid/extensions/set_spec.rb +141 -0
  700. data/spec/mongoid/extensions/string_spec.rb +387 -0
  701. data/spec/mongoid/extensions/stringified_symbol_spec.rb +84 -0
  702. data/spec/mongoid/extensions/symbol_spec.rb +71 -0
  703. data/spec/mongoid/extensions/time_spec.rb +706 -0
  704. data/spec/mongoid/extensions/time_with_zone_spec.rb +361 -0
  705. data/spec/mongoid/extensions/true_class_spec.rb +44 -0
  706. data/spec/mongoid/factory_spec.rb +534 -0
  707. data/spec/mongoid/fields/foreign_key_spec.rb +718 -0
  708. data/spec/mongoid/fields/localized_spec.rb +571 -0
  709. data/spec/mongoid/fields/standard_spec.rb +168 -0
  710. data/spec/mongoid/fields_spec.rb +2062 -0
  711. data/spec/mongoid/findable_spec.rb +929 -0
  712. data/spec/mongoid/indexable/specification_spec.rb +247 -0
  713. data/spec/mongoid/indexable_spec.rb +962 -0
  714. data/spec/mongoid/inspectable_spec.rb +86 -0
  715. data/spec/mongoid/interceptable_spec.rb +2373 -0
  716. data/spec/mongoid/interceptable_spec_models.rb +307 -0
  717. data/spec/mongoid/loading_spec.rb +109 -0
  718. data/spec/mongoid/loggable_spec.rb +23 -0
  719. data/spec/mongoid/matcher/extract_attribute_data/numeric_keys.yml +104 -0
  720. data/spec/mongoid/matcher/extract_attribute_data/traversal.yml +239 -0
  721. data/spec/mongoid/matcher/extract_attribute_spec.rb +36 -0
  722. data/spec/mongoid/mongoizable_spec.rb +285 -0
  723. data/spec/mongoid/persistable/creatable_spec.rb +662 -0
  724. data/spec/mongoid/persistable/deletable_spec.rb +580 -0
  725. data/spec/mongoid/persistable/destroyable_spec.rb +652 -0
  726. data/spec/mongoid/persistable/incrementable_spec.rb +278 -0
  727. data/spec/mongoid/persistable/logical_spec.rb +196 -0
  728. data/spec/mongoid/persistable/maxable_spec.rb +146 -0
  729. data/spec/mongoid/persistable/minable_spec.rb +146 -0
  730. data/spec/mongoid/persistable/multipliable_spec.rb +226 -0
  731. data/spec/mongoid/persistable/poppable_spec.rb +167 -0
  732. data/spec/mongoid/persistable/pullable_spec.rb +330 -0
  733. data/spec/mongoid/persistable/pushable_spec.rb +425 -0
  734. data/spec/mongoid/persistable/renamable_spec.rb +187 -0
  735. data/spec/mongoid/persistable/savable_spec.rb +780 -0
  736. data/spec/mongoid/persistable/settable_spec.rb +581 -0
  737. data/spec/mongoid/persistable/unsettable_spec.rb +207 -0
  738. data/spec/mongoid/persistable/updatable_spec.rb +752 -0
  739. data/spec/mongoid/persistable/upsertable_spec.rb +228 -0
  740. data/spec/mongoid/persistable_spec.rb +321 -0
  741. data/spec/mongoid/persistence_context_spec.rb +695 -0
  742. data/spec/mongoid/positional_spec.rb +223 -0
  743. data/spec/mongoid/query_cache_middleware_spec.rb +50 -0
  744. data/spec/mongoid/query_cache_spec.rb +832 -0
  745. data/spec/mongoid/railties/console_sandbox_spec.rb +43 -0
  746. data/spec/mongoid/relations/proxy_spec.rb +126 -0
  747. data/spec/mongoid/reloadable_spec.rb +629 -0
  748. data/spec/mongoid/scopable_spec.rb +1312 -0
  749. data/spec/mongoid/selectable_spec.rb +136 -0
  750. data/spec/mongoid/serializable_spec.rb +942 -0
  751. data/spec/mongoid/shardable_models.rb +75 -0
  752. data/spec/mongoid/shardable_spec.rb +296 -0
  753. data/spec/mongoid/stateful_spec.rb +271 -0
  754. data/spec/mongoid/tasks/database_rake_spec.rb +370 -0
  755. data/spec/mongoid/tasks/database_spec.rb +308 -0
  756. data/spec/mongoid/tasks/encryption_spec.rb +147 -0
  757. data/spec/mongoid/threaded_spec.rb +343 -0
  758. data/spec/mongoid/timestamps/created/short_spec.rb +53 -0
  759. data/spec/mongoid/timestamps/created_spec.rb +46 -0
  760. data/spec/mongoid/timestamps/timeless_spec.rb +149 -0
  761. data/spec/mongoid/timestamps/updated/short_spec.rb +92 -0
  762. data/spec/mongoid/timestamps/updated_spec.rb +84 -0
  763. data/spec/mongoid/timestamps_spec.rb +498 -0
  764. data/spec/mongoid/timestamps_spec_models.rb +67 -0
  765. data/spec/mongoid/touchable_spec.rb +1403 -0
  766. data/spec/mongoid/touchable_spec_models.rb +153 -0
  767. data/spec/mongoid/traversable_spec.rb +1395 -0
  768. data/spec/mongoid/validatable/associated_spec.rb +208 -0
  769. data/spec/mongoid/validatable/format_spec.rb +85 -0
  770. data/spec/mongoid/validatable/length_spec.rb +225 -0
  771. data/spec/mongoid/validatable/numericality_spec.rb +32 -0
  772. data/spec/mongoid/validatable/presence_spec.rb +592 -0
  773. data/spec/mongoid/validatable/uniqueness_spec.rb +2548 -0
  774. data/spec/mongoid/validatable_spec.rb +327 -0
  775. data/spec/mongoid/warnings_spec.rb +35 -0
  776. data/spec/mongoid_spec.rb +98 -0
  777. data/spec/rails/controller_extension/controller_runtime_spec.rb +112 -0
  778. data/spec/rails/mongoid_spec.rb +53 -0
  779. data/spec/shared/LICENSE +20 -0
  780. data/spec/shared/bin/get-mongodb-download-url +17 -0
  781. data/spec/shared/bin/s3-copy +45 -0
  782. data/spec/shared/bin/s3-upload +69 -0
  783. data/spec/shared/lib/mrss/child_process_helper.rb +80 -0
  784. data/spec/shared/lib/mrss/cluster_config.rb +231 -0
  785. data/spec/shared/lib/mrss/constraints.rb +378 -0
  786. data/spec/shared/lib/mrss/docker_runner.rb +291 -0
  787. data/spec/shared/lib/mrss/eg_config_utils.rb +51 -0
  788. data/spec/shared/lib/mrss/event_subscriber.rb +210 -0
  789. data/spec/shared/lib/mrss/lite_constraints.rb +238 -0
  790. data/spec/shared/lib/mrss/server_version_registry.rb +120 -0
  791. data/spec/shared/lib/mrss/session_registry.rb +69 -0
  792. data/spec/shared/lib/mrss/session_registry_legacy.rb +60 -0
  793. data/spec/shared/lib/mrss/spec_organizer.rb +179 -0
  794. data/spec/shared/lib/mrss/utils.rb +15 -0
  795. data/spec/shared/share/Dockerfile.erb +325 -0
  796. data/spec/shared/share/haproxy-1.conf +16 -0
  797. data/spec/shared/share/haproxy-2.conf +17 -0
  798. data/spec/shared/shlib/config.sh +27 -0
  799. data/spec/shared/shlib/distro.sh +74 -0
  800. data/spec/shared/shlib/server.sh +392 -0
  801. data/spec/shared/shlib/set_env.sh +169 -0
  802. data/spec/spec_helper.rb +210 -0
  803. data/spec/support/authorization.rb +15 -0
  804. data/spec/support/client_registry.rb +9 -0
  805. data/spec/support/constraints.rb +77 -0
  806. data/spec/support/crypt/models.rb +43 -0
  807. data/spec/support/crypt.rb +79 -0
  808. data/spec/support/expectations.rb +32 -0
  809. data/spec/support/feature_sandbox.rb +71 -0
  810. data/spec/support/helpers.rb +11 -0
  811. data/spec/support/immutable_ids.rb +118 -0
  812. data/spec/support/macros.rb +129 -0
  813. data/spec/support/models/account.rb +38 -0
  814. data/spec/support/models/acolyte.rb +19 -0
  815. data/spec/support/models/actor.rb +20 -0
  816. data/spec/support/models/actress.rb +4 -0
  817. data/spec/support/models/address.rb +87 -0
  818. data/spec/support/models/address_component.rb +7 -0
  819. data/spec/support/models/address_number.rb +8 -0
  820. data/spec/support/models/agency.rb +7 -0
  821. data/spec/support/models/agent.rb +18 -0
  822. data/spec/support/models/album.rb +20 -0
  823. data/spec/support/models/alert.rb +9 -0
  824. data/spec/support/models/animal.rb +28 -0
  825. data/spec/support/models/answer.rb +8 -0
  826. data/spec/support/models/appointment.rb +9 -0
  827. data/spec/support/models/armrest.rb +9 -0
  828. data/spec/support/models/array_field.rb +7 -0
  829. data/spec/support/models/article.rb +14 -0
  830. data/spec/support/models/artist.rb +90 -0
  831. data/spec/support/models/artwork.rb +6 -0
  832. data/spec/support/models/audible_sound.rb +3 -0
  833. data/spec/support/models/audio.rb +7 -0
  834. data/spec/support/models/augmentation.rb +25 -0
  835. data/spec/support/models/author.rb +8 -0
  836. data/spec/support/models/baby.rb +6 -0
  837. data/spec/support/models/band.rb +45 -0
  838. data/spec/support/models/bar.rb +12 -0
  839. data/spec/support/models/basic.rb +8 -0
  840. data/spec/support/models/bed.rb +3 -0
  841. data/spec/support/models/big_palette.rb +4 -0
  842. data/spec/support/models/birthday.rb +15 -0
  843. data/spec/support/models/bolt.rb +7 -0
  844. data/spec/support/models/bomb.rb +6 -0
  845. data/spec/support/models/book.rb +19 -0
  846. data/spec/support/models/breed.rb +6 -0
  847. data/spec/support/models/browser.rb +8 -0
  848. data/spec/support/models/building.rb +10 -0
  849. data/spec/support/models/building_address.rb +9 -0
  850. data/spec/support/models/bus.rb +9 -0
  851. data/spec/support/models/business.rb +7 -0
  852. data/spec/support/models/callback_test.rb +11 -0
  853. data/spec/support/models/canvas.rb +27 -0
  854. data/spec/support/models/car.rb +3 -0
  855. data/spec/support/models/cat.rb +10 -0
  856. data/spec/support/models/catalog.rb +24 -0
  857. data/spec/support/models/category.rb +10 -0
  858. data/spec/support/models/child.rb +6 -0
  859. data/spec/support/models/child_doc.rb +24 -0
  860. data/spec/support/models/church.rb +8 -0
  861. data/spec/support/models/circle.rb +5 -0
  862. data/spec/support/models/circuit.rb +6 -0
  863. data/spec/support/models/circus.rb +12 -0
  864. data/spec/support/models/code.rb +15 -0
  865. data/spec/support/models/coding/pull_request.rb +11 -0
  866. data/spec/support/models/coding.rb +3 -0
  867. data/spec/support/models/comment.rb +18 -0
  868. data/spec/support/models/company.rb +7 -0
  869. data/spec/support/models/consumption_period.rb +9 -0
  870. data/spec/support/models/contextable_item.rb +7 -0
  871. data/spec/support/models/contractor.rb +7 -0
  872. data/spec/support/models/cookie.rb +8 -0
  873. data/spec/support/models/country_code.rb +12 -0
  874. data/spec/support/models/courier_job.rb +6 -0
  875. data/spec/support/models/cover.rb +10 -0
  876. data/spec/support/models/crate.rb +12 -0
  877. data/spec/support/models/customer.rb +10 -0
  878. data/spec/support/models/customer_address.rb +11 -0
  879. data/spec/support/models/deed.rb +7 -0
  880. data/spec/support/models/definition.rb +11 -0
  881. data/spec/support/models/delegating_patient.rb +15 -0
  882. data/spec/support/models/description.rb +13 -0
  883. data/spec/support/models/dictionary.rb +18 -0
  884. data/spec/support/models/division.rb +12 -0
  885. data/spec/support/models/doctor.rb +14 -0
  886. data/spec/support/models/dog.rb +9 -0
  887. data/spec/support/models/dokument.rb +8 -0
  888. data/spec/support/models/draft.rb +11 -0
  889. data/spec/support/models/dragon.rb +6 -0
  890. data/spec/support/models/driver.rb +9 -0
  891. data/spec/support/models/drug.rb +8 -0
  892. data/spec/support/models/dungeon.rb +6 -0
  893. data/spec/support/models/edit.rb +7 -0
  894. data/spec/support/models/email.rb +8 -0
  895. data/spec/support/models/employer.rb +7 -0
  896. data/spec/support/models/entry.rb +8 -0
  897. data/spec/support/models/eraser.rb +3 -0
  898. data/spec/support/models/even.rb +9 -0
  899. data/spec/support/models/event.rb +24 -0
  900. data/spec/support/models/exhibition.rb +6 -0
  901. data/spec/support/models/exhibitor.rb +8 -0
  902. data/spec/support/models/explosion.rb +6 -0
  903. data/spec/support/models/eye.rb +11 -0
  904. data/spec/support/models/eye_bowl.rb +11 -0
  905. data/spec/support/models/face.rb +10 -0
  906. data/spec/support/models/fanatic.rb +8 -0
  907. data/spec/support/models/favorite.rb +14 -0
  908. data/spec/support/models/filesystem.rb +7 -0
  909. data/spec/support/models/fire_hydrant.rb +8 -0
  910. data/spec/support/models/firefox.rb +6 -0
  911. data/spec/support/models/fish.rb +9 -0
  912. data/spec/support/models/folder.rb +9 -0
  913. data/spec/support/models/folder_item.rb +11 -0
  914. data/spec/support/models/fruits.rb +36 -0
  915. data/spec/support/models/game.rb +21 -0
  916. data/spec/support/models/ghost.rb +9 -0
  917. data/spec/support/models/guitar.rb +4 -0
  918. data/spec/support/models/hole.rb +12 -0
  919. data/spec/support/models/home.rb +6 -0
  920. data/spec/support/models/house.rb +8 -0
  921. data/spec/support/models/html_writer.rb +5 -0
  922. data/spec/support/models/id_key.rb +8 -0
  923. data/spec/support/models/idnodef.rb +7 -0
  924. data/spec/support/models/image.rb +24 -0
  925. data/spec/support/models/implant.rb +27 -0
  926. data/spec/support/models/instrument.rb +8 -0
  927. data/spec/support/models/item.rb +10 -0
  928. data/spec/support/models/jar.rb +9 -0
  929. data/spec/support/models/kaleidoscope.rb +8 -0
  930. data/spec/support/models/kangaroo.rb +6 -0
  931. data/spec/support/models/label.rb +52 -0
  932. data/spec/support/models/language.rb +7 -0
  933. data/spec/support/models/lat_lng.rb +17 -0
  934. data/spec/support/models/league.rb +13 -0
  935. data/spec/support/models/learner.rb +4 -0
  936. data/spec/support/models/line_item.rb +8 -0
  937. data/spec/support/models/location.rb +10 -0
  938. data/spec/support/models/login.rb +10 -0
  939. data/spec/support/models/manufacturer.rb +9 -0
  940. data/spec/support/models/meat.rb +6 -0
  941. data/spec/support/models/membership.rb +7 -0
  942. data/spec/support/models/message.rb +13 -0
  943. data/spec/support/models/minim.rb +6 -0
  944. data/spec/support/models/mixed_drink.rb +6 -0
  945. data/spec/support/models/mop.rb +24 -0
  946. data/spec/support/models/movie.rb +15 -0
  947. data/spec/support/models/my_hash.rb +4 -0
  948. data/spec/support/models/name.rb +26 -0
  949. data/spec/support/models/name_only.rb +8 -0
  950. data/spec/support/models/node.rb +7 -0
  951. data/spec/support/models/note.rb +19 -0
  952. data/spec/support/models/nut.rb +7 -0
  953. data/spec/support/models/odd.rb +9 -0
  954. data/spec/support/models/order.rb +12 -0
  955. data/spec/support/models/ordered_post.rb +13 -0
  956. data/spec/support/models/ordered_preference.rb +8 -0
  957. data/spec/support/models/oscar.rb +16 -0
  958. data/spec/support/models/other_owner_object.rb +4 -0
  959. data/spec/support/models/override.rb +18 -0
  960. data/spec/support/models/ownable.rb +8 -0
  961. data/spec/support/models/owner.rb +10 -0
  962. data/spec/support/models/pack.rb +5 -0
  963. data/spec/support/models/page.rb +18 -0
  964. data/spec/support/models/page_question.rb +6 -0
  965. data/spec/support/models/palette.rb +9 -0
  966. data/spec/support/models/parent.rb +7 -0
  967. data/spec/support/models/parent_doc.rb +8 -0
  968. data/spec/support/models/passport.rb +22 -0
  969. data/spec/support/models/patient.rb +11 -0
  970. data/spec/support/models/pdf_writer.rb +5 -0
  971. data/spec/support/models/pencil.rb +3 -0
  972. data/spec/support/models/person.rb +231 -0
  973. data/spec/support/models/pet.rb +25 -0
  974. data/spec/support/models/pet_owner.rb +8 -0
  975. data/spec/support/models/phone.rb +13 -0
  976. data/spec/support/models/piano.rb +4 -0
  977. data/spec/support/models/pizza.rb +9 -0
  978. data/spec/support/models/player.rb +39 -0
  979. data/spec/support/models/post.rb +52 -0
  980. data/spec/support/models/post_genre.rb +8 -0
  981. data/spec/support/models/powerup.rb +25 -0
  982. data/spec/support/models/preference.rb +11 -0
  983. data/spec/support/models/princess.rb +12 -0
  984. data/spec/support/models/product.rb +20 -0
  985. data/spec/support/models/profile.rb +17 -0
  986. data/spec/support/models/pronunciation.rb +7 -0
  987. data/spec/support/models/pub.rb +8 -0
  988. data/spec/support/models/publication/encyclopedia.rb +11 -0
  989. data/spec/support/models/publication/review.rb +13 -0
  990. data/spec/support/models/publication.rb +4 -0
  991. data/spec/support/models/purchase.rb +6 -0
  992. data/spec/support/models/purchased_item.rb +10 -0
  993. data/spec/support/models/question.rb +10 -0
  994. data/spec/support/models/quiz.rb +9 -0
  995. data/spec/support/models/rating.rb +10 -0
  996. data/spec/support/models/record.rb +54 -0
  997. data/spec/support/models/registry.rb +7 -0
  998. data/spec/support/models/role.rb +9 -0
  999. data/spec/support/models/root_category.rb +6 -0
  1000. data/spec/support/models/sandbox/app/models/app_models_message.rb +3 -0
  1001. data/spec/support/models/sandbox/lib/models/lib_models_message.rb +3 -0
  1002. data/spec/support/models/sandbox/sandbox_message.rb +3 -0
  1003. data/spec/support/models/sandbox/sandbox_user.rb +3 -0
  1004. data/spec/support/models/sandbox/subdir/sandbox_comment.rb +3 -0
  1005. data/spec/support/models/sandwich.rb +11 -0
  1006. data/spec/support/models/scheduler.rb +9 -0
  1007. data/spec/support/models/school.rb +14 -0
  1008. data/spec/support/models/scribe.rb +7 -0
  1009. data/spec/support/models/sealer.rb +7 -0
  1010. data/spec/support/models/seat.rb +24 -0
  1011. data/spec/support/models/seo.rb +9 -0
  1012. data/spec/support/models/series.rb +7 -0
  1013. data/spec/support/models/server.rb +15 -0
  1014. data/spec/support/models/service.rb +24 -0
  1015. data/spec/support/models/shape.rb +14 -0
  1016. data/spec/support/models/shelf.rb +7 -0
  1017. data/spec/support/models/shield.rb +18 -0
  1018. data/spec/support/models/shipment_address.rb +5 -0
  1019. data/spec/support/models/shipping_container.rb +7 -0
  1020. data/spec/support/models/shipping_pack.rb +5 -0
  1021. data/spec/support/models/shirt.rb +11 -0
  1022. data/spec/support/models/shop.rb +8 -0
  1023. data/spec/support/models/short_agent.rb +6 -0
  1024. data/spec/support/models/short_quiz.rb +7 -0
  1025. data/spec/support/models/simple.rb +7 -0
  1026. data/spec/support/models/slave.rb +8 -0
  1027. data/spec/support/models/song.rb +10 -0
  1028. data/spec/support/models/sound.rb +7 -0
  1029. data/spec/support/models/spacer.rb +7 -0
  1030. data/spec/support/models/square.rb +6 -0
  1031. data/spec/support/models/staff.rb +9 -0
  1032. data/spec/support/models/store_as_dup_test1.rb +7 -0
  1033. data/spec/support/models/store_as_dup_test2.rb +7 -0
  1034. data/spec/support/models/store_as_dup_test3.rb +7 -0
  1035. data/spec/support/models/store_as_dup_test4.rb +7 -0
  1036. data/spec/support/models/strategy.rb +5 -0
  1037. data/spec/support/models/student.rb +14 -0
  1038. data/spec/support/models/sub_item.rb +5 -0
  1039. data/spec/support/models/subscription.rb +7 -0
  1040. data/spec/support/models/survey.rb +7 -0
  1041. data/spec/support/models/symptom.rb +8 -0
  1042. data/spec/support/models/system_role.rb +7 -0
  1043. data/spec/support/models/tag.rb +10 -0
  1044. data/spec/support/models/target.rb +7 -0
  1045. data/spec/support/models/template.rb +7 -0
  1046. data/spec/support/models/thing.rb +11 -0
  1047. data/spec/support/models/threadlocker.rb +7 -0
  1048. data/spec/support/models/title.rb +5 -0
  1049. data/spec/support/models/tool.rb +10 -0
  1050. data/spec/support/models/topping.rb +7 -0
  1051. data/spec/support/models/toy.rb +9 -0
  1052. data/spec/support/models/track.rb +40 -0
  1053. data/spec/support/models/translation.rb +7 -0
  1054. data/spec/support/models/tree.rb +11 -0
  1055. data/spec/support/models/truck.rb +7 -0
  1056. data/spec/support/models/updatable.rb +7 -0
  1057. data/spec/support/models/user.rb +23 -0
  1058. data/spec/support/models/user_account.rb +12 -0
  1059. data/spec/support/models/validation_callback.rb +12 -0
  1060. data/spec/support/models/vehicle.rb +18 -0
  1061. data/spec/support/models/version.rb +7 -0
  1062. data/spec/support/models/vertex.rb +8 -0
  1063. data/spec/support/models/vet_visit.rb +7 -0
  1064. data/spec/support/models/video.rb +15 -0
  1065. data/spec/support/models/video_game.rb +3 -0
  1066. data/spec/support/models/washer.rb +7 -0
  1067. data/spec/support/models/weapon.rb +25 -0
  1068. data/spec/support/models/wiki_page.rb +17 -0
  1069. data/spec/support/models/word.rb +17 -0
  1070. data/spec/support/models/word_origin.rb +13 -0
  1071. data/spec/support/models/writer.rb +13 -0
  1072. data/spec/support/rails_mock.rb +31 -0
  1073. data/spec/support/schema_maps/schema_map_aws.json +17 -0
  1074. data/spec/support/schema_maps/schema_map_aws_key_alt_names.json +12 -0
  1075. data/spec/support/schema_maps/schema_map_azure.json +17 -0
  1076. data/spec/support/schema_maps/schema_map_azure_key_alt_names.json +12 -0
  1077. data/spec/support/schema_maps/schema_map_gcp.json +17 -0
  1078. data/spec/support/schema_maps/schema_map_gcp_key_alt_names.json +12 -0
  1079. data/spec/support/schema_maps/schema_map_kmip.json +17 -0
  1080. data/spec/support/schema_maps/schema_map_kmip_key_alt_names.json +12 -0
  1081. data/spec/support/schema_maps/schema_map_local.json +18 -0
  1082. data/spec/support/schema_maps/schema_map_local_key_alt_names.json +12 -0
  1083. data/spec/support/shared/time.rb +40 -0
  1084. data/spec/support/sinatra_mock.rb +6 -0
  1085. data/spec/support/spec_config.rb +80 -0
  1086. metadata +1944 -0
@@ -0,0 +1,1065 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "mongoid/contextual/mongo/documents_loader"
4
+ require "mongoid/contextual/atomic"
5
+ require "mongoid/contextual/aggregable/mongo"
6
+ require "mongoid/contextual/command"
7
+ require "mongoid/contextual/geo_near"
8
+ require "mongoid/contextual/map_reduce"
9
+ require "mongoid/association/eager_loadable"
10
+
11
+ module Mongoid
12
+ module Contextual
13
+ class Mongo
14
+ extend Forwardable
15
+ include Enumerable
16
+ include Aggregable::Mongo
17
+ include Atomic
18
+ include Association::EagerLoadable
19
+ include Queryable
20
+
21
+ Mongoid.deprecate(self, :geo_near)
22
+
23
+ # Options constant.
24
+ OPTIONS = [ :hint,
25
+ :limit,
26
+ :skip,
27
+ :sort,
28
+ :batch_size,
29
+ :max_scan,
30
+ :max_time_ms,
31
+ :snapshot,
32
+ :comment,
33
+ :read,
34
+ :cursor_type,
35
+ :collation
36
+ ].freeze
37
+
38
+ # @attribute [r] view The Mongo collection view.
39
+ attr_reader :view
40
+
41
+ attr_reader :documents_loader
42
+
43
+ # Get the number of documents matching the query.
44
+ #
45
+ # @example Get the number of matching documents.
46
+ # context.count
47
+ #
48
+ # @example Get the count of documents with the provided options.
49
+ # context.count(limit: 1)
50
+ #
51
+ # @example Get the count for where the provided block is true.
52
+ # context.count do |doc|
53
+ # doc.likes > 1
54
+ # end
55
+ #
56
+ # @param [ Hash ] options The options, such as skip and limit to be factored
57
+ # into the count.
58
+ #
59
+ # @return [ Integer ] The number of matches.
60
+ def count(options = {}, &block)
61
+ return super(&block) if block_given?
62
+ view.count_documents(options)
63
+ end
64
+
65
+ # Get the estimated number of documents matching the query.
66
+ #
67
+ # Unlike count, estimated_count does not take a block because it is not
68
+ # traditionally defined (with a block) on Enumarable like count is.
69
+ #
70
+ # @example Get the estimated number of matching documents.
71
+ # context.estimated_count
72
+ #
73
+ # @param [ Hash ] options The options, such as maxTimeMS to be factored
74
+ # into the count.
75
+ #
76
+ # @return [ Integer ] The number of matches.
77
+ def estimated_count(options = {})
78
+ unless self.criteria.selector.empty?
79
+ if klass.default_scoping?
80
+ raise Mongoid::Errors::InvalidEstimatedCountScoping.new(self.klass)
81
+ else
82
+ raise Mongoid::Errors::InvalidEstimatedCountCriteria.new(self.klass)
83
+ end
84
+ end
85
+ view.estimated_document_count(options)
86
+ end
87
+
88
+ # Delete all documents in the database that match the selector.
89
+ #
90
+ # @example Delete all the documents.
91
+ # context.delete
92
+ #
93
+ # @return [ nil ] Nil.
94
+ def delete
95
+ view.delete_many.deleted_count
96
+ end
97
+ alias :delete_all :delete
98
+
99
+ # Destroy all documents in the database that match the selector.
100
+ #
101
+ # @example Destroy all the documents.
102
+ # context.destroy
103
+ #
104
+ # @return [ nil ] Nil.
105
+ def destroy
106
+ each.inject(0) do |count, doc|
107
+ doc.destroy
108
+ count += 1 if acknowledged_write?
109
+ count
110
+ end
111
+ end
112
+ alias :destroy_all :destroy
113
+
114
+ # Get the distinct values in the db for the provided field.
115
+ #
116
+ # @example Get the distinct values.
117
+ # context.distinct(:name)
118
+ #
119
+ # @param [ String | Symbol ] field The name of the field.
120
+ #
121
+ # @return [ Array<Object> ] The distinct values for the field.
122
+ def distinct(field)
123
+ name = klass.cleanse_localized_field_names(field)
124
+
125
+ view.distinct(name).map do |value|
126
+ is_translation = "#{name}_translations" == field.to_s
127
+ recursive_demongoize(name, value, is_translation)
128
+ end
129
+ end
130
+
131
+ # Iterate over the context. If provided a block, yield to a Mongoid
132
+ # document for each, otherwise return an enum.
133
+ #
134
+ # @example Iterate over the context.
135
+ # context.each do |doc|
136
+ # puts doc.name
137
+ # end
138
+ #
139
+ # @return [ Enumerator ] The enumerator.
140
+ def each(&block)
141
+ if block_given?
142
+ documents_for_iteration.each do |doc|
143
+ yield_document(doc, &block)
144
+ end
145
+ self
146
+ else
147
+ to_enum
148
+ end
149
+ end
150
+
151
+ # Do any documents exist for the context.
152
+ #
153
+ # @example Do any documents exist for the context.
154
+ # context.exists?
155
+ #
156
+ # @example Do any documents exist for given _id.
157
+ # context.exists?(BSON::ObjectId(...))
158
+ #
159
+ # @example Do any documents exist for given conditions.
160
+ # context.exists?(name: "...")
161
+ #
162
+ # @note We don't use count here since Mongo does not use counted
163
+ # b-tree indexes.
164
+ #
165
+ # @param [ Hash | Object | false ] id_or_conditions an _id to
166
+ # search for, a hash of conditions, nil or false.
167
+ #
168
+ # @return [ true | false ] If the count is more than zero.
169
+ # Always false if passed nil or false.
170
+ def exists?(id_or_conditions = :none)
171
+ return false if self.view.limit == 0
172
+ case id_or_conditions
173
+ when :none then !!(view.projection(_id: 1).limit(1).first)
174
+ when nil, false then false
175
+ when Hash then Mongo.new(criteria.where(id_or_conditions)).exists?
176
+ else Mongo.new(criteria.where(_id: id_or_conditions)).exists?
177
+ end
178
+ end
179
+
180
+ # Run an explain on the criteria.
181
+ #
182
+ # @example Explain the criteria.
183
+ # Band.where(name: "Depeche Mode").explain
184
+ #
185
+ # @return [ Hash ] The explain result.
186
+ def explain
187
+ view.explain
188
+ end
189
+
190
+ # Execute the find and modify command, used for MongoDB's
191
+ # $findAndModify.
192
+ #
193
+ # @example Execute the command.
194
+ # context.find_one_and_update({ "$inc" => { likes: 1 }})
195
+ #
196
+ # @param [ Hash ] update The updates.
197
+ # @param [ Hash ] options The command options.
198
+ #
199
+ # @option options [ :before | :after ] :return_document Return the updated document
200
+ # from before or after update.
201
+ # @option options [ true | false ] :upsert Create the document if it doesn't exist.
202
+ #
203
+ # @return [ Document ] The result of the command.
204
+ def find_one_and_update(update, options = {})
205
+ if doc = view.find_one_and_update(update, options)
206
+ Factory.from_db(klass, doc)
207
+ end
208
+ end
209
+
210
+ # Execute the find and modify command, used for MongoDB's
211
+ # $findAndModify.
212
+ #
213
+ # @example Execute the command.
214
+ # context.find_one_and_update({ likes: 1 })
215
+ #
216
+ # @param [ Hash ] replacement The replacement.
217
+ # @param [ Hash ] options The command options.
218
+ #
219
+ # @option options [ :before | :after ] :return_document Return the updated document
220
+ # from before or after update.
221
+ # @option options [ true | false ] :upsert Create the document if it doesn't exist.
222
+ #
223
+ # @return [ Document ] The result of the command.
224
+ def find_one_and_replace(replacement, options = {})
225
+ if doc = view.find_one_and_replace(replacement, options)
226
+ Factory.from_db(klass, doc)
227
+ end
228
+ end
229
+
230
+ # Execute the find and modify command, used for MongoDB's
231
+ # $findAndModify. This deletes the found document.
232
+ #
233
+ # @example Execute the command.
234
+ # context.find_one_and_delete
235
+ #
236
+ # @return [ Document ] The result of the command.
237
+ def find_one_and_delete
238
+ if doc = view.find_one_and_delete
239
+ Factory.from_db(klass, doc)
240
+ end
241
+ end
242
+
243
+ # Return the first result without applying sort
244
+ #
245
+ # @api private
246
+ def find_first
247
+ if raw_doc = view.first
248
+ doc = Factory.from_db(klass, raw_doc, criteria)
249
+ eager_load([doc]).first
250
+ end
251
+ end
252
+
253
+ # Execute a $geoNear command against the database.
254
+ #
255
+ # @example Find documents close to 10, 10.
256
+ # context.geo_near([ 10, 10 ])
257
+ #
258
+ # @example Find with spherical distance.
259
+ # context.geo_near([ 10, 10 ]).spherical
260
+ #
261
+ # @example Find with a max distance.
262
+ # context.geo_near([ 10, 10 ]).max_distance(0.5)
263
+ #
264
+ # @example Provide a distance multiplier.
265
+ # context.geo_near([ 10, 10 ]).distance_multiplier(1133)
266
+ #
267
+ # @param [ Array<Float> ] coordinates The coordinates.
268
+ #
269
+ # @return [ GeoNear ] The GeoNear command.
270
+ #
271
+ # @deprecated
272
+ def geo_near(coordinates)
273
+ GeoNear.new(collection, criteria, coordinates)
274
+ end
275
+
276
+ # Create the new Mongo context. This delegates operations to the
277
+ # underlying driver.
278
+ #
279
+ # @example Create the new context.
280
+ # Mongo.new(criteria)
281
+ #
282
+ # @param [ Criteria ] criteria The criteria.
283
+ def initialize(criteria)
284
+ @criteria, @klass = criteria, criteria.klass
285
+ @collection = @klass.collection
286
+ criteria.send(:merge_type_selection)
287
+ @view = collection.find(criteria.selector, session: _session)
288
+ apply_options
289
+ end
290
+
291
+ def_delegator :@klass, :database_field_name
292
+
293
+ # Returns the number of documents in the database matching
294
+ # the query selector.
295
+ #
296
+ # @example Get the length.
297
+ # context.length
298
+ #
299
+ # @return [ Integer ] The number of documents.
300
+ def length
301
+ self.count
302
+ end
303
+ alias :size :length
304
+
305
+ # Limits the number of documents that are returned from the database.
306
+ #
307
+ # @example Limit the documents.
308
+ # context.limit(20)
309
+ #
310
+ # @param [ Integer ] value The number of documents to return.
311
+ #
312
+ # @return [ Mongo ] The context.
313
+ def limit(value)
314
+ @view = view.limit(value) and self
315
+ end
316
+
317
+ # Initiate a map/reduce operation from the context.
318
+ #
319
+ # @example Initiate a map/reduce.
320
+ # context.map_reduce(map, reduce)
321
+ #
322
+ # @param [ String ] map The map js function.
323
+ # @param [ String ] reduce The reduce js function.
324
+ #
325
+ # @return [ MapReduce ] The map/reduce lazy wrapper.
326
+ def map_reduce(map, reduce)
327
+ MapReduce.new(collection, criteria, map, reduce)
328
+ end
329
+
330
+ # Pluck the field value(s) from the database. Returns one
331
+ # result for each document found in the database for
332
+ # the context. The results are normalized according to their
333
+ # Mongoid field types. Note that the results may include
334
+ # duplicates and nil values.
335
+ #
336
+ # @example Pluck a field.
337
+ # context.pluck(:_id)
338
+ #
339
+ # @param [ [ String | Symbol ]... ] *fields Field(s) to pluck,
340
+ # which may include nested fields using dot-notation.
341
+ #
342
+ # @return [ Array<Object> | Array<Array<Object>> ] The plucked values.
343
+ # If the *fields arg contains a single value, each result
344
+ # in the array will be a single value. Otherwise, each
345
+ # result in the array will be an array of values.
346
+ def pluck(*fields)
347
+ # Multiple fields can map to the same field name. For example, plucking
348
+ # a field and its _translations field map to the same field in the database.
349
+ # because of this, we need to keep track of the fields requested.
350
+ normalized_field_names = []
351
+ normalized_select = fields.inject({}) do |hash, f|
352
+ db_fn = klass.database_field_name(f)
353
+ normalized_field_names.push(db_fn)
354
+ hash[klass.cleanse_localized_field_names(f)] = true
355
+ hash
356
+ end
357
+
358
+ view.projection(normalized_select).reduce([]) do |plucked, doc|
359
+ values = normalized_field_names.map do |n|
360
+ extract_value(doc, n)
361
+ end
362
+ plucked << (values.size == 1 ? values.first : values)
363
+ end
364
+ end
365
+
366
+ # Pick the single field values from the database.
367
+ #
368
+ # @example Pick a field.
369
+ # context.pick(:_id)
370
+ #
371
+ # @param [ [ String | Symbol ]... ] *fields Field(s) to pick.
372
+ #
373
+ # @return [ Object | Array<Object> ] The picked values.
374
+ def pick(*fields)
375
+ limit(1).pluck(*fields).first
376
+ end
377
+
378
+ # Take the given number of documents from the database.
379
+ #
380
+ # @example Take 10 documents
381
+ # context.take(10)
382
+ #
383
+ # @param [ Integer | nil ] limit The number of documents to return or nil.
384
+ #
385
+ # @return [ Document | Array<Document> ] The list of documents, or one
386
+ # document if no value was given.
387
+ def take(limit = nil)
388
+ if limit
389
+ limit(limit).to_a
390
+ else
391
+ # Do to_a first so that the Mongo#first method is not used and the
392
+ # result is not sorted.
393
+ limit(1).to_a.first
394
+ end
395
+ end
396
+
397
+ # Take one document from the database and raise an error if there are none.
398
+ #
399
+ # @example Take a document
400
+ # context.take!
401
+ #
402
+ # @return [ Document ] The document.
403
+ #
404
+ # @raises [ Mongoid::Errors::DocumentNotFound ] raises when there are no
405
+ # documents to take.
406
+ def take!
407
+ # Do to_a first so that the Mongo#first method is not used and the
408
+ # result is not sorted.
409
+ if fst = limit(1).to_a.first
410
+ fst
411
+ else
412
+ raise Errors::DocumentNotFound.new(klass, nil, nil)
413
+ end
414
+ end
415
+
416
+ # Get a hash of counts for the values of a single field. For example,
417
+ # if the following documents were in the database:
418
+ #
419
+ # { _id: 1, age: 21 }
420
+ # { _id: 2, age: 21 }
421
+ # { _id: 3, age: 22 }
422
+ #
423
+ # Model.tally("age")
424
+ #
425
+ # would yield the following result:
426
+ #
427
+ # { 21 => 2, 22 => 1 }
428
+ #
429
+ # When tallying a field inside an array or embeds_many association:
430
+ #
431
+ # { _id: 1, array: [ { x: 1 }, { x: 2 } ] }
432
+ # { _id: 2, array: [ { x: 1 }, { x: 2 } ] }
433
+ # { _id: 3, array: [ { x: 1 }, { x: 3 } ] }
434
+ #
435
+ # Model.tally("array.x")
436
+ #
437
+ # The keys of the resulting hash are arrays:
438
+ #
439
+ # { [ 1, 2 ] => 2, [ 1, 3 ] => 1 }
440
+ #
441
+ # Note that if tallying an element in an array of hashes, and the key
442
+ # doesn't exist in some of the hashes, tally will not include those
443
+ # nil keys in the resulting hash:
444
+ #
445
+ # { _id: 1, array: [ { x: 1 }, { x: 2 }, { y: 3 } ] }
446
+ #
447
+ # Model.tally("array.x")
448
+ # # => { [ 1, 2 ] => 1 }
449
+ #
450
+ # @param [ String | Symbol ] field The field name.
451
+ #
452
+ # @return [ Hash ] The hash of counts.
453
+ def tally(field)
454
+ name = klass.cleanse_localized_field_names(field)
455
+
456
+ fld = klass.traverse_association_tree(name)
457
+ pipeline = [ { "$group" => { _id: "$#{name}", counts: { "$sum": 1 } } } ]
458
+ pipeline.unshift("$match" => view.filter) unless view.filter.blank?
459
+
460
+ collection.aggregate(pipeline).reduce({}) do |tallies, doc|
461
+ is_translation = "#{name}_translations" == field.to_s
462
+ val = doc["_id"]
463
+
464
+ key = if val.is_a?(Array)
465
+ val.map do |v|
466
+ demongoize_with_field(fld, v, is_translation)
467
+ end
468
+ else
469
+ demongoize_with_field(fld, val, is_translation)
470
+ end
471
+
472
+ # The only time where a key will already exist in the tallies hash
473
+ # is when the values are stored differently in the database, but
474
+ # demongoize to the same value. A good example of when this happens
475
+ # is when using localized fields. While the server query won't group
476
+ # together hashes that have other values in different languages, the
477
+ # demongoized value is just the translation in the current locale,
478
+ # which can be the same across multiple of those unequal hashes.
479
+ tallies[key] ||= 0
480
+ tallies[key] += doc["counts"]
481
+ tallies
482
+ end
483
+ end
484
+
485
+ # Skips the provided number of documents.
486
+ #
487
+ # @example Skip the documents.
488
+ # context.skip(20)
489
+ #
490
+ # @param [ Integer ] value The number of documents to skip.
491
+ #
492
+ # @return [ Mongo ] The context.
493
+ def skip(value)
494
+ @view = view.skip(value) and self
495
+ end
496
+
497
+ # Sorts the documents by the provided spec.
498
+ #
499
+ # @example Sort the documents.
500
+ # context.sort(name: -1, title: 1)
501
+ #
502
+ # @param [ Hash ] values The sorting values as field/direction(1/-1)
503
+ # pairs.
504
+ #
505
+ # @return [ Mongo ] The context.
506
+ def sort(values = nil, &block)
507
+ if block_given?
508
+ super(&block)
509
+ else
510
+ # update the criteria
511
+ @criteria = criteria.order_by(values)
512
+ apply_option(:sort)
513
+ self
514
+ end
515
+ end
516
+
517
+ # Update the first matching document atomically.
518
+ #
519
+ # @example Update the first matching document.
520
+ # context.update({ "$set" => { name: "Smiths" }})
521
+ #
522
+ # @param [ Hash ] attributes The new attributes for the document.
523
+ # @param [ Hash ] opts The update operation options.
524
+ #
525
+ # @option opts [ Array ] :array_filters A set of filters specifying to which array elements
526
+ # an update should apply.
527
+ #
528
+ # @return [ nil | false ] False if no attributes were provided.
529
+ def update(attributes = nil, opts = {})
530
+ update_documents(attributes, :update_one, opts)
531
+ end
532
+
533
+ # Update all the matching documents atomically.
534
+ #
535
+ # @example Update all the matching documents.
536
+ # context.update_all({ "$set" => { name: "Smiths" }})
537
+ #
538
+ # @param [ Hash ] attributes The new attributes for each document.
539
+ # @param [ Hash ] opts The update operation options.
540
+ #
541
+ # @option opts [ Array ] :array_filters A set of filters specifying to which array elements
542
+ # an update should apply.
543
+ #
544
+ # @return [ nil | false ] False if no attributes were provided.
545
+ def update_all(attributes = nil, opts = {})
546
+ update_documents(attributes, :update_many, opts)
547
+ end
548
+
549
+ # Get the first document in the database for the criteria's selector.
550
+ #
551
+ # @example Get the first document.
552
+ # context.first
553
+ #
554
+ # @note Automatically adding a sort on _id when no other sort is
555
+ # defined on the criteria has the potential to cause bad performance issues.
556
+ # If you experience unexpected poor performance when using #first or #last
557
+ # and have no sort defined on the criteria, use #take instead.
558
+ # Be aware that #take won't guarantee order.
559
+ #
560
+ # @param [ Integer ] limit The number of documents to return.
561
+ #
562
+ # @return [ Document | nil ] The first document or nil if none is found.
563
+ def first(limit = nil)
564
+ if limit.nil?
565
+ retrieve_nth(0)
566
+ else
567
+ retrieve_nth_with_limit(0, limit)
568
+ end
569
+ end
570
+ alias :one :first
571
+
572
+ # Get the first document in the database for the criteria's selector or
573
+ # raise an error if none is found.
574
+ #
575
+ # @example Get the first document.
576
+ # context.first!
577
+ #
578
+ # @note Automatically adding a sort on _id when no other sort is
579
+ # defined on the criteria has the potential to cause bad performance issues.
580
+ # If you experience unexpected poor performance when using #first! or #last!
581
+ # and have no sort defined on the criteria, use #take! instead.
582
+ # Be aware that #take! won't guarantee order.
583
+ #
584
+ # @return [ Document ] The first document.
585
+ #
586
+ # @raises [ Mongoid::Errors::DocumentNotFound ] raises when there are no
587
+ # documents available.
588
+ def first!
589
+ first || raise_document_not_found_error
590
+ end
591
+
592
+ # Get the last document in the database for the criteria's selector.
593
+ #
594
+ # @example Get the last document.
595
+ # context.last
596
+ #
597
+ # @note Automatically adding a sort on _id when no other sort is
598
+ # defined on the criteria has the potential to cause bad performance issues.
599
+ # If you experience unexpected poor performance when using #first or #last
600
+ # and have no sort defined on the criteria, use #take instead.
601
+ # Be aware that #take won't guarantee order.
602
+ #
603
+ # @param [ Integer ] limit The number of documents to return.
604
+ #
605
+ # @return [ Document | nil ] The last document or nil if none is found.
606
+ def last(limit = nil)
607
+ if limit.nil?
608
+ retrieve_nth_to_last(0)
609
+ else
610
+ retrieve_nth_to_last_with_limit(0, limit)
611
+ end
612
+ end
613
+
614
+ # Get the last document in the database for the criteria's selector or
615
+ # raise an error if none is found.
616
+ #
617
+ # @example Get the last document.
618
+ # context.last!
619
+ #
620
+ # @note Automatically adding a sort on _id when no other sort is
621
+ # defined on the criteria has the potential to cause bad performance issues.
622
+ # If you experience unexpected poor performance when using #first! or #last!
623
+ # and have no sort defined on the criteria, use #take! instead.
624
+ # Be aware that #take! won't guarantee order.
625
+ #
626
+ # @return [ Document ] The last document.
627
+ #
628
+ # @raises [ Mongoid::Errors::DocumentNotFound ] raises when there are no
629
+ # documents available.
630
+ def last!
631
+ last || raise_document_not_found_error
632
+ end
633
+
634
+ # Get the second document in the database for the criteria's selector.
635
+ #
636
+ # @example Get the second document.
637
+ # context.second
638
+ #
639
+ # @return [ Document | nil ] The second document or nil if none is found.
640
+ def second
641
+ retrieve_nth(1)
642
+ end
643
+
644
+ # Get the second document in the database for the criteria's selector or
645
+ # raise an error if none is found.
646
+ #
647
+ # @example Get the second document.
648
+ # context.second!
649
+ #
650
+ # @return [ Document ] The second document.
651
+ #
652
+ # @raises [ Mongoid::Errors::DocumentNotFound ] raises when there are no
653
+ # documents available.
654
+ def second!
655
+ second || raise_document_not_found_error
656
+ end
657
+
658
+ # Get the third document in the database for the criteria's selector.
659
+ #
660
+ # @example Get the third document.
661
+ # context.third
662
+ #
663
+ # @return [ Document | nil ] The third document or nil if none is found.
664
+ def third
665
+ retrieve_nth(2)
666
+ end
667
+
668
+ # Get the third document in the database for the criteria's selector or
669
+ # raise an error if none is found.
670
+ #
671
+ # @example Get the third document.
672
+ # context.third!
673
+ #
674
+ # @return [ Document ] The third document.
675
+ #
676
+ # @raises [ Mongoid::Errors::DocumentNotFound ] raises when there are no
677
+ # documents available.
678
+ def third!
679
+ third || raise_document_not_found_error
680
+ end
681
+
682
+ # Get the fourth document in the database for the criteria's selector.
683
+ #
684
+ # @example Get the fourth document.
685
+ # context.fourth
686
+ #
687
+ # @return [ Document | nil ] The fourth document or nil if none is found.
688
+ def fourth
689
+ retrieve_nth(3)
690
+ end
691
+
692
+ # Get the fourth document in the database for the criteria's selector or
693
+ # raise an error if none is found.
694
+ #
695
+ # @example Get the fourth document.
696
+ # context.fourth!
697
+ #
698
+ # @return [ Document ] The fourth document.
699
+ #
700
+ # @raises [ Mongoid::Errors::DocumentNotFound ] raises when there are no
701
+ # documents available.
702
+ def fourth!
703
+ fourth || raise_document_not_found_error
704
+ end
705
+
706
+ # Get the fifth document in the database for the criteria's selector.
707
+ #
708
+ # @example Get the fifth document.
709
+ # context.fifth
710
+ #
711
+ # @return [ Document | nil ] The fifth document or nil if none is found.
712
+ def fifth
713
+ retrieve_nth(4)
714
+ end
715
+
716
+ # Get the fifth document in the database for the criteria's selector or
717
+ # raise an error if none is found.
718
+ #
719
+ # @example Get the fifth document.
720
+ # context.fifth!
721
+ #
722
+ # @return [ Document ] The fifth document.
723
+ #
724
+ # @raises [ Mongoid::Errors::DocumentNotFound ] raises when there are no
725
+ # documents available.
726
+ def fifth!
727
+ fifth || raise_document_not_found_error
728
+ end
729
+
730
+ # Get the second to last document in the database for the criteria's
731
+ # selector.
732
+ #
733
+ # @example Get the second to last document.
734
+ # context.second_to_last
735
+ #
736
+ # @return [ Document | nil ] The second to last document or nil if none
737
+ # is found.
738
+ def second_to_last
739
+ retrieve_nth_to_last(1)
740
+ end
741
+
742
+ # Get the second to last document in the database for the criteria's
743
+ # selector or raise an error if none is found.
744
+ #
745
+ # @example Get the second to last document.
746
+ # context.second_to_last!
747
+ #
748
+ # @return [ Document ] The second to last document.
749
+ #
750
+ # @raises [ Mongoid::Errors::DocumentNotFound ] raises when there are no
751
+ # documents available.
752
+ def second_to_last!
753
+ second_to_last || raise_document_not_found_error
754
+ end
755
+
756
+ # Get the third to last document in the database for the criteria's
757
+ # selector.
758
+ #
759
+ # @example Get the third to last document.
760
+ # context.third_to_last
761
+ #
762
+ # @return [ Document | nil ] The third to last document or nil if none
763
+ # is found.
764
+ def third_to_last
765
+ retrieve_nth_to_last(2)
766
+ end
767
+
768
+ # Get the third to last document in the database for the criteria's
769
+ # selector or raise an error if none is found.
770
+ #
771
+ # @example Get the third to last document.
772
+ # context.third_to_last!
773
+ #
774
+ # @return [ Document ] The third to last document.
775
+ #
776
+ # @raises [ Mongoid::Errors::DocumentNotFound ] raises when there are no
777
+ # documents available.
778
+ def third_to_last!
779
+ third_to_last || raise_document_not_found_error
780
+ end
781
+
782
+ # Schedule a task to load documents for the context.
783
+ #
784
+ # Depending on the Mongoid configuration, the scheduled task can be executed
785
+ # immediately on the caller's thread, or can be scheduled for an
786
+ # asynchronous execution.
787
+ #
788
+ # @api private
789
+ def load_async
790
+ @documents_loader ||= DocumentsLoader.new(view, klass, criteria)
791
+ end
792
+
793
+ private
794
+
795
+ # Update the documents for the provided method.
796
+ #
797
+ # @api private
798
+ #
799
+ # @example Update the documents.
800
+ # context.update_documents(attrs)
801
+ #
802
+ # @param [ Hash ] attributes The updates.
803
+ # @param [ Symbol ] method The method to use.
804
+ #
805
+ # @return [ true | false ] If the update succeeded.
806
+ def update_documents(attributes, method = :update_one, opts = {})
807
+ return false unless attributes
808
+ attributes = Hash[attributes.map { |k, v| [klass.database_field_name(k.to_s), v] }]
809
+ view.send(method, attributes.__consolidate__(klass), opts)
810
+ end
811
+
812
+ # Apply the field limitations.
813
+ #
814
+ # @api private
815
+ #
816
+ # @example Apply the field limitations.
817
+ # context.apply_fields
818
+ def apply_fields
819
+ if spec = criteria.options[:fields]
820
+ @view = view.projection(spec)
821
+ end
822
+ end
823
+
824
+ # Apply the options.
825
+ #
826
+ # @api private
827
+ #
828
+ # @example Apply all options.
829
+ # context.apply_options
830
+ def apply_options
831
+ apply_fields
832
+ OPTIONS.each do |name|
833
+ apply_option(name)
834
+ end
835
+ if criteria.options[:timeout] == false
836
+ @view = view.no_cursor_timeout
837
+ end
838
+ end
839
+
840
+ # Apply an option.
841
+ #
842
+ # @api private
843
+ #
844
+ # @example Apply the skip option.
845
+ # context.apply_option(:skip)
846
+ def apply_option(name)
847
+ if spec = criteria.options[name]
848
+ @view = view.send(name, spec)
849
+ end
850
+ end
851
+
852
+ # Map the inverse sort symbols to the correct MongoDB values.
853
+ #
854
+ # @api private
855
+ def inverse_sorting
856
+ sort = view.sort || { _id: 1 }
857
+ Hash[sort.map{|k, v| [k, -1*v]}]
858
+ end
859
+
860
+ # Get the documents the context should iterate.
861
+ #
862
+ # If the documents have been already preloaded by `Document::Loader`
863
+ # instance, they will be used.
864
+ #
865
+ # @return [ Array<Document> | Mongo::Collection::View ] The docs to iterate.
866
+ #
867
+ # @api private
868
+ def documents_for_iteration
869
+ if @documents_loader
870
+ if @documents_loader.started?
871
+ @documents_loader.value!
872
+ else
873
+ @documents_loader.unschedule
874
+ @documents_loader.execute
875
+ end
876
+ else
877
+ return view unless eager_loadable?
878
+ docs = view.map do |doc|
879
+ Factory.from_db(klass, doc, criteria)
880
+ end
881
+ eager_load(docs)
882
+ end
883
+ end
884
+
885
+ # Yield to the document.
886
+ #
887
+ # @api private
888
+ #
889
+ # @example Yield the document.
890
+ # context.yield_document(doc) do |doc|
891
+ # ...
892
+ # end
893
+ #
894
+ # @param [ Document ] document The document to yield to.
895
+ def yield_document(document, &block)
896
+ doc = document.respond_to?(:_id) ?
897
+ document : Factory.from_db(klass, document, criteria)
898
+ yield(doc)
899
+ end
900
+
901
+ def _session
902
+ @criteria.send(:_session)
903
+ end
904
+
905
+ def acknowledged_write?
906
+ collection.write_concern.nil? || collection.write_concern.acknowledged?
907
+ end
908
+
909
+ # Fetch the element from the given hash and demongoize it using the
910
+ # given field. If the obj is an array, map over it and call this method
911
+ # on all of its elements.
912
+ #
913
+ # @param [ Hash | Array<Hash> ] obj The hash or array of hashes to fetch from.
914
+ # @param [ String ] meth The key to fetch from the hash.
915
+ # @param [ Field ] field The field to use for demongoization.
916
+ #
917
+ # @return [ Object ] The demongoized value.
918
+ #
919
+ # @api private
920
+ def fetch_and_demongoize(obj, meth, field)
921
+ if obj.is_a?(Array)
922
+ obj.map { |doc| fetch_and_demongoize(doc, meth, field) }
923
+ else
924
+ res = obj.try(:fetch, meth, nil)
925
+ field ? field.demongoize(res) : res.class.demongoize(res)
926
+ end
927
+ end
928
+
929
+ # Extracts the value for the given field name from the given attribute
930
+ # hash.
931
+ #
932
+ # @param [ Hash ] attrs The attributes hash.
933
+ # @param [ String ] field_name The name of the field to extract.
934
+ #
935
+ # @param [ Object ] The value for the given field name
936
+ def extract_value(attrs, field_name)
937
+ i = 1
938
+ num_meths = field_name.count('.') + 1
939
+ curr = attrs.dup
940
+
941
+ klass.traverse_association_tree(field_name) do |meth, obj, is_field|
942
+ field = obj if is_field
943
+ is_translation = false
944
+ # If no association or field was found, check if the meth is an
945
+ # _translations field.
946
+ if obj.nil? & tr = meth.match(/(.*)_translations\z/)&.captures&.first
947
+ is_translation = true
948
+ meth = tr
949
+ end
950
+
951
+ # 1. If curr is an array fetch from all elements in the array.
952
+ # 2. If the field is localized, and is not an _translations field
953
+ # (_translations fields don't show up in the fields hash).
954
+ # - If this is the end of the methods, return the translation for
955
+ # the current locale.
956
+ # - Otherwise, return the whole translations hash so the next method
957
+ # can select the language it wants.
958
+ # 3. If the meth is an _translations field, do not demongoize the
959
+ # value so the full hash is returned.
960
+ # 4. Otherwise, fetch and demongoize the value for the key meth.
961
+ curr = if curr.is_a? Array
962
+ res = fetch_and_demongoize(curr, meth, field)
963
+ res.empty? ? nil : res
964
+ elsif !is_translation && field&.localized?
965
+ if i < num_meths
966
+ curr.try(:fetch, meth, nil)
967
+ else
968
+ fetch_and_demongoize(curr, meth, field)
969
+ end
970
+ elsif is_translation
971
+ curr.try(:fetch, meth, nil)
972
+ else
973
+ fetch_and_demongoize(curr, meth, field)
974
+ end
975
+
976
+ i += 1
977
+ end
978
+ curr
979
+ end
980
+
981
+ # Recursively demongoize the given value. This method recursively traverses
982
+ # the class tree to find the correct field to use to demongoize the value.
983
+ #
984
+ # @param [ String ] field_name The name of the field to demongoize.
985
+ # @param [ Object ] value The value to demongoize.
986
+ # @param [ true | false ] is_translation The field we are retrieving is an
987
+ # _translations field.
988
+ #
989
+ # @return [ Object ] The demongoized value.
990
+ def recursive_demongoize(field_name, value, is_translation)
991
+ field = klass.traverse_association_tree(field_name)
992
+ demongoize_with_field(field, value, is_translation)
993
+ end
994
+
995
+ # Demongoize the value for the given field. If the field is nil or the
996
+ # field is a translations field, the value is demongoized using its class.
997
+ #
998
+ # @param [ Field ] field The field to use to demongoize.
999
+ # @param [ Object ] value The value to demongoize.
1000
+ # @param [ true | false ] is_translation The field we are retrieving is an
1001
+ # _translations field.
1002
+ #
1003
+ # @return [ Object ] The demongoized value.
1004
+ #
1005
+ # @api private
1006
+ def demongoize_with_field(field, value, is_translation)
1007
+ if field
1008
+ # If it's a localized field that's not a hash, don't demongoize
1009
+ # again, we already have the translation. If it's an _translations
1010
+ # field, don't demongoize, we want the full hash not just a
1011
+ # specific translation.
1012
+ # If it is a hash, and it's not a translations field, we need to
1013
+ # demongoize to get the correct translation.
1014
+ if field.localized? && (!value.is_a?(Hash) || is_translation)
1015
+ value.class.demongoize(value)
1016
+ else
1017
+ field.demongoize(value)
1018
+ end
1019
+ else
1020
+ value.class.demongoize(value)
1021
+ end
1022
+ end
1023
+
1024
+ # Process the raw documents retrieved for #first/#last.
1025
+ #
1026
+ # @return [ Array<Document> | Document ] The list of documents or a
1027
+ # single document.
1028
+ def process_raw_docs(raw_docs, limit)
1029
+ docs = raw_docs.map do |d|
1030
+ Factory.from_db(klass, d, criteria)
1031
+ end
1032
+ docs = eager_load(docs)
1033
+ limit ? docs : docs.first
1034
+ end
1035
+
1036
+ def raise_document_not_found_error
1037
+ raise Errors::DocumentNotFound.new(klass, nil, nil)
1038
+ end
1039
+
1040
+ def retrieve_nth(n)
1041
+ retrieve_nth_with_limit(n, 1).first
1042
+ end
1043
+
1044
+ def retrieve_nth_with_limit(n, limit)
1045
+ sort = view.sort || { _id: 1 }
1046
+ v = view.sort(sort).limit(limit || 1)
1047
+ v = v.skip(n) if n > 0
1048
+ if raw_docs = v.to_a
1049
+ process_raw_docs(raw_docs, limit)
1050
+ end
1051
+ end
1052
+
1053
+ def retrieve_nth_to_last(n)
1054
+ retrieve_nth_to_last_with_limit(n, 1).first
1055
+ end
1056
+
1057
+ def retrieve_nth_to_last_with_limit(n, limit)
1058
+ v = view.sort(inverse_sorting).skip(n).limit(limit || 1)
1059
+ v = v.skip(n) if n > 0
1060
+ raw_docs = v.to_a.reverse
1061
+ process_raw_docs(raw_docs, limit)
1062
+ end
1063
+ end
1064
+ end
1065
+ end