mongoid 7.1.11 → 7.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data/README.md +10 -3
- data/lib/config/locales/en.yml +37 -14
- data/lib/mongoid/association/depending.rb +1 -6
- data/lib/mongoid/association/embedded/embeds_many/proxy.rb +1 -1
- data/lib/mongoid/association/many.rb +3 -3
- data/lib/mongoid/association/proxy.rb +1 -1
- data/lib/mongoid/association/referenced/belongs_to/buildable.rb +1 -1
- data/lib/mongoid/association/referenced/has_and_belongs_to_many/proxy.rb +1 -1
- data/lib/mongoid/association/referenced/has_many/enumerable.rb +37 -2
- data/lib/mongoid/association/referenced/has_many/proxy.rb +9 -2
- data/lib/mongoid/association/referenced/has_one/buildable.rb +9 -1
- data/lib/mongoid/atomic/modifiers.rb +1 -1
- data/lib/mongoid/attributes/dynamic.rb +1 -1
- data/lib/mongoid/attributes.rb +1 -8
- data/lib/mongoid/clients/factory.rb +17 -0
- data/lib/mongoid/composable.rb +1 -0
- data/lib/mongoid/config/environment.rb +1 -9
- data/lib/mongoid/config.rb +3 -0
- data/lib/mongoid/contextual/atomic.rb +2 -7
- data/lib/mongoid/contextual/mongo.rb +23 -4
- data/lib/mongoid/contextual/none.rb +0 -3
- data/lib/mongoid/copyable.rb +7 -3
- data/lib/mongoid/criteria/queryable/key.rb +1 -1
- data/lib/mongoid/criteria/queryable/mergeable.rb +2 -2
- data/lib/mongoid/criteria/queryable/selectable.rb +23 -8
- data/lib/mongoid/criteria/queryable/selector.rb +7 -3
- data/lib/mongoid/criteria/queryable/storable.rb +7 -7
- data/lib/mongoid/criteria.rb +58 -8
- data/lib/mongoid/document.rb +19 -9
- data/lib/mongoid/errors/invalid_discriminator_key_target.rb +25 -0
- data/lib/mongoid/errors/invalid_elem_match_operator.rb +33 -0
- data/lib/mongoid/errors/invalid_estimated_count_criteria.rb +26 -0
- data/lib/mongoid/errors/invalid_expression_operator.rb +28 -0
- data/lib/mongoid/errors/invalid_field_operator.rb +33 -0
- data/lib/mongoid/errors/invalid_query.rb +41 -0
- data/lib/mongoid/errors/mongoid_error.rb +1 -1
- data/lib/mongoid/errors.rb +7 -2
- data/lib/mongoid/extensions.rb +1 -0
- data/lib/mongoid/factory.rb +27 -10
- data/lib/mongoid/fields/validators/macro.rb +22 -9
- data/lib/mongoid/fields.rb +3 -0
- data/lib/mongoid/findable.rb +50 -14
- data/lib/mongoid/indexable.rb +2 -2
- data/lib/mongoid/interceptable.rb +2 -4
- data/lib/mongoid/matchable.rb +1 -149
- data/lib/mongoid/matcher/all.rb +22 -0
- data/lib/mongoid/matcher/and.rb +21 -0
- data/lib/mongoid/matcher/elem_match.rb +35 -0
- data/lib/mongoid/matcher/elem_match_expression.rb +20 -0
- data/lib/mongoid/matcher/eq.rb +11 -0
- data/lib/mongoid/matcher/eq_impl.rb +32 -0
- data/lib/mongoid/matcher/eq_impl_with_regexp.rb +21 -0
- data/lib/mongoid/matcher/exists.rb +15 -0
- data/lib/mongoid/matcher/expression.rb +40 -0
- data/lib/mongoid/matcher/expression_operator.rb +19 -0
- data/lib/mongoid/matcher/field_expression.rb +63 -0
- data/lib/mongoid/matcher/field_operator.rb +52 -0
- data/lib/mongoid/matcher/gt.rb +17 -0
- data/lib/mongoid/matcher/gte.rb +17 -0
- data/lib/mongoid/matcher/in.rb +25 -0
- data/lib/mongoid/matcher/lt.rb +17 -0
- data/lib/mongoid/matcher/lte.rb +17 -0
- data/lib/mongoid/matcher/ne.rb +16 -0
- data/lib/mongoid/matcher/nin.rb +11 -0
- data/lib/mongoid/matcher/nor.rb +25 -0
- data/lib/mongoid/matcher/not.rb +29 -0
- data/lib/mongoid/matcher/or.rb +21 -0
- data/lib/mongoid/matcher/regex.rb +41 -0
- data/lib/mongoid/matcher/size.rb +26 -0
- data/lib/mongoid/matcher.rb +127 -0
- data/lib/mongoid/persistable/deletable.rb +1 -1
- data/lib/mongoid/persistence_context.rb +1 -3
- data/lib/mongoid/query_cache.rb +64 -62
- data/lib/mongoid/reloadable.rb +2 -7
- data/lib/mongoid/serializable.rb +1 -1
- data/lib/mongoid/stringified_symbol.rb +53 -0
- data/lib/mongoid/tasks/database.rb +1 -1
- data/lib/mongoid/traversable.rb +111 -4
- data/lib/mongoid/validatable/associated.rb +1 -1
- data/lib/mongoid/validatable/presence.rb +3 -3
- data/lib/mongoid/validatable/uniqueness.rb +1 -1
- data/lib/mongoid/version.rb +1 -1
- data/lib/mongoid.rb +23 -1
- data/lib/rails/generators/mongoid/config/config_generator.rb +1 -8
- data/lib/rails/generators/mongoid/config/templates/mongoid.yml +1 -1
- data/spec/README.md +19 -4
- data/spec/integration/app_spec.rb +84 -174
- data/spec/integration/associations/embedded_spec.rb +94 -0
- data/spec/integration/associations/has_many_spec.rb +67 -14
- data/spec/integration/associations/has_one_spec.rb +67 -14
- data/spec/integration/associations/nested_attributes_assignment_spec.rb +116 -0
- data/spec/integration/atomic/modifiers_spec.rb +117 -0
- data/spec/integration/discriminator_key_spec.rb +354 -0
- data/spec/integration/discriminator_value_spec.rb +207 -0
- data/spec/integration/document_spec.rb +0 -21
- data/spec/integration/{matchable_spec.rb → matcher_examples_spec.rb} +120 -41
- data/spec/integration/matcher_operator_data/all.yml +140 -0
- data/spec/integration/matcher_operator_data/and.yml +93 -0
- data/spec/integration/matcher_operator_data/elem_match.yml +363 -0
- data/spec/integration/matcher_operator_data/elem_match_expr.yml +213 -0
- data/spec/integration/matcher_operator_data/eq.yml +191 -0
- data/spec/integration/matcher_operator_data/exists.yml +213 -0
- data/spec/integration/matcher_operator_data/generic_op.yml +17 -0
- data/spec/integration/matcher_operator_data/gt.yml +132 -0
- data/spec/integration/matcher_operator_data/gte.yml +132 -0
- data/spec/integration/matcher_operator_data/implicit.yml +331 -0
- data/spec/integration/matcher_operator_data/implicit_traversal.yml +16 -0
- data/spec/integration/matcher_operator_data/in.yml +194 -0
- data/spec/integration/matcher_operator_data/invalid_op.yml +59 -0
- data/spec/integration/matcher_operator_data/invalid_syntax.yml +39 -0
- data/spec/integration/matcher_operator_data/lt.yml +132 -0
- data/spec/integration/matcher_operator_data/lte.yml +132 -0
- data/spec/integration/matcher_operator_data/multiple.yml +29 -0
- data/spec/integration/matcher_operator_data/ne.yml +150 -0
- data/spec/integration/matcher_operator_data/nin.yml +114 -0
- data/spec/integration/matcher_operator_data/nor.yml +126 -0
- data/spec/integration/matcher_operator_data/not.yml +196 -0
- data/spec/integration/matcher_operator_data/or.yml +137 -0
- data/spec/integration/matcher_operator_data/regex.yml +174 -0
- data/spec/integration/matcher_operator_data/regex_options.yml +72 -0
- data/spec/integration/matcher_operator_data/size.yml +174 -0
- data/spec/integration/matcher_operator_spec.rb +100 -0
- data/spec/integration/matcher_spec.rb +189 -0
- data/spec/integration/server_query_spec.rb +142 -0
- data/spec/integration/stringified_symbol_field_spec.rb +190 -0
- data/spec/lite_spec_helper.rb +4 -3
- data/spec/mongoid/association/depending_spec.rb +78 -26
- data/spec/mongoid/association/embedded/embedded_in/proxy_spec.rb +0 -50
- data/spec/mongoid/association/embedded/embeds_many/proxy_spec.rb +37 -17
- data/spec/mongoid/association/embedded/embeds_many_models.rb +1 -0
- data/spec/mongoid/association/embedded/embeds_one_models.rb +1 -0
- data/spec/mongoid/association/referenced/belongs_to/proxy_spec.rb +0 -17
- data/spec/mongoid/association/referenced/has_many/proxy_spec.rb +460 -186
- data/spec/mongoid/association/referenced/has_many_models.rb +21 -0
- data/spec/mongoid/association/referenced/has_one_models.rb +21 -0
- data/spec/mongoid/association/referenced/has_one_spec.rb +1 -1
- data/spec/mongoid/atomic/modifiers_spec.rb +47 -0
- data/spec/mongoid/atomic/paths_spec.rb +0 -41
- data/spec/mongoid/atomic_spec.rb +23 -0
- data/spec/mongoid/attributes/nested_spec.rb +1 -1
- data/spec/mongoid/attributes_spec.rb +0 -241
- data/spec/mongoid/clients/factory_spec.rb +35 -9
- data/spec/mongoid/clients/options_spec.rb +3 -11
- data/spec/mongoid/clients/sessions_spec.rb +1 -6
- data/spec/mongoid/config/environment_spec.rb +8 -86
- data/spec/mongoid/config_spec.rb +28 -0
- data/spec/mongoid/contextual/atomic_spec.rb +29 -81
- data/spec/mongoid/contextual/geo_near_spec.rb +1 -1
- data/spec/mongoid/contextual/mongo_spec.rb +70 -16
- data/spec/mongoid/copyable_spec.rb +197 -18
- data/spec/mongoid/copyable_spec_models.rb +28 -0
- data/spec/mongoid/criteria/queryable/selectable_logical_spec.rb +0 -36
- data/spec/mongoid/criteria/queryable/selectable_spec.rb +84 -82
- data/spec/mongoid/criteria_spec.rb +204 -43
- data/spec/mongoid/document_query_spec.rb +0 -51
- data/spec/mongoid/document_spec.rb +90 -36
- data/spec/mongoid/equality_spec.rb +0 -1
- data/spec/mongoid/errors/delete_restriction_spec.rb +1 -1
- data/spec/mongoid/errors/mongoid_error_spec.rb +8 -20
- data/spec/mongoid/extensions/stringified_symbol_spec.rb +85 -0
- data/spec/mongoid/factory_spec.rb +261 -28
- data/spec/mongoid/fields_spec.rb +48 -2
- data/spec/mongoid/findable_spec.rb +32 -0
- data/spec/mongoid/indexable_spec.rb +28 -2
- data/spec/mongoid/inspectable_spec.rb +29 -2
- data/spec/mongoid/interceptable_spec.rb +2 -2
- data/spec/mongoid/matcher/extract_attribute_data/traversal.yml +259 -0
- data/spec/mongoid/matcher/extract_attribute_spec.rb +47 -0
- data/spec/mongoid/persistable/creatable_spec.rb +108 -25
- data/spec/mongoid/persistable/deletable_spec.rb +86 -0
- data/spec/mongoid/persistable/savable_spec.rb +174 -16
- data/spec/mongoid/persistable/settable_spec.rb +0 -30
- data/spec/mongoid/persistable/updatable_spec.rb +0 -2
- data/spec/mongoid/persistable_spec.rb +2 -2
- data/spec/mongoid/query_cache_middleware_spec.rb +16 -3
- data/spec/mongoid/query_cache_spec.rb +442 -41
- data/spec/mongoid/reloadable_spec.rb +72 -0
- data/spec/mongoid/serializable_spec.rb +21 -3
- data/spec/mongoid/traversable_spec.rb +1100 -0
- data/spec/shared/lib/mrss/constraints.rb +10 -92
- data/spec/shared/lib/mrss/lite_constraints.rb +0 -16
- data/spec/shared/lib/mrss/spec_organizer.rb +2 -32
- data/spec/spec_helper.rb +3 -3
- data/spec/support/constraints.rb +24 -0
- data/spec/support/helpers.rb +1 -1
- data/spec/{app → support}/models/actor.rb +1 -1
- data/spec/{app → support}/models/address.rb +0 -4
- data/spec/support/models/armrest.rb +10 -0
- data/spec/{app → support}/models/browser.rb +1 -1
- data/spec/{app → support}/models/canvas.rb +1 -1
- data/spec/{app → support}/models/coding.rb +1 -1
- data/spec/support/models/crate.rb +13 -0
- data/spec/support/models/deed.rb +8 -0
- data/spec/{app → support}/models/dictionary.rb +0 -6
- data/spec/{app → support}/models/driver.rb +1 -1
- data/spec/support/models/guitar.rb +5 -0
- data/spec/support/models/idnodef.rb +8 -0
- data/spec/support/models/instrument.rb +9 -0
- data/spec/{app → support}/models/item.rb +1 -1
- data/spec/{app → support}/models/mop.rb +0 -10
- data/spec/support/models/order.rb +11 -0
- data/spec/{app → support}/models/owner.rb +2 -0
- data/spec/{app → support}/models/palette.rb +1 -1
- data/spec/{app → support}/models/person.rb +1 -10
- data/spec/support/models/piano.rb +5 -0
- data/spec/support/models/profile.rb +18 -0
- data/spec/support/models/publication.rb +5 -0
- data/spec/{app/models/profile.rb → support/models/scribe.rb} +2 -2
- data/spec/support/models/seat.rb +25 -0
- data/spec/{app → support}/models/shape.rb +2 -2
- data/spec/support/models/system_role.rb +7 -0
- data/spec/{app → support}/models/tool.rb +2 -2
- data/spec/support/models/toy.rb +10 -0
- data/spec/{app → support}/models/truck.rb +2 -0
- data/spec/{app → support}/models/vehicle.rb +7 -2
- data/spec/{app → support}/models/writer.rb +2 -2
- data/spec/support/spec_config.rb +1 -9
- data.tar.gz.sig +0 -0
- metadata +839 -820
- metadata.gz.sig +2 -2
- data/lib/mongoid/errors/empty_config_file.rb +0 -26
- data/lib/mongoid/errors/invalid_config_file.rb +0 -26
- data/lib/mongoid/matchable/all.rb +0 -30
- data/lib/mongoid/matchable/and.rb +0 -32
- data/lib/mongoid/matchable/default.rb +0 -121
- data/lib/mongoid/matchable/elem_match.rb +0 -36
- data/lib/mongoid/matchable/eq.rb +0 -23
- data/lib/mongoid/matchable/exists.rb +0 -25
- data/lib/mongoid/matchable/gt.rb +0 -25
- data/lib/mongoid/matchable/gte.rb +0 -25
- data/lib/mongoid/matchable/in.rb +0 -26
- data/lib/mongoid/matchable/lt.rb +0 -25
- data/lib/mongoid/matchable/lte.rb +0 -25
- data/lib/mongoid/matchable/ne.rb +0 -23
- data/lib/mongoid/matchable/nin.rb +0 -24
- data/lib/mongoid/matchable/nor.rb +0 -38
- data/lib/mongoid/matchable/or.rb +0 -35
- data/lib/mongoid/matchable/regexp.rb +0 -30
- data/lib/mongoid/matchable/size.rb +0 -23
- data/spec/app/models/customer.rb +0 -11
- data/spec/app/models/customer_address.rb +0 -12
- data/spec/app/models/publication.rb +0 -5
- data/spec/integration/callbacks_models.rb +0 -49
- data/spec/integration/callbacks_spec.rb +0 -216
- data/spec/integration/contextual/empty_spec.rb +0 -142
- data/spec/mongoid/errors/invalid_config_file_spec.rb +0 -32
- data/spec/mongoid/matchable/all_spec.rb +0 -34
- data/spec/mongoid/matchable/and_spec.rb +0 -190
- data/spec/mongoid/matchable/default_spec.rb +0 -140
- data/spec/mongoid/matchable/elem_match_spec.rb +0 -109
- data/spec/mongoid/matchable/eq_spec.rb +0 -49
- data/spec/mongoid/matchable/exists_spec.rb +0 -60
- data/spec/mongoid/matchable/gt_spec.rb +0 -89
- data/spec/mongoid/matchable/gte_spec.rb +0 -87
- data/spec/mongoid/matchable/in_spec.rb +0 -52
- data/spec/mongoid/matchable/lt_spec.rb +0 -88
- data/spec/mongoid/matchable/lte_spec.rb +0 -88
- data/spec/mongoid/matchable/ne_spec.rb +0 -49
- data/spec/mongoid/matchable/nin_spec.rb +0 -51
- data/spec/mongoid/matchable/nor_spec.rb +0 -210
- data/spec/mongoid/matchable/or_spec.rb +0 -134
- data/spec/mongoid/matchable/regexp_spec.rb +0 -62
- data/spec/mongoid/matchable/size_spec.rb +0 -28
- data/spec/mongoid/matchable_spec.rb +0 -856
- data/spec/shared/bin/get-mongodb-download-url +0 -17
- data/spec/shared/bin/s3-copy +0 -45
- data/spec/shared/bin/s3-upload +0 -69
- data/spec/shared/lib/mrss/cluster_config.rb +0 -226
- data/spec/shared/lib/mrss/docker_runner.rb +0 -271
- data/spec/shared/lib/mrss/event_subscriber.rb +0 -200
- data/spec/shared/lib/mrss/server_version_registry.rb +0 -120
- data/spec/shared/lib/mrss/utils.rb +0 -15
- data/spec/shared/share/Dockerfile.erb +0 -323
- data/spec/shared/share/haproxy-1.conf +0 -16
- data/spec/shared/share/haproxy-2.conf +0 -17
- data/spec/shared/shlib/distro.sh +0 -73
- data/spec/shared/shlib/server.sh +0 -367
- data/spec/shared/shlib/set_env.sh +0 -131
- /data/spec/{app → support}/models/account.rb +0 -0
- /data/spec/{app → support}/models/acolyte.rb +0 -0
- /data/spec/{app → support}/models/actress.rb +0 -0
- /data/spec/{app → support}/models/address_component.rb +0 -0
- /data/spec/{app → support}/models/address_number.rb +0 -0
- /data/spec/{app → support}/models/agency.rb +0 -0
- /data/spec/{app → support}/models/agent.rb +0 -0
- /data/spec/{app → support}/models/album.rb +0 -0
- /data/spec/{app → support}/models/alert.rb +0 -0
- /data/spec/{app → support}/models/animal.rb +0 -0
- /data/spec/{app → support}/models/answer.rb +0 -0
- /data/spec/{app → support}/models/appointment.rb +0 -0
- /data/spec/{app → support}/models/array_field.rb +0 -0
- /data/spec/{app → support}/models/article.rb +0 -0
- /data/spec/{app → support}/models/artist.rb +0 -0
- /data/spec/{app → support}/models/artwork.rb +0 -0
- /data/spec/{app → support}/models/audio.rb +0 -0
- /data/spec/{app → support}/models/augmentation.rb +0 -0
- /data/spec/{app → support}/models/author.rb +0 -0
- /data/spec/{app → support}/models/baby.rb +0 -0
- /data/spec/{app → support}/models/band.rb +0 -0
- /data/spec/{app → support}/models/bar.rb +0 -0
- /data/spec/{app → support}/models/basic.rb +0 -0
- /data/spec/{app → support}/models/bed.rb +0 -0
- /data/spec/{app → support}/models/big_palette.rb +0 -0
- /data/spec/{app → support}/models/birthday.rb +0 -0
- /data/spec/{app → support}/models/bomb.rb +0 -0
- /data/spec/{app → support}/models/book.rb +0 -0
- /data/spec/{app → support}/models/breed.rb +0 -0
- /data/spec/{app → support}/models/building.rb +0 -0
- /data/spec/{app → support}/models/building_address.rb +0 -0
- /data/spec/{app → support}/models/bus.rb +0 -0
- /data/spec/{app → support}/models/business.rb +0 -0
- /data/spec/{app → support}/models/callback_test.rb +0 -0
- /data/spec/{app → support}/models/car.rb +0 -0
- /data/spec/{app → support}/models/cat.rb +0 -0
- /data/spec/{app → support}/models/category.rb +0 -0
- /data/spec/{app → support}/models/child.rb +0 -0
- /data/spec/{app → support}/models/child_doc.rb +0 -0
- /data/spec/{app → support}/models/church.rb +0 -0
- /data/spec/{app → support}/models/circle.rb +0 -0
- /data/spec/{app → support}/models/circuit.rb +0 -0
- /data/spec/{app → support}/models/circus.rb +0 -0
- /data/spec/{app → support}/models/code.rb +0 -0
- /data/spec/{app → support}/models/coding/pull_request.rb +0 -0
- /data/spec/{app → support}/models/comment.rb +0 -0
- /data/spec/{app → support}/models/company.rb +0 -0
- /data/spec/{app → support}/models/consumption_period.rb +0 -0
- /data/spec/{app → support}/models/contextable_item.rb +0 -0
- /data/spec/{app → support}/models/contractor.rb +0 -0
- /data/spec/{app → support}/models/cookie.rb +0 -0
- /data/spec/{app → support}/models/country_code.rb +0 -0
- /data/spec/{app → support}/models/courier_job.rb +0 -0
- /data/spec/{app → support}/models/definition.rb +0 -0
- /data/spec/{app → support}/models/delegating_patient.rb +0 -0
- /data/spec/{app → support}/models/description.rb +0 -0
- /data/spec/{app → support}/models/division.rb +0 -0
- /data/spec/{app → support}/models/doctor.rb +0 -0
- /data/spec/{app → support}/models/dog.rb +0 -0
- /data/spec/{app → support}/models/dokument.rb +0 -0
- /data/spec/{app → support}/models/draft.rb +0 -0
- /data/spec/{app → support}/models/dragon.rb +0 -0
- /data/spec/{app → support}/models/drug.rb +0 -0
- /data/spec/{app → support}/models/dungeon.rb +0 -0
- /data/spec/{app → support}/models/edit.rb +0 -0
- /data/spec/{app → support}/models/email.rb +0 -0
- /data/spec/{app → support}/models/employer.rb +0 -0
- /data/spec/{app → support}/models/entry.rb +0 -0
- /data/spec/{app → support}/models/eraser.rb +0 -0
- /data/spec/{app → support}/models/even.rb +0 -0
- /data/spec/{app → support}/models/event.rb +0 -0
- /data/spec/{app → support}/models/exhibition.rb +0 -0
- /data/spec/{app → support}/models/exhibitor.rb +0 -0
- /data/spec/{app → support}/models/explosion.rb +0 -0
- /data/spec/{app → support}/models/eye.rb +0 -0
- /data/spec/{app → support}/models/eye_bowl.rb +0 -0
- /data/spec/{app → support}/models/face.rb +0 -0
- /data/spec/{app → support}/models/favorite.rb +0 -0
- /data/spec/{app → support}/models/filesystem.rb +0 -0
- /data/spec/{app → support}/models/fire_hydrant.rb +0 -0
- /data/spec/{app → support}/models/firefox.rb +0 -0
- /data/spec/{app → support}/models/fish.rb +0 -0
- /data/spec/{app → support}/models/folder.rb +0 -0
- /data/spec/{app → support}/models/folder_item.rb +0 -0
- /data/spec/{app → support}/models/fruits.rb +0 -0
- /data/spec/{app → support}/models/game.rb +0 -0
- /data/spec/{app → support}/models/ghost.rb +0 -0
- /data/spec/{app → support}/models/home.rb +0 -0
- /data/spec/{app → support}/models/house.rb +0 -0
- /data/spec/{app → support}/models/html_writer.rb +0 -0
- /data/spec/{app → support}/models/id_key.rb +0 -0
- /data/spec/{app → support}/models/image.rb +0 -0
- /data/spec/{app → support}/models/implant.rb +0 -0
- /data/spec/{app → support}/models/jar.rb +0 -0
- /data/spec/{app → support}/models/kaleidoscope.rb +0 -0
- /data/spec/{app → support}/models/kangaroo.rb +0 -0
- /data/spec/{app → support}/models/label.rb +0 -0
- /data/spec/{app → support}/models/language.rb +0 -0
- /data/spec/{app → support}/models/lat_lng.rb +0 -0
- /data/spec/{app → support}/models/league.rb +0 -0
- /data/spec/{app → support}/models/learner.rb +0 -0
- /data/spec/{app → support}/models/line_item.rb +0 -0
- /data/spec/{app → support}/models/location.rb +0 -0
- /data/spec/{app → support}/models/login.rb +0 -0
- /data/spec/{app → support}/models/manufacturer.rb +0 -0
- /data/spec/{app → support}/models/meat.rb +0 -0
- /data/spec/{app → support}/models/membership.rb +0 -0
- /data/spec/{app → support}/models/message.rb +0 -0
- /data/spec/{app → support}/models/minim.rb +0 -0
- /data/spec/{app → support}/models/mixed_drink.rb +0 -0
- /data/spec/{app → support}/models/movie.rb +0 -0
- /data/spec/{app → support}/models/my_hash.rb +0 -0
- /data/spec/{app → support}/models/name.rb +0 -0
- /data/spec/{app → support}/models/name_only.rb +0 -0
- /data/spec/{app → support}/models/node.rb +0 -0
- /data/spec/{app → support}/models/note.rb +0 -0
- /data/spec/{app → support}/models/odd.rb +0 -0
- /data/spec/{app → support}/models/ordered_post.rb +0 -0
- /data/spec/{app → support}/models/ordered_preference.rb +0 -0
- /data/spec/{app → support}/models/oscar.rb +0 -0
- /data/spec/{app → support}/models/other_owner_object.rb +0 -0
- /data/spec/{app → support}/models/override.rb +0 -0
- /data/spec/{app → support}/models/ownable.rb +0 -0
- /data/spec/{app → support}/models/pack.rb +0 -0
- /data/spec/{app → support}/models/page.rb +0 -0
- /data/spec/{app → support}/models/page_question.rb +0 -0
- /data/spec/{app → support}/models/parent.rb +0 -0
- /data/spec/{app → support}/models/parent_doc.rb +0 -0
- /data/spec/{app → support}/models/passport.rb +0 -0
- /data/spec/{app → support}/models/patient.rb +0 -0
- /data/spec/{app → support}/models/pdf_writer.rb +0 -0
- /data/spec/{app → support}/models/pencil.rb +0 -0
- /data/spec/{app → support}/models/pet.rb +0 -0
- /data/spec/{app → support}/models/pet_owner.rb +0 -0
- /data/spec/{app → support}/models/phone.rb +0 -0
- /data/spec/{app → support}/models/pizza.rb +0 -0
- /data/spec/{app → support}/models/player.rb +0 -0
- /data/spec/{app → support}/models/post.rb +0 -0
- /data/spec/{app → support}/models/post_genre.rb +0 -0
- /data/spec/{app → support}/models/powerup.rb +0 -0
- /data/spec/{app → support}/models/preference.rb +0 -0
- /data/spec/{app → support}/models/princess.rb +0 -0
- /data/spec/{app → support}/models/product.rb +0 -0
- /data/spec/{app → support}/models/pronunciation.rb +0 -0
- /data/spec/{app → support}/models/pub.rb +0 -0
- /data/spec/{app → support}/models/publication/encyclopedia.rb +0 -0
- /data/spec/{app → support}/models/publication/review.rb +0 -0
- /data/spec/{app → support}/models/purchase.rb +0 -0
- /data/spec/{app → support}/models/question.rb +0 -0
- /data/spec/{app → support}/models/quiz.rb +0 -0
- /data/spec/{app → support}/models/rating.rb +0 -0
- /data/spec/{app → support}/models/record.rb +0 -0
- /data/spec/{app → support}/models/registry.rb +0 -0
- /data/spec/{app → support}/models/role.rb +0 -0
- /data/spec/{app → support}/models/root_category.rb +0 -0
- /data/spec/{app → support}/models/sandwich.rb +0 -0
- /data/spec/{app → support}/models/scheduler.rb +0 -0
- /data/spec/{app → support}/models/seo.rb +0 -0
- /data/spec/{app → support}/models/series.rb +0 -0
- /data/spec/{app → support}/models/server.rb +0 -0
- /data/spec/{app → support}/models/service.rb +0 -0
- /data/spec/{app → support}/models/shelf.rb +0 -0
- /data/spec/{app → support}/models/shipment_address.rb +0 -0
- /data/spec/{app → support}/models/shipping_container.rb +0 -0
- /data/spec/{app → support}/models/shipping_pack.rb +0 -0
- /data/spec/{app → support}/models/shop.rb +0 -0
- /data/spec/{app → support}/models/short_agent.rb +0 -0
- /data/spec/{app → support}/models/short_quiz.rb +0 -0
- /data/spec/{app → support}/models/simple.rb +0 -0
- /data/spec/{app → support}/models/slave.rb +0 -0
- /data/spec/{app → support}/models/song.rb +0 -0
- /data/spec/{app → support}/models/sound.rb +0 -0
- /data/spec/{app → support}/models/square.rb +0 -0
- /data/spec/{app → support}/models/staff.rb +0 -0
- /data/spec/{app → support}/models/store_as_dup_test1.rb +0 -0
- /data/spec/{app → support}/models/store_as_dup_test2.rb +0 -0
- /data/spec/{app → support}/models/store_as_dup_test3.rb +0 -0
- /data/spec/{app → support}/models/store_as_dup_test4.rb +0 -0
- /data/spec/{app → support}/models/strategy.rb +0 -0
- /data/spec/{app → support}/models/sub_item.rb +0 -0
- /data/spec/{app → support}/models/subscription.rb +0 -0
- /data/spec/{app → support}/models/survey.rb +0 -0
- /data/spec/{app → support}/models/symptom.rb +0 -0
- /data/spec/{app → support}/models/tag.rb +0 -0
- /data/spec/{app → support}/models/target.rb +0 -0
- /data/spec/{app → support}/models/template.rb +0 -0
- /data/spec/{app → support}/models/thing.rb +0 -0
- /data/spec/{app → support}/models/title.rb +0 -0
- /data/spec/{app → support}/models/topping.rb +0 -0
- /data/spec/{app → support}/models/track.rb +0 -0
- /data/spec/{app → support}/models/translation.rb +0 -0
- /data/spec/{app → support}/models/tree.rb +0 -0
- /data/spec/{app → support}/models/updatable.rb +0 -0
- /data/spec/{app → support}/models/user.rb +0 -0
- /data/spec/{app → support}/models/user_account.rb +0 -0
- /data/spec/{app → support}/models/validation_callback.rb +0 -0
- /data/spec/{app → support}/models/version.rb +0 -0
- /data/spec/{app → support}/models/vertex.rb +0 -0
- /data/spec/{app → support}/models/vet_visit.rb +0 -0
- /data/spec/{app → support}/models/video.rb +0 -0
- /data/spec/{app → support}/models/video_game.rb +0 -0
- /data/spec/{app → support}/models/weapon.rb +0 -0
- /data/spec/{app → support}/models/wiki_page.rb +0 -0
- /data/spec/{app → support}/models/word.rb +0 -0
- /data/spec/{app → support}/models/word_origin.rb +0 -0
@@ -1,856 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
# encoding: utf-8
|
3
|
-
|
4
|
-
require "spec_helper"
|
5
|
-
|
6
|
-
describe Mongoid::Matchable do
|
7
|
-
|
8
|
-
describe "#_matches?" do
|
9
|
-
|
10
|
-
context "when document is embeded" do
|
11
|
-
|
12
|
-
let(:document) do
|
13
|
-
Address.new(street: "Clarkenwell Road")
|
14
|
-
end
|
15
|
-
let(:occupants){[{'name' => 'Tim'}]}
|
16
|
-
|
17
|
-
before do
|
18
|
-
document.locations << Location.new(
|
19
|
-
name: 'No.1',
|
20
|
-
info: { 'door' => 'Red'},
|
21
|
-
occupants: occupants
|
22
|
-
)
|
23
|
-
end
|
24
|
-
|
25
|
-
context "when the attributes do not match" do
|
26
|
-
|
27
|
-
let(:selector) do
|
28
|
-
{ name: { "$in" => ["No.2"], "$ne" => nil } }
|
29
|
-
end
|
30
|
-
|
31
|
-
it "returns false" do
|
32
|
-
expect(document.locations.first._matches?(selector)).to be false
|
33
|
-
end
|
34
|
-
|
35
|
-
context "when just change the selector order" do
|
36
|
-
|
37
|
-
let(:selector) do
|
38
|
-
{ name: { "$ne" => nil, "$in" => ["No.2"] } }
|
39
|
-
end
|
40
|
-
|
41
|
-
it "returns false " do
|
42
|
-
expect(document.locations.first._matches?(selector)).to be false
|
43
|
-
end
|
44
|
-
end
|
45
|
-
end
|
46
|
-
|
47
|
-
context "when matching embedded hash values" do
|
48
|
-
|
49
|
-
context "when the contents match" do
|
50
|
-
|
51
|
-
let(:selector) do
|
52
|
-
{ "info.door" => "Red" }
|
53
|
-
end
|
54
|
-
|
55
|
-
it "returns true" do
|
56
|
-
expect(document.locations.first._matches?(selector)).to be true
|
57
|
-
end
|
58
|
-
end
|
59
|
-
|
60
|
-
context "when the contents do not match" do
|
61
|
-
|
62
|
-
let(:selector) do
|
63
|
-
{ "info.door" => "Blue" }
|
64
|
-
end
|
65
|
-
|
66
|
-
it "returns false" do
|
67
|
-
expect(document.locations.first._matches?(selector)).to be false
|
68
|
-
end
|
69
|
-
end
|
70
|
-
|
71
|
-
context "when the contents do not exist" do
|
72
|
-
|
73
|
-
let(:selector) do
|
74
|
-
{ "info.something_else" => "Red" }
|
75
|
-
end
|
76
|
-
|
77
|
-
it "returns false" do
|
78
|
-
expect(document.locations.first._matches?(selector)).to be false
|
79
|
-
end
|
80
|
-
end
|
81
|
-
end
|
82
|
-
|
83
|
-
context "when matching index of an array" do
|
84
|
-
|
85
|
-
let(:occupants){["Tim","Logan"]}
|
86
|
-
|
87
|
-
context "when the contents match" do
|
88
|
-
|
89
|
-
let(:selector) do
|
90
|
-
{ "occupants.0" => "Tim" }
|
91
|
-
end
|
92
|
-
|
93
|
-
it "returns true" do
|
94
|
-
expect(document.locations.first._matches?(selector)).to be true
|
95
|
-
end
|
96
|
-
end
|
97
|
-
|
98
|
-
context "when the contents do not match" do
|
99
|
-
|
100
|
-
let(:selector) do
|
101
|
-
{ "occupants.0" => "Logan" }
|
102
|
-
end
|
103
|
-
|
104
|
-
it "returns false" do
|
105
|
-
expect(document.locations.first._matches?(selector)).to be false
|
106
|
-
end
|
107
|
-
end
|
108
|
-
end
|
109
|
-
|
110
|
-
context "when matching values of multiple embedded hashes" do
|
111
|
-
|
112
|
-
context "when the contents match" do
|
113
|
-
|
114
|
-
let(:selector) do
|
115
|
-
{ "occupants.name" => "Tim" }
|
116
|
-
end
|
117
|
-
|
118
|
-
it "returns true" do
|
119
|
-
expect(document.locations.first._matches?(selector)).to be true
|
120
|
-
end
|
121
|
-
end
|
122
|
-
|
123
|
-
context "when the contents do not match" do
|
124
|
-
|
125
|
-
let(:selector) do
|
126
|
-
{ "occupants.name" => "Lyle" }
|
127
|
-
end
|
128
|
-
|
129
|
-
it "returns false" do
|
130
|
-
expect(document.locations.first._matches?(selector)).to be false
|
131
|
-
end
|
132
|
-
end
|
133
|
-
|
134
|
-
context "when the contents do not exist" do
|
135
|
-
|
136
|
-
let(:selector) do
|
137
|
-
{ "occupants.something_else" => "Tim" }
|
138
|
-
end
|
139
|
-
|
140
|
-
it "returns false" do
|
141
|
-
expect(document.locations.first._matches?(selector)).to be false
|
142
|
-
end
|
143
|
-
end
|
144
|
-
end
|
145
|
-
|
146
|
-
context "when using $elemMatch" do
|
147
|
-
|
148
|
-
context "one predicate" do
|
149
|
-
|
150
|
-
let(:selector) do
|
151
|
-
{
|
152
|
-
"occupants" => {"$elemMatch" => {"name" => "Tim"}}
|
153
|
-
}
|
154
|
-
end
|
155
|
-
|
156
|
-
context "and there is a matching sub document" do
|
157
|
-
|
158
|
-
it "returns true" do
|
159
|
-
expect(document.locations.first._matches?(selector)).to be true
|
160
|
-
end
|
161
|
-
|
162
|
-
context "using $in" do
|
163
|
-
let(:selector) do
|
164
|
-
{
|
165
|
-
"occupants" => {"$elemMatch" => {"name" => {"$in" => ["Tim", "Alice"]}}}
|
166
|
-
}
|
167
|
-
end
|
168
|
-
|
169
|
-
it "returns true" do
|
170
|
-
expect(document.locations.first._matches?(selector)).to be true
|
171
|
-
end
|
172
|
-
end
|
173
|
-
end
|
174
|
-
|
175
|
-
context "and there is not a matching sub document" do
|
176
|
-
|
177
|
-
let(:selector) do
|
178
|
-
{
|
179
|
-
"occupants" => {"$elemMatch" => {"name" => "Lyle"}}
|
180
|
-
}
|
181
|
-
end
|
182
|
-
|
183
|
-
it "returns false" do
|
184
|
-
expect(document.locations.first._matches?(selector)).to be false
|
185
|
-
end
|
186
|
-
|
187
|
-
context "using $in" do
|
188
|
-
let(:selector) do
|
189
|
-
{
|
190
|
-
"occupants" => {"$elemMatch" => {"name" => {"$in" => ["Lyfe", "Alice"]}}}
|
191
|
-
}
|
192
|
-
end
|
193
|
-
|
194
|
-
it "returns false" do
|
195
|
-
expect(document.locations.first._matches?(selector)).to be false
|
196
|
-
end
|
197
|
-
end
|
198
|
-
end
|
199
|
-
end
|
200
|
-
|
201
|
-
context "multiple predicates" do
|
202
|
-
|
203
|
-
before do
|
204
|
-
document.locations = [
|
205
|
-
Location.new(
|
206
|
-
name: 'No.1',
|
207
|
-
info: { 'door' => 'Red'},
|
208
|
-
occupants: [{'name' => 'Tim', 'eye_color' => 'brown'}, {'name' => 'Alice', 'eye_color' => 'blue'}]
|
209
|
-
)
|
210
|
-
]
|
211
|
-
end
|
212
|
-
|
213
|
-
let(:selector) do
|
214
|
-
{
|
215
|
-
"occupants" => {"$elemMatch" => {"name" => "Tim", "eye_color" => "brown"}}
|
216
|
-
}
|
217
|
-
end
|
218
|
-
|
219
|
-
context "and there is a matching sub document" do
|
220
|
-
|
221
|
-
it "returns true" do
|
222
|
-
expect(document.locations.first._matches?(selector)).to be true
|
223
|
-
end
|
224
|
-
|
225
|
-
context "using $in and $ne in the $elemMatch to include the element" do
|
226
|
-
|
227
|
-
let(:selector) do
|
228
|
-
{
|
229
|
-
"occupants" => {"$elemMatch" => {"name" => {"$in" => ["Tim"]}, "eye_color" => {"$ne" => "blue"}}}
|
230
|
-
}
|
231
|
-
end
|
232
|
-
|
233
|
-
it "returns true" do
|
234
|
-
expect(document.locations.first._matches?(selector)).to be true
|
235
|
-
end
|
236
|
-
end
|
237
|
-
end
|
238
|
-
|
239
|
-
context "and there is not a matching sub document" do
|
240
|
-
|
241
|
-
let(:selector) do
|
242
|
-
{
|
243
|
-
"occupants" => {"$elemMatch" => {"name" => "Tim", "eye_color" => "blue"}}
|
244
|
-
}
|
245
|
-
end
|
246
|
-
|
247
|
-
it "returns false" do
|
248
|
-
expect(document.locations.first._matches?(selector)).to be false
|
249
|
-
end
|
250
|
-
|
251
|
-
context "using $ne in the $elemMatch to exclude the element" do
|
252
|
-
|
253
|
-
let(:selector) do
|
254
|
-
{
|
255
|
-
"occupants" => {"$elemMatch" => {"name" => {"$in" => ["Tim"]}, "eye_color" => {"$ne" => "brown"}}}
|
256
|
-
}
|
257
|
-
end
|
258
|
-
|
259
|
-
it "returns false" do
|
260
|
-
expect(document.locations.first._matches?(selector)).to be false
|
261
|
-
end
|
262
|
-
end
|
263
|
-
end
|
264
|
-
end
|
265
|
-
end
|
266
|
-
end
|
267
|
-
|
268
|
-
context "when performing simple matching" do
|
269
|
-
|
270
|
-
let(:document) do
|
271
|
-
Address.new(street: "Clarkenwell Road")
|
272
|
-
end
|
273
|
-
|
274
|
-
context "when the attributes match" do
|
275
|
-
|
276
|
-
let(:selector) do
|
277
|
-
{ street: "Clarkenwell Road" }
|
278
|
-
end
|
279
|
-
|
280
|
-
it "returns true" do
|
281
|
-
expect(document._matches?(selector)).to be true
|
282
|
-
end
|
283
|
-
end
|
284
|
-
|
285
|
-
context "when the attributes dont match" do
|
286
|
-
|
287
|
-
let(:selector) do
|
288
|
-
{ street: "Broadway Ave" }
|
289
|
-
end
|
290
|
-
|
291
|
-
it "returns false" do
|
292
|
-
expect(document._matches?(selector)).to be false
|
293
|
-
end
|
294
|
-
end
|
295
|
-
|
296
|
-
context 'when a BSON::Regexp::Raw object is used' do
|
297
|
-
|
298
|
-
let(:selector) do
|
299
|
-
{ street: BSON::Regexp::Raw.new("\\AClarkenwell") }
|
300
|
-
end
|
301
|
-
|
302
|
-
it "returns true" do
|
303
|
-
expect(document._matches?(selector)).to be true
|
304
|
-
end
|
305
|
-
end
|
306
|
-
|
307
|
-
context 'when a native Regexp object is used' do
|
308
|
-
|
309
|
-
let(:selector) do
|
310
|
-
{ street: /\AClarkenwell/ }
|
311
|
-
end
|
312
|
-
|
313
|
-
it "returns true" do
|
314
|
-
expect(document._matches?(selector)).to be true
|
315
|
-
end
|
316
|
-
end
|
317
|
-
end
|
318
|
-
|
319
|
-
context "when performing complex matching" do
|
320
|
-
|
321
|
-
let(:document) do
|
322
|
-
Address.new(
|
323
|
-
services: ["first", "second", "third"],
|
324
|
-
number: 100,
|
325
|
-
map: { key: "value" },
|
326
|
-
street: "Clarkenwell Road"
|
327
|
-
)
|
328
|
-
end
|
329
|
-
|
330
|
-
context "with an $all selector" do
|
331
|
-
|
332
|
-
context "when the attribute includes all of the values" do
|
333
|
-
|
334
|
-
let(:selector) do
|
335
|
-
{ services: { "$all" => [ "first", "second" ] } }
|
336
|
-
end
|
337
|
-
|
338
|
-
it "returns true" do
|
339
|
-
expect(document._matches?(selector)).to be true
|
340
|
-
end
|
341
|
-
end
|
342
|
-
|
343
|
-
context "when the attributes doesn't include all of the values" do
|
344
|
-
|
345
|
-
let(:selector) do
|
346
|
-
{ services: { "$all" => [ "second", "third", "fourth" ] } }
|
347
|
-
end
|
348
|
-
|
349
|
-
it "returns false" do
|
350
|
-
expect(document._matches?(selector)).to be false
|
351
|
-
end
|
352
|
-
end
|
353
|
-
end
|
354
|
-
|
355
|
-
context "with an $exists selector" do
|
356
|
-
|
357
|
-
context "when the attributes match" do
|
358
|
-
|
359
|
-
let(:selector) do
|
360
|
-
{ services: { "$exists" => true } }
|
361
|
-
end
|
362
|
-
|
363
|
-
it "returns true" do
|
364
|
-
expect(document._matches?(selector)).to be true
|
365
|
-
end
|
366
|
-
end
|
367
|
-
|
368
|
-
context "when the attributes do not match" do
|
369
|
-
|
370
|
-
let(:selector) do
|
371
|
-
{ services: { "$exists" => false } }
|
372
|
-
end
|
373
|
-
|
374
|
-
it "returns false" do
|
375
|
-
expect(document._matches?(selector)).to be false
|
376
|
-
end
|
377
|
-
end
|
378
|
-
end
|
379
|
-
|
380
|
-
context "with a $gt selector" do
|
381
|
-
|
382
|
-
context "when the attributes match" do
|
383
|
-
|
384
|
-
let(:selector) do
|
385
|
-
{ number: { "$gt" => 50 } }
|
386
|
-
end
|
387
|
-
|
388
|
-
it "returns true" do
|
389
|
-
expect(document._matches?(selector)).to be true
|
390
|
-
end
|
391
|
-
end
|
392
|
-
|
393
|
-
context "when the attributes do not match" do
|
394
|
-
|
395
|
-
let(:selector) do
|
396
|
-
{ number: { "$gt" => 200 } }
|
397
|
-
end
|
398
|
-
|
399
|
-
it "returns false" do
|
400
|
-
expect(document._matches?(selector)).to be false
|
401
|
-
end
|
402
|
-
end
|
403
|
-
end
|
404
|
-
|
405
|
-
context "with a $gt selector as a symbol" do
|
406
|
-
|
407
|
-
context "when the attributes match" do
|
408
|
-
|
409
|
-
let(:selector) do
|
410
|
-
{ number: { :$gt => 50 } }
|
411
|
-
end
|
412
|
-
|
413
|
-
it "returns true" do
|
414
|
-
expect(document._matches?(selector)).to be true
|
415
|
-
end
|
416
|
-
end
|
417
|
-
|
418
|
-
context "when the attributes do not match" do
|
419
|
-
|
420
|
-
let(:selector) do
|
421
|
-
{ number: { :$gt => 200 } }
|
422
|
-
end
|
423
|
-
|
424
|
-
it "returns false" do
|
425
|
-
expect(document._matches?(selector)).to be false
|
426
|
-
end
|
427
|
-
end
|
428
|
-
end
|
429
|
-
|
430
|
-
context "with a $gte selector" do
|
431
|
-
|
432
|
-
context "when the attributes match" do
|
433
|
-
|
434
|
-
let(:selector) do
|
435
|
-
{ number: { "$gte" => 100 } }
|
436
|
-
end
|
437
|
-
|
438
|
-
it "returns true" do
|
439
|
-
expect(document._matches?(selector)).to be true
|
440
|
-
end
|
441
|
-
end
|
442
|
-
|
443
|
-
context "when the attributes do not match" do
|
444
|
-
|
445
|
-
let(:selector) do
|
446
|
-
{ number: { "$gte" => 200 } }
|
447
|
-
end
|
448
|
-
|
449
|
-
it "returns false" do
|
450
|
-
expect(document._matches?(selector)).to be false
|
451
|
-
end
|
452
|
-
end
|
453
|
-
end
|
454
|
-
|
455
|
-
context "with an $in selector on Array" do
|
456
|
-
|
457
|
-
context "when the attributes match" do
|
458
|
-
|
459
|
-
let(:selector) do
|
460
|
-
{ services: { "$in" => [ /\Afir.*\z/, "second" ] } }
|
461
|
-
end
|
462
|
-
|
463
|
-
it "returns true" do
|
464
|
-
expect(document._matches?(selector)).to be true
|
465
|
-
end
|
466
|
-
end
|
467
|
-
|
468
|
-
context "when the attributes do not match" do
|
469
|
-
|
470
|
-
let(:selector) do
|
471
|
-
{ number: { "$in" => [ "none" ] } }
|
472
|
-
end
|
473
|
-
|
474
|
-
it "returns false" do
|
475
|
-
expect(document._matches?(selector)).to be false
|
476
|
-
end
|
477
|
-
end
|
478
|
-
end
|
479
|
-
|
480
|
-
context "with a $not selector" do
|
481
|
-
|
482
|
-
context "regexes" do
|
483
|
-
|
484
|
-
context "when the predicate matches" do
|
485
|
-
|
486
|
-
let(:selector) do
|
487
|
-
{
|
488
|
-
street: {"$not" => /Avenue/}
|
489
|
-
}
|
490
|
-
end
|
491
|
-
|
492
|
-
it "returns true" do
|
493
|
-
expect(document._matches?(selector)).to be true
|
494
|
-
end
|
495
|
-
end
|
496
|
-
|
497
|
-
context "when the predicate does not match" do
|
498
|
-
|
499
|
-
let(:selector) do
|
500
|
-
{
|
501
|
-
street: {"$not" => /Road/}
|
502
|
-
}
|
503
|
-
end
|
504
|
-
|
505
|
-
it "returns false" do
|
506
|
-
expect(document._matches?(selector)).to be false
|
507
|
-
end
|
508
|
-
end
|
509
|
-
end
|
510
|
-
|
511
|
-
context "other operators" do
|
512
|
-
|
513
|
-
context "numerical comparisons" do
|
514
|
-
|
515
|
-
context "$lt and $gt" do
|
516
|
-
|
517
|
-
context "when the predicate matches" do
|
518
|
-
|
519
|
-
let(:selector) do
|
520
|
-
{
|
521
|
-
number: {"$not" => {"$lt" => 0}}
|
522
|
-
}
|
523
|
-
end
|
524
|
-
|
525
|
-
it "returns true" do
|
526
|
-
expect(document._matches?(selector)).to be true
|
527
|
-
end
|
528
|
-
end
|
529
|
-
|
530
|
-
context "when the predicate does not match" do
|
531
|
-
|
532
|
-
let(:selector) do
|
533
|
-
{
|
534
|
-
number: {"$not" => {"$gt" => 50}}
|
535
|
-
}
|
536
|
-
end
|
537
|
-
|
538
|
-
it "returns false" do
|
539
|
-
expect(document._matches?(selector)).to be false
|
540
|
-
end
|
541
|
-
end
|
542
|
-
end
|
543
|
-
|
544
|
-
context "$in" do
|
545
|
-
|
546
|
-
context "when the predicate matches" do
|
547
|
-
|
548
|
-
let(:selector) do
|
549
|
-
{
|
550
|
-
number: {"$not" => {"$in" => [10]}}
|
551
|
-
}
|
552
|
-
end
|
553
|
-
|
554
|
-
it "returns true" do
|
555
|
-
expect(document._matches?(selector)).to be true
|
556
|
-
end
|
557
|
-
end
|
558
|
-
|
559
|
-
context "when the predicate does not match" do
|
560
|
-
|
561
|
-
let(:selector) do
|
562
|
-
{
|
563
|
-
number: {"$not" => {"$in" => [100]}}
|
564
|
-
}
|
565
|
-
end
|
566
|
-
|
567
|
-
it "returns false" do
|
568
|
-
expect(document._matches?(selector)).to be false
|
569
|
-
end
|
570
|
-
end
|
571
|
-
end
|
572
|
-
end
|
573
|
-
end
|
574
|
-
|
575
|
-
context "symbol keys" do
|
576
|
-
|
577
|
-
context "when the predicate matches" do
|
578
|
-
|
579
|
-
let(:selector) do
|
580
|
-
{
|
581
|
-
street: {:$not => /Avenue/}
|
582
|
-
}
|
583
|
-
end
|
584
|
-
|
585
|
-
it "returns true" do
|
586
|
-
expect(document._matches?(selector)).to be true
|
587
|
-
end
|
588
|
-
end
|
589
|
-
|
590
|
-
context "when the predicate does not match" do
|
591
|
-
|
592
|
-
let(:selector) do
|
593
|
-
{
|
594
|
-
street: {:$not => /Road/}
|
595
|
-
}
|
596
|
-
end
|
597
|
-
|
598
|
-
it "returns false" do
|
599
|
-
expect(document._matches?(selector)).to be false
|
600
|
-
end
|
601
|
-
end
|
602
|
-
end
|
603
|
-
end
|
604
|
-
|
605
|
-
context "with an $in selector" do
|
606
|
-
|
607
|
-
context "when the attributes match" do
|
608
|
-
|
609
|
-
let(:selector) do
|
610
|
-
{ number: { "$in" => [ 100, 200 ] } }
|
611
|
-
end
|
612
|
-
|
613
|
-
it "returns true" do
|
614
|
-
expect(document._matches?(selector)).to be true
|
615
|
-
end
|
616
|
-
end
|
617
|
-
|
618
|
-
context "when the attributes do not match" do
|
619
|
-
|
620
|
-
let(:selector) do
|
621
|
-
{ number: { "$in" => [ 200, 300 ] } }
|
622
|
-
end
|
623
|
-
|
624
|
-
it "returns false" do
|
625
|
-
expect(document._matches?(selector)).to be false
|
626
|
-
end
|
627
|
-
end
|
628
|
-
end
|
629
|
-
|
630
|
-
context "with a $lt selector" do
|
631
|
-
|
632
|
-
context "when the attributes match" do
|
633
|
-
|
634
|
-
let(:selector) do
|
635
|
-
{ number: { "$lt" => 200 } }
|
636
|
-
end
|
637
|
-
|
638
|
-
it "returns true" do
|
639
|
-
expect(document._matches?(selector)).to be true
|
640
|
-
end
|
641
|
-
end
|
642
|
-
|
643
|
-
context "when the attributes do not match" do
|
644
|
-
|
645
|
-
let(:selector) do
|
646
|
-
{ number: { "$lt" => 50 } }
|
647
|
-
end
|
648
|
-
|
649
|
-
it "returns false" do
|
650
|
-
expect(document._matches?(selector)).to be false
|
651
|
-
end
|
652
|
-
end
|
653
|
-
end
|
654
|
-
|
655
|
-
context "with a $lte selector" do
|
656
|
-
|
657
|
-
context "when the attributes match" do
|
658
|
-
|
659
|
-
let(:selector) do
|
660
|
-
{ number: { "$lte" => 200 } }
|
661
|
-
end
|
662
|
-
|
663
|
-
it "returns true" do
|
664
|
-
expect(document._matches?(selector)).to be true
|
665
|
-
end
|
666
|
-
end
|
667
|
-
|
668
|
-
context "when the attributes do not match" do
|
669
|
-
|
670
|
-
let(:selector) do
|
671
|
-
{ number: { "$lte" => 50 } }
|
672
|
-
end
|
673
|
-
|
674
|
-
it "returns false" do
|
675
|
-
expect(document._matches?(selector)).to be false
|
676
|
-
end
|
677
|
-
end
|
678
|
-
end
|
679
|
-
|
680
|
-
context "with an $ne selector" do
|
681
|
-
|
682
|
-
context "when the attributes match" do
|
683
|
-
|
684
|
-
let(:selector) do
|
685
|
-
{ number: { "$ne" => 200 } }
|
686
|
-
end
|
687
|
-
|
688
|
-
it "returns true" do
|
689
|
-
expect(document._matches?(selector)).to be true
|
690
|
-
end
|
691
|
-
end
|
692
|
-
|
693
|
-
context "when the attributes do not match" do
|
694
|
-
|
695
|
-
let(:selector) do
|
696
|
-
{ number: { "$ne" => 100 } }
|
697
|
-
end
|
698
|
-
|
699
|
-
it "returns false" do
|
700
|
-
expect(document._matches?(selector)).to be false
|
701
|
-
end
|
702
|
-
end
|
703
|
-
end
|
704
|
-
|
705
|
-
context "with a $nin selector on Array" do
|
706
|
-
|
707
|
-
context "when the attributes match" do
|
708
|
-
|
709
|
-
let(:selector) do
|
710
|
-
{ services: { "$nin" => [ "none" ] } }
|
711
|
-
end
|
712
|
-
|
713
|
-
it "returns true" do
|
714
|
-
expect(document._matches?(selector)).to be true
|
715
|
-
end
|
716
|
-
end
|
717
|
-
|
718
|
-
context "when the attributes do not match" do
|
719
|
-
|
720
|
-
let(:selector) do
|
721
|
-
{ services: { "$nin" => [ "first" ] } }
|
722
|
-
end
|
723
|
-
|
724
|
-
it "returns false" do
|
725
|
-
expect(document._matches?(selector)).to be false
|
726
|
-
end
|
727
|
-
end
|
728
|
-
end
|
729
|
-
|
730
|
-
context "with a $nin selector" do
|
731
|
-
|
732
|
-
context "when the attributes match" do
|
733
|
-
|
734
|
-
let(:selector) do
|
735
|
-
{ number: { "$nin" => [ 1, 2, 3 ] } }
|
736
|
-
end
|
737
|
-
|
738
|
-
it "returns true" do
|
739
|
-
expect(document._matches?(selector)).to be true
|
740
|
-
end
|
741
|
-
end
|
742
|
-
|
743
|
-
context "when the attributes do not match" do
|
744
|
-
|
745
|
-
let(:selector) do
|
746
|
-
{ number: { "$nin" => [ 100 ] } }
|
747
|
-
end
|
748
|
-
|
749
|
-
it "returns false" do
|
750
|
-
expect(document._matches?(selector)).to be false
|
751
|
-
end
|
752
|
-
end
|
753
|
-
end
|
754
|
-
|
755
|
-
context "with an $or selector" do
|
756
|
-
|
757
|
-
context "when the attributes match" do
|
758
|
-
|
759
|
-
let(:selector) do
|
760
|
-
{ "$or" => [ { number: 10 }, { number: { "$gt" => 99 } } ] }
|
761
|
-
end
|
762
|
-
|
763
|
-
it "returns true" do
|
764
|
-
expect(document._matches?(selector)).to be true
|
765
|
-
end
|
766
|
-
end
|
767
|
-
|
768
|
-
context "when the attributes do not match" do
|
769
|
-
|
770
|
-
let(:selector) do
|
771
|
-
{ "$or" => [ { number: 10 }, { number: { "$lt" => 99 } } ] }
|
772
|
-
end
|
773
|
-
|
774
|
-
it "returns false" do
|
775
|
-
expect(document._matches?(selector)).to be false
|
776
|
-
end
|
777
|
-
end
|
778
|
-
end
|
779
|
-
|
780
|
-
context "with an $nor selector" do
|
781
|
-
|
782
|
-
context "when the attributes match" do
|
783
|
-
|
784
|
-
let(:selector) do
|
785
|
-
{ "$nor" => [ { number: 10 }, { number: { "$gt" => 199 } } ] }
|
786
|
-
end
|
787
|
-
|
788
|
-
it "returns true" do
|
789
|
-
expect(document._matches?(selector)).to be true
|
790
|
-
end
|
791
|
-
end
|
792
|
-
|
793
|
-
context "when the attributes do not match" do
|
794
|
-
|
795
|
-
let(:selector) do
|
796
|
-
{ "$nor" => [ { number: 10 }, { number: { "$gt" => 99 } } ] }
|
797
|
-
end
|
798
|
-
|
799
|
-
it "returns false" do
|
800
|
-
expect(document._matches?(selector)).to be false
|
801
|
-
end
|
802
|
-
end
|
803
|
-
end
|
804
|
-
|
805
|
-
context "with a $size selector" do
|
806
|
-
|
807
|
-
context "when the attributes match" do
|
808
|
-
|
809
|
-
let(:selector) do
|
810
|
-
{ services: { "$size" => 3 } }
|
811
|
-
end
|
812
|
-
|
813
|
-
it "returns true" do
|
814
|
-
expect(document._matches?(selector)).to be true
|
815
|
-
end
|
816
|
-
end
|
817
|
-
|
818
|
-
context "when the attributes do not match" do
|
819
|
-
|
820
|
-
let(:selector) do
|
821
|
-
{ services: { "$size" => 5 } }
|
822
|
-
end
|
823
|
-
|
824
|
-
it "returns false" do
|
825
|
-
expect(document._matches?(selector)).to be false
|
826
|
-
end
|
827
|
-
end
|
828
|
-
end
|
829
|
-
|
830
|
-
context "with a hash value" do
|
831
|
-
|
832
|
-
context "when the attributes match" do
|
833
|
-
|
834
|
-
let(:selector) do
|
835
|
-
{ map: { key: "value" } }
|
836
|
-
end
|
837
|
-
|
838
|
-
it "returns true" do
|
839
|
-
expect(document._matches?(selector)).to be true
|
840
|
-
end
|
841
|
-
end
|
842
|
-
|
843
|
-
context "when the attributes do not match" do
|
844
|
-
|
845
|
-
let(:selector) do
|
846
|
-
{ map: { key: "value2" } }
|
847
|
-
end
|
848
|
-
|
849
|
-
it "returns false" do
|
850
|
-
expect(document._matches?(selector)).to be false
|
851
|
-
end
|
852
|
-
end
|
853
|
-
end
|
854
|
-
end
|
855
|
-
end
|
856
|
-
end
|