mongoid 7.2.4 → 7.3.2
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.tar.gz.sig +0 -0
- data/Rakefile +16 -0
- data/lib/config/locales/en.yml +2 -2
- data/lib/mongoid.rb +1 -0
- data/lib/mongoid/association/accessors.rb +13 -1
- data/lib/mongoid/association/constrainable.rb +1 -1
- data/lib/mongoid/association/depending.rb +4 -4
- data/lib/mongoid/association/embedded/batchable.rb +1 -1
- data/lib/mongoid/association/embedded/embedded_in.rb +1 -1
- data/lib/mongoid/association/embedded/embeds_many/proxy.rb +11 -4
- data/lib/mongoid/association/nested/many.rb +1 -1
- data/lib/mongoid/association/nested/one.rb +4 -2
- data/lib/mongoid/association/proxy.rb +7 -2
- data/lib/mongoid/association/referenced/auto_save.rb +2 -2
- data/lib/mongoid/association/referenced/has_many/enumerable.rb +493 -495
- data/lib/mongoid/association/referenced/has_many/proxy.rb +3 -3
- data/lib/mongoid/association/referenced/has_one/nested_builder.rb +2 -2
- data/lib/mongoid/attributes.rb +24 -13
- data/lib/mongoid/attributes/projector.rb +120 -0
- data/lib/mongoid/cacheable.rb +2 -2
- data/lib/mongoid/clients.rb +1 -1
- data/lib/mongoid/clients/factory.rb +22 -8
- data/lib/mongoid/config.rb +19 -2
- data/lib/mongoid/contextual/aggregable/mongo.rb +10 -8
- data/lib/mongoid/copyable.rb +1 -1
- data/lib/mongoid/criteria.rb +5 -6
- data/lib/mongoid/criteria/findable.rb +1 -1
- data/lib/mongoid/criteria/queryable/expandable.rb +0 -24
- data/lib/mongoid/criteria/queryable/extensions.rb +0 -4
- data/lib/mongoid/criteria/queryable/extensions/boolean.rb +1 -1
- data/lib/mongoid/criteria/queryable/mergeable.rb +46 -20
- data/lib/mongoid/criteria/queryable/selectable.rb +8 -8
- data/lib/mongoid/document.rb +1 -15
- data/lib/mongoid/errors/delete_restriction.rb +8 -9
- data/lib/mongoid/evolvable.rb +1 -1
- data/lib/mongoid/extensions/boolean.rb +1 -2
- data/lib/mongoid/extensions/false_class.rb +1 -1
- data/lib/mongoid/extensions/hash.rb +2 -2
- data/lib/mongoid/extensions/true_class.rb +1 -1
- data/lib/mongoid/fields.rb +43 -5
- data/lib/mongoid/inspectable.rb +1 -1
- data/lib/mongoid/interceptable.rb +1 -1
- data/lib/mongoid/matcher.rb +7 -0
- data/lib/mongoid/matcher/bits.rb +41 -0
- data/lib/mongoid/matcher/bits_all_clear.rb +20 -0
- data/lib/mongoid/matcher/bits_all_set.rb +20 -0
- data/lib/mongoid/matcher/bits_any_clear.rb +20 -0
- data/lib/mongoid/matcher/bits_any_set.rb +20 -0
- data/lib/mongoid/matcher/expression.rb +4 -0
- data/lib/mongoid/matcher/field_operator.rb +6 -0
- data/lib/mongoid/matcher/mod.rb +17 -0
- data/lib/mongoid/matcher/type.rb +99 -0
- data/lib/mongoid/persistable/deletable.rb +1 -2
- data/lib/mongoid/persistable/destroyable.rb +8 -2
- data/lib/mongoid/persistable/updatable.rb +27 -2
- data/lib/mongoid/query_cache.rb +35 -29
- data/lib/mongoid/selectable.rb +5 -7
- data/lib/mongoid/shardable.rb +21 -5
- data/lib/mongoid/touchable.rb +23 -4
- data/lib/mongoid/version.rb +1 -1
- data/spec/integration/associations/embeds_many_spec.rb +44 -0
- data/spec/integration/associations/has_one_spec.rb +48 -0
- data/spec/integration/criteria/date_field_spec.rb +1 -1
- data/spec/integration/document_spec.rb +9 -0
- data/spec/integration/matcher_operator_data/bits_all_clear.yml +159 -0
- data/spec/integration/matcher_operator_data/bits_all_set.yml +159 -0
- data/spec/integration/matcher_operator_data/bits_any_clear.yml +159 -0
- data/spec/integration/matcher_operator_data/bits_any_set.yml +159 -0
- data/spec/integration/matcher_operator_data/comment.yml +22 -0
- data/spec/integration/matcher_operator_data/in.yml +16 -0
- data/spec/integration/matcher_operator_data/mod.yml +55 -0
- data/spec/integration/matcher_operator_data/type.yml +70 -0
- data/spec/integration/matcher_operator_data/type_array.yml +16 -0
- data/spec/integration/matcher_operator_data/type_binary.yml +18 -0
- data/spec/integration/matcher_operator_data/type_boolean.yml +39 -0
- data/spec/integration/matcher_operator_data/type_code.yml +26 -0
- data/spec/integration/matcher_operator_data/type_code_with_scope.yml +26 -0
- data/spec/integration/matcher_operator_data/type_date.yml +39 -0
- data/spec/integration/matcher_operator_data/type_db_pointer.yml +19 -0
- data/spec/integration/matcher_operator_data/type_decimal.yml +40 -0
- data/spec/integration/matcher_operator_data/type_double.yml +15 -0
- data/spec/integration/matcher_operator_data/type_int32.yml +33 -0
- data/spec/integration/matcher_operator_data/type_int64.yml +33 -0
- data/spec/integration/matcher_operator_data/type_max_key.yml +17 -0
- data/spec/integration/matcher_operator_data/type_min_key.yml +17 -0
- data/spec/integration/matcher_operator_data/type_null.yml +23 -0
- data/spec/integration/matcher_operator_data/type_object.yml +23 -0
- data/spec/integration/matcher_operator_data/type_object_id.yml +25 -0
- data/spec/integration/matcher_operator_data/type_regex.yml +44 -0
- data/spec/integration/matcher_operator_data/type_string.yml +15 -0
- data/spec/integration/matcher_operator_data/type_symbol.yml +32 -0
- data/spec/integration/matcher_operator_data/type_timestamp.yml +25 -0
- data/spec/integration/matcher_operator_data/type_undefined.yml +17 -0
- data/spec/lite_spec_helper.rb +2 -0
- data/spec/mongoid/association/depending_spec.rb +391 -352
- data/spec/mongoid/association/embedded/embeds_many/proxy_spec.rb +17 -4
- data/spec/mongoid/association/nested/one_spec.rb +18 -14
- data/spec/mongoid/association/referenced/belongs_to/proxy_spec.rb +42 -8
- data/spec/mongoid/association/referenced/has_and_belongs_to_many/binding_spec.rb +1 -1
- data/spec/mongoid/association/referenced/has_many/binding_spec.rb +1 -1
- data/spec/mongoid/association/referenced/has_many/enumerable_spec.rb +1 -1
- data/spec/mongoid/association/referenced/has_one_models.rb +8 -0
- data/spec/mongoid/atomic/paths_spec.rb +64 -12
- data/spec/mongoid/attributes/projector_data/embedded.yml +105 -0
- data/spec/mongoid/attributes/projector_data/fields.yml +93 -0
- data/spec/mongoid/attributes/projector_spec.rb +41 -0
- data/spec/mongoid/attributes_spec.rb +98 -6
- data/spec/mongoid/clients/factory_spec.rb +48 -0
- data/spec/mongoid/clients/options_spec.rb +2 -0
- data/spec/mongoid/config_spec.rb +32 -0
- data/spec/mongoid/contextual/mongo_spec.rb +2 -2
- data/spec/mongoid/criteria/modifiable_spec.rb +1 -1
- data/spec/mongoid/criteria/queryable/expandable_spec.rb +0 -73
- data/spec/mongoid/criteria/queryable/extensions/boolean_spec.rb +1 -1
- data/spec/mongoid/criteria/queryable/mergeable_spec.rb +105 -7
- data/spec/mongoid/criteria/queryable/selectable_logical_spec.rb +229 -24
- data/spec/mongoid/criteria/queryable/selectable_shared_examples.rb +39 -0
- data/spec/mongoid/criteria/queryable/selectable_spec.rb +1 -565
- data/spec/mongoid/criteria/queryable/selectable_where_spec.rb +590 -0
- data/spec/mongoid/criteria_projection_spec.rb +411 -0
- data/spec/mongoid/criteria_spec.rb +4 -275
- data/spec/mongoid/document_spec.rb +13 -13
- data/spec/mongoid/errors/delete_restriction_spec.rb +1 -1
- data/spec/mongoid/extensions/false_class_spec.rb +1 -1
- data/spec/mongoid/extensions/string_spec.rb +5 -5
- data/spec/mongoid/extensions/true_class_spec.rb +1 -1
- data/spec/mongoid/fields/localized_spec.rb +4 -4
- data/spec/mongoid/fields_spec.rb +4 -4
- data/spec/mongoid/inspectable_spec.rb +12 -4
- data/spec/mongoid/persistable/deletable_spec.rb +175 -1
- data/spec/mongoid/persistable/destroyable_spec.rb +191 -3
- data/spec/mongoid/persistable/savable_spec.rb +3 -5
- data/spec/mongoid/persistable/upsertable_spec.rb +1 -1
- data/spec/mongoid/query_cache_middleware_spec.rb +8 -0
- data/spec/mongoid/reloadable_spec.rb +18 -1
- data/spec/mongoid/shardable_spec.rb +44 -0
- data/spec/mongoid/touchable_spec.rb +104 -16
- data/spec/mongoid/touchable_spec_models.rb +52 -0
- data/spec/mongoid/validatable_spec.rb +1 -1
- data/spec/spec_helper.rb +6 -2
- data/spec/support/client_registry.rb +9 -0
- data/spec/support/models/address.rb +4 -0
- data/spec/support/models/bolt.rb +8 -0
- data/spec/support/models/hole.rb +13 -0
- data/spec/support/models/mop.rb +0 -1
- data/spec/support/models/nut.rb +8 -0
- data/spec/support/models/person.rb +15 -0
- data/spec/support/models/sealer.rb +8 -0
- data/spec/support/models/shirt.rb +12 -0
- data/spec/support/models/spacer.rb +8 -0
- data/spec/support/models/threadlocker.rb +8 -0
- data/spec/support/models/washer.rb +8 -0
- metadata +112 -4
- metadata.gz.sig +0 -0
- data/spec/support/cluster_config.rb +0 -158
metadata.gz.sig
CHANGED
|
Binary file
|
|
@@ -1,158 +0,0 @@
|
|
|
1
|
-
# frozen_string_literal: true
|
|
2
|
-
# encoding: utf-8
|
|
3
|
-
|
|
4
|
-
require 'singleton'
|
|
5
|
-
|
|
6
|
-
class ClusterConfig
|
|
7
|
-
include Singleton
|
|
8
|
-
|
|
9
|
-
def single_server?
|
|
10
|
-
determine_cluster_config
|
|
11
|
-
@single_server
|
|
12
|
-
end
|
|
13
|
-
|
|
14
|
-
def replica_set_name
|
|
15
|
-
determine_cluster_config
|
|
16
|
-
@replica_set_name
|
|
17
|
-
end
|
|
18
|
-
|
|
19
|
-
def server_version
|
|
20
|
-
determine_cluster_config
|
|
21
|
-
@server_version
|
|
22
|
-
end
|
|
23
|
-
|
|
24
|
-
def short_server_version
|
|
25
|
-
server_version.split('.')[0..1].join('.')
|
|
26
|
-
end
|
|
27
|
-
|
|
28
|
-
def fcv
|
|
29
|
-
determine_cluster_config
|
|
30
|
-
@fcv
|
|
31
|
-
end
|
|
32
|
-
|
|
33
|
-
# Per https://jira.mongodb.org/browse/SERVER-39052, working with FCV
|
|
34
|
-
# in sharded topologies is annoying. Also, FCV doesn't exist in servers
|
|
35
|
-
# less than 3.4. This method returns FCV on 3.4+ servers when in single
|
|
36
|
-
# or RS topologies, and otherwise returns the major.minor server version.
|
|
37
|
-
def fcv_ish
|
|
38
|
-
if server_version >= '3.4' && topology != :sharded
|
|
39
|
-
fcv
|
|
40
|
-
else
|
|
41
|
-
if short_server_version == '4.1'
|
|
42
|
-
'4.2'
|
|
43
|
-
else
|
|
44
|
-
short_server_version
|
|
45
|
-
end
|
|
46
|
-
end
|
|
47
|
-
end
|
|
48
|
-
|
|
49
|
-
def primary_address
|
|
50
|
-
determine_cluster_config
|
|
51
|
-
@primary_address
|
|
52
|
-
end
|
|
53
|
-
|
|
54
|
-
def primary_address_str
|
|
55
|
-
determine_cluster_config
|
|
56
|
-
@primary_address.seed
|
|
57
|
-
end
|
|
58
|
-
|
|
59
|
-
def primary_address_host
|
|
60
|
-
both = primary_address_str
|
|
61
|
-
both.split(':').first
|
|
62
|
-
end
|
|
63
|
-
|
|
64
|
-
def primary_address_port
|
|
65
|
-
both = primary_address_str
|
|
66
|
-
both.split(':')[1] || 27017
|
|
67
|
-
end
|
|
68
|
-
|
|
69
|
-
def primary_description
|
|
70
|
-
determine_cluster_config
|
|
71
|
-
@primary_description
|
|
72
|
-
end
|
|
73
|
-
|
|
74
|
-
# Try running a command on the admin database to see if the mongod was
|
|
75
|
-
# started with auth.
|
|
76
|
-
def auth_enabled?
|
|
77
|
-
if @auth_enabled.nil?
|
|
78
|
-
@auth_enabled = begin
|
|
79
|
-
basic_client.use(:admin).command(getCmdLineOpts: 1).first["argv"].include?("--auth")
|
|
80
|
-
rescue => e
|
|
81
|
-
e.message =~ /(not authorized)|(unauthorized)|(no users authenticated)|(requires authentication)/
|
|
82
|
-
end
|
|
83
|
-
end
|
|
84
|
-
@auth_enabled
|
|
85
|
-
end
|
|
86
|
-
|
|
87
|
-
def topology
|
|
88
|
-
determine_cluster_config
|
|
89
|
-
@topology
|
|
90
|
-
end
|
|
91
|
-
|
|
92
|
-
def storage_engine
|
|
93
|
-
@storage_engine ||= begin
|
|
94
|
-
# 2.6 does not have wired tiger
|
|
95
|
-
if short_server_version == '2.6'
|
|
96
|
-
:mmapv1
|
|
97
|
-
else
|
|
98
|
-
client = ClientRegistry.instance.global_client('root_authorized')
|
|
99
|
-
if topology == :sharded
|
|
100
|
-
shards = client.use(:admin).command(listShards: 1).first
|
|
101
|
-
shard = shards['shards'].first
|
|
102
|
-
address_str = shard['host'].sub(/\A.*\//, '').sub(/,.*/, '')
|
|
103
|
-
client = ClusterTools.instance.direct_client(address_str,
|
|
104
|
-
SpecConfig.instance.test_options.merge(SpecConfig.instance.auth_options).merge(connect: :direct))
|
|
105
|
-
end
|
|
106
|
-
rv = client.use(:admin).command(serverStatus: 1).first
|
|
107
|
-
rv = rv['storageEngine']['name']
|
|
108
|
-
rv_map = {
|
|
109
|
-
'wiredTiger' => :wired_tiger,
|
|
110
|
-
'mmapv1' => :mmapv1,
|
|
111
|
-
}
|
|
112
|
-
rv_map[rv] || rv
|
|
113
|
-
end
|
|
114
|
-
end
|
|
115
|
-
end
|
|
116
|
-
|
|
117
|
-
private
|
|
118
|
-
|
|
119
|
-
def determine_cluster_config
|
|
120
|
-
return if @primary_address
|
|
121
|
-
|
|
122
|
-
# Run all commands to figure out the cluster configuration from the same
|
|
123
|
-
# client. This is somewhat wasteful when running a single test, but reduces
|
|
124
|
-
# test runtime for the suite overall because all commands are sent on the
|
|
125
|
-
# same connection rather than each command connecting to the cluster by
|
|
126
|
-
# itself.
|
|
127
|
-
client = Mongoid::Clients.default
|
|
128
|
-
|
|
129
|
-
primary = client.cluster.next_primary
|
|
130
|
-
@primary_address = primary.address
|
|
131
|
-
@primary_description = primary.description
|
|
132
|
-
@replica_set_name = client.cluster.topology.replica_set_name
|
|
133
|
-
|
|
134
|
-
@topology ||= begin
|
|
135
|
-
topology = client.cluster.topology.class.name.sub(/.*::/, '')
|
|
136
|
-
topology = topology.gsub(/([A-Z])/) { |match| '_' + match.downcase }.sub(/\A_/, '')
|
|
137
|
-
if topology =~ /\Areplica_set/
|
|
138
|
-
topology = 'replica_set'
|
|
139
|
-
end
|
|
140
|
-
topology.to_sym
|
|
141
|
-
end
|
|
142
|
-
|
|
143
|
-
@single_server = client.cluster.send(:servers_list).length == 1
|
|
144
|
-
|
|
145
|
-
@server_version = client.database.command(buildInfo: 1).first['version']
|
|
146
|
-
|
|
147
|
-
if @topology != :sharded && short_server_version >= '3.4'
|
|
148
|
-
rv = client.use(:admin).command(getParameter: 1, featureCompatibilityVersion: 1).first['featureCompatibilityVersion']
|
|
149
|
-
@fcv = rv['version'] || rv
|
|
150
|
-
end
|
|
151
|
-
end
|
|
152
|
-
|
|
153
|
-
def basic_client
|
|
154
|
-
# Do not cache the result here so that if the client gets closed,
|
|
155
|
-
# client registry reconnects it in subsequent tests
|
|
156
|
-
ClientRegistry.instance.global_client('basic')
|
|
157
|
-
end
|
|
158
|
-
end
|