mongoid 7.2.0 → 7.2.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (33) hide show
  1. checksums.yaml +4 -4
  2. checksums.yaml.gz.sig +0 -0
  3. data.tar.gz.sig +0 -0
  4. data/lib/mongoid/criteria/queryable/selector.rb +0 -4
  5. data/lib/mongoid/document.rb +3 -2
  6. data/lib/mongoid/interceptable.rb +3 -1
  7. data/lib/mongoid/matcher/field_operator.rb +7 -11
  8. data/lib/mongoid/version.rb +1 -1
  9. data/spec/integration/app_spec.rb +35 -2
  10. data/spec/integration/callbacks_models.rb +49 -0
  11. data/spec/integration/callbacks_spec.rb +216 -0
  12. data/spec/integration/matcher_operator_data/gt_types.yml +63 -0
  13. data/spec/integration/matcher_operator_data/gte_types.yml +15 -0
  14. data/spec/integration/matcher_operator_data/lt_types.yml +15 -0
  15. data/spec/integration/matcher_operator_data/lte_types.yml +15 -0
  16. data/spec/integration/matcher_operator_data/ne_types.yml +15 -0
  17. data/spec/lite_spec_helper.rb +1 -1
  18. data/spec/mongoid/association/embedded/embedded_in/proxy_spec.rb +50 -0
  19. data/spec/mongoid/atomic/paths_spec.rb +41 -0
  20. data/spec/mongoid/criteria/queryable/selectable_logical_spec.rb +36 -0
  21. data/spec/shared/lib/mrss/cluster_config.rb +211 -0
  22. data/spec/shared/lib/mrss/constraints.rb +27 -0
  23. data/spec/shared/lib/mrss/docker_runner.rb +262 -0
  24. data/spec/shared/lib/mrss/server_version_registry.rb +69 -0
  25. data/spec/shared/share/Dockerfile.erb +229 -0
  26. data/spec/shared/shlib/distro.sh +73 -0
  27. data/spec/shared/shlib/server.sh +270 -0
  28. data/spec/shared/shlib/set_env.sh +128 -0
  29. data/spec/support/models/customer.rb +11 -0
  30. data/spec/support/models/customer_address.rb +12 -0
  31. data/spec/support/models/dictionary.rb +6 -0
  32. metadata +44 -12
  33. metadata.gz.sig +0 -0
