mongoid 7.4.3 → 8.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data/README.md +3 -3
- data/Rakefile +25 -0
- data/lib/config/locales/en.yml +52 -28
- data/lib/mongoid/association/accessors.rb +38 -9
- data/lib/mongoid/association/bindable.rb +50 -2
- data/lib/mongoid/association/builders.rb +4 -2
- data/lib/mongoid/association/constrainable.rb +0 -1
- data/lib/mongoid/association/eager_loadable.rb +29 -7
- data/lib/mongoid/association/embedded/batchable.rb +33 -10
- data/lib/mongoid/association/embedded/cyclic.rb +1 -1
- data/lib/mongoid/association/embedded/embedded_in/binding.rb +24 -2
- data/lib/mongoid/association/embedded/embedded_in/proxy.rb +2 -2
- data/lib/mongoid/association/embedded/embedded_in.rb +3 -2
- data/lib/mongoid/association/embedded/embeds_many/binding.rb +1 -0
- data/lib/mongoid/association/embedded/embeds_many/buildable.rb +1 -1
- data/lib/mongoid/association/embedded/embeds_many/proxy.rb +65 -41
- data/lib/mongoid/association/embedded/embeds_many.rb +2 -2
- data/lib/mongoid/association/embedded/embeds_one/buildable.rb +18 -4
- data/lib/mongoid/association/embedded/embeds_one/proxy.rb +23 -4
- data/lib/mongoid/association/embedded/embeds_one.rb +3 -3
- data/lib/mongoid/association/macros.rb +28 -1
- data/lib/mongoid/association/many.rb +11 -7
- data/lib/mongoid/association/nested/many.rb +5 -4
- data/lib/mongoid/association/nested/nested_buildable.rb +4 -4
- data/lib/mongoid/association/nested/one.rb +5 -5
- data/lib/mongoid/association/one.rb +2 -2
- data/lib/mongoid/association/options.rb +9 -9
- data/lib/mongoid/association/proxy.rb +14 -3
- data/lib/mongoid/association/referenced/auto_save.rb +4 -3
- data/lib/mongoid/association/referenced/belongs_to/binding.rb +1 -0
- data/lib/mongoid/association/referenced/belongs_to/buildable.rb +1 -1
- data/lib/mongoid/association/referenced/belongs_to/proxy.rb +5 -6
- data/lib/mongoid/association/referenced/belongs_to.rb +2 -2
- data/lib/mongoid/association/referenced/counter_cache.rb +10 -10
- data/lib/mongoid/association/referenced/eager.rb +2 -2
- data/lib/mongoid/association/referenced/has_and_belongs_to_many/proxy.rb +70 -13
- data/lib/mongoid/association/referenced/has_and_belongs_to_many.rb +6 -3
- data/lib/mongoid/association/referenced/has_many/enumerable.rb +20 -24
- data/lib/mongoid/association/referenced/has_many/proxy.rb +26 -16
- data/lib/mongoid/association/referenced/has_many.rb +3 -3
- data/lib/mongoid/association/referenced/has_one/buildable.rb +1 -1
- data/lib/mongoid/association/referenced/has_one/nested_builder.rb +5 -5
- data/lib/mongoid/association/referenced/has_one/proxy.rb +9 -12
- data/lib/mongoid/association/referenced/has_one.rb +3 -3
- data/lib/mongoid/association/referenced/syncable.rb +4 -4
- data/lib/mongoid/association/reflections.rb +2 -2
- data/lib/mongoid/association/relatable.rb +44 -10
- data/lib/mongoid/association.rb +5 -5
- data/lib/mongoid/atomic/modifiers.rb +2 -2
- data/lib/mongoid/atomic.rb +7 -0
- data/lib/mongoid/attributes/dynamic.rb +3 -3
- data/lib/mongoid/attributes/nested.rb +5 -5
- data/lib/mongoid/attributes/processing.rb +37 -6
- data/lib/mongoid/attributes/projector.rb +1 -1
- data/lib/mongoid/attributes/readonly.rb +2 -2
- data/lib/mongoid/attributes.rb +43 -40
- data/lib/mongoid/cacheable.rb +2 -2
- data/lib/mongoid/changeable.rb +43 -10
- data/lib/mongoid/clients/options.rb +5 -1
- data/lib/mongoid/clients/sessions.rb +2 -14
- data/lib/mongoid/clients/validators/storage.rb +3 -3
- data/lib/mongoid/config/options.rb +3 -0
- data/lib/mongoid/config/validators/client.rb +6 -6
- data/lib/mongoid/config.rb +62 -17
- data/lib/mongoid/contextual/aggregable/memory.rb +24 -16
- data/lib/mongoid/contextual/aggregable/mongo.rb +5 -5
- data/lib/mongoid/contextual/aggregable/none.rb +1 -1
- data/lib/mongoid/contextual/atomic.rb +1 -1
- data/lib/mongoid/contextual/geo_near.rb +7 -7
- data/lib/mongoid/contextual/map_reduce.rb +2 -2
- data/lib/mongoid/contextual/memory.rb +180 -21
- data/lib/mongoid/contextual/mongo.rb +260 -217
- data/lib/mongoid/contextual/none.rb +67 -5
- data/lib/mongoid/contextual/queryable.rb +1 -1
- data/lib/mongoid/contextual.rb +2 -2
- data/lib/mongoid/copyable.rb +32 -8
- data/lib/mongoid/criteria/findable.rb +7 -4
- data/lib/mongoid/criteria/includable.rb +24 -20
- data/lib/mongoid/criteria/marshalable.rb +10 -2
- data/lib/mongoid/criteria/permission.rb +1 -1
- data/lib/mongoid/criteria/queryable/aggregable.rb +2 -2
- data/lib/mongoid/criteria/queryable/extensions/array.rb +3 -14
- data/lib/mongoid/criteria/queryable/extensions/big_decimal.rb +25 -4
- data/lib/mongoid/criteria/queryable/extensions/boolean.rb +2 -2
- data/lib/mongoid/criteria/queryable/extensions/date.rb +6 -1
- data/lib/mongoid/criteria/queryable/extensions/date_time.rb +6 -1
- data/lib/mongoid/criteria/queryable/extensions/hash.rb +1 -15
- data/lib/mongoid/criteria/queryable/extensions/numeric.rb +1 -9
- data/lib/mongoid/criteria/queryable/extensions/object.rb +2 -1
- data/lib/mongoid/criteria/queryable/extensions/range.rb +13 -5
- data/lib/mongoid/criteria/queryable/extensions/regexp.rb +3 -3
- data/lib/mongoid/criteria/queryable/extensions/set.rb +1 -1
- data/lib/mongoid/criteria/queryable/extensions/string.rb +4 -14
- data/lib/mongoid/criteria/queryable/extensions/symbol.rb +4 -12
- data/lib/mongoid/criteria/queryable/extensions/time.rb +6 -1
- data/lib/mongoid/criteria/queryable/extensions/time_with_zone.rb +6 -1
- data/lib/mongoid/criteria/queryable/key.rb +3 -3
- data/lib/mongoid/criteria/queryable/mergeable.rb +21 -0
- data/lib/mongoid/criteria/queryable/optional.rb +5 -11
- data/lib/mongoid/criteria/queryable/options.rb +2 -2
- data/lib/mongoid/criteria/queryable/pipeline.rb +1 -1
- data/lib/mongoid/criteria/queryable/selectable.rb +31 -37
- data/lib/mongoid/criteria/queryable/selector.rb +93 -8
- data/lib/mongoid/criteria/queryable/smash.rb +40 -7
- data/lib/mongoid/criteria/queryable/storable.rb +1 -1
- data/lib/mongoid/criteria/queryable.rb +12 -7
- data/lib/mongoid/criteria/scopable.rb +2 -2
- data/lib/mongoid/criteria/translator.rb +45 -0
- data/lib/mongoid/criteria.rb +16 -35
- data/lib/mongoid/deprecable.rb +37 -0
- data/lib/mongoid/deprecation.rb +25 -0
- data/lib/mongoid/document.rb +135 -34
- data/lib/mongoid/equality.rb +8 -8
- data/lib/mongoid/errors/document_not_found.rb +33 -12
- data/lib/mongoid/errors/invalid_config_option.rb +1 -1
- data/lib/mongoid/errors/invalid_dependent_strategy.rb +1 -1
- data/lib/mongoid/errors/invalid_dot_dollar_assignment.rb +23 -0
- data/lib/mongoid/errors/invalid_field.rb +6 -2
- data/lib/mongoid/errors/invalid_field_type.rb +26 -0
- data/lib/mongoid/errors/invalid_relation.rb +1 -1
- data/lib/mongoid/errors/invalid_relation_option.rb +1 -1
- data/lib/mongoid/errors/invalid_session_use.rb +1 -1
- data/lib/mongoid/errors/invalid_storage_options.rb +1 -1
- data/lib/mongoid/errors/mongoid_error.rb +3 -3
- data/lib/mongoid/errors/nested_attributes_metadata_not_found.rb +1 -1
- data/lib/mongoid/errors/no_client_database.rb +1 -1
- data/lib/mongoid/errors/no_client_hosts.rb +1 -1
- data/lib/mongoid/errors/readonly_attribute.rb +1 -1
- data/lib/mongoid/errors/too_many_nested_attribute_records.rb +1 -1
- data/lib/mongoid/errors/unknown_attribute.rb +1 -1
- data/lib/mongoid/errors.rb +2 -2
- data/lib/mongoid/extensions/array.rb +9 -7
- data/lib/mongoid/extensions/big_decimal.rb +33 -10
- data/lib/mongoid/extensions/binary.rb +42 -0
- data/lib/mongoid/extensions/boolean.rb +8 -2
- data/lib/mongoid/extensions/date.rb +26 -20
- data/lib/mongoid/extensions/date_time.rb +1 -1
- data/lib/mongoid/extensions/false_class.rb +1 -1
- data/lib/mongoid/extensions/float.rb +7 -4
- data/lib/mongoid/extensions/hash.rb +37 -8
- data/lib/mongoid/extensions/integer.rb +7 -4
- data/lib/mongoid/extensions/module.rb +1 -1
- data/lib/mongoid/extensions/object.rb +8 -6
- data/lib/mongoid/extensions/range.rb +41 -10
- data/lib/mongoid/extensions/regexp.rb +11 -4
- data/lib/mongoid/extensions/set.rb +11 -4
- data/lib/mongoid/extensions/string.rb +11 -22
- data/lib/mongoid/extensions/symbol.rb +4 -15
- data/lib/mongoid/extensions/time.rb +27 -16
- data/lib/mongoid/extensions/time_with_zone.rb +1 -2
- data/lib/mongoid/extensions/true_class.rb +1 -1
- data/lib/mongoid/extensions.rb +1 -0
- data/lib/mongoid/factory.rb +55 -7
- data/lib/mongoid/fields/foreign_key.rb +11 -4
- data/lib/mongoid/fields/localized.rb +9 -4
- data/lib/mongoid/fields/standard.rb +7 -7
- data/lib/mongoid/fields/validators/macro.rb +3 -9
- data/lib/mongoid/fields.rb +233 -40
- data/lib/mongoid/findable.rb +34 -13
- data/lib/mongoid/indexable/specification.rb +2 -2
- data/lib/mongoid/indexable/validators/options.rb +6 -2
- data/lib/mongoid/interceptable.rb +185 -16
- data/lib/mongoid/matchable.rb +1 -1
- data/lib/mongoid/matcher.rb +33 -13
- data/lib/mongoid/persistable/creatable.rb +18 -9
- data/lib/mongoid/persistable/deletable.rb +1 -1
- data/lib/mongoid/persistable/destroyable.rb +1 -1
- data/lib/mongoid/persistable/savable.rb +2 -2
- data/lib/mongoid/persistable/unsettable.rb +1 -1
- data/lib/mongoid/persistable/updatable.rb +19 -12
- data/lib/mongoid/persistable/upsertable.rb +1 -1
- data/lib/mongoid/persistable.rb +3 -3
- data/lib/mongoid/persistence_context.rb +63 -10
- data/lib/mongoid/query_cache.rb +8 -260
- data/lib/mongoid/railties/controller_runtime.rb +1 -1
- data/lib/mongoid/reloadable.rb +10 -8
- data/lib/mongoid/scopable.rb +26 -22
- data/lib/mongoid/selectable.rb +1 -2
- data/lib/mongoid/serializable.rb +10 -6
- data/lib/mongoid/shardable.rb +35 -11
- data/lib/mongoid/stateful.rb +35 -9
- data/lib/mongoid/tasks/database.rb +0 -2
- data/lib/mongoid/threaded/lifecycle.rb +5 -5
- data/lib/mongoid/threaded.rb +42 -12
- data/lib/mongoid/timestamps/created.rb +1 -1
- data/lib/mongoid/timestamps/updated.rb +2 -2
- data/lib/mongoid/touchable.rb +2 -3
- data/lib/mongoid/traversable.rb +5 -4
- data/lib/mongoid/validatable/localizable.rb +1 -1
- data/lib/mongoid/validatable/macros.rb +0 -2
- data/lib/mongoid/validatable/presence.rb +2 -2
- data/lib/mongoid/validatable/uniqueness.rb +9 -8
- data/lib/mongoid/validatable.rb +6 -6
- data/lib/mongoid/version.rb +1 -1
- data/lib/mongoid/warnings.rb +28 -0
- data/lib/mongoid.rb +2 -0
- data/lib/rails/generators/mongoid/config/templates/mongoid.yml +4 -3
- data/spec/config/mongoid.yml +16 -0
- data/spec/integration/app_spec.rb +8 -12
- data/spec/integration/associations/belongs_to_spec.rb +18 -0
- data/spec/integration/associations/embedded_spec.rb +15 -0
- data/spec/integration/associations/embeds_many_spec.rb +15 -2
- data/spec/integration/associations/embeds_one_spec.rb +18 -0
- data/spec/integration/associations/foreign_key_spec.rb +9 -0
- data/spec/integration/associations/has_and_belongs_to_many_spec.rb +21 -0
- data/spec/integration/associations/has_one_spec.rb +97 -1
- data/spec/integration/associations/scope_option_spec.rb +1 -1
- data/spec/integration/callbacks_models.rb +95 -1
- data/spec/integration/callbacks_spec.rb +246 -4
- data/spec/integration/criteria/range_spec.rb +95 -1
- data/spec/integration/discriminator_key_spec.rb +115 -76
- data/spec/integration/dots_and_dollars_spec.rb +277 -0
- data/spec/integration/i18n_fallbacks_spec.rb +1 -17
- data/spec/integration/matcher_examples_spec.rb +20 -13
- data/spec/integration/matcher_operator_data/type_decimal.yml +3 -2
- data/spec/integration/matcher_operator_spec.rb +3 -5
- data/spec/integration/persistence/range_field_spec.rb +350 -0
- data/spec/mongoid/association/counter_cache_spec.rb +1 -1
- data/spec/mongoid/association/depending_spec.rb +9 -9
- data/spec/mongoid/association/eager_spec.rb +2 -1
- data/spec/mongoid/association/embedded/embedded_in/binding_spec.rb +2 -1
- data/spec/mongoid/association/embedded/embedded_in/buildable_spec.rb +54 -0
- data/spec/mongoid/association/embedded/embedded_in/proxy_spec.rb +69 -9
- data/spec/mongoid/association/embedded/embeds_many/buildable_spec.rb +112 -0
- data/spec/mongoid/association/embedded/embeds_many/proxy_spec.rb +235 -40
- data/spec/mongoid/association/embedded/embeds_many_models.rb +36 -0
- data/spec/mongoid/association/embedded/embeds_many_query_spec.rb +12 -0
- data/spec/mongoid/association/embedded/embeds_many_spec.rb +68 -0
- data/spec/mongoid/association/embedded/embeds_one/buildable_spec.rb +25 -0
- data/spec/mongoid/association/embedded/embeds_one_models.rb +19 -0
- data/spec/mongoid/association/embedded/embeds_one_spec.rb +28 -0
- data/spec/mongoid/association/referenced/belongs_to/binding_spec.rb +2 -1
- data/spec/mongoid/association/referenced/belongs_to/buildable_spec.rb +54 -0
- data/spec/mongoid/association/referenced/belongs_to/proxy_spec.rb +15 -0
- data/spec/mongoid/association/referenced/belongs_to_models.rb +11 -0
- data/spec/mongoid/association/referenced/belongs_to_spec.rb +2 -2
- data/spec/mongoid/association/referenced/has_and_belongs_to_many/proxy_spec.rb +202 -201
- data/spec/mongoid/association/referenced/has_and_belongs_to_many_models.rb +25 -0
- data/spec/mongoid/association/referenced/has_and_belongs_to_many_spec.rb +35 -2
- data/spec/mongoid/association/referenced/has_many/buildable_spec.rb +109 -0
- data/spec/mongoid/association/referenced/has_many/enumerable_spec.rb +8 -8
- data/spec/mongoid/association/referenced/has_many/proxy_spec.rb +160 -119
- data/spec/mongoid/association/referenced/has_many_models.rb +3 -1
- data/spec/mongoid/association/referenced/has_many_spec.rb +25 -0
- data/spec/mongoid/association/referenced/has_one/buildable_spec.rb +2 -2
- data/spec/mongoid/association/referenced/has_one/proxy_spec.rb +107 -1
- data/spec/mongoid/association/referenced/has_one_models.rb +16 -0
- data/spec/mongoid/association/syncable_spec.rb +14 -0
- data/spec/mongoid/atomic/paths_spec.rb +0 -14
- data/spec/mongoid/attributes/nested_spec.rb +80 -11
- data/spec/mongoid/attributes/nested_spec_models.rb +48 -0
- data/spec/mongoid/attributes/projector_spec.rb +1 -5
- data/spec/mongoid/attributes_spec.rb +551 -27
- data/spec/mongoid/cacheable_spec.rb +3 -3
- data/spec/mongoid/changeable_spec.rb +130 -13
- data/spec/mongoid/clients/factory_spec.rb +23 -30
- data/spec/mongoid/clients/options_spec.rb +1 -0
- data/spec/mongoid/clients/sessions_spec.rb +0 -38
- data/spec/mongoid/clients_spec.rb +57 -2
- data/spec/mongoid/config_spec.rb +78 -18
- data/spec/mongoid/contextual/aggregable/memory_spec.rb +396 -158
- data/spec/mongoid/contextual/aggregable/memory_table.yml +88 -0
- data/spec/mongoid/contextual/aggregable/memory_table_spec.rb +62 -0
- data/spec/mongoid/contextual/map_reduce_spec.rb +2 -16
- data/spec/mongoid/contextual/memory_spec.rb +1336 -69
- data/spec/mongoid/contextual/mongo_spec.rb +1253 -247
- data/spec/mongoid/contextual/none_spec.rb +38 -0
- data/spec/mongoid/copyable_spec.rb +451 -1
- data/spec/mongoid/criteria/findable_spec.rb +86 -210
- data/spec/mongoid/criteria/includable_spec.rb +1492 -0
- data/spec/mongoid/criteria/includable_spec_models.rb +54 -0
- data/spec/mongoid/criteria/marshalable_spec.rb +18 -1
- data/spec/mongoid/criteria/queryable/extensions/array_spec.rb +7 -19
- data/spec/mongoid/criteria/queryable/extensions/big_decimal_spec.rb +134 -26
- data/spec/mongoid/criteria/queryable/extensions/date_spec.rb +11 -0
- data/spec/mongoid/criteria/queryable/extensions/date_time_spec.rb +11 -0
- data/spec/mongoid/criteria/queryable/extensions/hash_spec.rb +0 -15
- data/spec/mongoid/criteria/queryable/extensions/numeric_spec.rb +73 -7
- data/spec/mongoid/criteria/queryable/extensions/string_spec.rb +0 -59
- data/spec/mongoid/criteria/queryable/extensions/symbol_spec.rb +0 -59
- data/spec/mongoid/criteria/queryable/extensions/time_spec.rb +11 -0
- data/spec/mongoid/criteria/queryable/extensions/time_with_zone_spec.rb +11 -0
- data/spec/mongoid/criteria/queryable/optional_spec.rb +15 -484
- data/spec/mongoid/criteria/queryable/selectable_logical_spec.rb +50 -0
- data/spec/mongoid/criteria/queryable/selectable_spec.rb +289 -124
- data/spec/mongoid/criteria/queryable/selector_spec.rb +89 -4
- data/spec/mongoid/criteria/queryable/storable_spec.rb +72 -0
- data/spec/mongoid/criteria/translator_spec.rb +132 -0
- data/spec/mongoid/criteria_projection_spec.rb +0 -1
- data/spec/mongoid/criteria_spec.rb +475 -1199
- data/spec/mongoid/document_fields_spec.rb +173 -24
- data/spec/mongoid/document_spec.rb +32 -41
- data/spec/mongoid/errors/document_not_found_spec.rb +76 -0
- data/spec/mongoid/errors/invalid_field_spec.rb +1 -1
- data/spec/mongoid/errors/invalid_field_type_spec.rb +55 -0
- data/spec/mongoid/errors/mongoid_error_spec.rb +3 -1
- data/spec/mongoid/errors/no_environment_spec.rb +3 -3
- data/spec/mongoid/errors/too_many_nested_attribute_records_spec.rb +1 -1
- data/spec/mongoid/extensions/array_spec.rb +16 -2
- data/spec/mongoid/extensions/big_decimal_spec.rb +712 -212
- data/spec/mongoid/extensions/binary_spec.rb +44 -9
- data/spec/mongoid/extensions/boolean_spec.rb +68 -82
- data/spec/mongoid/extensions/date_class_mongoize_spec.rb +7 -3
- data/spec/mongoid/extensions/date_spec.rb +71 -1
- data/spec/mongoid/extensions/date_time_spec.rb +15 -9
- data/spec/mongoid/extensions/float_spec.rb +53 -74
- data/spec/mongoid/extensions/hash_spec.rb +33 -3
- data/spec/mongoid/extensions/integer_spec.rb +50 -64
- data/spec/mongoid/extensions/range_spec.rb +255 -54
- data/spec/mongoid/extensions/regexp_spec.rb +58 -33
- data/spec/mongoid/extensions/set_spec.rb +106 -0
- data/spec/mongoid/extensions/string_spec.rb +53 -25
- data/spec/mongoid/extensions/symbol_spec.rb +18 -25
- data/spec/mongoid/extensions/time_spec.rb +634 -66
- data/spec/mongoid/extensions/time_with_zone_spec.rb +17 -31
- data/spec/mongoid/factory_spec.rb +61 -1
- data/spec/mongoid/fields/localized_spec.rb +37 -12
- data/spec/mongoid/fields_spec.rb +364 -50
- data/spec/mongoid/findable_spec.rb +80 -15
- data/spec/mongoid/indexable/specification_spec.rb +2 -2
- data/spec/mongoid/indexable_spec.rb +39 -20
- data/spec/mongoid/interceptable_spec.rb +807 -27
- data/spec/mongoid/interceptable_spec_models.rb +235 -4
- data/spec/mongoid/matcher/extract_attribute_spec.rb +1 -5
- data/spec/mongoid/mongoizable_spec.rb +285 -0
- data/spec/mongoid/persistable/creatable_spec.rb +2 -2
- data/spec/mongoid/persistable/deletable_spec.rb +2 -2
- data/spec/mongoid/persistable/destroyable_spec.rb +2 -2
- data/spec/mongoid/persistable/upsertable_spec.rb +14 -0
- data/spec/mongoid/persistence_context_spec.rb +50 -1
- data/spec/mongoid/query_cache_middleware_spec.rb +0 -18
- data/spec/mongoid/query_cache_spec.rb +0 -154
- data/spec/mongoid/reloadable_spec.rb +59 -2
- data/spec/mongoid/scopable_spec.rb +54 -16
- data/spec/mongoid/shardable_models.rb +14 -0
- data/spec/mongoid/shardable_spec.rb +157 -51
- data/spec/mongoid/stateful_spec.rb +28 -0
- data/spec/mongoid/timestamps_spec.rb +390 -0
- data/spec/mongoid/timestamps_spec_models.rb +67 -0
- data/spec/mongoid/touchable_spec.rb +116 -0
- data/spec/mongoid/touchable_spec_models.rb +12 -8
- data/spec/mongoid/traversable_spec.rb +4 -11
- data/spec/mongoid/validatable/presence_spec.rb +1 -1
- data/spec/mongoid/validatable/uniqueness_spec.rb +59 -31
- data/spec/mongoid/warnings_spec.rb +35 -0
- data/spec/mongoid_spec.rb +1 -1
- data/spec/rails/controller_extension/controller_runtime_spec.rb +2 -2
- data/spec/rails/mongoid_spec.rb +4 -16
- data/spec/shared/lib/mrss/docker_runner.rb +7 -0
- data/spec/shared/lib/mrss/lite_constraints.rb +10 -2
- data/spec/shared/lib/mrss/server_version_registry.rb +16 -23
- data/spec/shared/lib/mrss/utils.rb +28 -6
- data/spec/shared/share/Dockerfile.erb +36 -40
- data/spec/shared/shlib/server.sh +32 -8
- data/spec/shared/shlib/set_env.sh +4 -4
- data/spec/support/constraints.rb +24 -0
- data/spec/support/macros.rb +46 -0
- data/spec/support/models/augmentation.rb +12 -0
- data/spec/support/models/band.rb +3 -0
- data/spec/support/models/catalog.rb +24 -0
- data/spec/support/models/circus.rb +3 -0
- data/spec/support/models/code.rb +2 -0
- data/spec/support/models/fanatic.rb +8 -0
- data/spec/support/models/implant.rb +9 -0
- data/spec/support/models/label.rb +2 -0
- data/spec/support/models/passport.rb +9 -0
- data/spec/support/models/person.rb +2 -0
- data/spec/support/models/player.rb +2 -0
- data/spec/support/models/powerup.rb +12 -0
- data/spec/support/models/purse.rb +9 -0
- data/spec/support/models/registry.rb +1 -0
- data/spec/support/models/school.rb +14 -0
- data/spec/support/models/shield.rb +18 -0
- data/spec/support/models/student.rb +14 -0
- data/spec/support/models/weapon.rb +12 -0
- data.tar.gz.sig +4 -1
- metadata +682 -635
- metadata.gz.sig +0 -0
- data/lib/mongoid/errors/eager_load.rb +0 -23
- data/lib/mongoid/errors/invalid_value.rb +0 -17
- data/spec/mongoid/errors/eager_load_spec.rb +0 -31
@@ -7,13 +7,13 @@
|
|
7
7
|
<%
|
8
8
|
|
9
9
|
python_toolchain_url = "https://s3.amazonaws.com//mciuploads/mongo-python-driver-toolchain/#{distro}/ba92de2700c04ee2d4f82c3ffdfc33105140cb04/mongo_python_driver_toolchain_#{distro.gsub('-', '_')}_ba92de2700c04ee2d4f82c3ffdfc33105140cb04_19_11_14_15_33_33.tar.gz"
|
10
|
-
server_version = '4.3.3'
|
10
|
+
# server_version = '4.3.3'
|
11
11
|
server_url = "http://downloads.10gen.com/linux/mongodb-linux-x86_64-enterprise-#{distro}-#{server_version}.tgz"
|
12
12
|
server_archive_basename = File.basename(server_url)
|
13
13
|
server_extracted_dir = server_archive_basename.sub(/\.(tar\.gz|tgz)$/, '')
|
14
14
|
|
15
15
|
# When changing, also update the hash in shlib/set_env.sh.
|
16
|
-
TOOLCHAIN_VERSION='
|
16
|
+
TOOLCHAIN_VERSION='e8c60866f54bed7e336a37df3a97d6ae1b971b7d'
|
17
17
|
|
18
18
|
def ruby_toolchain_url(ruby)
|
19
19
|
"http://boxes.10gen.com/build/toolchain-drivers/mongo-ruby-driver/#{TOOLCHAIN_VERSION}/#{distro}/#{ruby}.tar.xz"
|
@@ -77,25 +77,31 @@ ENV DOCKER=1
|
|
77
77
|
# therefore install python-pip in all configurations here.
|
78
78
|
|
79
79
|
<% packages = %w(
|
80
|
-
procps lsb-release bzip2 curl zsh
|
80
|
+
procps lsb-release bzip2 curl wget gpg zsh
|
81
81
|
git make gcc libyaml-0-2 libgmp-dev zlib1g-dev libsnappy-dev
|
82
82
|
krb5-user krb5-kdc krb5-admin-server libsasl2-dev libsasl2-modules-gssapi-mit
|
83
83
|
haproxy
|
84
84
|
python3-pip
|
85
|
-
tzdata shared-mime-info
|
85
|
+
tzdata shared-mime-info software-properties-common
|
86
86
|
) %>
|
87
87
|
|
88
88
|
<% if distro =~ /ubuntu2004/ %>
|
89
89
|
<% packages << 'libsnmp35' %>
|
90
|
+
<% elsif distro =~ /ubuntu2204|debian11/ %>
|
91
|
+
<% packages << 'libsnmp40' %>
|
90
92
|
<% else %>
|
91
93
|
<% packages << 'libsnmp30' %>
|
92
94
|
<% end %>
|
93
95
|
|
94
|
-
<% if distro !~ /ubuntu2004/ %>
|
96
|
+
<% if distro !~ /ubuntu2004|ubuntu2204|debian11/ %>
|
95
97
|
<% packages << 'python-pip' %>
|
96
98
|
<% end %>
|
97
99
|
|
98
|
-
<% if distro =~ /
|
100
|
+
<% if distro =~ /ubuntu2204|debian11/ %>
|
101
|
+
<% packages << 'python3-venv' %>
|
102
|
+
<% end %>
|
103
|
+
|
104
|
+
<% if distro =~ /debian10|ubuntu2204|debian11/ %>
|
99
105
|
<% packages << 'openjdk-11-jdk-headless' %>
|
100
106
|
<% elsif distro =~ /ubuntu1404/ %>
|
101
107
|
# Ubuntu 14.04 only has openjdk 7, this is too old to be useful
|
@@ -105,31 +111,37 @@ ENV DOCKER=1
|
|
105
111
|
|
106
112
|
# ubuntu1404, ubuntu1604: libcurl3
|
107
113
|
# ubuntu1804, ubuntu2004, debian10: libcurl4
|
108
|
-
<% if distro =~ /ubuntu1804|ubuntu2004|debian10/ %>
|
114
|
+
<% if distro =~ /ubuntu1804|ubuntu2004|ubuntu2204|debian10|debian11/ %>
|
109
115
|
<% packages << 'libcurl4' %>
|
110
116
|
<% else %>
|
111
117
|
<% packages << 'libcurl3' %>
|
112
118
|
<% end %>
|
113
119
|
|
114
|
-
<% if distro =~ /ubuntu1804|ubuntu2004/ %>
|
120
|
+
<% if distro =~ /ubuntu1804|ubuntu2004|ubuntu2204/ %>
|
115
121
|
<% packages << 'nodejs' %>
|
116
122
|
<% end %>
|
117
123
|
|
118
|
-
<% if distro =~ /ubuntu2004/ %>
|
119
|
-
<% packages += %w(ruby
|
124
|
+
<% if distro =~ /ubuntu2004|ubuntu2204/ %>
|
125
|
+
<% packages += %w(ruby bundler) %>
|
120
126
|
<% end %>
|
121
127
|
|
122
128
|
RUN apt-get update && apt-get install -y <%= packages.join(' ') %>
|
123
|
-
|
129
|
+
|
130
|
+
<% if ubuntu? %>
|
131
|
+
RUN wget -O - https://apt.kitware.com/keys/kitware-archive-latest.asc 2>/dev/null | gpg --dearmor - | tee /usr/share/keyrings/kitware-archive-keyring.gpg >/dev/null
|
132
|
+
RUN echo "deb [signed-by=/usr/share/keyrings/kitware-archive-keyring.gpg] https://apt.kitware.com/ubuntu/ $(lsb_release -cs) main" | tee /etc/apt/sources.list.d/kitware.list >/dev/null
|
133
|
+
<% end %>
|
134
|
+
RUN apt-get update && apt-get install -y cmake
|
135
|
+
|
124
136
|
<% else %>
|
125
137
|
|
126
138
|
<% if distro =~ /rhel6/ %>
|
127
|
-
|
139
|
+
|
128
140
|
# CentOS 6 is dead - to use it retrieve the packages from vault:
|
129
141
|
# https://stackoverflow.com/questions/53562691/error-cannot-retrieve-repository-metadata-repomd-xml-for-repository-base-pl
|
130
|
-
|
142
|
+
|
131
143
|
<%
|
132
|
-
|
144
|
+
|
133
145
|
cfg = <<-CFG
|
134
146
|
[base]
|
135
147
|
name=CentOS-$releasever - Base
|
@@ -141,11 +153,11 @@ gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6
|
|
141
153
|
CFG
|
142
154
|
|
143
155
|
%>
|
144
|
-
|
156
|
+
|
145
157
|
RUN printf "<%= cfg.gsub("\n", "\\n") %>" >/etc/yum.repos.d/CentOS-Base.repo
|
146
|
-
|
158
|
+
|
147
159
|
<% end %>
|
148
|
-
|
160
|
+
|
149
161
|
# Enterprise server: net-snmp
|
150
162
|
# lsb_release: redhat-lsb-core
|
151
163
|
# our runner scripts: which
|
@@ -162,23 +174,8 @@ CFG
|
|
162
174
|
|
163
175
|
RUN yum install -y redhat-lsb-core which git gcc libyaml krb5-server \
|
164
176
|
krb5-workstation cyrus-sasl-devel cyrus-sasl-gssapi java-1.8.0-openjdk \
|
165
|
-
net-snmp
|
177
|
+
net-snmp python38 python38-devel cmake nodejs
|
166
178
|
|
167
|
-
<% if distro =~ /rhel6/ %>
|
168
|
-
|
169
|
-
# RHEL 6 ships with Python 2.6.
|
170
|
-
|
171
|
-
RUN yum install -y centos-release-scl && \
|
172
|
-
yum install -y python27-python python27-python-devel
|
173
|
-
ENV PATH=/opt/rh/python27/root/usr/bin:$PATH \
|
174
|
-
LD_LIBRARY_PATH=/opt/rh/python27/root/usr/lib64
|
175
|
-
|
176
|
-
<% else %>
|
177
|
-
|
178
|
-
RUN yum install -y python-devel
|
179
|
-
|
180
|
-
<% end %>
|
181
|
-
|
182
179
|
<% end %>
|
183
180
|
|
184
181
|
<% if preload? %>
|
@@ -220,7 +217,7 @@ CFG
|
|
220
217
|
<% when 'git' %>
|
221
218
|
# dateutil dependency is missing in mtools: https://github.com/rueckstiess/mtools/issues/864
|
222
219
|
RUN python3 -m pip install virtualenv 'pymongo>=4' python-dateutil psutil
|
223
|
-
|
220
|
+
|
224
221
|
# Install mtools from git because released versions do not work with pymongo 4.0
|
225
222
|
RUN git clone https://github.com/p-mongodb/mtools && \
|
226
223
|
cd mtools && \
|
@@ -234,7 +231,7 @@ CFG
|
|
234
231
|
<% if @env.fetch('MONGODB_VERSION') >= '4.4' %>
|
235
232
|
# ubuntu1604 installs MarkupSafe 0.0.0 here instead of 2.0.0+
|
236
233
|
# as specified by dependencies, causing OCSP mock to not work.
|
237
|
-
RUN python3 -mpip install asn1crypto oscrypto flask --upgrade
|
234
|
+
RUN python3 -mpip install asn1crypto oscrypto flask --upgrade --ignore-installed
|
238
235
|
<% end %>
|
239
236
|
|
240
237
|
# FLE is tested against 4.0+ servers.
|
@@ -243,7 +240,7 @@ CFG
|
|
243
240
|
# boto3~=1.19 cryptography~=3.4.8 pykmip~=0.10.0
|
244
241
|
# cryptography does not install due to lacking setuptools_rust
|
245
242
|
# (either that version or anything that isn't part of system packages)
|
246
|
-
RUN python3 -mpip install boto3~=1.19 cryptography pykmip~=0.10.0
|
243
|
+
RUN python3 -mpip install boto3~=1.19 cryptography pykmip~=0.10.0 'sqlalchemy<2.0.0'
|
247
244
|
<% end %>
|
248
245
|
|
249
246
|
<% unless ruby_head? || system_ruby? %>
|
@@ -255,10 +252,6 @@ CFG
|
|
255
252
|
|
256
253
|
<% end %>
|
257
254
|
|
258
|
-
RUN curl --retry 3 -fL <%= server_download_url %> |tar xzf - && \
|
259
|
-
mv mongo*/ /opt/mongodb
|
260
|
-
ENV USE_OPT_MONGODB=1 USE_SYSTEM_PYTHON_PACKAGES=1
|
261
|
-
|
262
255
|
<% end %>
|
263
256
|
|
264
257
|
<% if distro =~ /debian|ubuntu/ %>
|
@@ -308,6 +301,9 @@ ENV MONGO_ORCHESTRATION_HOME=/tmpfs \
|
|
308
301
|
|
309
302
|
COPY . .
|
310
303
|
|
304
|
+
RUN bash -c '. .evergreen/download-mongodb.sh && get_distro && get_mongodb_download_url_for "$DISTRO" "<%= server_version %>" && curl --retry 3 -fL $MONGODB_DOWNLOAD_URL |tar xzf - && mv mongo*/ /opt/mongodb'
|
305
|
+
ENV USE_OPT_MONGODB=1 USE_SYSTEM_PYTHON_PACKAGES=1
|
306
|
+
|
311
307
|
<% if expose? %>
|
312
308
|
|
313
309
|
<% ports = [] %>
|
data/spec/shared/shlib/server.sh
CHANGED
@@ -71,12 +71,18 @@ prepare_server_from_url() {
|
|
71
71
|
export PATH="$BINDIR":$PATH
|
72
72
|
}
|
73
73
|
|
74
|
-
|
74
|
+
install_mlaunch_venv() {
|
75
75
|
python3 -V || true
|
76
|
-
if ! python3 -m
|
76
|
+
if ! python3 -m venv -h >/dev/null; then
|
77
77
|
# Current virtualenv fails with
|
78
78
|
# https://github.com/pypa/virtualenv/issues/1630
|
79
|
-
python3 -m pip install
|
79
|
+
python3 -m pip install venv --user
|
80
|
+
fi
|
81
|
+
if ! python3 -m ensurepip -h > /dev/null; then
|
82
|
+
# Debian11/Ubuntu2204 have venv installed, but it is nonfunctional unless
|
83
|
+
# the python3-venv package is also installed (it lacks the ensurepip
|
84
|
+
# module).
|
85
|
+
sudo apt-get install --yes python3-venv
|
80
86
|
fi
|
81
87
|
if test "$USE_SYSTEM_PYTHON_PACKAGES" = 1 &&
|
82
88
|
python3 -m pip list |grep mtools
|
@@ -84,14 +90,19 @@ install_mlaunch_virtualenv() {
|
|
84
90
|
# Use the existing mtools-legacy
|
85
91
|
:
|
86
92
|
else
|
87
|
-
|
88
|
-
|
89
|
-
|
93
|
+
# Spawn a virtual environment, but only if one is not already
|
94
|
+
# active...
|
95
|
+
if test -z "$VIRTUAL_ENV"; then
|
96
|
+
venvpath="$MONGO_ORCHESTRATION_HOME"/venv
|
97
|
+
python3 -m venv $venvpath
|
98
|
+
. $venvpath/bin/activate
|
99
|
+
fi
|
100
|
+
|
90
101
|
# [mlaunch] does not work:
|
91
102
|
# https://github.com/rueckstiess/mtools/issues/856
|
92
103
|
# dateutil dependency is missing in mtools: https://github.com/rueckstiess/mtools/issues/864
|
93
104
|
#pip install 'mtools==1.7' 'pymongo==4.1' python-dateutil psutil
|
94
|
-
|
105
|
+
|
95
106
|
# dateutil dependency is missing in mtools: https://github.com/rueckstiess/mtools/issues/864
|
96
107
|
pip install 'mtools-legacy[mlaunch]' 'pymongo<4' python-dateutil
|
97
108
|
fi
|
@@ -158,6 +169,19 @@ install_mlaunch_git() {
|
|
158
169
|
fi
|
159
170
|
}
|
160
171
|
|
172
|
+
install_cmake() {
|
173
|
+
if ! command -v cmake &> /dev/null; then
|
174
|
+
if ! command -v apt-get &> /dev/null; then
|
175
|
+
# no apt-get; assume RHEL
|
176
|
+
sudo yum -y install cmake libarchive
|
177
|
+
else
|
178
|
+
sudo apt-get install --yes cmake
|
179
|
+
fi
|
180
|
+
else
|
181
|
+
echo 'cmake is present'
|
182
|
+
fi
|
183
|
+
}
|
184
|
+
|
161
185
|
# This function sets followong global variables:
|
162
186
|
# server_cert_path
|
163
187
|
# server_ca_path
|
@@ -173,7 +197,7 @@ calculate_server_args() {
|
|
173
197
|
fi
|
174
198
|
|
175
199
|
if test $mongo_version = latest; then
|
176
|
-
mongo_version=
|
200
|
+
mongo_version=70
|
177
201
|
fi
|
178
202
|
|
179
203
|
local args="--setParameter enableTestCommands=1"
|
@@ -1,5 +1,5 @@
|
|
1
1
|
# When changing, also update the hash in share/Dockerfile.
|
2
|
-
TOOLCHAIN_VERSION=
|
2
|
+
TOOLCHAIN_VERSION=e8c60866f54bed7e336a37df3a97d6ae1b971b7d
|
3
3
|
|
4
4
|
set_env_java() {
|
5
5
|
ls -l /opt || true
|
@@ -53,7 +53,7 @@ set_env_python() {
|
|
53
53
|
curl -fL --retry 3 https://github.com/p-mongodb/deps/raw/main/"$arch"-python37.tar.xz | \
|
54
54
|
tar xfJ - -C /opt
|
55
55
|
fi
|
56
|
-
|
56
|
+
|
57
57
|
if test -d /opt/python/3.7/bin; then
|
58
58
|
# Most Evergreen configurations.
|
59
59
|
export PATH=/opt/python/3.7/bin:$PATH
|
@@ -61,7 +61,7 @@ set_env_python() {
|
|
61
61
|
# Configurations that use Docker in Evergreen - these don't preload.
|
62
62
|
export PATH=/opt/python37/bin:$PATH
|
63
63
|
fi
|
64
|
-
|
64
|
+
|
65
65
|
python3 -V
|
66
66
|
fi
|
67
67
|
}
|
@@ -78,7 +78,7 @@ set_env_node() {
|
|
78
78
|
# Node from toolchain in Evergreen
|
79
79
|
export PATH=/opt/node/bin:$PATH
|
80
80
|
fi
|
81
|
-
|
81
|
+
|
82
82
|
node -v
|
83
83
|
}
|
84
84
|
|
data/spec/support/constraints.rb
CHANGED
@@ -27,6 +27,30 @@ module Constraints
|
|
27
27
|
Mongo::VERSION.split('.')[0...precision].map(&:to_i)
|
28
28
|
end
|
29
29
|
|
30
|
+
def min_bson_version(version)
|
31
|
+
required_version = version.split('.').map(&:to_i)
|
32
|
+
actual_version = bson_version(required_version.length)
|
33
|
+
before(:all) do
|
34
|
+
if (actual_version <=> required_version) < 0
|
35
|
+
skip "bson-ruby version #{version} or higher is required"
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
def max_bson_version(version)
|
41
|
+
required_version = version.split('.').map(&:to_i)
|
42
|
+
actual_version = bson_version(required_version.length)
|
43
|
+
before(:all) do
|
44
|
+
if (actual_version <=> required_version) > 0
|
45
|
+
skip "bson-ruby version #{version} or lower is required"
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
49
|
+
|
50
|
+
def bson_version(precision)
|
51
|
+
BSON::VERSION.split('.')[0...precision].map(&:to_i)
|
52
|
+
end
|
53
|
+
|
30
54
|
def min_rails_version(version)
|
31
55
|
unless version =~ /\A\d+\.\d+\z/
|
32
56
|
raise ArgumentError, "Version can only be major.minor: #{version}"
|
data/spec/support/macros.rb
CHANGED
@@ -2,6 +2,10 @@
|
|
2
2
|
|
3
3
|
module Mongoid
|
4
4
|
module Macros
|
5
|
+
class I18nBackendWithFallbacks < I18n::Backend::Simple
|
6
|
+
include I18n::Backend::Fallbacks
|
7
|
+
end
|
8
|
+
|
5
9
|
def use_spec_mongoid_config
|
6
10
|
around do |example|
|
7
11
|
config_path = File.join(File.dirname(__FILE__), "..", "config", "mongoid.yml")
|
@@ -39,6 +43,40 @@ module Mongoid
|
|
39
43
|
end
|
40
44
|
end
|
41
45
|
|
46
|
+
def with_i18n_fallbacks
|
47
|
+
require_fallbacks
|
48
|
+
|
49
|
+
around do |example|
|
50
|
+
old_backend = I18n.backend
|
51
|
+
I18n.backend = I18nBackendWithFallbacks.new
|
52
|
+
example.run
|
53
|
+
ensure
|
54
|
+
I18n.backend = old_backend
|
55
|
+
end
|
56
|
+
end
|
57
|
+
|
58
|
+
def driver_config_override(key, value)
|
59
|
+
around do |example|
|
60
|
+
existing = Mongo.send(key)
|
61
|
+
|
62
|
+
Mongo.send("#{key}=", value)
|
63
|
+
|
64
|
+
example.run
|
65
|
+
|
66
|
+
Mongo.send("#{key}=", existing)
|
67
|
+
end
|
68
|
+
end
|
69
|
+
|
70
|
+
def with_driver_config_values(key, *values, &block)
|
71
|
+
values.each do |value|
|
72
|
+
context "when #{key} is #{value}" do
|
73
|
+
driver_config_override key, value
|
74
|
+
|
75
|
+
class_exec(value, &block)
|
76
|
+
end
|
77
|
+
end
|
78
|
+
end
|
79
|
+
|
42
80
|
def restore_config_clients
|
43
81
|
around do |example|
|
44
82
|
# Duplicate the config because some tests mutate it.
|
@@ -47,5 +85,13 @@ module Mongoid
|
|
47
85
|
Mongoid::Config.send(:clients=, old_config)
|
48
86
|
end
|
49
87
|
end
|
88
|
+
|
89
|
+
def query_cache_enabled
|
90
|
+
around do |example|
|
91
|
+
Mongoid::QueryCache.cache do
|
92
|
+
example.run
|
93
|
+
end
|
94
|
+
end
|
95
|
+
end
|
50
96
|
end
|
51
97
|
end
|
@@ -10,4 +10,16 @@ class Augmentation
|
|
10
10
|
after_build do
|
11
11
|
self.name = "Infolink (#{player.frags})"
|
12
12
|
end
|
13
|
+
|
14
|
+
field :after_find_player
|
15
|
+
field :after_initialize_player
|
16
|
+
field :after_default_player, default: ->{ self.player&._id }
|
17
|
+
|
18
|
+
after_find do |doc|
|
19
|
+
doc.after_find_player = player&._id
|
20
|
+
end
|
21
|
+
|
22
|
+
after_initialize do |doc|
|
23
|
+
doc.after_initialize_player = player&._id
|
24
|
+
end
|
13
25
|
end
|
data/spec/support/models/band.rb
CHANGED
@@ -20,10 +20,13 @@ class Band
|
|
20
20
|
field :y, as: :years, type: Integer
|
21
21
|
field :founded, type: Date
|
22
22
|
field :deleted, type: Boolean
|
23
|
+
field :mojo, type: Object
|
24
|
+
field :fans
|
23
25
|
|
24
26
|
embeds_many :records, cascade_callbacks: true
|
25
27
|
embeds_many :notes, as: :noteable, cascade_callbacks: true, validate: false
|
26
28
|
embeds_many :labels
|
29
|
+
embeds_many :fanatics
|
27
30
|
embeds_one :label, cascade_callbacks: true
|
28
31
|
|
29
32
|
scope :highly_rated, -> { gte(rating: 7) }
|
@@ -0,0 +1,24 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
class Catalog
|
4
|
+
include Mongoid::Document
|
5
|
+
|
6
|
+
field :array_field, type: Array
|
7
|
+
field :big_decimal_field, type: BigDecimal
|
8
|
+
field :boolean_field, type: Boolean
|
9
|
+
field :date_field, type: Date
|
10
|
+
field :date_time_field, type: DateTime
|
11
|
+
field :float_field, type: Float
|
12
|
+
field :hash_field, type: Hash
|
13
|
+
field :integer_field, type: Integer
|
14
|
+
field :object_id_field, type: BSON::ObjectId
|
15
|
+
field :binary_field, type: BSON::Binary
|
16
|
+
field :range_field, type: Range
|
17
|
+
field :regexp_field, type: Regexp
|
18
|
+
field :set_field, type: Set
|
19
|
+
field :string_field, type: String
|
20
|
+
field :stringified_symbol_field, type: StringifiedSymbol
|
21
|
+
field :symbol_field, type: Symbol
|
22
|
+
field :time_field, type: Time
|
23
|
+
field :time_with_zone_field, type: ActiveSupport::TimeWithZone
|
24
|
+
end
|
data/spec/support/models/code.rb
CHANGED
@@ -12,7 +12,16 @@ class Implant
|
|
12
12
|
doc.name = "Cochlear Implant (#{player.frags})"
|
13
13
|
end
|
14
14
|
|
15
|
+
field :after_find_player
|
16
|
+
field :after_initialize_player
|
17
|
+
field :after_default_player, default: ->{ self.player&._id }
|
18
|
+
|
15
19
|
after_find do |doc|
|
16
20
|
doc.impressions += 1
|
21
|
+
doc.after_find_player = player&._id
|
22
|
+
end
|
23
|
+
|
24
|
+
after_initialize do |doc|
|
25
|
+
doc.after_initialize_player = player&._id
|
17
26
|
end
|
18
27
|
end
|
@@ -6,6 +6,8 @@ class Label
|
|
6
6
|
|
7
7
|
field :name, type: String
|
8
8
|
field :sales, type: BigDecimal
|
9
|
+
field :age, type: Integer
|
10
|
+
|
9
11
|
field :after_create_called, type: Mongoid::Boolean, default: false
|
10
12
|
field :after_save_called, type: Mongoid::Boolean, default: false
|
11
13
|
field :after_update_called, type: Mongoid::Boolean, default: false
|
@@ -10,4 +10,13 @@ class Passport
|
|
10
10
|
field :localized_translations, localize: true
|
11
11
|
|
12
12
|
embedded_in :person, autobuild: true
|
13
|
+
|
14
|
+
embeds_many :passport_pages
|
15
|
+
end
|
16
|
+
|
17
|
+
class PassportPage
|
18
|
+
include Mongoid::Document
|
19
|
+
|
20
|
+
field :num_stamps, type: Integer
|
21
|
+
embedded_in :passport
|
13
22
|
end
|
@@ -40,6 +40,7 @@ class Person
|
|
40
40
|
field :arrays, type: Array
|
41
41
|
field :range, type: Range
|
42
42
|
field :species, type: Symbol
|
43
|
+
field :posts_count, type: Integer, default: 0
|
43
44
|
|
44
45
|
index age: 1
|
45
46
|
index addresses: 1
|
@@ -69,6 +70,7 @@ class Person
|
|
69
70
|
embeds_many :messages, validate: false
|
70
71
|
|
71
72
|
embeds_one :passport, autobuild: true, store_as: :pass, validate: false
|
73
|
+
embeds_one :purse, store_as: "Purse"
|
72
74
|
embeds_one :pet, class_name: "Animal", validate: false
|
73
75
|
embeds_one :name, as: :namable, validate: false do
|
74
76
|
def extension
|
@@ -10,4 +10,16 @@ class Powerup
|
|
10
10
|
after_build do
|
11
11
|
self.name = "Quad Damage (#{player.frags})"
|
12
12
|
end
|
13
|
+
|
14
|
+
field :after_find_player
|
15
|
+
field :after_initialize_player
|
16
|
+
field :after_default_player, default: ->{ self.player&._id }
|
17
|
+
|
18
|
+
after_find do |doc|
|
19
|
+
doc.after_find_player = player&._id
|
20
|
+
end
|
21
|
+
|
22
|
+
after_initialize do |doc|
|
23
|
+
doc.after_initialize_player = player&._id
|
24
|
+
end
|
13
25
|
end
|
@@ -0,0 +1,14 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
class School
|
4
|
+
include Mongoid::Document
|
5
|
+
|
6
|
+
has_many :students
|
7
|
+
|
8
|
+
field :district, type: String
|
9
|
+
field :team, type: String
|
10
|
+
|
11
|
+
field :after_destroy_triggered, default: false
|
12
|
+
|
13
|
+
accepts_nested_attributes_for :students, allow_destroy: true
|
14
|
+
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
class Shield
|
3
|
+
include Mongoid::Document
|
4
|
+
|
5
|
+
has_and_belongs_to_many :players
|
6
|
+
|
7
|
+
field :after_find_player
|
8
|
+
field :after_initialize_player
|
9
|
+
field :after_default_player, default: ->{ players.first&._id }
|
10
|
+
|
11
|
+
after_find do |doc|
|
12
|
+
doc.after_find_player = players.first&._id
|
13
|
+
end
|
14
|
+
|
15
|
+
after_initialize do |doc|
|
16
|
+
doc.after_initialize_player = players.first&._id
|
17
|
+
end
|
18
|
+
end
|
@@ -0,0 +1,14 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
class Student
|
4
|
+
include Mongoid::Document
|
5
|
+
|
6
|
+
belongs_to :school
|
7
|
+
|
8
|
+
field :name, type: String
|
9
|
+
field :grade, type: Integer, default: 3
|
10
|
+
|
11
|
+
after_destroy do |doc|
|
12
|
+
school.after_destroy_triggered = true if school
|
13
|
+
end
|
14
|
+
end
|
@@ -10,4 +10,16 @@ class Weapon
|
|
10
10
|
after_build do
|
11
11
|
self.name = "Holy Hand Grenade (#{player.frags})"
|
12
12
|
end
|
13
|
+
|
14
|
+
field :after_find_player
|
15
|
+
field :after_initialize_player
|
16
|
+
field :after_default_player, default: ->{ self.player&._id }
|
17
|
+
|
18
|
+
after_find do |doc|
|
19
|
+
doc.after_find_player = player&._id
|
20
|
+
end
|
21
|
+
|
22
|
+
after_initialize do |doc|
|
23
|
+
doc.after_initialize_player = player&._id
|
24
|
+
end
|
13
25
|
end
|
data.tar.gz.sig
CHANGED
@@ -1 +1,4 @@
|
|
1
|
-
|
1
|
+
0��0�`�j_Y���ܐ�:K �"'o���ϥ<��*ӫ��`���)�l���F�-��)�ޑ��G,�9;+̿}�T�h���_CG��`�S����$��3��Z��H"
|
2
|
+
��؍]O��.�[� J�7��3��?�GF˟V 4wfp��5�f'`��_�2�_�bW&���
|
3
|
+
�@*!�* �x���XsK'oeċ�o����&���=���7%|u������uq��@Ɩ�
|
4
|
+
l�<@D3�Ż��7ZT?;�O�8��p��@~�`� ��-��;ߨ�������=�!H]L>z.o��bM��ss�E��m�:��) �텢/��)�ǸXPٱ�26���-S4����J��H��24� ���s�oZ�ıF9�l�
|