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,2327 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "spec_helper"
4
+ require_relative './selectable_shared_examples'
5
+
6
+ class FieldWithSerializer
7
+ def evolve(object)
8
+ Integer.evolve(object)
9
+ end
10
+
11
+ def localized?
12
+ false
13
+ end
14
+ end
15
+
16
+ describe Mongoid::Criteria::Queryable::Selectable do
17
+
18
+ let(:query) do
19
+ Mongoid::Query.new("id" => "_id")
20
+ end
21
+
22
+ shared_examples_for 'supports merge strategies' do
23
+
24
+ context 'when the field is not aliased' do
25
+
26
+ context "when the strategy is not set" do
27
+
28
+ let(:selection) do
29
+ query.send(query_method, first: [ 1, 2 ]).send(query_method, first: [ 3, 4 ])
30
+ end
31
+
32
+ it "combines the conditions with $and" do
33
+ expect(selection.selector).to eq({
34
+ "first" => { operator => [ 1, 2 ] },
35
+ '$and' => [{'first' => {operator => [3, 4]}}],
36
+ })
37
+ end
38
+
39
+ it_behaves_like "returns a cloned query"
40
+ end
41
+
42
+ context "when the strategy is intersect" do
43
+
44
+ let(:selection) do
45
+ query.send(query_method, first: [ 1, 2 ]).intersect.send(query_method, first: [ 2, 3 ])
46
+ end
47
+
48
+ it "intersects the conditions" do
49
+ expect(selection.selector).to eq({
50
+ "first" => { operator => [ 2 ] }
51
+ })
52
+ end
53
+
54
+ it_behaves_like "returns a cloned query"
55
+ end
56
+
57
+ context "when the strategy is override" do
58
+
59
+ let(:selection) do
60
+ query.send(query_method, first: [ 1, 2 ]).override.send(query_method, first: [ 3, 4 ])
61
+ end
62
+
63
+ it "overwrites the first condition" do
64
+ expect(selection.selector).to eq({
65
+ "first" => { operator => [ 3, 4 ] }
66
+ })
67
+ end
68
+
69
+ it_behaves_like "returns a cloned query"
70
+ end
71
+
72
+ context "when the strategy is union" do
73
+
74
+ let(:selection) do
75
+ query.send(query_method, first: [ 1, 2 ]).union.send(query_method, first: [ 3, 4 ])
76
+ end
77
+
78
+ it "unions the conditions" do
79
+ expect(selection.selector).to eq({
80
+ "first" => { operator => [ 1, 2, 3, 4 ] }
81
+ })
82
+ end
83
+
84
+ it_behaves_like "returns a cloned query"
85
+ end
86
+ end
87
+
88
+ context 'when the field is aliased' do
89
+
90
+ context "when the strategy is not set" do
91
+
92
+ let(:selection) do
93
+ query.send(query_method, id: [ 1, 2 ]).send(query_method, _id: [ 3, 4 ])
94
+ end
95
+
96
+ it "combines the conditions with $and" do
97
+ expect(selection.selector).to eq({
98
+ "_id" => { operator => [ 1, 2 ] },
99
+ '$and' => [{'_id' => {operator => [3, 4]}}],
100
+ })
101
+ end
102
+
103
+ it_behaves_like "returns a cloned query"
104
+ end
105
+
106
+ context "when the strategy is intersect" do
107
+
108
+ let(:selection) do
109
+ query.send(query_method, id: [ 1, 2 ]).intersect.send(query_method, _id: [ 2, 3 ])
110
+ end
111
+
112
+ it "intersects the conditions" do
113
+ expect(selection.selector).to eq({
114
+ "_id" => { operator => [ 2 ] }
115
+ })
116
+ end
117
+
118
+ it_behaves_like "returns a cloned query"
119
+ end
120
+
121
+ context "when the strategy is override" do
122
+
123
+ let(:selection) do
124
+ query.send(query_method, _id: [ 1, 2 ]).override.send(query_method, id: [ 3, 4 ])
125
+ end
126
+
127
+ it "overwrites the first condition" do
128
+ expect(selection.selector).to eq({
129
+ "_id" => { operator => [ 3, 4 ] }
130
+ })
131
+ end
132
+
133
+ it_behaves_like "returns a cloned query"
134
+ end
135
+
136
+ context "when the strategy is union" do
137
+
138
+ let(:selection) do
139
+ query.send(query_method, _id: [ 1, 2 ]).union.send(query_method, id: [ 3, 4 ])
140
+ end
141
+
142
+ it "unions the conditions" do
143
+ expect(selection.selector).to eq({
144
+ "_id" => { operator => [ 1, 2, 3, 4 ] }
145
+ })
146
+ end
147
+
148
+ it_behaves_like "returns a cloned query"
149
+ end
150
+ end
151
+
152
+ context 'when the field uses a serializer' do
153
+
154
+ let(:query) do
155
+ Mongoid::Query.new({}, { "field" => FieldWithSerializer.new })
156
+ end
157
+
158
+
159
+ context "when the strategy is not set" do
160
+
161
+ let(:selection) do
162
+ query.send(query_method, field: [ '1', '2' ]).send(query_method, field: [ '3', '4' ])
163
+ end
164
+
165
+ it "combines the conditions with $and" do
166
+ expect(selection.selector).to eq({
167
+ "field" => { operator => [ 1, 2 ] },
168
+ '$and' => [{'field' => {operator => [3, 4]}}],
169
+ })
170
+ end
171
+
172
+ it_behaves_like "returns a cloned query"
173
+ end
174
+
175
+ context "when the strategy is set" do
176
+
177
+ let(:selection) do
178
+ query.send(query_method, field: [ '1', '2' ]).intersect.send(query_method, field: [ '2', '3' ])
179
+ end
180
+
181
+ it "intersects the conditions" do
182
+ expect(selection.selector).to eq({
183
+ "field" => { operator => [ 2 ] }
184
+ })
185
+ end
186
+
187
+ it_behaves_like "returns a cloned query"
188
+ end
189
+ end
190
+
191
+ context 'when operator value is a Range' do
192
+
193
+ context "when there is no existing condition and strategy is not specified" do
194
+
195
+ let(:selection) do
196
+ query.send(query_method, foo: 2..4)
197
+ end
198
+
199
+ it 'expands range to array' do
200
+ expect(selection.selector).to eq({
201
+ "foo" => { operator => [ 2, 3, 4 ] }
202
+ })
203
+
204
+ end
205
+ end
206
+
207
+ context "when there is no existing condition and strategy is specified" do
208
+
209
+ let(:selection) do
210
+ query.union.send(query_method, foo: 2..4)
211
+ end
212
+
213
+ it 'expands range to array' do
214
+ expect(selection.selector).to eq({
215
+ "foo" => { operator => [ 2, 3, 4 ] }
216
+ })
217
+
218
+ end
219
+ end
220
+
221
+ context "when existing condition has Array value" do
222
+
223
+ let(:selection) do
224
+ query.send(query_method, foo: [ 1, 2 ]).union.send(query_method, foo: 2..4)
225
+ end
226
+
227
+ it 'expands range to array' do
228
+ expect(selection.selector).to eq({
229
+ "foo" => { operator => [ 1, 2, 3, 4 ] }
230
+ })
231
+
232
+ end
233
+ end
234
+
235
+ context "when existing condition has Range value" do
236
+
237
+ let(:selection) do
238
+ query.send(query_method, foo: 1..2).union.send(query_method, foo: 2..4)
239
+ end
240
+
241
+ it 'expands range to array' do
242
+ expect(selection.selector).to eq({
243
+ "foo" => { operator => [ 1, 2, 3, 4 ] }
244
+ })
245
+
246
+ end
247
+ end
248
+ end
249
+ end
250
+
251
+ describe "#all" do
252
+
253
+ let(:query_method) { :all }
254
+ let(:operator) { '$all' }
255
+
256
+ context "when provided no criterion" do
257
+
258
+ let(:selection) do
259
+ query.all
260
+ end
261
+
262
+ it "does not add any criterion" do
263
+ expect(selection.selector).to eq({})
264
+ end
265
+
266
+ it "returns the query" do
267
+ expect(selection).to eq(query)
268
+ end
269
+
270
+ it "returns a cloned query" do
271
+ expect(selection).to_not equal(query)
272
+ end
273
+ end
274
+
275
+ it_behaves_like 'requires a non-nil argument'
276
+
277
+ context "when provided a single criterion" do
278
+
279
+ context "when no serializers are provided" do
280
+
281
+ context "when providing an array" do
282
+
283
+ let(:selection) do
284
+ query.all(field: [ 1, 2 ])
285
+ end
286
+
287
+ it "adds the $all selector" do
288
+ expect(selection.selector).to eq({
289
+ "field" => { "$all" => [ 1, 2 ] }
290
+ })
291
+ end
292
+
293
+ it "returns a cloned query" do
294
+ expect(selection).to_not equal(query)
295
+ end
296
+ end
297
+
298
+ context "when providing a single value" do
299
+
300
+ let(:selection) do
301
+ query.all(field: 1)
302
+ end
303
+
304
+ it "adds the $all selector with wrapped value" do
305
+ expect(selection.selector).to eq({
306
+ "field" => { "$all" => [ 1 ] }
307
+ })
308
+ end
309
+
310
+ it "returns a cloned query" do
311
+ expect(selection).to_not equal(query)
312
+ end
313
+ end
314
+ end
315
+
316
+ context "when serializers are provided" do
317
+
318
+ before(:all) do
319
+ class Field
320
+ def evolve(object)
321
+ Integer.evolve(object)
322
+ end
323
+ def localized?
324
+ false
325
+ end
326
+ end
327
+ end
328
+
329
+ after(:all) do
330
+ Object.send(:remove_const, :Field)
331
+ end
332
+
333
+ let!(:query) do
334
+ Mongoid::Query.new({}, { "field" => Field.new })
335
+ end
336
+
337
+ context "when providing an array" do
338
+
339
+ let(:selection) do
340
+ query.all(field: [ "1", "2" ])
341
+ end
342
+
343
+ it "adds the $all selector" do
344
+ expect(selection.selector).to eq({
345
+ "field" => { "$all" => [ 1, 2 ] }
346
+ })
347
+ end
348
+
349
+ it "returns a cloned query" do
350
+ expect(selection).to_not equal(query)
351
+ end
352
+ end
353
+
354
+ context "when providing a single value" do
355
+
356
+ let(:selection) do
357
+ query.all(field: "1")
358
+ end
359
+
360
+ it "adds the $all selector with wrapped value" do
361
+ expect(selection.selector).to eq({
362
+ "field" => { "$all" => [ 1 ] }
363
+ })
364
+ end
365
+
366
+ it "returns a cloned query" do
367
+ expect(selection).to_not equal(query)
368
+ end
369
+ end
370
+ end
371
+ end
372
+
373
+ context "when provided multiple criterion" do
374
+
375
+ context "when the criterion are for different fields" do
376
+
377
+ let(:selection) do
378
+ query.all(first: [ 1, 2 ], second: [ 3, 4 ])
379
+ end
380
+
381
+ it "adds the $all selectors" do
382
+ expect(selection.selector).to eq({
383
+ "first" => { "$all" => [ 1, 2 ] },
384
+ "second" => { "$all" => [ 3, 4 ] }
385
+ })
386
+ end
387
+
388
+ it "returns a cloned query" do
389
+ expect(selection).to_not equal(query)
390
+ end
391
+ end
392
+ end
393
+
394
+ context "when chaining the criterion" do
395
+
396
+ context "when the criterion are for different fields" do
397
+
398
+ let(:selection) do
399
+ query.all(first: [ 1, 2 ]).all(second: [ 3, 4 ])
400
+ end
401
+
402
+ it "adds the $all selectors" do
403
+ expect(selection.selector).to eq({
404
+ "first" => { "$all" => [ 1, 2 ] },
405
+ "second" => { "$all" => [ 3, 4 ] }
406
+ })
407
+ end
408
+
409
+ it "returns a cloned query" do
410
+ expect(selection).to_not equal(query)
411
+ end
412
+ end
413
+
414
+ context "when the criterion are on the same field" do
415
+
416
+ it_behaves_like 'supports merge strategies'
417
+ end
418
+ end
419
+ end
420
+
421
+ describe "#between" do
422
+
423
+ let(:query_method) { :between }
424
+
425
+ it_behaves_like 'requires an argument'
426
+ it_behaves_like 'requires a non-nil argument'
427
+
428
+ context "when provided a single range" do
429
+
430
+ let(:selection) do
431
+ query.between(field: 1..10)
432
+ end
433
+
434
+ it "adds the $gte and $lte selectors" do
435
+ expect(selection.selector).to eq({
436
+ "field" => { "$gte" => 1, "$lte" => 10 }
437
+ })
438
+ end
439
+
440
+ it "returns a cloned query" do
441
+ expect(selection).to_not equal(query)
442
+ end
443
+ end
444
+
445
+ context "when provided multiple ranges" do
446
+
447
+ context "when the ranges are on different fields" do
448
+
449
+ let(:selection) do
450
+ query.between(field: 1..10, key: 5..7)
451
+ end
452
+
453
+ it "adds the $gte and $lte selectors" do
454
+ expect(selection.selector).to eq({
455
+ "field" => { "$gte" => 1, "$lte" => 10 },
456
+ "key" => { "$gte" => 5, "$lte" => 7 }
457
+ })
458
+ end
459
+
460
+ it "returns a cloned query" do
461
+ expect(selection).to_not equal(query)
462
+ end
463
+ end
464
+ end
465
+ end
466
+
467
+ describe "#elem_match" do
468
+
469
+ let(:query_method) { :elem_match }
470
+
471
+ it_behaves_like 'requires an argument'
472
+ it_behaves_like 'requires a non-nil argument'
473
+
474
+ context "when provided a criterion" do
475
+
476
+ context "when there are no nested complex keys" do
477
+
478
+ let(:selection) do
479
+ query.elem_match(users: { name: "value" })
480
+ end
481
+
482
+ it "adds the $elemMatch expression" do
483
+ expect(selection.selector).to eq({
484
+ "users" => { "$elemMatch" => { "name" => "value" }}
485
+ })
486
+ end
487
+
488
+ it "returns a cloned query" do
489
+ expect(selection).to_not equal(query)
490
+ end
491
+ end
492
+
493
+ context "when there are nested complex keys" do
494
+
495
+ let(:time) do
496
+ Time.now
497
+ end
498
+
499
+ let(:selection) do
500
+ query.elem_match(users: { :time.gt => time })
501
+ end
502
+
503
+ it "adds the $elemMatch expression" do
504
+ expect(selection.selector).to eq({
505
+ "users" => { "$elemMatch" => { "time" => { "$gt" => time }}}
506
+ })
507
+ end
508
+
509
+ it "returns a cloned query" do
510
+ expect(selection).to_not equal(query)
511
+ end
512
+ end
513
+ end
514
+
515
+ context "when providing multiple criteria" do
516
+
517
+ context "when the fields differ" do
518
+
519
+ let(:selection) do
520
+ query.elem_match(
521
+ users: { name: "value" },
522
+ comments: { text: "value" }
523
+ )
524
+ end
525
+
526
+ it "adds the $elemMatch expression" do
527
+ expect(selection.selector).to eq({
528
+ "users" => { "$elemMatch" => { "name" => "value" }},
529
+ "comments" => { "$elemMatch" => { "text" => "value" }}
530
+ })
531
+ end
532
+
533
+ it "returns a cloned query" do
534
+ expect(selection).to_not equal(query)
535
+ end
536
+ end
537
+ end
538
+
539
+ context "when chaining multiple criteria" do
540
+
541
+ context "when the fields differ" do
542
+
543
+ let(:selection) do
544
+ query.
545
+ elem_match(users: { name: "value" }).
546
+ elem_match(comments: { text: "value" })
547
+ end
548
+
549
+ it "adds the $elemMatch expression" do
550
+ expect(selection.selector).to eq({
551
+ "users" => { "$elemMatch" => { "name" => "value" }},
552
+ "comments" => { "$elemMatch" => { "text" => "value" }}
553
+ })
554
+ end
555
+
556
+ it "returns a cloned query" do
557
+ expect(selection).to_not equal(query)
558
+ end
559
+ end
560
+
561
+ context "when the fields are the same" do
562
+
563
+ let(:selection) do
564
+ query.
565
+ elem_match(users: { name: "value" }).
566
+ elem_match(users: { state: "new" })
567
+ end
568
+
569
+ it "adds an $elemMatch expression" do
570
+ expect(selection.selector).to eq({
571
+ "users" => { "$elemMatch" => { "name" => "value" } },
572
+ "$and" => [ { "users" => { "$elemMatch" => { "state" => "new" } } } ],
573
+ })
574
+ end
575
+
576
+ it "returns a cloned query" do
577
+ expect(selection).to_not equal(query)
578
+ end
579
+ end
580
+ end
581
+ end
582
+
583
+ describe "#exists" do
584
+
585
+ let(:query_method) { :exists }
586
+
587
+ it_behaves_like 'requires an argument'
588
+ it_behaves_like 'requires a non-nil argument'
589
+
590
+ context "when provided a criterion" do
591
+
592
+ context "when provided a boolean" do
593
+
594
+ let(:selection) do
595
+ query.exists(users: true)
596
+ end
597
+
598
+ it "adds the $exists expression" do
599
+ expect(selection.selector).to eq({
600
+ "users" => { "$exists" => true }
601
+ })
602
+ end
603
+
604
+ it "returns a cloned query" do
605
+ expect(selection).to_not equal(query)
606
+ end
607
+ end
608
+
609
+ context "when provided a string" do
610
+
611
+ let(:selection) do
612
+ query.exists(users: "yes")
613
+ end
614
+
615
+ it "adds the $exists expression" do
616
+ expect(selection.selector).to eq({
617
+ "users" => { "$exists" => true }
618
+ })
619
+ end
620
+
621
+ it "returns a cloned query" do
622
+ expect(selection).to_not equal(query)
623
+ end
624
+ end
625
+ end
626
+
627
+ context "when providing multiple criteria" do
628
+
629
+ context "when the fields differ" do
630
+
631
+ context "when providing boolean values" do
632
+
633
+ let(:selection) do
634
+ query.exists(
635
+ users: true,
636
+ comments: true
637
+ )
638
+ end
639
+
640
+ it "adds the $exists expression" do
641
+ expect(selection.selector).to eq({
642
+ "users" => { "$exists" => true },
643
+ "comments" => { "$exists" => true }
644
+ })
645
+ end
646
+
647
+ it "returns a cloned query" do
648
+ expect(selection).to_not equal(query)
649
+ end
650
+ end
651
+
652
+ context "when providing string values" do
653
+
654
+ let(:selection) do
655
+ query.exists(
656
+ users: "y",
657
+ comments: "true"
658
+ )
659
+ end
660
+
661
+ it "adds the $exists expression" do
662
+ expect(selection.selector).to eq({
663
+ "users" => { "$exists" => true },
664
+ "comments" => { "$exists" => true }
665
+ })
666
+ end
667
+
668
+ it "returns a cloned query" do
669
+ expect(selection).to_not equal(query)
670
+ end
671
+ end
672
+ end
673
+ end
674
+
675
+ context "when chaining multiple criteria" do
676
+
677
+ context "when the fields differ" do
678
+
679
+ let(:selection) do
680
+ query.
681
+ exists(users: true).
682
+ exists(comments: true)
683
+ end
684
+
685
+ it "adds the $exists expression" do
686
+ expect(selection.selector).to eq({
687
+ "users" => { "$exists" => true },
688
+ "comments" => { "$exists" => true }
689
+ })
690
+ end
691
+
692
+ it "returns a cloned query" do
693
+ expect(selection).to_not equal(query)
694
+ end
695
+ end
696
+ end
697
+ end
698
+
699
+ describe "#geo_spatial" do
700
+
701
+ let(:query_method) { :geo_spatial }
702
+
703
+ it_behaves_like 'requires an argument'
704
+ it_behaves_like 'requires a non-nil argument'
705
+
706
+ context "when provided a criterion" do
707
+
708
+ context "when the geometry is a point intersection" do
709
+
710
+ let(:selection) do
711
+ query.geo_spatial(:location.intersects_point => [ 1, 10 ])
712
+ end
713
+
714
+ it "adds the $geoIntersects expression" do
715
+ expect(selection.selector).to eq({
716
+ "location" => {
717
+ "$geoIntersects" => {
718
+ "$geometry" => {
719
+ "type" => "Point",
720
+ "coordinates" => [ 1, 10 ]
721
+ }
722
+ }
723
+ }
724
+ })
725
+ end
726
+
727
+ it_behaves_like "returns a cloned query"
728
+ end
729
+
730
+ context "when the geometry is a line intersection" do
731
+
732
+ let(:selection) do
733
+ query.geo_spatial(:location.intersects_line => [[ 1, 10 ], [ 2, 10 ]])
734
+ end
735
+
736
+ it "adds the $geoIntersects expression" do
737
+ expect(selection.selector).to eq({
738
+ "location" => {
739
+ "$geoIntersects" => {
740
+ "$geometry" => {
741
+ "type" => "LineString",
742
+ "coordinates" => [[ 1, 10 ], [ 2, 10 ]]
743
+ }
744
+ }
745
+ }
746
+ })
747
+ end
748
+
749
+ it_behaves_like "returns a cloned query"
750
+ end
751
+
752
+ context "when the geometry is a polygon intersection" do
753
+
754
+ let(:selection) do
755
+ query.geo_spatial(:location.intersects_polygon => [[[ 1, 10 ], [ 2, 10 ], [ 1, 10 ]]])
756
+ end
757
+
758
+ it "adds the $geoIntersects expression" do
759
+ expect(selection.selector).to eq({
760
+ "location" => {
761
+ "$geoIntersects" => {
762
+ "$geometry" => {
763
+ "type" => "Polygon",
764
+ "coordinates" => [[[ 1, 10 ], [ 2, 10 ], [ 1, 10 ]]]
765
+ }
766
+ }
767
+ }
768
+ })
769
+ end
770
+
771
+ it_behaves_like "returns a cloned query"
772
+ end
773
+
774
+ context "when the geometry is within a polygon" do
775
+
776
+ let(:selection) do
777
+ query.geo_spatial(:location.within_polygon => [[[ 1, 10 ], [ 2, 10 ], [ 1, 10 ]]])
778
+ end
779
+
780
+ it "adds the $geoIntersects expression" do
781
+ expect(selection.selector).to eq({
782
+ "location" => {
783
+ "$geoWithin" => {
784
+ "$geometry" => {
785
+ "type" => "Polygon",
786
+ "coordinates" => [[[ 1, 10 ], [ 2, 10 ], [ 1, 10 ]]]
787
+ }
788
+ }
789
+ }
790
+ })
791
+ end
792
+
793
+ context "when used with the $box operator ($geoWithin query) " do
794
+ let(:selection) do
795
+ query.geo_spatial(:location.within_box => [[ 1, 10 ], [ 2, 10 ]])
796
+ end
797
+
798
+ it "adds the $geoIntersects expression" do
799
+ expect(selection.selector).to eq({
800
+ "location" => {
801
+ "$geoWithin" => {
802
+ "$box" => [
803
+ [ 1, 10 ], [ 2, 10 ]
804
+ ]
805
+ }
806
+ }
807
+ })
808
+ end
809
+ end
810
+
811
+ it_behaves_like "returns a cloned query"
812
+ end
813
+ end
814
+ end
815
+
816
+ describe "#gt" do
817
+
818
+ let(:query_method) { :gt }
819
+
820
+ it_behaves_like 'requires an argument'
821
+ it_behaves_like 'requires a non-nil argument'
822
+
823
+ context "when provided a single criterion" do
824
+
825
+ let(:selection) do
826
+ query.gt(field: 10)
827
+ end
828
+
829
+ it "adds the $gt selector" do
830
+ expect(selection.selector).to eq({
831
+ "field" => { "$gt" => 10 }
832
+ })
833
+ end
834
+
835
+ it "returns a cloned query" do
836
+ expect(selection).to_not equal(query)
837
+ end
838
+ end
839
+
840
+ context "when provided multiple criterion" do
841
+
842
+ context "when the criterion are for different fields" do
843
+
844
+ let(:selection) do
845
+ query.gt(first: 10, second: 15)
846
+ end
847
+
848
+ it "adds the $gt selectors" do
849
+ expect(selection.selector).to eq({
850
+ "first" => { "$gt" => 10 },
851
+ "second" => { "$gt" => 15 }
852
+ })
853
+ end
854
+
855
+ it "returns a cloned query" do
856
+ expect(selection).to_not equal(query)
857
+ end
858
+ end
859
+ end
860
+
861
+ context "when chaining the criterion" do
862
+
863
+ context "when the criterion are for different fields" do
864
+
865
+ let(:selection) do
866
+ query.gt(first: 10).gt(second: 15)
867
+ end
868
+
869
+ it "adds the $gt selectors" do
870
+ expect(selection.selector).to eq({
871
+ "first" => { "$gt" => 10 },
872
+ "second" => { "$gt" => 15 }
873
+ })
874
+ end
875
+
876
+ it "returns a cloned query" do
877
+ expect(selection).to_not equal(query)
878
+ end
879
+ end
880
+
881
+ context "when the criterion are on the same field" do
882
+
883
+ let(:selection) do
884
+ query.gt(first: 10).gt(first: 15)
885
+ end
886
+
887
+ it "adds a second $gt selector" do
888
+ expect(selection.selector).to eq({
889
+ "first" => { "$gt" => 10 },
890
+ "$and" => [{ "first" => { "$gt" => 15 } }]
891
+ })
892
+ end
893
+
894
+ it "returns a cloned query" do
895
+ expect(selection).to_not equal(query)
896
+ end
897
+ end
898
+ end
899
+ end
900
+
901
+ describe "#gte" do
902
+
903
+ let(:query_method) { :gte }
904
+
905
+ it_behaves_like 'requires an argument'
906
+ it_behaves_like 'requires a non-nil argument'
907
+
908
+ context "when provided a single criterion" do
909
+
910
+ let(:selection) do
911
+ query.gte(field: 10)
912
+ end
913
+
914
+ it "adds the $gte selector" do
915
+ expect(selection.selector).to eq({
916
+ "field" => { "$gte" => 10 }
917
+ })
918
+ end
919
+
920
+ it "returns a cloned query" do
921
+ expect(selection).to_not equal(query)
922
+ end
923
+ end
924
+
925
+ context "when provided multiple criterion" do
926
+
927
+ context "when the criterion are for different fields" do
928
+
929
+ let(:selection) do
930
+ query.gte(first: 10, second: 15)
931
+ end
932
+
933
+ it "adds the $gte selectors" do
934
+ expect(selection.selector).to eq({
935
+ "first" => { "$gte" => 10 },
936
+ "second" => { "$gte" => 15 }
937
+ })
938
+ end
939
+
940
+ it "returns a cloned query" do
941
+ expect(selection).to_not equal(query)
942
+ end
943
+ end
944
+ end
945
+
946
+ context "when chaining the criterion" do
947
+
948
+ context "when the criterion are for different fields" do
949
+
950
+ let(:selection) do
951
+ query.gte(first: 10).gte(second: 15)
952
+ end
953
+
954
+ it "adds the $gte selectors" do
955
+ expect(selection.selector).to eq({
956
+ "first" => { "$gte" => 10 },
957
+ "second" => { "$gte" => 15 }
958
+ })
959
+ end
960
+
961
+ it "returns a cloned query" do
962
+ expect(selection).to_not equal(query)
963
+ end
964
+ end
965
+
966
+ context "when the criterion are on the same field" do
967
+
968
+ let(:selection) do
969
+ query.gte(first: 10).gte(first: 15)
970
+ end
971
+
972
+ it "adds a second $gte selector" do
973
+ expect(selection.selector).to eq({
974
+ "first" => { "$gte" => 10 },
975
+ "$and" => [ { "first" => { "$gte" => 15 } } ]
976
+ })
977
+ end
978
+
979
+ it "returns a cloned query" do
980
+ expect(selection).to_not equal(query)
981
+ end
982
+ end
983
+ end
984
+ end
985
+
986
+ describe "#in" do
987
+
988
+ let(:query_method) { :in }
989
+ let(:operator) { '$in' }
990
+
991
+ it_behaves_like 'requires an argument'
992
+ it_behaves_like 'requires a non-nil argument'
993
+
994
+ context "when provided a single criterion" do
995
+
996
+ context "when providing an array" do
997
+
998
+ let(:selection) do
999
+ query.in(field: [ 1, 2 ])
1000
+ end
1001
+
1002
+ it "adds the $in selector" do
1003
+ expect(selection.selector).to eq({
1004
+ "field" => { "$in" => [ 1, 2 ] }
1005
+ })
1006
+ end
1007
+
1008
+ it "returns a cloned query" do
1009
+ expect(selection).to_not equal(query)
1010
+ end
1011
+ end
1012
+
1013
+ context "when providing a single value" do
1014
+
1015
+ let(:selection) do
1016
+ query.in(field: 1)
1017
+ end
1018
+
1019
+ it "adds the $in selector with wrapped value" do
1020
+ expect(selection.selector).to eq({
1021
+ "field" => { "$in" => [ 1 ] }
1022
+ })
1023
+ end
1024
+
1025
+ it "returns a cloned query" do
1026
+ expect(selection).to_not equal(query)
1027
+ end
1028
+ end
1029
+ end
1030
+
1031
+ context "when provided multiple criterion" do
1032
+
1033
+ context "when the criterion are for different fields" do
1034
+
1035
+ let(:selection) do
1036
+ query.in(first: [ 1, 2 ], second: 3..4)
1037
+ end
1038
+
1039
+ it "adds the $in selectors" do
1040
+ expect(selection.selector).to eq({
1041
+ "first" => { "$in" => [ 1, 2 ] },
1042
+ "second" => { "$in" => [ 3, 4 ] }
1043
+ })
1044
+ end
1045
+
1046
+ it "returns a cloned query" do
1047
+ expect(selection).to_not equal(query)
1048
+ end
1049
+ end
1050
+ end
1051
+
1052
+ context "when chaining the criterion" do
1053
+
1054
+ context "when the criterion are for different fields" do
1055
+
1056
+ let(:selection) do
1057
+ query.in(first: [ 1, 2 ]).in(second: [ 3, 4 ])
1058
+ end
1059
+
1060
+ it "adds the $in selectors" do
1061
+ expect(selection.selector).to eq({
1062
+ "first" => { "$in" => [ 1, 2 ] },
1063
+ "second" => { "$in" => [ 3, 4 ] }
1064
+ })
1065
+ end
1066
+
1067
+ it "returns a cloned query" do
1068
+ expect(selection).to_not equal(query)
1069
+ end
1070
+ end
1071
+
1072
+ context "when the criterion are on the same field" do
1073
+
1074
+ it_behaves_like 'supports merge strategies'
1075
+ end
1076
+ end
1077
+ end
1078
+
1079
+ describe "#lt" do
1080
+
1081
+ let(:query_method) { :lt }
1082
+
1083
+ it_behaves_like 'requires an argument'
1084
+ it_behaves_like 'requires a non-nil argument'
1085
+
1086
+ context "when provided a single criterion" do
1087
+
1088
+ let(:selection) do
1089
+ query.lt(field: 10)
1090
+ end
1091
+
1092
+ it "adds the $lt selector" do
1093
+ expect(selection.selector).to eq({
1094
+ "field" => { "$lt" => 10 }
1095
+ })
1096
+ end
1097
+
1098
+ it "returns a cloned query" do
1099
+ expect(selection).to_not equal(query)
1100
+ end
1101
+ end
1102
+
1103
+ context "when provided multiple criterion" do
1104
+
1105
+ context "when the criterion are for different fields" do
1106
+
1107
+ let(:selection) do
1108
+ query.lt(first: 10, second: 15)
1109
+ end
1110
+
1111
+ it "adds the $lt selectors" do
1112
+ expect(selection.selector).to eq({
1113
+ "first" => { "$lt" => 10 },
1114
+ "second" => { "$lt" => 15 }
1115
+ })
1116
+ end
1117
+
1118
+ it "returns a cloned query" do
1119
+ expect(selection).to_not equal(query)
1120
+ end
1121
+ end
1122
+ end
1123
+
1124
+ context "when chaining the criterion" do
1125
+
1126
+ context "when the criterion are for different fields" do
1127
+
1128
+ let(:selection) do
1129
+ query.lt(first: 10).lt(second: 15)
1130
+ end
1131
+
1132
+ it "adds the $lt selectors" do
1133
+ expect(selection.selector).to eq({
1134
+ "first" => { "$lt" => 10 },
1135
+ "second" => { "$lt" => 15 }
1136
+ })
1137
+ end
1138
+
1139
+ it "returns a cloned query" do
1140
+ expect(selection).to_not equal(query)
1141
+ end
1142
+ end
1143
+
1144
+ context "when the criterion are on the same field" do
1145
+
1146
+ let(:selection) do
1147
+ query.lt(first: 10).lt(first: 15)
1148
+ end
1149
+
1150
+ it "adds a second $lt selector" do
1151
+ expect(selection.selector).to eq({
1152
+ "first" => { "$lt" => 10 },
1153
+ "$and" => [ { "first" => { "$lt" => 15 } } ]
1154
+ })
1155
+ end
1156
+
1157
+ it "returns a cloned query" do
1158
+ expect(selection).to_not equal(query)
1159
+ end
1160
+ end
1161
+ end
1162
+ end
1163
+
1164
+ describe "#lte" do
1165
+
1166
+ let(:query_method) { :lte }
1167
+
1168
+ it_behaves_like 'requires an argument'
1169
+ it_behaves_like 'requires a non-nil argument'
1170
+
1171
+ context "when provided a single criterion" do
1172
+
1173
+ let(:selection) do
1174
+ query.lte(field: 10)
1175
+ end
1176
+
1177
+ it "adds the $lte selector" do
1178
+ expect(selection.selector).to eq({
1179
+ "field" => { "$lte" => 10 }
1180
+ })
1181
+ end
1182
+
1183
+ it "returns a cloned query" do
1184
+ expect(selection).to_not equal(query)
1185
+ end
1186
+ end
1187
+
1188
+ context "when provided multiple criterion" do
1189
+
1190
+ context "when the criterion are for different fields" do
1191
+
1192
+ let(:selection) do
1193
+ query.lte(first: 10, second: 15)
1194
+ end
1195
+
1196
+ it "adds the $lte selectors" do
1197
+ expect(selection.selector).to eq({
1198
+ "first" => { "$lte" => 10 },
1199
+ "second" => { "$lte" => 15 }
1200
+ })
1201
+ end
1202
+
1203
+ it "returns a cloned query" do
1204
+ expect(selection).to_not equal(query)
1205
+ end
1206
+ end
1207
+ end
1208
+
1209
+ context "when chaining the criterion" do
1210
+
1211
+ context "when the criterion are for different fields" do
1212
+
1213
+ let(:selection) do
1214
+ query.lte(first: 10).lte(second: 15)
1215
+ end
1216
+
1217
+ it "adds the $lte selectors" do
1218
+ expect(selection.selector).to eq({
1219
+ "first" => { "$lte" => 10 },
1220
+ "second" => { "$lte" => 15 }
1221
+ })
1222
+ end
1223
+
1224
+ it "returns a cloned query" do
1225
+ expect(selection).to_not equal(query)
1226
+ end
1227
+ end
1228
+
1229
+ context "when the criterion are on the same field" do
1230
+
1231
+ let(:selection) do
1232
+ query.lte(first: 10).lte(first: 15)
1233
+ end
1234
+
1235
+ it "adds a second $lte selector" do
1236
+ expect(selection.selector).to eq({
1237
+ "first" => { "$lte" => 10 },
1238
+ "$and" => [ { "first" => { "$lte" => 15 } } ]
1239
+ })
1240
+ end
1241
+
1242
+ it "returns a cloned query" do
1243
+ expect(selection).to_not equal(query)
1244
+ end
1245
+ end
1246
+ end
1247
+ end
1248
+
1249
+ describe "#max_distance" do
1250
+
1251
+ let(:query_method) { :max_distance }
1252
+
1253
+ it_behaves_like 'requires an argument'
1254
+ it_behaves_like 'requires a non-nil argument'
1255
+
1256
+ context "when provided a criterion" do
1257
+
1258
+ context "when a $near criterion exists on the same field" do
1259
+
1260
+ let(:selection) do
1261
+ query.near(location: [ 1, 1 ]).max_distance(location: 50)
1262
+ end
1263
+
1264
+ it "adds the $maxDistance expression" do
1265
+ expect(selection.selector).to eq({
1266
+ "location" => { "$near" => [ 1, 1 ], "$maxDistance" => 50 }
1267
+ })
1268
+ end
1269
+
1270
+ it "returns a cloned query" do
1271
+ expect(selection).to_not equal(query)
1272
+ end
1273
+ end
1274
+ end
1275
+ end
1276
+
1277
+ describe "#mod" do
1278
+
1279
+ let(:query_method) { :mod }
1280
+
1281
+ it_behaves_like 'requires an argument'
1282
+ it_behaves_like 'requires a non-nil argument'
1283
+
1284
+ context "when provided a criterion" do
1285
+
1286
+ let(:selection) do
1287
+ query.mod(value: [ 10, 1 ])
1288
+ end
1289
+
1290
+ it "adds the $mod expression" do
1291
+ expect(selection.selector).to eq({
1292
+ "value" => { "$mod" => [ 10, 1 ] }
1293
+ })
1294
+ end
1295
+
1296
+ it "returns a cloned query" do
1297
+ expect(selection).to_not equal(query)
1298
+ end
1299
+ end
1300
+
1301
+ context "when providing multiple criteria" do
1302
+
1303
+ context "when the fields differ" do
1304
+
1305
+ let(:selection) do
1306
+ query.mod(
1307
+ value: [ 10, 1 ],
1308
+ comments: [ 10, 1 ]
1309
+ )
1310
+ end
1311
+
1312
+ it "adds the $mod expression" do
1313
+ expect(selection.selector).to eq({
1314
+ "value" => { "$mod" => [ 10, 1 ] },
1315
+ "comments" => { "$mod" => [ 10, 1 ] }
1316
+ })
1317
+ end
1318
+
1319
+ it "returns a cloned query" do
1320
+ expect(selection).to_not equal(query)
1321
+ end
1322
+ end
1323
+ end
1324
+
1325
+ context "when chaining multiple criteria" do
1326
+
1327
+ context "when the fields differ" do
1328
+
1329
+ let(:selection) do
1330
+ query.
1331
+ mod(value: [ 10, 1 ]).
1332
+ mod(result: [ 10, 1 ])
1333
+ end
1334
+
1335
+ it "adds the $mod expression" do
1336
+ expect(selection.selector).to eq({
1337
+ "value" => { "$mod" => [ 10, 1 ] },
1338
+ "result" => { "$mod" => [ 10, 1 ] }
1339
+ })
1340
+ end
1341
+
1342
+ it "returns a cloned query" do
1343
+ expect(selection).to_not equal(query)
1344
+ end
1345
+ end
1346
+ end
1347
+ end
1348
+
1349
+ describe "#ne" do
1350
+
1351
+ let(:query_method) { :ne }
1352
+
1353
+ it_behaves_like 'requires an argument'
1354
+ it_behaves_like 'requires a non-nil argument'
1355
+
1356
+ context "when provided a criterion" do
1357
+
1358
+ let(:selection) do
1359
+ query.ne(value: 10)
1360
+ end
1361
+
1362
+ it "adds the $ne expression" do
1363
+ expect(selection.selector).to eq({
1364
+ "value" => { "$ne" => 10 }
1365
+ })
1366
+ end
1367
+
1368
+ it "returns a cloned query" do
1369
+ expect(selection).to_not equal(query)
1370
+ end
1371
+ end
1372
+
1373
+ context "when providing multiple criteria" do
1374
+
1375
+ context "when the fields differ" do
1376
+
1377
+ let(:selection) do
1378
+ query.ne(
1379
+ value: 10,
1380
+ comments: 10
1381
+ )
1382
+ end
1383
+
1384
+ it "adds the $ne expression" do
1385
+ expect(selection.selector).to eq({
1386
+ "value" => { "$ne" => 10 },
1387
+ "comments" => { "$ne" => 10 }
1388
+ })
1389
+ end
1390
+
1391
+ it "returns a cloned query" do
1392
+ expect(selection).to_not equal(query)
1393
+ end
1394
+ end
1395
+ end
1396
+
1397
+ context "when chaining multiple criteria" do
1398
+
1399
+ context "when the fields differ" do
1400
+
1401
+ let(:selection) do
1402
+ query.
1403
+ ne(value: 10).
1404
+ ne(result: 10)
1405
+ end
1406
+
1407
+ it "adds the $ne expression" do
1408
+ expect(selection.selector).to eq({
1409
+ "value" => { "$ne" => 10 },
1410
+ "result" => { "$ne" => 10 }
1411
+ })
1412
+ end
1413
+
1414
+ it "returns a cloned query" do
1415
+ expect(selection).to_not equal(query)
1416
+ end
1417
+ end
1418
+ end
1419
+ end
1420
+
1421
+ describe "#near" do
1422
+
1423
+ let(:query_method) { :near }
1424
+
1425
+ it_behaves_like 'requires an argument'
1426
+ it_behaves_like 'requires a non-nil argument'
1427
+
1428
+ context "when provided a criterion" do
1429
+
1430
+ let(:selection) do
1431
+ query.near(location: [ 20, 21 ])
1432
+ end
1433
+
1434
+ it "adds the $near expression" do
1435
+ expect(selection.selector).to eq({
1436
+ "location" => { "$near" => [ 20, 21 ] }
1437
+ })
1438
+ end
1439
+
1440
+ it "returns a cloned query" do
1441
+ expect(selection).to_not equal(query)
1442
+ end
1443
+ end
1444
+
1445
+ context "when providing multiple criteria" do
1446
+
1447
+ context "when the fields differ" do
1448
+
1449
+ let(:selection) do
1450
+ query.near(
1451
+ location: [ 20, 21 ],
1452
+ comments: [ 20, 21 ]
1453
+ )
1454
+ end
1455
+
1456
+ it "adds the $near expression" do
1457
+ expect(selection.selector).to eq({
1458
+ "location" => { "$near" => [ 20, 21 ] },
1459
+ "comments" => { "$near" => [ 20, 21 ] }
1460
+ })
1461
+ end
1462
+
1463
+ it "returns a cloned query" do
1464
+ expect(selection).to_not equal(query)
1465
+ end
1466
+ end
1467
+ end
1468
+
1469
+ context "when chaining multiple criteria" do
1470
+
1471
+ context "when the fields differ" do
1472
+
1473
+ let(:selection) do
1474
+ query.
1475
+ near(location: [ 20, 21 ]).
1476
+ near(comments: [ 20, 21 ])
1477
+ end
1478
+
1479
+ it "adds the $near expression" do
1480
+ expect(selection.selector).to eq({
1481
+ "location" => { "$near" => [ 20, 21 ] },
1482
+ "comments" => { "$near" => [ 20, 21 ] }
1483
+ })
1484
+ end
1485
+
1486
+ it "returns a cloned query" do
1487
+ expect(selection).to_not equal(query)
1488
+ end
1489
+ end
1490
+ end
1491
+ end
1492
+
1493
+ describe "#near_sphere" do
1494
+
1495
+ let(:query_method) { :near_sphere }
1496
+
1497
+ it_behaves_like 'requires an argument'
1498
+ it_behaves_like 'requires a non-nil argument'
1499
+
1500
+ context "when provided a criterion" do
1501
+
1502
+ let(:selection) do
1503
+ query.near_sphere(location: [ 20, 21 ])
1504
+ end
1505
+
1506
+ it "adds the $nearSphere expression" do
1507
+ expect(selection.selector).to eq({
1508
+ "location" => { "$nearSphere" => [ 20, 21 ] }
1509
+ })
1510
+ end
1511
+
1512
+ it "returns a cloned query" do
1513
+ expect(selection).to_not equal(query)
1514
+ end
1515
+ end
1516
+
1517
+ context "when providing multiple criteria" do
1518
+
1519
+ context "when the fields differ" do
1520
+
1521
+ let(:selection) do
1522
+ query.near_sphere(
1523
+ location: [ 20, 21 ],
1524
+ comments: [ 20, 21 ]
1525
+ )
1526
+ end
1527
+
1528
+ it "adds the $nearSphere expression" do
1529
+ expect(selection.selector).to eq({
1530
+ "location" => { "$nearSphere" => [ 20, 21 ] },
1531
+ "comments" => { "$nearSphere" => [ 20, 21 ] }
1532
+ })
1533
+ end
1534
+
1535
+ it "returns a cloned query" do
1536
+ expect(selection).to_not equal(query)
1537
+ end
1538
+ end
1539
+ end
1540
+
1541
+ context "when chaining multiple criteria" do
1542
+
1543
+ context "when the fields differ" do
1544
+
1545
+ let(:selection) do
1546
+ query.
1547
+ near_sphere(location: [ 20, 21 ]).
1548
+ near_sphere(comments: [ 20, 21 ])
1549
+ end
1550
+
1551
+ it "adds the $nearSphere expression" do
1552
+ expect(selection.selector).to eq({
1553
+ "location" => { "$nearSphere" => [ 20, 21 ] },
1554
+ "comments" => { "$nearSphere" => [ 20, 21 ] }
1555
+ })
1556
+ end
1557
+
1558
+ it "returns a cloned query" do
1559
+ expect(selection).to_not equal(query)
1560
+ end
1561
+ end
1562
+ end
1563
+ end
1564
+
1565
+ describe "#nin" do
1566
+
1567
+ let(:query_method) { :nin }
1568
+ let(:operator) { '$nin' }
1569
+
1570
+ it_behaves_like 'requires an argument'
1571
+ it_behaves_like 'requires a non-nil argument'
1572
+
1573
+ context "when provided a single criterion" do
1574
+
1575
+ context "when providing an array" do
1576
+
1577
+ let(:selection) do
1578
+ query.nin(field: [ 1, 2 ])
1579
+ end
1580
+
1581
+ it "adds the $nin selector" do
1582
+ expect(selection.selector).to eq({
1583
+ "field" => { "$nin" => [ 1, 2 ] }
1584
+ })
1585
+ end
1586
+
1587
+ it "returns a cloned query" do
1588
+ expect(selection).to_not equal(query)
1589
+ end
1590
+ end
1591
+
1592
+ context "when providing a single value" do
1593
+
1594
+ let(:selection) do
1595
+ query.nin(field: 1)
1596
+ end
1597
+
1598
+ it "adds the $nin selector with wrapped value" do
1599
+ expect(selection.selector).to eq({
1600
+ "field" => { "$nin" => [ 1 ] }
1601
+ })
1602
+ end
1603
+
1604
+ it "returns a cloned query" do
1605
+ expect(selection).to_not equal(query)
1606
+ end
1607
+ end
1608
+ end
1609
+
1610
+ context "when provided multiple criterion" do
1611
+
1612
+ context "when the criterion are for different fields" do
1613
+
1614
+ let(:selection) do
1615
+ query.nin(first: [ 1, 2 ], second: [ 3, 4 ])
1616
+ end
1617
+
1618
+ it "adds the $nin selectors" do
1619
+ expect(selection.selector).to eq({
1620
+ "first" => { "$nin" => [ 1, 2 ] },
1621
+ "second" => { "$nin" => [ 3, 4 ] }
1622
+ })
1623
+ end
1624
+
1625
+ it "returns a cloned query" do
1626
+ expect(selection).to_not equal(query)
1627
+ end
1628
+ end
1629
+ end
1630
+
1631
+ context "when chaining the criterion" do
1632
+
1633
+ context "when the criterion are for different fields" do
1634
+
1635
+ let(:selection) do
1636
+ query.nin(first: [ 1, 2 ]).nin(second: [ 3, 4 ])
1637
+ end
1638
+
1639
+ it "adds the $nin selectors" do
1640
+ expect(selection.selector).to eq({
1641
+ "first" => { "$nin" => [ 1, 2 ] },
1642
+ "second" => { "$nin" => [ 3, 4 ] }
1643
+ })
1644
+ end
1645
+
1646
+ it "returns a cloned query" do
1647
+ expect(selection).to_not equal(query)
1648
+ end
1649
+ end
1650
+
1651
+ context "when the criterion are on the same field" do
1652
+
1653
+ it_behaves_like 'supports merge strategies'
1654
+ end
1655
+ end
1656
+ end
1657
+
1658
+ describe "#with_size" do
1659
+
1660
+ let(:query_method) { :with_size }
1661
+
1662
+ it_behaves_like 'requires an argument'
1663
+ it_behaves_like 'requires a non-nil argument'
1664
+
1665
+ context "when provided a single criterion" do
1666
+
1667
+ context "when provided an integer" do
1668
+
1669
+ let(:selection) do
1670
+ query.with_size(field: 10)
1671
+ end
1672
+
1673
+ it "adds the $size selector" do
1674
+ expect(selection.selector).to eq({
1675
+ "field" => { "$size" => 10 }
1676
+ })
1677
+ end
1678
+
1679
+ it "returns a cloned query" do
1680
+ expect(selection).to_not equal(query)
1681
+ end
1682
+ end
1683
+
1684
+ context "when provided a string" do
1685
+
1686
+ let(:selection) do
1687
+ query.with_size(field: "10")
1688
+ end
1689
+
1690
+ it "adds the $size selector with an integer" do
1691
+ expect(selection.selector).to eq({
1692
+ "field" => { "$size" => 10 }
1693
+ })
1694
+ end
1695
+
1696
+ it "returns a cloned query" do
1697
+ expect(selection).to_not equal(query)
1698
+ end
1699
+ end
1700
+ end
1701
+
1702
+ context "when provided multiple criterion" do
1703
+
1704
+ context "when the criterion are for different fields" do
1705
+
1706
+ context "when provided integers" do
1707
+
1708
+ let(:selection) do
1709
+ query.with_size(first: 10, second: 15)
1710
+ end
1711
+
1712
+ it "adds the $size selectors" do
1713
+ expect(selection.selector).to eq({
1714
+ "first" => { "$size" => 10 },
1715
+ "second" => { "$size" => 15 }
1716
+ })
1717
+ end
1718
+
1719
+ it "returns a cloned query" do
1720
+ expect(selection).to_not equal(query)
1721
+ end
1722
+ end
1723
+
1724
+ context "when provided strings" do
1725
+
1726
+ let(:selection) do
1727
+ query.with_size(first: "10", second: "15")
1728
+ end
1729
+
1730
+ it "adds the $size selectors" do
1731
+ expect(selection.selector).to eq({
1732
+ "first" => { "$size" => 10 },
1733
+ "second" => { "$size" => 15 }
1734
+ })
1735
+ end
1736
+
1737
+ it "returns a cloned query" do
1738
+ expect(selection).to_not equal(query)
1739
+ end
1740
+ end
1741
+ end
1742
+ end
1743
+
1744
+ context "when chaining the criterion" do
1745
+
1746
+ context "when the criterion are for different fields" do
1747
+
1748
+ let(:selection) do
1749
+ query.with_size(first: 10).with_size(second: 15)
1750
+ end
1751
+
1752
+ it "adds the $size selectors" do
1753
+ expect(selection.selector).to eq({
1754
+ "first" => { "$size" => 10 },
1755
+ "second" => { "$size" => 15 }
1756
+ })
1757
+ end
1758
+
1759
+ it "returns a cloned query" do
1760
+ expect(selection).to_not equal(query)
1761
+ end
1762
+ end
1763
+
1764
+ context "when the criterion are on the same field" do
1765
+
1766
+ let(:selection) do
1767
+ query.with_size(first: 10).with_size(first: 15)
1768
+ end
1769
+
1770
+ it "overwrites the first $size selector" do
1771
+ expect(selection.selector).to eq({
1772
+ "first" => { "$size" => 15 }
1773
+ })
1774
+ end
1775
+
1776
+ it "returns a cloned query" do
1777
+ expect(selection).to_not equal(query)
1778
+ end
1779
+ end
1780
+ end
1781
+ end
1782
+
1783
+ describe "#with_type" do
1784
+
1785
+ let(:query_method) { :with_type }
1786
+
1787
+ it_behaves_like 'requires an argument'
1788
+ it_behaves_like 'requires a non-nil argument'
1789
+
1790
+ context "when provided a single criterion" do
1791
+
1792
+ context "when provided an integer" do
1793
+
1794
+ let(:selection) do
1795
+ query.with_type(field: 10)
1796
+ end
1797
+
1798
+ it "adds the $type selector" do
1799
+ expect(selection.selector).to eq({
1800
+ "field" => { "$type" => 10 }
1801
+ })
1802
+ end
1803
+
1804
+ it "returns a cloned query" do
1805
+ expect(selection).to_not equal(query)
1806
+ end
1807
+ end
1808
+
1809
+ context "when provided a string" do
1810
+
1811
+ let(:selection) do
1812
+ query.with_type(field: "10")
1813
+ end
1814
+
1815
+ it "adds the $type selector" do
1816
+ expect(selection.selector).to eq({
1817
+ "field" => { "$type" => 10 }
1818
+ })
1819
+ end
1820
+
1821
+ it "returns a cloned query" do
1822
+ expect(selection).to_not equal(query)
1823
+ end
1824
+ end
1825
+ end
1826
+
1827
+ context "when provided multiple criterion" do
1828
+
1829
+ context "when the criterion are for different fields" do
1830
+
1831
+ let(:selection) do
1832
+ query.with_type(first: 10, second: 15)
1833
+ end
1834
+
1835
+ it "adds the $type selectors" do
1836
+ expect(selection.selector).to eq({
1837
+ "first" => { "$type" => 10 },
1838
+ "second" => { "$type" => 15 }
1839
+ })
1840
+ end
1841
+
1842
+ it "returns a cloned query" do
1843
+ expect(selection).to_not equal(query)
1844
+ end
1845
+ end
1846
+ end
1847
+
1848
+ context "when chaining the criterion" do
1849
+
1850
+ context "when the criterion are for different fields" do
1851
+
1852
+ let(:selection) do
1853
+ query.with_type(first: 10).with_type(second: 15)
1854
+ end
1855
+
1856
+ it "adds the $type selectors" do
1857
+ expect(selection.selector).to eq({
1858
+ "first" => { "$type" => 10 },
1859
+ "second" => { "$type" => 15 }
1860
+ })
1861
+ end
1862
+
1863
+ it "returns a cloned query" do
1864
+ expect(selection).to_not equal(query)
1865
+ end
1866
+ end
1867
+
1868
+ context "when the criterion are on the same field" do
1869
+
1870
+ let(:selection) do
1871
+ query.with_type(first: 10).with_type(first: 15)
1872
+ end
1873
+
1874
+ it "overwrites the first $type selector" do
1875
+ expect(selection.selector).to eq({
1876
+ "first" => { "$type" => 15 }
1877
+ })
1878
+ end
1879
+
1880
+ it "returns a cloned query" do
1881
+ expect(selection).to_not equal(query)
1882
+ end
1883
+ end
1884
+ end
1885
+ end
1886
+
1887
+ describe "#text_search" do
1888
+
1889
+ context "when providing a search string" do
1890
+
1891
+ let(:selection) do
1892
+ query.text_search("testing")
1893
+ end
1894
+
1895
+ it "constructs a text search document" do
1896
+ expect(selection.selector).to eq({ '$text' => { '$search' => "testing" }})
1897
+ end
1898
+
1899
+ it "returns the cloned selectable" do
1900
+ expect(selection).to be_a(Mongoid::Criteria::Queryable::Selectable)
1901
+ end
1902
+
1903
+ context "when providing text search options" do
1904
+
1905
+ let(:selection) do
1906
+ query.text_search("essais", { :$language => "fr" })
1907
+ end
1908
+
1909
+ it "constructs a text search document" do
1910
+ expect(selection.selector['$text']['$search']).to eq("essais")
1911
+ end
1912
+
1913
+ it "add the options to the text search document" do
1914
+ expect(selection.selector['$text'][:$language]).to eq("fr")
1915
+ end
1916
+
1917
+ it_behaves_like "returns a cloned query"
1918
+ end
1919
+ end
1920
+
1921
+ context 'when given more than once' do
1922
+ let(:selection) do
1923
+ query.text_search("one").text_search('two')
1924
+ end
1925
+
1926
+ # MongoDB server can only handle one text expression at a time,
1927
+ # per https://www.mongodb.com/docs/manual/reference/operator/query/text/.
1928
+ # Nonetheless we test that the query is built correctly when
1929
+ # a user supplies more than one text condition.
1930
+ it 'merges conditions' do
1931
+ expect(Mongoid.logger).to receive(:warn)
1932
+ expect(selection.selector).to eq('$and' => [
1933
+ {'$text' => {'$search' => 'one'}}
1934
+ ],
1935
+ '$text' => {'$search' => 'two'},
1936
+ )
1937
+ end
1938
+ end
1939
+ end
1940
+
1941
+ describe Symbol do
1942
+
1943
+ describe "#all" do
1944
+
1945
+ let(:key) do
1946
+ :field.all
1947
+ end
1948
+
1949
+ it "returns a selection key" do
1950
+ expect(key).to be_a(Mongoid::Criteria::Queryable::Key)
1951
+ end
1952
+
1953
+ it "sets the name as the key" do
1954
+ expect(key.name).to eq(:field)
1955
+ end
1956
+
1957
+ it "sets the operator as $all" do
1958
+ expect(key.operator).to eq("$all")
1959
+ end
1960
+ end
1961
+
1962
+ describe "#elem_match" do
1963
+
1964
+ let(:key) do
1965
+ :field.elem_match
1966
+ end
1967
+
1968
+ it "returns a selection key" do
1969
+ expect(key).to be_a(Mongoid::Criteria::Queryable::Key)
1970
+ end
1971
+
1972
+ it "sets the name as the key" do
1973
+ expect(key.name).to eq(:field)
1974
+ end
1975
+
1976
+ it "sets the operator as $elemMatch" do
1977
+ expect(key.operator).to eq("$elemMatch")
1978
+ end
1979
+ end
1980
+
1981
+ describe "#exists" do
1982
+
1983
+ let(:key) do
1984
+ :field.exists
1985
+ end
1986
+
1987
+ it "returns a selection key" do
1988
+ expect(key).to be_a(Mongoid::Criteria::Queryable::Key)
1989
+ end
1990
+
1991
+ it "sets the name as the key" do
1992
+ expect(key.name).to eq(:field)
1993
+ end
1994
+
1995
+ it "sets the operator as $exists" do
1996
+ expect(key.operator).to eq("$exists")
1997
+ end
1998
+ end
1999
+
2000
+ describe "#gt" do
2001
+
2002
+ let(:key) do
2003
+ :field.gt
2004
+ end
2005
+
2006
+ it "returns a selection key" do
2007
+ expect(key).to be_a(Mongoid::Criteria::Queryable::Key)
2008
+ end
2009
+
2010
+ it "sets the name as the key" do
2011
+ expect(key.name).to eq(:field)
2012
+ end
2013
+
2014
+ it "sets the operator as $gt" do
2015
+ expect(key.operator).to eq("$gt")
2016
+ end
2017
+ end
2018
+
2019
+ describe "#gte" do
2020
+
2021
+ let(:key) do
2022
+ :field.gte
2023
+ end
2024
+
2025
+ it "returns a selection key" do
2026
+ expect(key).to be_a(Mongoid::Criteria::Queryable::Key)
2027
+ end
2028
+
2029
+ it "sets the name as the key" do
2030
+ expect(key.name).to eq(:field)
2031
+ end
2032
+
2033
+ it "sets the operator as $gte" do
2034
+ expect(key.operator).to eq("$gte")
2035
+ end
2036
+ end
2037
+
2038
+ describe "#in" do
2039
+
2040
+ let(:key) do
2041
+ :field.in
2042
+ end
2043
+
2044
+ it "returns a selection key" do
2045
+ expect(key).to be_a(Mongoid::Criteria::Queryable::Key)
2046
+ end
2047
+
2048
+ it "sets the name as the key" do
2049
+ expect(key.name).to eq(:field)
2050
+ end
2051
+
2052
+ it "sets the operator as $in" do
2053
+ expect(key.operator).to eq("$in")
2054
+ end
2055
+ end
2056
+
2057
+ describe "#lt" do
2058
+
2059
+ let(:key) do
2060
+ :field.lt
2061
+ end
2062
+
2063
+ it "returns a selection key" do
2064
+ expect(key).to be_a(Mongoid::Criteria::Queryable::Key)
2065
+ end
2066
+
2067
+ it "sets the name as the key" do
2068
+ expect(key.name).to eq(:field)
2069
+ end
2070
+
2071
+ it "sets the operator as $lt" do
2072
+ expect(key.operator).to eq("$lt")
2073
+ end
2074
+ end
2075
+
2076
+ describe "#lte" do
2077
+
2078
+ let(:key) do
2079
+ :field.lte
2080
+ end
2081
+
2082
+ it "returns a selection key" do
2083
+ expect(key).to be_a(Mongoid::Criteria::Queryable::Key)
2084
+ end
2085
+
2086
+ it "sets the name as the key" do
2087
+ expect(key.name).to eq(:field)
2088
+ end
2089
+
2090
+ it "sets the operator as $lte" do
2091
+ expect(key.operator).to eq("$lte")
2092
+ end
2093
+ end
2094
+
2095
+ describe "#mod" do
2096
+
2097
+ let(:key) do
2098
+ :field.mod
2099
+ end
2100
+
2101
+ it "returns a selection key" do
2102
+ expect(key).to be_a(Mongoid::Criteria::Queryable::Key)
2103
+ end
2104
+
2105
+ it "sets the name as the key" do
2106
+ expect(key.name).to eq(:field)
2107
+ end
2108
+
2109
+ it "sets the operator as $mod" do
2110
+ expect(key.operator).to eq("$mod")
2111
+ end
2112
+ end
2113
+
2114
+ describe "#ne" do
2115
+
2116
+ let(:key) do
2117
+ :field.ne
2118
+ end
2119
+
2120
+ it "returns a selection key" do
2121
+ expect(key).to be_a(Mongoid::Criteria::Queryable::Key)
2122
+ end
2123
+
2124
+ it "sets the name as the key" do
2125
+ expect(key.name).to eq(:field)
2126
+ end
2127
+
2128
+ it "sets the operator as $ne" do
2129
+ expect(key.operator).to eq("$ne")
2130
+ end
2131
+ end
2132
+
2133
+ describe "#near" do
2134
+
2135
+ let(:key) do
2136
+ :field.near
2137
+ end
2138
+
2139
+ it "returns a selection key" do
2140
+ expect(key).to be_a(Mongoid::Criteria::Queryable::Key)
2141
+ end
2142
+
2143
+ it "sets the name as the key" do
2144
+ expect(key.name).to eq(:field)
2145
+ end
2146
+
2147
+ it "sets the operator as $near" do
2148
+ expect(key.operator).to eq("$near")
2149
+ end
2150
+ end
2151
+
2152
+ describe "#near_sphere" do
2153
+
2154
+ let(:key) do
2155
+ :field.near_sphere
2156
+ end
2157
+
2158
+ it "returns a selection key" do
2159
+ expect(key).to be_a(Mongoid::Criteria::Queryable::Key)
2160
+ end
2161
+
2162
+ it "sets the name as the key" do
2163
+ expect(key.name).to eq(:field)
2164
+ end
2165
+
2166
+ it "sets the operator as $nearSphere" do
2167
+ expect(key.operator).to eq("$nearSphere")
2168
+ end
2169
+ end
2170
+
2171
+ describe "#nin" do
2172
+
2173
+ let(:key) do
2174
+ :field.nin
2175
+ end
2176
+
2177
+ it "returns a selection key" do
2178
+ expect(key).to be_a(Mongoid::Criteria::Queryable::Key)
2179
+ end
2180
+
2181
+ it "sets the name as the key" do
2182
+ expect(key.name).to eq(:field)
2183
+ end
2184
+
2185
+ it "sets the operator as $nin" do
2186
+ expect(key.operator).to eq("$nin")
2187
+ end
2188
+ end
2189
+
2190
+ describe "#not" do
2191
+
2192
+ let(:key) do
2193
+ :field.not
2194
+ end
2195
+
2196
+ it "returns a selection key" do
2197
+ expect(key).to be_a(Mongoid::Criteria::Queryable::Key)
2198
+ end
2199
+
2200
+ it "sets the name as the key" do
2201
+ expect(key.name).to eq(:field)
2202
+ end
2203
+
2204
+ it "sets the operator as $not" do
2205
+ expect(key.operator).to eq("$not")
2206
+ end
2207
+
2208
+ end
2209
+
2210
+ describe "#with_size" do
2211
+
2212
+ let(:key) do
2213
+ :field.with_size
2214
+ end
2215
+
2216
+ it "returns a selection key" do
2217
+ expect(key).to be_a(Mongoid::Criteria::Queryable::Key)
2218
+ end
2219
+
2220
+ it "sets the name as the key" do
2221
+ expect(key.name).to eq(:field)
2222
+ end
2223
+
2224
+ it "sets the operator as $size" do
2225
+ expect(key.operator).to eq("$size")
2226
+ end
2227
+ end
2228
+
2229
+ describe "#with_type" do
2230
+
2231
+ let(:key) do
2232
+ :field.with_type
2233
+ end
2234
+
2235
+ it "returns a selection key" do
2236
+ expect(key).to be_a(Mongoid::Criteria::Queryable::Key)
2237
+ end
2238
+
2239
+ it "sets the name as the key" do
2240
+ expect(key.name).to eq(:field)
2241
+ end
2242
+
2243
+ it "sets the operator as $type" do
2244
+ expect(key.operator).to eq("$type")
2245
+ end
2246
+ end
2247
+ end
2248
+
2249
+ context "when using multiple strategies on the same field" do
2250
+
2251
+ context "when using the strategies via methods" do
2252
+
2253
+ context "when different operators are specified" do
2254
+
2255
+ let(:selection) do
2256
+ query.gt(field: 5).lt(field: 10).ne(field: 7)
2257
+ end
2258
+
2259
+ it "merges the strategies on the same field" do
2260
+ expect(selection.selector).to eq(
2261
+ "field" => { "$gt" => 5, "$lt" => 10, "$ne" => 7 }
2262
+ )
2263
+ end
2264
+ end
2265
+
2266
+ context "when the same operator is specified" do
2267
+
2268
+ let(:selection) do
2269
+ query.where(field: 5).where(field: 10)
2270
+ end
2271
+
2272
+ it "combines conditions" do
2273
+ expect(selection.selector).to eq("field" => 5, '$and' => [{'field' => 10}] )
2274
+ end
2275
+ end
2276
+ end
2277
+
2278
+ context "when using the strategies via #where" do
2279
+
2280
+ context "when using complex keys with different operators" do
2281
+
2282
+ let(:selection) do
2283
+ query.where(:field.gt => 5, :field.lt => 10, :field.ne => 7)
2284
+ end
2285
+
2286
+ it "merges the strategies on the same field" do
2287
+ expect(selection.selector).to eq(
2288
+ "field" => { "$gt" => 5, "$lt" => 10, "$ne" => 7 }
2289
+ )
2290
+ end
2291
+ end
2292
+ end
2293
+ end
2294
+
2295
+ describe "chained operators" do
2296
+ [ :eq, :elem_match, :gt, :gte, :lt, :lte, :mod, :ne, :near, :near_sphere ].each do |meth|
2297
+
2298
+ context "when chaining the #{meth} method when using the same field" do
2299
+ let(:op) do
2300
+ {
2301
+ eq: "$eq",
2302
+ elem_match: "$elemMatch",
2303
+ gt: "$gt",
2304
+ gte: "$gte",
2305
+ lt: "$lt",
2306
+ lte: "$lte",
2307
+ mod: "$mod",
2308
+ ne: "$ne",
2309
+ near: "$near",
2310
+ near_sphere: "$nearSphere"
2311
+ }[meth]
2312
+ end
2313
+
2314
+ let(:criteria) do
2315
+ Band.send(meth, {views: 1}).send(meth, {views:2})
2316
+ end
2317
+
2318
+ it "is and-ed with the previous operators" do
2319
+ expect(criteria.selector).to eq({
2320
+ "views" => { op => 1 },
2321
+ "$and" => [{ "views" => { op => 2 } }]
2322
+ })
2323
+ end
2324
+ end
2325
+ end
2326
+ end
2327
+ end