mongoid 7.5.4 → 8.0.1
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 +3 -3
- data/Rakefile +0 -25
- data/lib/config/locales/en.yml +46 -30
- data/lib/mongoid/association/accessors.rb +32 -3
- data/lib/mongoid/association/bindable.rb +48 -0
- data/lib/mongoid/association/builders.rb +4 -2
- data/lib/mongoid/association/eager_loadable.rb +29 -7
- data/lib/mongoid/association/embedded/batchable.rb +28 -5
- data/lib/mongoid/association/embedded/embedded_in/binding.rb +24 -2
- data/lib/mongoid/association/embedded/embedded_in.rb +2 -1
- 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 +40 -18
- data/lib/mongoid/association/embedded/embeds_one/buildable.rb +18 -4
- data/lib/mongoid/association/embedded/embeds_one/proxy.rb +21 -2
- data/lib/mongoid/association/macros.rb +2 -1
- data/lib/mongoid/association/many.rb +5 -0
- data/lib/mongoid/association/nested/many.rb +2 -1
- data/lib/mongoid/association/proxy.rb +12 -0
- data/lib/mongoid/association/referenced/auto_save.rb +3 -2
- 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.rb +1 -1
- data/lib/mongoid/association/referenced/counter_cache.rb +8 -8
- data/lib/mongoid/association/referenced/has_and_belongs_to_many/proxy.rb +64 -11
- data/lib/mongoid/association/referenced/has_and_belongs_to_many.rb +4 -1
- data/lib/mongoid/association/referenced/has_many/enumerable.rb +10 -18
- data/lib/mongoid/association/referenced/has_many/proxy.rb +12 -9
- data/lib/mongoid/association/referenced/has_one/buildable.rb +1 -1
- data/lib/mongoid/association/referenced/has_one/proxy.rb +8 -11
- data/lib/mongoid/association/referenced/syncable.rb +2 -2
- data/lib/mongoid/association/relatable.rb +38 -4
- data/lib/mongoid/attributes/processing.rb +9 -2
- data/lib/mongoid/attributes.rb +30 -27
- data/lib/mongoid/cacheable.rb +2 -2
- data/lib/mongoid/changeable.rb +37 -2
- data/lib/mongoid/clients/options.rb +4 -0
- data/lib/mongoid/clients/sessions.rb +2 -14
- data/lib/mongoid/config.rb +15 -11
- data/lib/mongoid/contextual/aggregable/memory.rb +23 -15
- data/lib/mongoid/contextual/aggregable/mongo.rb +1 -1
- data/lib/mongoid/contextual/map_reduce.rb +2 -2
- data/lib/mongoid/contextual/memory.rb +55 -28
- data/lib/mongoid/contextual/mongo.rb +173 -262
- data/lib/mongoid/contextual/none.rb +33 -15
- data/lib/mongoid/copyable.rb +32 -8
- data/lib/mongoid/criteria/includable.rb +24 -20
- data/lib/mongoid/criteria/marshalable.rb +10 -2
- data/lib/mongoid/criteria/queryable/extensions/array.rb +2 -15
- data/lib/mongoid/criteria/queryable/extensions/big_decimal.rb +25 -4
- data/lib/mongoid/criteria/queryable/extensions/boolean.rb +1 -1
- 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 +0 -16
- data/lib/mongoid/criteria/queryable/extensions/numeric.rb +1 -1
- 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 +1 -1
- data/lib/mongoid/criteria/queryable/extensions/symbol.rb +3 -1
- 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/optional.rb +3 -9
- data/lib/mongoid/criteria/queryable/options.rb +1 -1
- data/lib/mongoid/criteria/queryable/selectable.rb +2 -24
- data/lib/mongoid/criteria/queryable/selector.rb +90 -5
- data/lib/mongoid/criteria/queryable/smash.rb +39 -6
- data/lib/mongoid/criteria/queryable/storable.rb +1 -1
- data/lib/mongoid/criteria/queryable.rb +11 -6
- data/lib/mongoid/criteria.rb +1 -28
- data/lib/mongoid/deprecable.rb +36 -0
- data/lib/mongoid/deprecation.rb +25 -0
- data/lib/mongoid/document.rb +88 -33
- data/lib/mongoid/equality.rb +4 -4
- data/lib/mongoid/errors/document_not_found.rb +6 -2
- data/lib/mongoid/errors/invalid_dot_dollar_assignment.rb +23 -0
- data/lib/mongoid/errors/invalid_field.rb +5 -1
- data/lib/mongoid/errors/invalid_field_type.rb +26 -0
- data/lib/mongoid/errors/too_many_nested_attribute_records.rb +1 -1
- data/lib/mongoid/errors.rb +2 -2
- data/lib/mongoid/extensions/array.rb +8 -6
- data/lib/mongoid/extensions/big_decimal.rb +29 -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/float.rb +4 -5
- data/lib/mongoid/extensions/hash.rb +12 -5
- data/lib/mongoid/extensions/integer.rb +4 -5
- data/lib/mongoid/extensions/object.rb +2 -0
- 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 +2 -13
- data/lib/mongoid/extensions/symbol.rb +3 -14
- data/lib/mongoid/extensions/time.rb +27 -16
- data/lib/mongoid/extensions/time_with_zone.rb +1 -2
- data/lib/mongoid/extensions.rb +1 -0
- data/lib/mongoid/factory.rb +42 -7
- data/lib/mongoid/fields/foreign_key.rb +7 -0
- data/lib/mongoid/fields/validators/macro.rb +3 -9
- data/lib/mongoid/fields.rb +49 -7
- data/lib/mongoid/findable.rb +21 -16
- data/lib/mongoid/indexable/specification.rb +1 -1
- data/lib/mongoid/indexable/validators/options.rb +4 -1
- data/lib/mongoid/interceptable.rb +69 -9
- data/lib/mongoid/persistable/creatable.rb +14 -5
- data/lib/mongoid/persistable/updatable.rb +12 -5
- data/lib/mongoid/persistence_context.rb +8 -42
- data/lib/mongoid/query_cache.rb +6 -258
- data/lib/mongoid/railties/controller_runtime.rb +1 -1
- data/lib/mongoid/reloadable.rb +7 -3
- data/lib/mongoid/scopable.rb +9 -11
- data/lib/mongoid/selectable.rb +1 -2
- data/lib/mongoid/shardable.rb +11 -35
- data/lib/mongoid/stateful.rb +27 -1
- data/lib/mongoid/timestamps/created.rb +1 -1
- data/lib/mongoid/timestamps/updated.rb +1 -1
- data/lib/mongoid/touchable.rb +2 -3
- data/lib/mongoid/traversable.rb +1 -0
- data/lib/mongoid/validatable/uniqueness.rb +2 -1
- data/lib/mongoid/version.rb +1 -1
- data/lib/mongoid/warnings.rb +3 -4
- data/lib/mongoid.rb +1 -0
- 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 +226 -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 -15
- 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 +198 -8
- 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 +38 -5
- 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 +2 -56
- data/spec/mongoid/association/referenced/has_many/proxy_spec.rb +62 -13
- 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 +480 -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/sessions_spec.rb +0 -38
- data/spec/mongoid/clients_spec.rb +2 -2
- data/spec/mongoid/config_spec.rb +52 -14
- 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 +521 -14
- data/spec/mongoid/contextual/mongo_spec.rb +566 -416
- data/spec/mongoid/contextual/none_spec.rb +11 -19
- 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/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 +0 -484
- data/spec/mongoid/criteria/queryable/selectable_logical_spec.rb +50 -0
- data/spec/mongoid/criteria/queryable/selectable_spec.rb +77 -85
- data/spec/mongoid/criteria/queryable/selector_spec.rb +16 -77
- data/spec/mongoid/criteria/queryable/storable_spec.rb +0 -72
- data/spec/mongoid/criteria_spec.rb +469 -1201
- data/spec/mongoid/document_fields_spec.rb +173 -24
- data/spec/mongoid/document_spec.rb +32 -41
- data/spec/mongoid/equality_spec.rb +12 -12
- data/spec/mongoid/errors/document_not_found_spec.rb +29 -2
- 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 +697 -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 +48 -76
- data/spec/mongoid/extensions/hash_spec.rb +30 -0
- data/spec/mongoid/extensions/integer_spec.rb +45 -66
- 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_spec.rb +321 -50
- data/spec/mongoid/findable_spec.rb +64 -29
- data/spec/mongoid/indexable/specification_spec.rb +2 -2
- data/spec/mongoid/indexable_spec.rb +16 -19
- data/spec/mongoid/interceptable_spec.rb +584 -5
- 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 +24 -0
- 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 +35 -2
- data/spec/mongoid/scopable_spec.rb +36 -34
- data/spec/mongoid/shardable_models.rb +0 -14
- data/spec/mongoid/shardable_spec.rb +61 -153
- 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 +60 -31
- data/spec/mongoid/warnings_spec.rb +35 -0
- data/spec/mongoid_spec.rb +1 -7
- data/spec/rails/controller_extension/controller_runtime_spec.rb +2 -2
- data/spec/rails/mongoid_spec.rb +4 -16
- data/spec/shared/lib/mrss/event_subscriber.rb +5 -15
- data/spec/shared/lib/mrss/lite_constraints.rb +0 -8
- data/spec/shared/shlib/server.sh +5 -5
- data/spec/support/constraints.rb +24 -0
- data/spec/support/macros.rb +30 -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/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 +1 -0
- data/spec/support/models/player.rb +2 -0
- data/spec/support/models/powerup.rb +12 -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 +0 -0
- metadata +689 -657
- 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
@@ -21,13 +21,165 @@ module InterceptableSpec
|
|
21
21
|
%i(before after).each do |whn|
|
22
22
|
send("#{whn}_#{what}", "#{whn}_#{what}_stub".to_sym)
|
23
23
|
define_method("#{whn}_#{what}_stub") do
|
24
|
-
callback_registry
|
24
|
+
callback_registry&.record_call(self.class, "#{whn}_#{what}".to_sym)
|
25
|
+
end
|
26
|
+
end
|
27
|
+
unless what == :validation
|
28
|
+
send("around_#{what}", "around_#{what}_stub".to_sym)
|
29
|
+
define_method("around_#{what}_stub") do |&block|
|
30
|
+
callback_registry&.record_call(self.class, "around_#{what}_open".to_sym)
|
31
|
+
block.call
|
32
|
+
callback_registry&.record_call(self.class, "around_#{what}_close".to_sym)
|
25
33
|
end
|
26
34
|
end
|
27
35
|
end
|
28
36
|
end
|
29
37
|
end
|
30
38
|
|
39
|
+
class CbHasOneParent
|
40
|
+
include Mongoid::Document
|
41
|
+
|
42
|
+
has_one :child, autosave: true, class_name: "CbHasOneChild", inverse_of: :parent
|
43
|
+
|
44
|
+
def initialize(callback_registry)
|
45
|
+
@callback_registry = callback_registry
|
46
|
+
super()
|
47
|
+
end
|
48
|
+
|
49
|
+
attr_accessor :callback_registry
|
50
|
+
|
51
|
+
def insert_as_root
|
52
|
+
@callback_registry&.record_call(self.class, :insert_into_database)
|
53
|
+
super
|
54
|
+
end
|
55
|
+
|
56
|
+
include CallbackTracking
|
57
|
+
end
|
58
|
+
|
59
|
+
class CbHasOneChild
|
60
|
+
include Mongoid::Document
|
61
|
+
|
62
|
+
belongs_to :parent, class_name: "CbHasOneParent", inverse_of: :child
|
63
|
+
|
64
|
+
def initialize(callback_registry)
|
65
|
+
@callback_registry = callback_registry
|
66
|
+
super()
|
67
|
+
end
|
68
|
+
|
69
|
+
attr_accessor :callback_registry
|
70
|
+
|
71
|
+
include CallbackTracking
|
72
|
+
end
|
73
|
+
|
74
|
+
class CbHasManyParent
|
75
|
+
include Mongoid::Document
|
76
|
+
|
77
|
+
has_many :children, autosave: true, class_name: "CbHasManyChild", inverse_of: :parent
|
78
|
+
|
79
|
+
def initialize(callback_registry)
|
80
|
+
@callback_registry = callback_registry
|
81
|
+
super()
|
82
|
+
end
|
83
|
+
|
84
|
+
attr_accessor :callback_registry
|
85
|
+
|
86
|
+
def insert_as_root
|
87
|
+
@callback_registry&.record_call(self.class, :insert_into_database)
|
88
|
+
super
|
89
|
+
end
|
90
|
+
|
91
|
+
include CallbackTracking
|
92
|
+
end
|
93
|
+
|
94
|
+
class CbHasManyChild
|
95
|
+
include Mongoid::Document
|
96
|
+
|
97
|
+
belongs_to :parent, class_name: "CbHasManyParent", inverse_of: :children
|
98
|
+
|
99
|
+
def initialize(callback_registry)
|
100
|
+
@callback_registry = callback_registry
|
101
|
+
super()
|
102
|
+
end
|
103
|
+
|
104
|
+
attr_accessor :callback_registry
|
105
|
+
|
106
|
+
include CallbackTracking
|
107
|
+
end
|
108
|
+
|
109
|
+
class CbEmbedsOneParent
|
110
|
+
include Mongoid::Document
|
111
|
+
|
112
|
+
field :name
|
113
|
+
|
114
|
+
embeds_one :child, cascade_callbacks: true, class_name: "CbEmbedsOneChild", inverse_of: :parent
|
115
|
+
|
116
|
+
def initialize(callback_registry)
|
117
|
+
@callback_registry = callback_registry
|
118
|
+
super()
|
119
|
+
end
|
120
|
+
|
121
|
+
attr_accessor :callback_registry
|
122
|
+
|
123
|
+
def insert_as_root
|
124
|
+
@callback_registry&.record_call(self.class, :insert_into_database)
|
125
|
+
super
|
126
|
+
end
|
127
|
+
|
128
|
+
include CallbackTracking
|
129
|
+
end
|
130
|
+
|
131
|
+
class CbEmbedsOneChild
|
132
|
+
include Mongoid::Document
|
133
|
+
|
134
|
+
field :age
|
135
|
+
|
136
|
+
embedded_in :parent, class_name: "CbEmbedsOneParent", inverse_of: :child
|
137
|
+
|
138
|
+
def initialize(callback_registry)
|
139
|
+
@callback_registry = callback_registry
|
140
|
+
super()
|
141
|
+
end
|
142
|
+
|
143
|
+
attr_accessor :callback_registry
|
144
|
+
|
145
|
+
include CallbackTracking
|
146
|
+
end
|
147
|
+
|
148
|
+
class CbEmbedsManyParent
|
149
|
+
include Mongoid::Document
|
150
|
+
|
151
|
+
embeds_many :children, cascade_callbacks: true, class_name: "CbEmbedsManyChild", inverse_of: :parent
|
152
|
+
|
153
|
+
def initialize(callback_registry)
|
154
|
+
@callback_registry = callback_registry
|
155
|
+
super()
|
156
|
+
end
|
157
|
+
|
158
|
+
attr_accessor :callback_registry
|
159
|
+
|
160
|
+
def insert_as_root
|
161
|
+
@callback_registry&.record_call(self.class, :insert_into_database)
|
162
|
+
super
|
163
|
+
end
|
164
|
+
|
165
|
+
include CallbackTracking
|
166
|
+
end
|
167
|
+
|
168
|
+
class CbEmbedsManyChild
|
169
|
+
include Mongoid::Document
|
170
|
+
|
171
|
+
embedded_in :parent, class_name: "CbEmbedsManyParent", inverse_of: :children
|
172
|
+
|
173
|
+
def initialize(callback_registry)
|
174
|
+
@callback_registry = callback_registry
|
175
|
+
super()
|
176
|
+
end
|
177
|
+
|
178
|
+
attr_accessor :callback_registry
|
179
|
+
|
180
|
+
include CallbackTracking
|
181
|
+
end
|
182
|
+
|
31
183
|
class CbParent
|
32
184
|
include Mongoid::Document
|
33
185
|
|
@@ -36,7 +188,7 @@ module InterceptableSpec
|
|
36
188
|
super()
|
37
189
|
end
|
38
190
|
|
39
|
-
|
191
|
+
attr_accessor :callback_registry
|
40
192
|
|
41
193
|
embeds_many :cb_children
|
42
194
|
embeds_many :cb_cascaded_children, cascade_callbacks: true
|
@@ -54,7 +206,7 @@ module InterceptableSpec
|
|
54
206
|
super(options)
|
55
207
|
end
|
56
208
|
|
57
|
-
|
209
|
+
attr_accessor :callback_registry
|
58
210
|
|
59
211
|
include CallbackTracking
|
60
212
|
end
|
@@ -69,8 +221,87 @@ module InterceptableSpec
|
|
69
221
|
super(options)
|
70
222
|
end
|
71
223
|
|
72
|
-
|
224
|
+
attr_accessor :callback_registry
|
73
225
|
|
74
226
|
include CallbackTracking
|
75
227
|
end
|
76
228
|
end
|
229
|
+
|
230
|
+
class InterceptableBand
|
231
|
+
include Mongoid::Document
|
232
|
+
|
233
|
+
has_many :songs, class_name: "InterceptableSong"
|
234
|
+
field :name
|
235
|
+
end
|
236
|
+
|
237
|
+
class InterceptableSong
|
238
|
+
include Mongoid::Document
|
239
|
+
|
240
|
+
belongs_to :band, class_name: "InterceptableBand"
|
241
|
+
field :band_name, default: -> { band.name }
|
242
|
+
field :name
|
243
|
+
end
|
244
|
+
|
245
|
+
class InterceptablePlane
|
246
|
+
include Mongoid::Document
|
247
|
+
|
248
|
+
has_many :wings, class_name: "InterceptableWing"
|
249
|
+
end
|
250
|
+
|
251
|
+
class InterceptableWing
|
252
|
+
include Mongoid::Document
|
253
|
+
|
254
|
+
belongs_to :plane, class_name: "InterceptablePlane"
|
255
|
+
has_one :engine, autobuild: true, class_name: "InterceptableEngine"
|
256
|
+
|
257
|
+
field :_id, type: String, default: -> { 'hello-wing' }
|
258
|
+
|
259
|
+
field :p_id, type: String, default: -> { plane&.id }
|
260
|
+
field :e_id, type: String, default: -> { engine&.id }
|
261
|
+
end
|
262
|
+
|
263
|
+
class InterceptableEngine
|
264
|
+
include Mongoid::Document
|
265
|
+
|
266
|
+
belongs_to :wing, class_name: "InterceptableWing"
|
267
|
+
|
268
|
+
field :_id, type: String, default: -> { "hello-engine-#{wing&.id}" }
|
269
|
+
end
|
270
|
+
|
271
|
+
class InterceptableCompany
|
272
|
+
include Mongoid::Document
|
273
|
+
|
274
|
+
has_many :users, class_name: "InterceptableUser"
|
275
|
+
has_many :shops, class_name: "InterceptableShop"
|
276
|
+
end
|
277
|
+
|
278
|
+
class InterceptableShop
|
279
|
+
include Mongoid::Document
|
280
|
+
|
281
|
+
embeds_one :address, class_name: "InterceptableAddress"
|
282
|
+
belongs_to :company, class_name: "InterceptableCompany"
|
283
|
+
|
284
|
+
after_initialize :build_address1
|
285
|
+
|
286
|
+
def build_address1
|
287
|
+
self.address ||= Address.new
|
288
|
+
end
|
289
|
+
end
|
290
|
+
|
291
|
+
class InterceptableAddress
|
292
|
+
include Mongoid::Document
|
293
|
+
embedded_in :shop, class_name: "InterceptableShop"
|
294
|
+
end
|
295
|
+
|
296
|
+
class InterceptableUser
|
297
|
+
include Mongoid::Document
|
298
|
+
|
299
|
+
belongs_to :company, class_name: "InterceptableCompany"
|
300
|
+
|
301
|
+
validate :break_mongoid
|
302
|
+
|
303
|
+
def break_mongoid
|
304
|
+
company.shop_ids
|
305
|
+
end
|
306
|
+
end
|
307
|
+
|
@@ -5,11 +5,7 @@ require 'spec_helper'
|
|
5
5
|
describe 'Matcher.extract_attribute' do
|
6
6
|
Dir[File.join(File.dirname(__FILE__), 'extract_attribute_data', '*.yml')].sort.each do |path|
|
7
7
|
context File.basename(path) do
|
8
|
-
specs =
|
9
|
-
YAML.safe_load(File.read(path), [], [], true)
|
10
|
-
else
|
11
|
-
YAML.safe_load(File.read(path), aliases: true)
|
12
|
-
end
|
8
|
+
specs = YAML.safe_load(File.read(path), aliases: true)
|
13
9
|
|
14
10
|
specs.each do |spec|
|
15
11
|
context spec['name'] do
|
@@ -0,0 +1,285 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require "spec_helper"
|
4
|
+
|
5
|
+
# This file is for testing the functionality of uncastable values for all
|
6
|
+
# mongoizable classes.
|
7
|
+
describe "mongoize/demongoize/evolve methods" do
|
8
|
+
|
9
|
+
shared_examples "handles unmongoizable values" do
|
10
|
+
|
11
|
+
context "when passing an invalid value" do
|
12
|
+
context "to mongoize" do
|
13
|
+
it "returns nil" do
|
14
|
+
expect(klass.mongoize(invalid_value)).to be_nil
|
15
|
+
end
|
16
|
+
end
|
17
|
+
|
18
|
+
context "when assigning an invalid value to a field" do
|
19
|
+
let(:catalog) { Catalog.create!(field_name => invalid_value) }
|
20
|
+
|
21
|
+
it "returns nil" do
|
22
|
+
catalog.attributes[field_name].should be_nil
|
23
|
+
end
|
24
|
+
|
25
|
+
it "persists nil" do
|
26
|
+
Catalog.find(catalog._id).attributes[field_name].should be_nil
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
|
32
|
+
shared_examples "handles undemongoizable values" do
|
33
|
+
|
34
|
+
context "when passing an invalid value" do
|
35
|
+
context "to demongoize" do
|
36
|
+
it "returns nil" do
|
37
|
+
expect(klass.demongoize(invalid_value)).to be_nil
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
context "when retrieving an invalid value from the db" do
|
42
|
+
|
43
|
+
before do
|
44
|
+
Catalog.collection.insert_one(field_name => invalid_value)
|
45
|
+
end
|
46
|
+
|
47
|
+
let(:catalog) { Catalog.first }
|
48
|
+
|
49
|
+
it "returns nil" do
|
50
|
+
catalog.send(field_name).should be_nil
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
56
|
+
shared_examples "pushes through unmongoizable values" do
|
57
|
+
|
58
|
+
context "when passing an invalid value" do
|
59
|
+
context "to mongoize" do
|
60
|
+
it "returns that value" do
|
61
|
+
expect(klass.mongoize(invalid_value)).to eq(mongoized_value)
|
62
|
+
end
|
63
|
+
end
|
64
|
+
end
|
65
|
+
|
66
|
+
context "when assigning an invalid value to a field" do
|
67
|
+
let!(:catalog) { Catalog.create!(field_name => invalid_value) }
|
68
|
+
let(:from_db) { Catalog.find(catalog._id) }
|
69
|
+
|
70
|
+
it "returns the inputted value" do
|
71
|
+
catalog.attributes[field_name].should be_nil
|
72
|
+
end
|
73
|
+
|
74
|
+
it "persists the inputted value" do
|
75
|
+
from_db.attributes[field_name].should be_nil
|
76
|
+
end
|
77
|
+
end
|
78
|
+
end
|
79
|
+
|
80
|
+
shared_examples "pushes through undemongoizable values" do
|
81
|
+
|
82
|
+
context "when reading an invalid value from the db" do
|
83
|
+
before do
|
84
|
+
Catalog.collection.insert_one(field_name => invalid_value)
|
85
|
+
end
|
86
|
+
|
87
|
+
let(:from_db) { Catalog.first }
|
88
|
+
|
89
|
+
it "reads the inputted value" do
|
90
|
+
from_db.send(field_name).should eq(demongoized_value)
|
91
|
+
end
|
92
|
+
end
|
93
|
+
end
|
94
|
+
|
95
|
+
shared_examples "pushes through unevolvable values" do
|
96
|
+
|
97
|
+
context "when passing an uncastable value to evolve" do
|
98
|
+
|
99
|
+
it "pushes the value through" do
|
100
|
+
expect(klass.evolve(invalid_value)).to eq(mongoized_value)
|
101
|
+
end
|
102
|
+
end
|
103
|
+
end
|
104
|
+
|
105
|
+
shared_examples "pushes through uncastable values" do
|
106
|
+
include_examples "pushes through unmongoizable values"
|
107
|
+
include_examples "pushes through undemongoizable values"
|
108
|
+
end
|
109
|
+
|
110
|
+
shared_examples "handles uncastable values" do
|
111
|
+
include_examples "handles unmongoizable values"
|
112
|
+
include_examples "handles undemongoizable values"
|
113
|
+
end
|
114
|
+
|
115
|
+
let(:mongoized_value) { invalid_value }
|
116
|
+
let(:demongoized_value) { invalid_value }
|
117
|
+
|
118
|
+
describe Array do
|
119
|
+
let(:invalid_value) { 1 }
|
120
|
+
let(:klass) { Array }
|
121
|
+
let(:field_name) { :array_field }
|
122
|
+
|
123
|
+
include_examples "handles unmongoizable values"
|
124
|
+
include_examples "pushes through undemongoizable values"
|
125
|
+
include_examples "pushes through unevolvable values"
|
126
|
+
end
|
127
|
+
|
128
|
+
describe BigDecimal do
|
129
|
+
let(:invalid_value) { "bogus" }
|
130
|
+
let(:klass) { described_class }
|
131
|
+
let(:field_name) { :big_decimal_field }
|
132
|
+
|
133
|
+
include_examples "handles uncastable values"
|
134
|
+
include_examples "pushes through unevolvable values"
|
135
|
+
end
|
136
|
+
|
137
|
+
describe Mongoid::Boolean do
|
138
|
+
let(:invalid_value) { "invalid_value" }
|
139
|
+
let(:klass) { described_class }
|
140
|
+
let(:field_name) { :boolean_field }
|
141
|
+
|
142
|
+
include_examples "handles uncastable values"
|
143
|
+
include_examples "pushes through unevolvable values"
|
144
|
+
end
|
145
|
+
|
146
|
+
describe Date do
|
147
|
+
let(:invalid_value) { :hello }
|
148
|
+
let(:klass) { described_class }
|
149
|
+
let(:field_name) { :date_field }
|
150
|
+
|
151
|
+
include_examples "handles uncastable values"
|
152
|
+
include_examples "pushes through unevolvable values"
|
153
|
+
end
|
154
|
+
|
155
|
+
describe DateTime do
|
156
|
+
let(:invalid_value) { :hello }
|
157
|
+
let(:klass) { described_class }
|
158
|
+
let(:field_name) { :date_time_field }
|
159
|
+
|
160
|
+
include_examples "handles uncastable values"
|
161
|
+
include_examples "pushes through unevolvable values"
|
162
|
+
end
|
163
|
+
|
164
|
+
describe Float do
|
165
|
+
let(:invalid_value) { [] }
|
166
|
+
let(:klass) { described_class }
|
167
|
+
let(:field_name) { :float_field }
|
168
|
+
|
169
|
+
include_examples "handles uncastable values"
|
170
|
+
include_examples "pushes through unevolvable values"
|
171
|
+
end
|
172
|
+
|
173
|
+
describe Hash do
|
174
|
+
let(:invalid_value) { 1 }
|
175
|
+
let(:klass) { described_class }
|
176
|
+
let(:field_name) { :hash_field }
|
177
|
+
|
178
|
+
include_examples "handles unmongoizable values"
|
179
|
+
include_examples "pushes through undemongoizable values"
|
180
|
+
include_examples "pushes through unevolvable values"
|
181
|
+
end
|
182
|
+
|
183
|
+
describe Integer do
|
184
|
+
let(:invalid_value) { [] }
|
185
|
+
let(:klass) { described_class }
|
186
|
+
let(:field_name) { :integer_field }
|
187
|
+
|
188
|
+
include_examples "handles uncastable values"
|
189
|
+
include_examples "pushes through unevolvable values"
|
190
|
+
end
|
191
|
+
|
192
|
+
describe BSON::ObjectId do
|
193
|
+
let(:invalid_value) { "invalid value" }
|
194
|
+
let(:klass) { described_class }
|
195
|
+
let(:field_name) { :object_id_field }
|
196
|
+
|
197
|
+
include_examples "pushes through uncastable values"
|
198
|
+
include_examples "pushes through unevolvable values"
|
199
|
+
end
|
200
|
+
|
201
|
+
describe BSON::Binary do
|
202
|
+
let(:invalid_value) { true }
|
203
|
+
let(:klass) { described_class }
|
204
|
+
let(:field_name) { :binary_field }
|
205
|
+
|
206
|
+
include_examples "handles uncastable values"
|
207
|
+
include_examples "pushes through unevolvable values"
|
208
|
+
end
|
209
|
+
|
210
|
+
describe Range do
|
211
|
+
let(:invalid_value) { "invalid value" }
|
212
|
+
let(:klass) { described_class }
|
213
|
+
let(:field_name) { :range_field }
|
214
|
+
|
215
|
+
include_examples "handles uncastable values"
|
216
|
+
include_examples "pushes through unevolvable values"
|
217
|
+
end
|
218
|
+
|
219
|
+
describe Regexp do
|
220
|
+
let(:invalid_value) { 1 }
|
221
|
+
let(:klass) { described_class }
|
222
|
+
let(:field_name) { :regexp_field }
|
223
|
+
|
224
|
+
include_examples "handles uncastable values"
|
225
|
+
include_examples "pushes through unevolvable values"
|
226
|
+
end
|
227
|
+
|
228
|
+
describe Set do
|
229
|
+
let(:invalid_value) { 1 }
|
230
|
+
let(:klass) { described_class }
|
231
|
+
let(:field_name) { :set_field }
|
232
|
+
|
233
|
+
include_examples "handles uncastable values"
|
234
|
+
include_examples "pushes through unevolvable values"
|
235
|
+
end
|
236
|
+
|
237
|
+
describe String do
|
238
|
+
let(:invalid_value) { 1 }
|
239
|
+
let(:mongoized_value) { "1" }
|
240
|
+
let(:demongoized_value) { "1" }
|
241
|
+
let(:klass) { described_class }
|
242
|
+
let(:field_name) { :string_field }
|
243
|
+
|
244
|
+
include_examples "pushes through uncastable values"
|
245
|
+
include_examples "pushes through unevolvable values"
|
246
|
+
end
|
247
|
+
|
248
|
+
describe Mongoid::StringifiedSymbol do
|
249
|
+
let(:invalid_value) { [] }
|
250
|
+
let(:mongoized_value) { "[]" }
|
251
|
+
let(:demongoized_value) { :[] }
|
252
|
+
let(:klass) { described_class }
|
253
|
+
let(:field_name) { :stringified_symbol_field }
|
254
|
+
|
255
|
+
include_examples "pushes through uncastable values"
|
256
|
+
include_examples "pushes through unevolvable values"
|
257
|
+
end
|
258
|
+
|
259
|
+
describe Symbol do
|
260
|
+
let(:invalid_value) { Time.new }
|
261
|
+
let(:klass) { described_class }
|
262
|
+
let(:field_name) { :symbol_field }
|
263
|
+
|
264
|
+
include_examples "handles uncastable values"
|
265
|
+
include_examples "pushes through unevolvable values"
|
266
|
+
end
|
267
|
+
|
268
|
+
describe Time do
|
269
|
+
let(:invalid_value) { "invalid value" }
|
270
|
+
let(:klass) { described_class }
|
271
|
+
let(:field_name) { :time_field }
|
272
|
+
|
273
|
+
include_examples "handles uncastable values"
|
274
|
+
include_examples "pushes through unevolvable values"
|
275
|
+
end
|
276
|
+
|
277
|
+
describe ActiveSupport::TimeWithZone do
|
278
|
+
let(:invalid_value) { "invalid value" }
|
279
|
+
let(:klass) { described_class }
|
280
|
+
let(:field_name) { :time_with_zone_field }
|
281
|
+
|
282
|
+
include_examples "handles uncastable values"
|
283
|
+
include_examples "pushes through unevolvable values"
|
284
|
+
end
|
285
|
+
end
|
@@ -234,11 +234,11 @@ describe Mongoid::Persistable::Creatable do
|
|
234
234
|
end
|
235
235
|
|
236
236
|
let(:attributes) do
|
237
|
-
collection.find({ name: "Testy"}).first
|
237
|
+
collection.find({ name: "Testy" }).first
|
238
238
|
end
|
239
239
|
|
240
240
|
before do
|
241
|
-
Browser.create(name: 'Safari', version:
|
241
|
+
Browser.create(name: 'Safari', version: 4.0)
|
242
242
|
end
|
243
243
|
|
244
244
|
it "persists the versions" do
|
@@ -33,7 +33,7 @@ describe Mongoid::Persistable::Deletable do
|
|
33
33
|
it 'deletes the matching document from the database' do
|
34
34
|
lambda do
|
35
35
|
person.reload
|
36
|
-
end.should raise_error(Mongoid::Errors::DocumentNotFound)
|
36
|
+
end.should raise_error(Mongoid::Errors::DocumentNotFound, /Document\(s\) not found for class Person with id\(s\)/)
|
37
37
|
end
|
38
38
|
end
|
39
39
|
|
@@ -46,7 +46,7 @@ describe Mongoid::Persistable::Deletable do
|
|
46
46
|
it "deletes the document from the collection" do
|
47
47
|
expect {
|
48
48
|
Person.find(person.id)
|
49
|
-
}.to raise_error(Mongoid::Errors::DocumentNotFound)
|
49
|
+
}.to raise_error(Mongoid::Errors::DocumentNotFound, /Document\(s\) not found for class Person with id\(s\)/)
|
50
50
|
end
|
51
51
|
|
52
52
|
it "returns true" do
|
@@ -33,7 +33,7 @@ describe Mongoid::Persistable::Destroyable do
|
|
33
33
|
it 'deletes the matching document from the database' do
|
34
34
|
lambda do
|
35
35
|
person.reload
|
36
|
-
end.should raise_error(Mongoid::Errors::DocumentNotFound)
|
36
|
+
end.should raise_error(Mongoid::Errors::DocumentNotFound, /Document\(s\) not found for class Person with id\(s\)/)
|
37
37
|
end
|
38
38
|
end
|
39
39
|
|
@@ -46,7 +46,7 @@ describe Mongoid::Persistable::Destroyable do
|
|
46
46
|
it "destroys the document from the collection" do
|
47
47
|
expect {
|
48
48
|
Person.find(person.id)
|
49
|
-
}.to raise_error(Mongoid::Errors::DocumentNotFound)
|
49
|
+
}.to raise_error(Mongoid::Errors::DocumentNotFound, /Document\(s\) not found for class Person with id\(s\)/)
|
50
50
|
end
|
51
51
|
|
52
52
|
it "returns true" do
|
@@ -53,6 +53,20 @@ describe Mongoid::Persistable::Upsertable do
|
|
53
53
|
it "flags the document as persisted" do
|
54
54
|
expect(existing).to be_persisted
|
55
55
|
end
|
56
|
+
|
57
|
+
context 'when existing document contains other fields' do
|
58
|
+
let!(:existing) do
|
59
|
+
Band.create!(name: "Photek", views: 42)
|
60
|
+
end
|
61
|
+
|
62
|
+
it 'removes the existing fields' do
|
63
|
+
Band.count.should == 1
|
64
|
+
|
65
|
+
existing.reload
|
66
|
+
existing.views.should be nil
|
67
|
+
existing.name.should == 'Tool'
|
68
|
+
end
|
69
|
+
end
|
56
70
|
end
|
57
71
|
|
58
72
|
context "when no matching document exists in the db" do
|
@@ -718,4 +718,28 @@ describe Mongoid::PersistenceContext do
|
|
718
718
|
end
|
719
719
|
end
|
720
720
|
end
|
721
|
+
|
722
|
+
context "when using an alternate database to update a document" do
|
723
|
+
let(:user) do
|
724
|
+
User.new(name: '1')
|
725
|
+
end
|
726
|
+
|
727
|
+
before do
|
728
|
+
user.with(database: database_id_alt) do |u|
|
729
|
+
u.save!
|
730
|
+
end
|
731
|
+
|
732
|
+
expect do
|
733
|
+
user.with(database: database_id_alt) do |u|
|
734
|
+
u.update(name:'2')
|
735
|
+
end
|
736
|
+
end.to_not raise_error
|
737
|
+
end
|
738
|
+
|
739
|
+
it "persists the update" do
|
740
|
+
User.with("database" => database_id_alt) do |klass|
|
741
|
+
expect(klass.find(user._id).name).to eq("2")
|
742
|
+
end
|
743
|
+
end
|
744
|
+
end
|
721
745
|
end
|
@@ -40,29 +40,11 @@ describe Mongoid::QueryCache::Middleware do
|
|
40
40
|
end
|
41
41
|
|
42
42
|
context 'with driver query cache' do
|
43
|
-
min_driver_version '2.14'
|
44
43
|
|
45
44
|
it "cleans the query cache after it responds" do
|
46
45
|
middleware.call({})
|
47
46
|
expect(Mongo::QueryCache.send(:cache_table)).to be_empty
|
48
47
|
end
|
49
48
|
end
|
50
|
-
|
51
|
-
context 'with mongoid query cache' do
|
52
|
-
max_driver_version '2.13'
|
53
|
-
|
54
|
-
it "cleans the query cache after it responds" do
|
55
|
-
middleware.call({})
|
56
|
-
expect(Mongoid::QueryCache.cache_table).to be_empty
|
57
|
-
end
|
58
|
-
end
|
59
|
-
end
|
60
|
-
|
61
|
-
context 'when driver implements query cache middleware' do
|
62
|
-
min_driver_version '2.15'
|
63
|
-
|
64
|
-
it 'uses the driver query cache middleware' do
|
65
|
-
Mongoid::QueryCache::Middleware.should be Mongo::QueryCache::Middleware
|
66
|
-
end
|
67
49
|
end
|
68
50
|
end
|