@@ -0,0 +1,73 @@
1
+ detected_distro=
2
+
3
+ host_distro() {
4
+ if test -z "$detected_distro"; then
5
+ detected_distro=`_detect_distro`
6
+ fi
7
+ echo "$detected_distro"
8
+ }
9
+
10
+ _detect_distro() {
11
+ local distro
12
+ distro=
13
+ if test -f /etc/debian_version; then
14
+ # Debian or Ubuntu
15
+ if test "`uname -m`" = aarch64; then
16
+ distro=ubuntu1604-arm
17
+ elif lsb_release -is |grep -q Debian; then
18
+ release=`lsb_release -rs |tr -d .`
19
+ # In docker, release is something like 9.11.
20
+ # In evergreen, release is 9.2.
21
+ release=`echo $release |sed -e 's/^9.*/92/'`
22
+ distro="debian$release"
23
+ elif lsb_release -is |grep -q Ubuntu; then
24
+ if test "`uname -m`" = ppc64le; then
25
+ release=`lsb_release -rs |tr -d .`
26
+ distro="ubuntu$release-ppc"
27
+ else
28
+ release=`lsb_release -rs |tr -d .`
29
+ distro="ubuntu$release"
30
+ fi
31
+ else
32
+ echo 'Unknown Debian flavor' 1>&2
33
+ exit 1
34
+ fi
35
+ elif lsb_release -is |grep -qi suse; then
36
+ if test "`uname -m`" = s390x; then
37
+ release=`lsb_release -rs |sed -e 's/\..*//'`
38
+ distro="suse$release-s390x"
39
+ else
40
+ echo 'Unknown Suse arch' 1>&2
41
+ exit 1
42
+ fi
43
+ elif test -f /etc/redhat-release; then
44
+ # RHEL or CentOS
45
+ if test "`uname -m`" = s390x; then
46
+ distro=rhel72-s390x
47
+ elif test "`uname -m`" = ppc64le; then
48
+ distro=rhel71-ppc
49
+ elif lsb_release >/dev/null 2>&1; then
50
+ if lsb_release -is |grep -q RedHat; then
51
+ release=`lsb_release -rs |tr -d .`
52
+ distro="rhel$release"
53
+ elif lsb_release -is |grep -q CentOS; then
54
+ release=`lsb_release -rs |cut -c 1 |sed -e s/7/70/ -e s/6/62/ -e s/8/80/`
55
+ distro="rhel$release"
56
+ else
57
+ echo 'Unknown RHEL flavor' 1>&2
58
+ exit 1
59
+ fi
60
+ else
61
+ echo lsb_release missing, using /etc/redhat-release 1>&2
62
+ release=`grep -o 'release [0-9]' /etc/redhat-release |awk '{print $2}'`
63
+ release=`echo $release |sed -e s/7/70/ -e s/6/62/ -e s/8/80/`
64
+ distro=rhel$release
65
+ fi
66
+ else
67
+ lsb_release -a
68
+ echo 'Unknown distro' 1>&2
69
+ exit 1
70
+ fi
71
+ echo "Detected distro: $distro" 1>&2
72
+ echo $distro
73
+ }
@@ -0,0 +1,270 @@
1
+ # This file contains functions pertaining to downloading, starting and
2
+ # configuring a MongoDB server.
3
+
4
+ set_fcv() {
5
+ if test -n "$FCV"; then
6
+ mongo --eval 'assert.commandWorked(db.adminCommand( { setFeatureCompatibilityVersion: "'"$FCV"'" } ));' "$MONGODB_URI"
7
+ mongo --quiet --eval 'db.adminCommand( { getParameter: 1, featureCompatibilityVersion: 1 } )' |grep "version.*$FCV"
8
+ fi
9
+ }
10
+
11
+ add_uri_option() {
12
+ opt=$1
13
+
14
+ if ! echo $MONGODB_URI |sed -e s,//,, |grep -q /; then
15
+ MONGODB_URI="$MONGODB_URI/"
16
+ fi
17
+
18
+ if ! echo $MONGODB_URI |grep -q '?'; then
19
+ MONGODB_URI="$MONGODB_URI?"
20
+ fi
21
+
22
+ MONGODB_URI="$MONGODB_URI&$opt"
23
+ }
24
+
25
+ prepare_server() {
26
+ arch=$1
27
+
28
+ if test -n "$USE_OPT_MONGODB"; then
29
+ export BINDIR=/opt/mongodb/bin
30
+ export PATH=$BINDIR:$PATH
31
+ return
32
+ fi
33
+
34
+ if test "$MONGODB_VERSION" = latest; then
35
+ # Test on the most recent published 4.3 release.
36
+ # https://jira.mongodb.org/browse/RUBY-1724
37
+ echo 'Using "latest" server is not currently implemented' 1>&2
38
+ exit 1
39
+ else
40
+ download_version="$MONGODB_VERSION"
41
+ fi
42
+
43
+ url=`$(dirname $0)/get-mongodb-download-url $download_version $arch`
44
+
45
+ prepare_server_from_url $url
46
+ }
47
+
48
+ prepare_server_from_url() {
49
+ url=$1
50
+
51
+ mongodb_dir="$MONGO_ORCHESTRATION_HOME"/mdb
52
+ mkdir -p "$mongodb_dir"
53
+ curl --retry 3 $url |tar xz -C "$mongodb_dir" -f -
54
+ BINDIR="$mongodb_dir"/`basename $url |sed -e s/.tgz//`/bin
55
+ export PATH="$BINDIR":$PATH
56
+ }
57
+
58
+ install_mlaunch_virtualenv() {
59
+ python2 -V || true
60
+ # Current virtualenv fails with
61
+ # https://github.com/pypa/virtualenv/issues/1630
62
+ python -m pip install 'virtualenv<20' --user
63
+ venvpath="$MONGO_ORCHESTRATION_HOME"/venv
64
+ python2 -m virtualenv -p python2 $venvpath
65
+ . $venvpath/bin/activate
66
+ pip install 'mtools-legacy[mlaunch]'
67
+ }
68
+
69
+ install_mlaunch_pip() {
70
+ if test -n "$USE_OPT_MONGODB" && which mlaunch >/dev/null 2>&1; then
71
+ # mlaunch is preinstalled in the docker image, do not install it here
72
+ return
73
+ fi
74
+
75
+ python -V || true
76
+ python3 -V || true
77
+ pythonpath="$MONGO_ORCHESTRATION_HOME"/python
78
+ pip install -t "$pythonpath" 'mtools-legacy[mlaunch]'
79
+ export PATH="$pythonpath/bin":$PATH
80
+ export PYTHONPATH="$pythonpath"
81
+ }
82
+
83
+ install_mlaunch_git() {
84
+ repo=$1
85
+ branch=$2
86
+ python -V || true
87
+ python3 -V || true
88
+ which pip || true
89
+ which pip3 || true
90
+
91
+ if false; then
92
+ if ! virtualenv --version; then
93
+ python3 `which pip3` install --user virtualenv
94
+ export PATH=$HOME/.local/bin:$PATH
95
+ virtualenv --version
96
+ fi
97
+
98
+ venvpath="$MONGO_ORCHESTRATION_HOME"/venv
99
+ virtualenv -p python3 $venvpath
100
+ . $venvpath/bin/activate
101
+
102
+ pip3 install psutil pymongo
103
+
104
+ git clone $repo mlaunch
105
+ cd mlaunch
106
+ git checkout origin/$branch
107
+ python3 setup.py install
108
+ cd ..
109
+ else
110
+ pip install --user 'virtualenv==13'
111
+ export PATH=$HOME/.local/bin:$PATH
112
+
113
+ venvpath="$MONGO_ORCHESTRATION_HOME"/venv
114
+ virtualenv $venvpath
115
+ . $venvpath/bin/activate
116
+
117
+ pip install psutil pymongo
118
+
119
+ git clone $repo mlaunch
120
+ (cd mlaunch &&
121
+ git checkout origin/$branch &&
122
+ python setup.py install
123
+ )
124
+ fi
125
+ }
126
+
127
+ calculate_server_args() {
128
+ local mongo_version=`echo $MONGODB_VERSION |tr -d .`
129
+ if test $mongo_version = latest; then
130
+ mongo_version=44
131
+ fi
132
+
133
+ local args="--setParameter enableTestCommands=1"
134
+ # diagnosticDataCollectionEnabled is a mongod-only parameter on server 3.2,
135
+ # and mlaunch does not support specifying mongod-only parameters:
136
+ # https://github.com/rueckstiess/mtools/issues/696
137
+ # Pass it to 3.4 and newer servers where it is accepted by all daemons.
138
+ if test $mongo_version -ge 34; then
139
+ args="$args --setParameter diagnosticDataCollectionEnabled=false"
140
+ fi
141
+ local uri_options=
142
+ if test "$TOPOLOGY" = replica-set; then
143
+ args="$args --replicaset --name ruby-driver-rs --nodes 2 --arbiter"
144
+ export HAVE_ARBITER=1
145
+ elif test "$TOPOLOGY" = sharded-cluster; then
146
+ args="$args --replicaset --nodes 1 --sharded 1 --name ruby-driver-rs"
147
+ if test -z "$SINGLE_MONGOS"; then
148
+ args="$args --mongos 2"
149
+ fi
150
+ else
151
+ args="$args --single"
152
+ fi
153
+ if test -n "$MMAPV1"; then
154
+ args="$args --storageEngine mmapv1 --smallfiles --noprealloc"
155
+ uri_options="$uri_options&retryReads=false&retryWrites=false"
156
+ fi
157
+ if test "$AUTH" = auth; then
158
+ args="$args --auth --username bob --password pwd123"
159
+ elif test "$AUTH" = x509; then
160
+ args="$args --auth --username bootstrap --password bootstrap"
161
+ elif echo "$AUTH" |grep -q ^aws; then
162
+ args="$args --auth --username bootstrap --password bootstrap"
163
+ args="$args --setParameter authenticationMechanisms=MONGODB-AWS,SCRAM-SHA-1,SCRAM-SHA-256"
164
+ uri_options="$uri_options&authMechanism=MONGODB-AWS&authSource=\$external"
165
+ fi
166
+
167
+ if test -n "$OCSP"; then
168
+ if test -z "$OCSP_ALGORITHM"; then
169
+ echo "OCSP_ALGORITHM must be set if OCSP is set" 1>&2
170
+ exit 1
171
+ fi
172
+ fi
173
+
174
+ local server_cert_path server_ca_path server_client_cert_path
175
+ if test "$SSL" = ssl || test -n "$OCSP_ALGORITHM"; then
176
+ if test -n "$OCSP_ALGORITHM"; then
177
+ if test "$OCSP_MUST_STAPLE" = 1; then
178
+ server_cert_path=spec/support/ocsp/$OCSP_ALGORITHM/server-mustStaple.pem
179
+ else
180
+ server_cert_path=spec/support/ocsp/$OCSP_ALGORITHM/server.pem
181
+ fi
182
+ server_ca_path=spec/support/ocsp/$OCSP_ALGORITHM/ca.crt
183
+ server_client_cert_path=spec/support/ocsp/$OCSP_ALGORITHM/server.pem
184
+ else
185
+ server_cert_path=spec/support/certificates/server-second-level-bundle.pem
186
+ server_ca_path=spec/support/certificates/ca.crt
187
+ server_client_cert_path=spec/support/certificates/client.pem
188
+ fi
189
+
190
+ if test -n "$OCSP_ALGORITHM"; then
191
+ client_cert_path=spec/support/ocsp/$OCSP_ALGORITHM/server.pem
192
+ elif test "$AUTH" = x509; then
193
+ client_cert_path=spec/support/certificates/client-x509.pem
194
+
195
+ uri_options="$uri_options&authMechanism=MONGODB-X509"
196
+ elif echo $RVM_RUBY |grep -q jruby; then
197
+ # JRuby does not grok chained certificate bundles -
198
+ # https://github.com/jruby/jruby-openssl/issues/181
199
+ client_cert_path=spec/support/certificates/client.pem
200
+ else
201
+ client_cert_path=spec/support/certificates/client-second-level-bundle.pem
202
+ fi
203
+
204
+ uri_options="$uri_options&tls=true&"\
205
+ "tlsCAFile=$server_ca_path&"\
206
+ "tlsCertificateKeyFile=$client_cert_path"
207
+
208
+ args="$args --sslMode requireSSL"\
209
+ " --sslPEMKeyFile $server_cert_path"\
210
+ " --sslCAFile $server_ca_path"\
211
+ " --sslClientCertificate $server_client_cert_path"
212
+ fi
213
+
214
+ # Docker forwards ports to the external interface, not to the loopback.
215
+ # Hence we must bind to all interfaces here.
216
+ if test -n "$BIND_ALL"; then
217
+ args="$args --bind_ip_all"
218
+ fi
219
+
220
+ # MongoDB servers pre-4.2 do not enable zlib compression by default
221
+ if test "$COMPRESSOR" = snappy; then
222
+ args="$args --networkMessageCompressors snappy"
223
+ elif test "$COMPRESSOR" = zlib; then
224
+ args="$args --networkMessageCompressors zlib"
225
+ fi
226
+
227
+ if test -n "$OCSP_ALGORITHM" || test -n "$OCSP_VERIFIER"; then
228
+ python3 -m pip install asn1crypto oscrypto flask
229
+ fi
230
+
231
+ local ocsp_args=
232
+ if test -n "$OCSP_ALGORITHM"; then
233
+ if test -z "$server_ca_path"; then
234
+ echo "server_ca_path must have been set" 1>&2
235
+ exit 1
236
+ fi
237
+ ocsp_args="--ca_file $server_ca_path"
238
+ if test "$OCSP_DELEGATE" = 1; then
239
+ ocsp_args="$ocsp_args \
240
+ --ocsp_responder_cert spec/support/ocsp/$OCSP_ALGORITHM/ocsp-responder.crt \
241
+ --ocsp_responder_key spec/support/ocsp/$OCSP_ALGORITHM/ocsp-responder.key \
242
+ "
243
+ else
244
+ ocsp_args="$ocsp_args \
245
+ --ocsp_responder_cert spec/support/ocsp/$OCSP_ALGORITHM/ca.crt \
246
+ --ocsp_responder_key spec/support/ocsp/$OCSP_ALGORITHM/ca.key \
247
+ "
248
+ fi
249
+ if test -n "$OCSP_STATUS"; then
250
+ ocsp_args="$ocsp_args --fault $OCSP_STATUS"
251
+ fi
252
+ fi
253
+
254
+ OCSP_ARGS="$ocsp_args"
255
+ SERVER_ARGS="$args"
256
+ URI_OPTIONS="$uri_options"
257
+ }
258
+
259
+ launch_ocsp_mock() {
260
+ if test -n "$OCSP_ARGS"; then
261
+ # Bind to 0.0.0.0 for Docker
262
+ python3 spec/support/ocsp/ocsp_mock.py $OCSP_ARGS -b 0.0.0.0 -p 8100 &
263
+ OCSP_MOCK_PID=$!
264
+ fi
265
+ }
266
+
267
+ launch_server() {
268
+ local dbdir="$1"
269
+ python -m mtools.mlaunch.mlaunch --dir "$dbdir" --binarypath "$BINDIR" $SERVER_ARGS
270
+ }
@@ -0,0 +1,128 @@
1
+ TOOLCHAIN_VERSION=289d4bec7c61e88000cea582c05fd8073b932122
2
+
3
+ set_env_java() {
4
+ ls -l /opt || true
5
+ ls -l /usr/lib/jvm || true
6
+
7
+ # Use toolchain java if it exists
8
+ if [ -f /opt/java/jdk8/bin/java ]; then
9
+ export JAVACMD=/opt/java/jdk8/bin/java
10
+ #export PATH=$PATH:/opt/java/jdk8/bin
11
+ fi
12
+
13
+ # ppc64le has it in a different place
14
+ if test -z "$JAVACMD" && [ -f /usr/lib/jvm/java-1.8.0/bin/java ]; then
15
+ export JAVACMD=/usr/lib/jvm/java-1.8.0/bin/java
16
+ #export PATH=$PATH:/usr/lib/jvm/java-1.8.0/bin
17
+ fi
18
+
19
+ if true; then
20
+ # newer
21
+ # rhel71-ppc, https://jira.mongodb.org/browse/BUILD-9231
22
+ if test -z "$JAVACMD" &&
23
+ (ls /opt/java || true) |grep -q java-1.8.0-openjdk-1.8.0 &&
24
+ test -f /opt/java/java-1.8.0-openjdk-1.8.0*/bin/java;
25
+ then
26
+ path=$(cd /opt/java && ls -d java-1.8.0-openjdk-1.8.0* |head -n 1)
27
+ export JAVACMD=/opt/java/"$path"/bin/java
28
+ fi
29
+ else
30
+ # older
31
+ # rhel71-ppc seems to have an /opt/java/jdk8/bin/java but it doesn't work
32
+ if test -n "$JAVACMD" && ! exec $JAVACMD -version; then
33
+ JAVACMD=
34
+ # we will try the /usr/lib/jvm then
35
+ fi
36
+ fi
37
+
38
+ if test -n "$JAVACMD"; then
39
+ eval $JAVACMD -version
40
+ elif which java 2>/dev/null; then
41
+ java -version
42
+ else
43
+ echo No java runtime found
44
+ fi
45
+ }
46
+
47
+ set_env_ruby() {
48
+ if test -z "$RVM_RUBY"; then
49
+ echo "Empty RVM_RUBY, aborting"
50
+ exit 2
51
+ fi
52
+
53
+ #ls -l /opt
54
+
55
+ # Necessary for jruby
56
+ set_env_java
57
+
58
+ if [ "$RVM_RUBY" == "ruby-head" ]; then
59
+ # When we use ruby-head, we do not install the Ruby toolchain.
60
+ # But we still need Python 3.6+ to run mlaunch.
61
+ # Since the ruby-head tests are run on ubuntu1604, we can use the
62
+ # globally installed Python toolchain.
63
+ #export PATH=/opt/python/3.7/bin:$PATH
64
+
65
+ # 12.04, 14.04 and 16.04 are good
66
+ curl --retry 3 -fL http://rubies.travis-ci.org/ubuntu/`lsb_release -rs`/x86_64/ruby-head.tar.bz2 |tar xfj -
67
+ # TODO adjust gem path?
68
+ export PATH=`pwd`/ruby-head/bin:`pwd`/ruby-head/lib/ruby/gems/2.6.0/bin:$PATH
69
+ ruby --version
70
+ ruby --version |grep dev
71
+ else
72
+ if test "$USE_OPT_TOOLCHAIN" = 1; then
73
+ # nothing, also PATH is already set
74
+ :
75
+ elif true; then
76
+
77
+ # For testing toolchains:
78
+ #toolchain_url=https://s3.amazonaws.com//mciuploads/mongo-ruby-toolchain/`host_distro`/f11598d091441ffc8d746aacfdc6c26741a3e629/mongo_ruby_driver_toolchain_`host_distro |tr - _`_patch_f11598d091441ffc8d746aacfdc6c26741a3e629_5e46f2793e8e866f36eda2c5_20_02_14_19_18_18.tar.gz
79
+ toolchain_url=http://boxes.10gen.com/build/toolchain-drivers/mongo-ruby-driver/ruby-toolchain-`host_distro`-$TOOLCHAIN_VERSION.tar.xz
80
+ curl --retry 3 -fL $toolchain_url |tar Jxf -
81
+ export PATH=`pwd`/rubies/$RVM_RUBY/bin:$PATH
82
+ #export PATH=`pwd`/rubies/python/3/bin:$PATH
83
+
84
+ # Attempt to get bundler to report all errors - so far unsuccessful
85
+ #curl --retry 3 -o bundler-openssl.diff https://github.com/bundler/bundler/compare/v2.0.1...p-mongo:report-errors.diff
86
+ #find . -path \*/lib/bundler/fetcher.rb -exec patch {} bundler-openssl.diff \;
87
+
88
+ else
89
+
90
+ # Normal operation
91
+ if ! test -d $HOME/.rubies/$RVM_RUBY/bin; then
92
+ echo "Ruby directory does not exist: $HOME/.rubies/$RVM_RUBY/bin" 1>&2
93
+ echo "Contents of /opt:" 1>&2
94
+ ls -l /opt 1>&2 || true
95
+ echo ".rubies symlink:" 1>&2
96
+ ls -ld $HOME/.rubies 1>&2 || true
97
+ echo "Our rubies:" 1>&2
98
+ ls -l $HOME/.rubies 1>&2 || true
99
+ exit 2
100
+ fi
101
+ export PATH=$HOME/.rubies/$RVM_RUBY/bin:$PATH
102
+
103
+ fi
104
+
105
+ ruby --version
106
+
107
+ # Ensure we're using the right ruby
108
+ ruby_name=`echo $RVM_RUBY |awk -F- '{print $1}'`
109
+ ruby_version=`echo $RVM_RUBY |awk -F- '{print $2}' |cut -c 1-3`
110
+
111
+ ruby -v |fgrep $ruby_name
112
+ ruby -v |fgrep $ruby_version
113
+
114
+ # We shouldn't need to update rubygems, and there is value in
115
+ # testing on whatever rubygems came with each supported ruby version
116
+ #echo 'updating rubygems'
117
+ #gem update --system
118
+
119
+ # Only install bundler when not using ruby-head.
120
+ # ruby-head comes with bundler and gem complains
121
+ # because installing bundler would overwrite the bundler binary.
122
+ # We now install bundler in the toolchain, hence nothing needs to be done
123
+ # in the tests.
124
+ if false && echo "$RVM_RUBY" |grep -q jruby; then
125
+ gem install bundler -v '<2'
126
+ fi
127
+ fi
128
+ }