mongo 2.6.2 → 2.6.4
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.tar.gz.sig +0 -0
- data/Rakefile +14 -1
- data/lib/mongo/cluster.rb +9 -1
- data/lib/mongo/error/parser.rb +13 -0
- data/lib/mongo/session/session_pool.rb +4 -2
- data/lib/mongo/socket/ssl.rb +1 -1
- data/lib/mongo/version.rb +1 -1
- data/mongo.gemspec +1 -1
- data/spec/integration/operation_failure_code_spec.rb +26 -0
- metadata +456 -455
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 042b22f1dc8232079d3ac87870ad7176d8e91e001c3fa8c1f7134d32e834d074
|
4
|
+
data.tar.gz: 6be04c908daec1c1f9c7e7b528befb335439d0cd4827ffc1159d293068b43277
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a13035c0dfde9d2b489d0123854b354e5e0dcee4c7971ae34f6c2697b4fe711a719c2b2418ac133de2871b110bdb7d263a1fde6797d43694d22a21d7a9f5f1c1
|
7
|
+
data.tar.gz: c9b11b4938014595764da0617839a663af50856e810923544a636afadfe1707d7d25048c4eca3b16fce89d368952479a05b6383a716019637dc950b43ee431b5
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data.tar.gz.sig
CHANGED
Binary file
|
data/Rakefile
CHANGED
@@ -15,6 +15,9 @@ Bundler.require(*default_groups)
|
|
15
15
|
|
16
16
|
require 'rspec/core/rake_task'
|
17
17
|
|
18
|
+
tasks = Rake.application.instance_variable_get('@tasks')
|
19
|
+
tasks['release:do'] = tasks.delete('release')
|
20
|
+
|
18
21
|
RSpec::Core::RakeTask.new(:spec) do |t|
|
19
22
|
#t.rspec_opts = "--profile 5" if ENV['CI']
|
20
23
|
end
|
@@ -25,7 +28,17 @@ namespace :spec do
|
|
25
28
|
task :ci => [:spec]
|
26
29
|
end
|
27
30
|
|
28
|
-
|
31
|
+
namespace :release do
|
32
|
+
task :check_private_key do
|
33
|
+
unless File.exists?('gem-private_key.pem')
|
34
|
+
raise "No private key present, cannot release"
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
38
|
+
|
39
|
+
task :release => ['release:check_private_key', 'release:do'] do
|
40
|
+
puts "Releasing #{Mongo::VERSION}"
|
41
|
+
|
29
42
|
system "git tag -a #{Mongo::VERSION} -m 'Tagging release: #{Mongo::VERSION}'"
|
30
43
|
system "git push --tags"
|
31
44
|
system "gem build mongo.gemspec"
|
data/lib/mongo/cluster.rb
CHANGED
@@ -343,9 +343,17 @@ module Mongo
|
|
343
343
|
#
|
344
344
|
# @since 2.0.0
|
345
345
|
def remove(host)
|
346
|
+
log_warn("Removing server #{host}")
|
346
347
|
address = Address.new(host)
|
347
348
|
removed_servers = @servers.select { |s| s.address == address }
|
348
|
-
@update_lock.synchronize
|
349
|
+
@update_lock.synchronize do
|
350
|
+
@servers = @servers - removed_servers
|
351
|
+
if @servers.empty?
|
352
|
+
log_warn(
|
353
|
+
"Topology now has no servers - this is likely a misconfiguration of the cluster and/or the application"
|
354
|
+
)
|
355
|
+
end
|
356
|
+
end
|
349
357
|
removed_servers.each{ |server| server.disconnect! } if removed_servers
|
350
358
|
publish_sdam_event(
|
351
359
|
Monitoring::SERVER_CLOSED,
|
data/lib/mongo/error/parser.rb
CHANGED
@@ -133,6 +133,19 @@ module Mongo
|
|
133
133
|
@code_name = subdoc['codeName']
|
134
134
|
end
|
135
135
|
end
|
136
|
+
|
137
|
+
if @code.nil? && @code_name.nil?
|
138
|
+
# If we have writeErrors, and all of their codes are the same,
|
139
|
+
# use that code. Otherwise don't set the code
|
140
|
+
if write_errors = document[WRITE_ERRORS]
|
141
|
+
codes = write_errors.map { |e| e['code'] }.compact
|
142
|
+
if codes.uniq.length == 1
|
143
|
+
@code = codes.first
|
144
|
+
# code name may not be returned by the server
|
145
|
+
@code_name = write_errors.map { |e| e['codeName'] }.compact.first
|
146
|
+
end
|
147
|
+
end
|
148
|
+
end
|
136
149
|
end
|
137
150
|
end
|
138
151
|
end
|
@@ -123,9 +123,11 @@ module Mongo
|
|
123
123
|
private
|
124
124
|
|
125
125
|
def about_to_expire?(session)
|
126
|
-
|
126
|
+
logical_session_timeout = @cluster.logical_session_timeout
|
127
|
+
|
128
|
+
if logical_session_timeout
|
127
129
|
idle_time_minutes = (Time.now - session.last_use) / 60
|
128
|
-
(idle_time_minutes + 1) >=
|
130
|
+
(idle_time_minutes + 1) >= logical_session_timeout
|
129
131
|
end
|
130
132
|
end
|
131
133
|
|
data/lib/mongo/socket/ssl.rb
CHANGED
@@ -56,7 +56,7 @@ module Mongo
|
|
56
56
|
Timeout.timeout(connect_timeout, Error::SocketTimeoutError) do
|
57
57
|
handle_errors { @tcp_socket.connect(::Socket.pack_sockaddr_in(port, host)) }
|
58
58
|
@socket = OpenSSL::SSL::SSLSocket.new(@tcp_socket, context)
|
59
|
-
@socket.hostname = @host_name
|
59
|
+
@socket.hostname = @host_name
|
60
60
|
@socket.sync_close = true
|
61
61
|
handle_errors { @socket.connect }
|
62
62
|
verify_certificate!(@socket)
|
data/lib/mongo/version.rb
CHANGED
data/mongo.gemspec
CHANGED
@@ -15,7 +15,7 @@ Gem::Specification.new do |s|
|
|
15
15
|
s.homepage = 'http://www.mongodb.org'
|
16
16
|
s.summary = 'Ruby driver for MongoDB'
|
17
17
|
s.description = 'A Ruby driver for MongoDB'
|
18
|
-
s.license = 'Apache
|
18
|
+
s.license = 'Apache-2.0'
|
19
19
|
|
20
20
|
if File.exists?('gem-private_key.pem')
|
21
21
|
s.signing_key = 'gem-private_key.pem'
|
@@ -0,0 +1,26 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe 'OperationFailure code' do
|
4
|
+
let(:collection_name) { 'operation_error_code_spec' }
|
5
|
+
let(:collection) { authorized_client[collection_name] }
|
6
|
+
|
7
|
+
before do
|
8
|
+
collection.delete_many
|
9
|
+
end
|
10
|
+
|
11
|
+
context 'duplicate key error' do
|
12
|
+
it 'is set' do
|
13
|
+
begin
|
14
|
+
collection.insert_one(_id: 1)
|
15
|
+
collection.insert_one(_id: 1)
|
16
|
+
fail('Should have raised')
|
17
|
+
rescue Mongo::Error::OperationFailure => e
|
18
|
+
expect(e.code).to eq(11000)
|
19
|
+
# 4.0 and 4.1 sharded clusters set code name.
|
20
|
+
# 4.0 and 4.1 replica sets and standalones do not,
|
21
|
+
# and neither do older versions.
|
22
|
+
expect([nil, 'DuplicateKey']).to include(e.code_name)
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mongo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.6.
|
4
|
+
version: 2.6.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tyler Brock
|
@@ -12,27 +12,26 @@ bindir: bin
|
|
12
12
|
cert_chain:
|
13
13
|
- |
|
14
14
|
-----BEGIN CERTIFICATE-----
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
p3shId/bDtqoYu1EX+ot1RmsQEYYUO6hhaNOm9WmvIs=
|
15
|
+
MIIDRDCCAiygAwIBAgIBATANBgkqhkiG9w0BAQsFADAmMSQwIgYDVQQDDBtkcml2
|
16
|
+
ZXItcnVieS9EQz0xMGdlbi9EQz1jb20wHhcNMTkwMTE3MjIzMDE1WhcNMjAwMTE3
|
17
|
+
MjIzMDE1WjAmMSQwIgYDVQQDDBtkcml2ZXItcnVieS9EQz0xMGdlbi9EQz1jb20w
|
18
|
+
ggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDRXUgGvH0ZtWwDPc2umdHw
|
19
|
+
B+INNm6jNTRp8PMyUKxPzxaxX2OiBQk9gLC3zsK9ZmlZu4lNfpHVSCEPoiP/fhPg
|
20
|
+
Kyfq2xld3Qz0Pki5d5i0/r14343MTKiNiFulLlbbdlN0cXeEFNJHUycZnD2LOXwz
|
21
|
+
egYGHOl14FI8t5visIWtqRnLXXIlDsBHzmeEZjUZRGSgjC0R3RT/I+Fk5yUhn1w4
|
22
|
+
rqFyAiW+cjjzmT7mmqT0jV6fd0JFHbKnSgt9iPijKSimBgUOsorHwOTMlTzwsy0d
|
23
|
+
ZT+al1RiT5zqlAJLxFHwmoYOxD/bSNtKsYl60ek0hK2mISBVy9BBmLvCgHDx5uSp
|
24
|
+
AgMBAAGjfTB7MAkGA1UdEwQCMAAwCwYDVR0PBAQDAgSwMB0GA1UdDgQWBBRbd1mx
|
25
|
+
fvSaVIwKI+tnEAYDW/B81zAgBgNVHREEGTAXgRVkcml2ZXItcnVieUAxMGdlbi5j
|
26
|
+
b20wIAYDVR0SBBkwF4EVZHJpdmVyLXJ1YnlAMTBnZW4uY29tMA0GCSqGSIb3DQEB
|
27
|
+
CwUAA4IBAQBtXpljL+EXFgH2YRSkYTNn9WKurclJKqaMTJvJoEm2mX1IbAg+BX+i
|
28
|
+
Eb+rKelkjezRqVkurzRjif8RI9aGBpAyfobQfHHJNzHQzSFwhEmwlGDQRgQzrDhN
|
29
|
+
cbkRB2wDgGJNjnjMKLXfeZX+SjWAsHDrOc+Ue9nHs2AdJxCTDgB1MMNGZ1UjLL9/
|
30
|
+
HhO93otEnxwCVijD9ruORb0bT9LlNKosQQEzrhXtOtNK9k7s7G6Gi0BFMOIJDVyq
|
31
|
+
bMYVwXXhV8czdzgkQB/ZPWHSbEWXnmkze1mzvqWBCPOVXYrcnL9cnEl/RoxtS1hr
|
32
|
+
Db6Ac6mCUSYfYHBWpWqxjc45n70i5Xi1
|
34
33
|
-----END CERTIFICATE-----
|
35
|
-
date:
|
34
|
+
date: 2019-01-22 00:00:00.000000000 Z
|
36
35
|
dependencies:
|
37
36
|
- !ruby/object:Gem::Dependency
|
38
37
|
name: bson
|
@@ -402,6 +401,7 @@ files:
|
|
402
401
|
- spec/integration/change_stream_spec.rb
|
403
402
|
- spec/integration/command_monitoring_spec.rb
|
404
403
|
- spec/integration/docs_examples_spec.rb
|
404
|
+
- spec/integration/operation_failure_code_spec.rb
|
405
405
|
- spec/integration/reconnect_spec.rb
|
406
406
|
- spec/integration/retryable_writes_spec.rb
|
407
407
|
- spec/integration/shell_examples_spec.rb
|
@@ -866,7 +866,7 @@ files:
|
|
866
866
|
- spec/support/travis.rb
|
867
867
|
homepage: http://www.mongodb.org
|
868
868
|
licenses:
|
869
|
-
- Apache
|
869
|
+
- Apache-2.0
|
870
870
|
metadata: {}
|
871
871
|
post_install_message:
|
872
872
|
rdoc_options: []
|
@@ -884,476 +884,477 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
884
884
|
version: '0'
|
885
885
|
requirements: []
|
886
886
|
rubyforge_project:
|
887
|
-
rubygems_version: 2.7.
|
887
|
+
rubygems_version: 2.7.6
|
888
888
|
signing_key:
|
889
889
|
specification_version: 4
|
890
890
|
summary: Ruby driver for MongoDB
|
891
891
|
test_files:
|
892
|
-
- spec/atlas/atlas_connectivity_spec.rb
|
893
|
-
- spec/integration/bulk_insert_spec.rb
|
894
|
-
- spec/integration/change_stream_spec.rb
|
895
|
-
- spec/integration/command_monitoring_spec.rb
|
896
|
-
- spec/integration/change_stream_examples_spec.rb
|
897
|
-
- spec/integration/docs_examples_spec.rb
|
898
|
-
- spec/integration/reconnect_spec.rb
|
899
|
-
- spec/integration/retryable_writes_spec.rb
|
900
|
-
- spec/integration/shell_examples_spec.rb
|
901
|
-
- spec/integration/transactions_examples_spec.rb
|
902
|
-
- spec/mongo/address/ipv4_spec.rb
|
903
|
-
- spec/mongo/address/ipv6_spec.rb
|
904
|
-
- spec/mongo/address/unix_spec.rb
|
905
|
-
- spec/mongo/auth/cr_spec.rb
|
906
|
-
- spec/mongo/auth/ldap/conversation_spec.rb
|
907
|
-
- spec/mongo/auth/ldap_spec.rb
|
908
|
-
- spec/mongo/auth/scram/conversation_spec.rb
|
909
|
-
- spec/mongo/auth/scram/negotiation_spec.rb
|
910
|
-
- spec/mongo/auth/stringprep/profiles/sasl_spec.rb
|
911
|
-
- spec/mongo/auth/stringprep_spec.rb
|
912
|
-
- spec/mongo/auth/user/view_spec.rb
|
913
|
-
- spec/mongo/auth/user_spec.rb
|
914
|
-
- spec/mongo/auth/x509/conversation_spec.rb
|
915
|
-
- spec/mongo/auth/x509_spec.rb
|
916
|
-
- spec/mongo/auth/scram_spec.rb
|
917
|
-
- spec/mongo/auth_spec.rb
|
918
|
-
- spec/mongo/bson_spec.rb
|
919
|
-
- spec/mongo/bulk_write/ordered_combiner_spec.rb
|
920
|
-
- spec/mongo/bulk_write/result_spec.rb
|
921
|
-
- spec/mongo/bulk_write/unordered_combiner_spec.rb
|
922
|
-
- spec/mongo/cluster/app_metadata_spec.rb
|
923
|
-
- spec/mongo/cluster/cursor_reaper_spec.rb
|
924
|
-
- spec/mongo/cluster/socket_reaper_spec.rb
|
925
|
-
- spec/mongo/cluster/topology/sharded_spec.rb
|
926
|
-
- spec/mongo/cluster/topology/single_spec.rb
|
927
|
-
- spec/mongo/cluster/topology/unknown_spec.rb
|
928
|
-
- spec/mongo/cluster/topology/replica_set_spec.rb
|
929
|
-
- spec/mongo/cluster/topology_spec.rb
|
930
|
-
- spec/mongo/collection/view/builder/find_command_spec.rb
|
931
|
-
- spec/mongo/collection/view/builder/flags_spec.rb
|
932
|
-
- spec/mongo/collection/view/builder/modifiers_spec.rb
|
933
|
-
- spec/mongo/collection/view/builder/op_query_spec.rb
|
934
|
-
- spec/mongo/collection/view/change_stream_spec.rb
|
935
|
-
- spec/mongo/collection/view/explainable_spec.rb
|
936
|
-
- spec/mongo/collection/view/immutable_spec.rb
|
937
|
-
- spec/mongo/collection/view/map_reduce_spec.rb
|
938
|
-
- spec/mongo/collection/view/writable_spec.rb
|
939
|
-
- spec/mongo/collection/view/aggregation_spec.rb
|
940
|
-
- spec/mongo/collection/view/readable_spec.rb
|
941
|
-
- spec/mongo/collection/view_spec.rb
|
942
|
-
- spec/mongo/cursor/builder/get_more_command_spec.rb
|
943
|
-
- spec/mongo/cursor/builder/op_get_more_spec.rb
|
944
|
-
- spec/mongo/cursor_spec.rb
|
945
|
-
- spec/mongo/dbref_spec.rb
|
946
|
-
- spec/mongo/error/operation_failure_spec.rb
|
947
|
-
- spec/mongo/error/parser_spec.rb
|
948
|
-
- spec/mongo/event/publisher_spec.rb
|
949
|
-
- spec/mongo/event/subscriber_spec.rb
|
950
|
-
- spec/mongo/grid/file/chunk_spec.rb
|
951
|
-
- spec/mongo/grid/file/info_spec.rb
|
952
|
-
- spec/mongo/grid/file_spec.rb
|
953
|
-
- spec/mongo/grid/fs_bucket_spec.rb
|
954
|
-
- spec/mongo/grid/stream/read_spec.rb
|
955
|
-
- spec/mongo/grid/stream/write_spec.rb
|
956
|
-
- spec/mongo/grid/stream_spec.rb
|
957
|
-
- spec/mongo/index/view_spec.rb
|
958
|
-
- spec/mongo/monitoring/command_log_subscriber_spec.rb
|
959
|
-
- spec/mongo/monitoring/event/command_failed_spec.rb
|
960
|
-
- spec/mongo/monitoring/event/command_started_spec.rb
|
961
|
-
- spec/mongo/monitoring/event/command_succeeded_spec.rb
|
962
|
-
- spec/mongo/monitoring/event/secure_spec.rb
|
963
|
-
- spec/mongo/monitoring_spec.rb
|
964
|
-
- spec/mongo/operation/aggregate/result_spec.rb
|
965
|
-
- spec/mongo/operation/aggregate_spec.rb
|
966
|
-
- spec/mongo/operation/collections_info_spec.rb
|
967
|
-
- spec/mongo/operation/command_spec.rb
|
968
|
-
- spec/mongo/operation/create_index_spec.rb
|
969
|
-
- spec/mongo/operation/create_user_spec.rb
|
970
|
-
- spec/mongo/operation/delete/bulk_spec.rb
|
971
|
-
- spec/mongo/operation/delete/command_spec.rb
|
972
|
-
- spec/mongo/operation/delete/op_msg_spec.rb
|
973
|
-
- spec/mongo/operation/delete_spec.rb
|
974
|
-
- spec/mongo/operation/drop_index_spec.rb
|
975
|
-
- spec/mongo/operation/find/legacy_spec.rb
|
976
|
-
- spec/mongo/operation/get_more_spec.rb
|
977
|
-
- spec/mongo/operation/indexes_spec.rb
|
978
|
-
- spec/mongo/operation/insert/bulk_spec.rb
|
979
|
-
- spec/mongo/operation/insert/command_spec.rb
|
980
|
-
- spec/mongo/operation/insert/op_msg_spec.rb
|
981
|
-
- spec/mongo/operation/insert_spec.rb
|
982
|
-
- spec/mongo/operation/kill_cursors_spec.rb
|
983
|
-
- spec/mongo/operation/limited_spec.rb
|
984
|
-
- spec/mongo/operation/map_reduce_spec.rb
|
985
|
-
- spec/mongo/operation/read_preference_spec.rb
|
986
|
-
- spec/mongo/operation/remove_user_spec.rb
|
987
|
-
- spec/mongo/operation/result_spec.rb
|
988
|
-
- spec/mongo/operation/specifiable_spec.rb
|
989
|
-
- spec/mongo/operation/update/bulk_spec.rb
|
990
|
-
- spec/mongo/operation/update/command_spec.rb
|
991
|
-
- spec/mongo/operation/update/op_msg_spec.rb
|
992
|
-
- spec/mongo/operation/update_spec.rb
|
993
|
-
- spec/mongo/operation/update_user_spec.rb
|
994
|
-
- spec/mongo/options/redacted_spec.rb
|
995
|
-
- spec/mongo/protocol/compressed_spec.rb
|
996
|
-
- spec/mongo/protocol/delete_spec.rb
|
997
|
-
- spec/mongo/protocol/get_more_spec.rb
|
998
|
-
- spec/mongo/protocol/insert_spec.rb
|
999
|
-
- spec/mongo/protocol/kill_cursors_spec.rb
|
1000
|
-
- spec/mongo/protocol/msg_spec.rb
|
1001
|
-
- spec/mongo/protocol/query_spec.rb
|
1002
|
-
- spec/mongo/protocol/registry_spec.rb
|
1003
|
-
- spec/mongo/protocol/reply_spec.rb
|
1004
|
-
- spec/mongo/protocol/update_spec.rb
|
1005
|
-
- spec/mongo/retryable_spec.rb
|
1006
|
-
- spec/mongo/server/connection_pool/queue_spec.rb
|
1007
|
-
- spec/mongo/server/connection_spec.rb
|
1008
|
-
- spec/mongo/server/description/features_spec.rb
|
1009
|
-
- spec/mongo/server/description/inspector/description_changed_spec.rb
|
1010
|
-
- spec/mongo/server/description/inspector/primary_elected_spec.rb
|
1011
|
-
- spec/mongo/server/description_spec.rb
|
1012
|
-
- spec/mongo/server/monitor/connection_spec.rb
|
1013
|
-
- spec/mongo/server/monitor_spec.rb
|
1014
|
-
- spec/mongo/server/connection_pool_spec.rb
|
1015
|
-
- spec/mongo/server_selector/nearest_spec.rb
|
1016
|
-
- spec/mongo/server_selector/primary_preferred_spec.rb
|
1017
|
-
- spec/mongo/server_selector/primary_spec.rb
|
1018
|
-
- spec/mongo/server_selector/secondary_preferred_spec.rb
|
1019
|
-
- spec/mongo/server_selector/secondary_spec.rb
|
1020
|
-
- spec/mongo/server_selector_spec.rb
|
1021
|
-
- spec/mongo/server_spec.rb
|
1022
|
-
- spec/mongo/session/server_session_spec.rb
|
1023
|
-
- spec/mongo/session/session_pool_spec.rb
|
1024
|
-
- spec/mongo/session_spec.rb
|
1025
|
-
- spec/mongo/socket/ssl_spec.rb
|
1026
|
-
- spec/mongo/socket/unix_spec.rb
|
1027
|
-
- spec/mongo/uri/srv_protocol_spec.rb
|
1028
|
-
- spec/mongo/write_concern/acknowledged_spec.rb
|
1029
|
-
- spec/mongo/write_concern/unacknowledged_spec.rb
|
1030
|
-
- spec/mongo/write_concern_spec.rb
|
1031
|
-
- spec/mongo/address_spec.rb
|
1032
|
-
- spec/mongo/bulk_write_spec.rb
|
1033
|
-
- spec/mongo/client_spec.rb
|
1034
|
-
- spec/mongo/cluster_spec.rb
|
1035
|
-
- spec/mongo/collection_spec.rb
|
1036
|
-
- spec/mongo/database_spec.rb
|
1037
|
-
- spec/mongo/lint_spec.rb
|
1038
|
-
- spec/mongo/logger_spec.rb
|
1039
|
-
- spec/mongo/socket_spec.rb
|
1040
|
-
- spec/mongo/uri_spec.rb
|
1041
|
-
- spec/spec_tests/change_streams_spec.rb
|
1042
|
-
- spec/spec_tests/command_monitoring_spec.rb
|
1043
|
-
- spec/spec_tests/connection_string_spec.rb
|
1044
|
-
- spec/spec_tests/crud_spec.rb
|
1045
|
-
- spec/spec_tests/gridfs_spec.rb
|
1046
|
-
- spec/spec_tests/max_staleness_spec.rb
|
1047
|
-
- spec/spec_tests/retryable_writes_spec.rb
|
1048
|
-
- spec/spec_tests/server_selection_rtt_spec.rb
|
1049
|
-
- spec/spec_tests/server_selection_spec.rb
|
1050
|
-
- spec/spec_tests/sdam_spec.rb
|
1051
|
-
- spec/spec_tests/dns_seedlist_discovery_spec.rb
|
1052
|
-
- spec/spec_tests/sdam_monitoring_spec.rb
|
1053
|
-
- spec/spec_tests/transactions_spec.rb
|
1054
|
-
- spec/support/certificates/ca.pem
|
1055
|
-
- spec/support/certificates/client.pem
|
1056
|
-
- spec/support/certificates/client_cert.pem
|
1057
|
-
- spec/support/certificates/client_key.pem
|
1058
|
-
- spec/support/certificates/client_key_encrypted.pem
|
1059
|
-
- spec/support/certificates/crl.pem
|
1060
|
-
- spec/support/certificates/crl_client_revoked.pem
|
1061
|
-
- spec/support/certificates/password_protected.pem
|
1062
|
-
- spec/support/certificates/server.pem
|
1063
892
|
- spec/support/change_streams.rb
|
1064
893
|
- spec/support/change_streams/operation.rb
|
1065
|
-
- spec/support/change_streams_tests/change-streams-errors.yml
|
1066
|
-
- spec/support/change_streams_tests/change-streams.yml
|
1067
|
-
- spec/support/command_monitoring.rb
|
1068
|
-
- spec/support/command_monitoring/bulkWrite.yml
|
1069
|
-
- spec/support/command_monitoring/command.yml
|
1070
894
|
- spec/support/command_monitoring/deleteMany.yml
|
1071
|
-
- spec/support/command_monitoring/
|
895
|
+
- spec/support/command_monitoring/bulkWrite.yml
|
896
|
+
- spec/support/command_monitoring/updateOne.yml
|
897
|
+
- spec/support/command_monitoring/unacknowledgedBulkWrite.yml
|
1072
898
|
- spec/support/command_monitoring/find.yml
|
1073
|
-
- spec/support/command_monitoring/insertMany.yml
|
1074
899
|
- spec/support/command_monitoring/insertOne.yml
|
1075
|
-
- spec/support/command_monitoring/
|
900
|
+
- spec/support/command_monitoring/command.yml
|
1076
901
|
- spec/support/command_monitoring/updateMany.yml
|
1077
|
-
- spec/support/command_monitoring/
|
1078
|
-
- spec/support/
|
1079
|
-
- spec/support/
|
1080
|
-
- spec/support/
|
1081
|
-
- spec/support/
|
902
|
+
- spec/support/command_monitoring/deleteOne.yml
|
903
|
+
- spec/support/command_monitoring/insertMany.yml
|
904
|
+
- spec/support/max_staleness/Single/Incompatible.yml
|
905
|
+
- spec/support/max_staleness/Single/SmallMaxStaleness.yml
|
906
|
+
- spec/support/max_staleness/ReplicaSetNoPrimary/ZeroMaxStaleness.yml
|
907
|
+
- spec/support/max_staleness/ReplicaSetNoPrimary/PrimaryPreferred.yml
|
908
|
+
- spec/support/max_staleness/ReplicaSetNoPrimary/Nearest2.yml
|
909
|
+
- spec/support/max_staleness/ReplicaSetNoPrimary/SecondaryPreferred.yml
|
910
|
+
- spec/support/max_staleness/ReplicaSetNoPrimary/Secondary.yml
|
911
|
+
- spec/support/max_staleness/ReplicaSetNoPrimary/PrimaryPreferred_tags.yml
|
912
|
+
- spec/support/max_staleness/ReplicaSetNoPrimary/LastUpdateTime.yml
|
913
|
+
- spec/support/max_staleness/ReplicaSetNoPrimary/Incompatible.yml
|
914
|
+
- spec/support/max_staleness/ReplicaSetNoPrimary/NoKnownServers.yml
|
915
|
+
- spec/support/max_staleness/ReplicaSetNoPrimary/Nearest.yml
|
916
|
+
- spec/support/max_staleness/ReplicaSetNoPrimary/DefaultNoMaxStaleness.yml
|
917
|
+
- spec/support/max_staleness/ReplicaSetNoPrimary/SecondaryPreferred_tags.yml
|
918
|
+
- spec/support/max_staleness/Sharded/Incompatible.yml
|
919
|
+
- spec/support/max_staleness/Sharded/SmallMaxStaleness.yml
|
920
|
+
- spec/support/max_staleness/Unknown/SmallMaxStaleness.yml
|
921
|
+
- spec/support/max_staleness/ReplicaSetWithPrimary/ZeroMaxStaleness.yml
|
922
|
+
- spec/support/max_staleness/ReplicaSetWithPrimary/Nearest_tags.yml
|
923
|
+
- spec/support/max_staleness/ReplicaSetWithPrimary/PrimaryPreferred.yml
|
924
|
+
- spec/support/max_staleness/ReplicaSetWithPrimary/Nearest2.yml
|
925
|
+
- spec/support/max_staleness/ReplicaSetWithPrimary/SecondaryPreferred.yml
|
926
|
+
- spec/support/max_staleness/ReplicaSetWithPrimary/MaxStalenessTooSmall.yml
|
927
|
+
- spec/support/max_staleness/ReplicaSetWithPrimary/Secondary_tags2.yml
|
928
|
+
- spec/support/max_staleness/ReplicaSetWithPrimary/LongHeartbeat2.yml
|
929
|
+
- spec/support/max_staleness/ReplicaSetWithPrimary/SecondaryPreferred_tags2.yml
|
930
|
+
- spec/support/max_staleness/ReplicaSetWithPrimary/LastUpdateTime.yml
|
931
|
+
- spec/support/max_staleness/ReplicaSetWithPrimary/PrimaryPreferred_incompatible.yml
|
932
|
+
- spec/support/max_staleness/ReplicaSetWithPrimary/Incompatible.yml
|
933
|
+
- spec/support/max_staleness/ReplicaSetWithPrimary/Secondary_tags.yml
|
934
|
+
- spec/support/max_staleness/ReplicaSetWithPrimary/Nearest.yml
|
935
|
+
- spec/support/max_staleness/ReplicaSetWithPrimary/DefaultNoMaxStaleness.yml
|
936
|
+
- spec/support/max_staleness/ReplicaSetWithPrimary/SecondaryPreferred_tags.yml
|
937
|
+
- spec/support/max_staleness/ReplicaSetWithPrimary/MaxStalenessWithModePrimary.yml
|
938
|
+
- spec/support/max_staleness/ReplicaSetWithPrimary/LongHeartbeat.yml
|
939
|
+
- spec/support/server_discovery_and_monitoring.rb
|
940
|
+
- spec/support/server_selection/selection/Single/read/SecondaryPreferred.yml
|
941
|
+
- spec/support/server_selection/selection/ReplicaSetNoPrimary/read/Primary.yml
|
942
|
+
- spec/support/server_selection/selection/ReplicaSetNoPrimary/read/PrimaryPreferred.yml
|
943
|
+
- spec/support/server_selection/selection/ReplicaSetNoPrimary/read/SecondaryPreferred.yml
|
944
|
+
- spec/support/server_selection/selection/ReplicaSetNoPrimary/read/Nearest_non_matching.yml
|
945
|
+
- spec/support/server_selection/selection/ReplicaSetNoPrimary/read/Secondary_multi_tags2.yml
|
946
|
+
- spec/support/server_selection/selection/ReplicaSetNoPrimary/read/SecondaryPreferred_non_matching.yml
|
947
|
+
- spec/support/server_selection/selection/ReplicaSetNoPrimary/read/PrimaryPreferred_non_matching.yml
|
948
|
+
- spec/support/server_selection/selection/ReplicaSetNoPrimary/read/Nearest_multiple.yml
|
949
|
+
- spec/support/server_selection/selection/ReplicaSetNoPrimary/read/Secondary_non_matching.yml
|
950
|
+
- spec/support/server_selection/selection/ReplicaSetNoPrimary/read/Secondary.yml
|
951
|
+
- spec/support/server_selection/selection/ReplicaSetNoPrimary/read/PossiblePrimaryNearest.yml
|
952
|
+
- spec/support/server_selection/selection/ReplicaSetNoPrimary/read/Secondary_multi_tags.yml
|
953
|
+
- spec/support/server_selection/selection/ReplicaSetNoPrimary/read/Nearest.yml
|
954
|
+
- spec/support/server_selection/selection/ReplicaSetNoPrimary/read/PossiblePrimary.yml
|
955
|
+
- spec/support/server_selection/selection/Sharded/read/Primary.yml
|
956
|
+
- spec/support/server_selection/selection/Sharded/read/PrimaryPreferred.yml
|
957
|
+
- spec/support/server_selection/selection/Sharded/read/SecondaryPreferred.yml
|
958
|
+
- spec/support/server_selection/selection/Sharded/read/Secondary.yml
|
959
|
+
- spec/support/server_selection/selection/Sharded/read/Nearest.yml
|
960
|
+
- spec/support/server_selection/selection/Unknown/read/SecondaryPreferred.yml
|
961
|
+
- spec/support/server_selection/selection/ReplicaSetWithPrimary/read/Primary.yml
|
962
|
+
- spec/support/server_selection/selection/ReplicaSetWithPrimary/read/PrimaryPreferred.yml
|
963
|
+
- spec/support/server_selection/selection/ReplicaSetWithPrimary/read/SecondaryPreferred.yml
|
964
|
+
- spec/support/server_selection/selection/ReplicaSetWithPrimary/read/Nearest_non_matching.yml
|
965
|
+
- spec/support/server_selection/selection/ReplicaSetWithPrimary/read/SecondaryPreferred_non_matching.yml
|
966
|
+
- spec/support/server_selection/selection/ReplicaSetWithPrimary/read/PrimaryPreferred_non_matching.yml
|
967
|
+
- spec/support/server_selection/selection/ReplicaSetWithPrimary/read/Nearest_multiple.yml
|
968
|
+
- spec/support/server_selection/selection/ReplicaSetWithPrimary/read/Secondary_non_matching.yml
|
969
|
+
- spec/support/server_selection/selection/ReplicaSetWithPrimary/read/Secondary.yml
|
970
|
+
- spec/support/server_selection/selection/ReplicaSetWithPrimary/read/Nearest.yml
|
971
|
+
- spec/support/server_selection/selection/ReplicaSetWithPrimary/read/SecondaryPreferred_tags.yml
|
972
|
+
- spec/support/server_selection/rtt/value_test_2.yml
|
973
|
+
- spec/support/server_selection/rtt/value_test_1.yml
|
974
|
+
- spec/support/server_selection/rtt/value_test_4.yml
|
975
|
+
- spec/support/server_selection/rtt/value_test_5.yml
|
976
|
+
- spec/support/server_selection/rtt/first_value_zero.yml
|
977
|
+
- spec/support/server_selection/rtt/first_value.yml
|
978
|
+
- spec/support/server_selection/rtt/value_test_3.yml
|
979
|
+
- spec/support/server_selection.rb
|
980
|
+
- spec/support/certificates/password_protected.pem
|
981
|
+
- spec/support/certificates/client_key_encrypted.pem
|
982
|
+
- spec/support/certificates/ca.pem
|
983
|
+
- spec/support/certificates/server.pem
|
984
|
+
- spec/support/certificates/crl_client_revoked.pem
|
985
|
+
- spec/support/certificates/client.pem
|
986
|
+
- spec/support/certificates/client_key.pem
|
987
|
+
- spec/support/certificates/crl.pem
|
988
|
+
- spec/support/certificates/client_cert.pem
|
1082
989
|
- spec/support/connection_string_tests/valid-host_identifiers.yml
|
1083
|
-
- spec/support/connection_string_tests/valid-
|
990
|
+
- spec/support/connection_string_tests/valid-warnings.yml
|
991
|
+
- spec/support/connection_string_tests/valid-db-with-dotted-name.yml
|
992
|
+
- spec/support/connection_string_tests/invalid-uris.yml
|
1084
993
|
- spec/support/connection_string_tests/valid-unix_socket-absolute.yml
|
1085
994
|
- spec/support/connection_string_tests/valid-unix_socket-relative.yml
|
1086
|
-
- spec/support/connection_string_tests/valid-
|
1087
|
-
- spec/support/
|
995
|
+
- spec/support/connection_string_tests/valid-auth.yml
|
996
|
+
- spec/support/connection_string_tests/valid-options.yml
|
997
|
+
- spec/support/constraints.rb
|
998
|
+
- spec/support/connection_string.rb
|
999
|
+
- spec/support/change_streams_tests/change-streams-errors.yml
|
1000
|
+
- spec/support/change_streams_tests/change-streams.yml
|
1001
|
+
- spec/support/sdam_monitoring.rb
|
1002
|
+
- spec/support/sdam_monitoring/standalone.yml
|
1003
|
+
- spec/support/sdam_monitoring/replica_set_with_no_primary.yml
|
1004
|
+
- spec/support/sdam_monitoring/replica_set_with_removal.yml
|
1005
|
+
- spec/support/sdam_monitoring/replica_set_with_primary.yml
|
1006
|
+
- spec/support/sdam_monitoring/required_replica_set.yml
|
1007
|
+
- spec/support/dns_seedlist_discovery_tests/misformatted-option.yml
|
1008
|
+
- spec/support/dns_seedlist_discovery_tests/no-results.yml
|
1009
|
+
- spec/support/dns_seedlist_discovery_tests/txt-record-with-unallowed-option.yml
|
1010
|
+
- spec/support/dns_seedlist_discovery_tests/one-result-default-port.yml
|
1011
|
+
- spec/support/dns_seedlist_discovery_tests/two-results-default-port.yml
|
1012
|
+
- spec/support/dns_seedlist_discovery_tests/parent-part-mismatch3.yml
|
1013
|
+
- spec/support/dns_seedlist_discovery_tests/not-enough-parts.yml
|
1014
|
+
- spec/support/dns_seedlist_discovery_tests/parent-part-mismatch2.yml
|
1015
|
+
- spec/support/dns_seedlist_discovery_tests/one-txt-record-multiple-strings.yml
|
1016
|
+
- spec/support/dns_seedlist_discovery_tests/two-txt-records.yml
|
1017
|
+
- spec/support/dns_seedlist_discovery_tests/longer-parent-in-return.yml
|
1018
|
+
- spec/support/dns_seedlist_discovery_tests/parent-part-mismatch4.yml
|
1019
|
+
- spec/support/dns_seedlist_discovery_tests/parent-part-mismatch1.yml
|
1020
|
+
- spec/support/dns_seedlist_discovery_tests/uri-with-two-hosts.yml
|
1021
|
+
- spec/support/dns_seedlist_discovery_tests/txt-record-with-overridden-ssl-option.yml
|
1022
|
+
- spec/support/dns_seedlist_discovery_tests/returned-parent-wrong.yml
|
1023
|
+
- spec/support/dns_seedlist_discovery_tests/txt-record-with-overridden-uri-option.yml
|
1024
|
+
- spec/support/dns_seedlist_discovery_tests/txt-record-not-allowed-option.yml
|
1025
|
+
- spec/support/dns_seedlist_discovery_tests/uri-with-port.yml
|
1026
|
+
- spec/support/dns_seedlist_discovery_tests/two-results-nonstandard-port.yml
|
1027
|
+
- spec/support/dns_seedlist_discovery_tests/returned-parent-too-short.yml
|
1028
|
+
- spec/support/dns_seedlist_discovery_tests/parent-part-mismatch5.yml
|
1029
|
+
- spec/support/dns_seedlist_discovery_tests/one-txt-record.yml
|
1030
|
+
- spec/support/shared/protocol.rb
|
1031
|
+
- spec/support/shared/server_selector.rb
|
1032
|
+
- spec/support/shared/session.rb
|
1033
|
+
- spec/support/travis.rb
|
1034
|
+
- spec/support/authorization.rb
|
1088
1035
|
- spec/support/crud/read.rb
|
1089
1036
|
- spec/support/crud/write.rb
|
1090
|
-
- spec/support/crud_tests/
|
1091
|
-
- spec/support/crud_tests/
|
1092
|
-
- spec/support/crud_tests/
|
1093
|
-
- spec/support/crud_tests/read/count-collation.yml
|
1094
|
-
- spec/support/crud_tests/read/count.yml
|
1095
|
-
- spec/support/crud_tests/read/distinct-collation.yml
|
1096
|
-
- spec/support/crud_tests/read/distinct.yml
|
1097
|
-
- spec/support/crud_tests/read/find-collation.yml
|
1098
|
-
- spec/support/crud_tests/read/find.yml
|
1099
|
-
- spec/support/crud_tests/write/bulkWrite-arrayFilters.yml
|
1100
|
-
- spec/support/crud_tests/write/deleteMany-collation.yml
|
1037
|
+
- spec/support/crud_tests/write/findOneAndUpdate-collation.yml
|
1038
|
+
- spec/support/crud_tests/write/findOneAndReplace-upsert.yml
|
1039
|
+
- spec/support/crud_tests/write/findOneAndDelete.yml
|
1101
1040
|
- spec/support/crud_tests/write/deleteMany.yml
|
1102
1041
|
- spec/support/crud_tests/write/deleteOne-collation.yml
|
1103
|
-
- spec/support/crud_tests/write/deleteOne.yml
|
1104
|
-
- spec/support/crud_tests/write/findOneAndDelete-collation.yml
|
1105
|
-
- spec/support/crud_tests/write/findOneAndDelete.yml
|
1106
|
-
- spec/support/crud_tests/write/findOneAndReplace-collation.yml
|
1107
|
-
- spec/support/crud_tests/write/findOneAndReplace-upsert.yml
|
1108
|
-
- spec/support/crud_tests/write/findOneAndReplace-upsert_pre_2.6.yml
|
1109
|
-
- spec/support/crud_tests/write/findOneAndReplace.yml
|
1110
|
-
- spec/support/crud_tests/write/findOneAndUpdate-arrayFilters.yml
|
1111
|
-
- spec/support/crud_tests/write/findOneAndUpdate-collation.yml
|
1112
|
-
- spec/support/crud_tests/write/findOneAndUpdate.yml
|
1113
|
-
- spec/support/crud_tests/write/insertMany.yml
|
1114
|
-
- spec/support/crud_tests/write/insertOne.yml
|
1115
|
-
- spec/support/crud_tests/write/replaceOne-collation.yml
|
1116
1042
|
- spec/support/crud_tests/write/replaceOne-pre_2.6.yml
|
1117
|
-
- spec/support/crud_tests/write/
|
1118
|
-
- spec/support/crud_tests/write/
|
1043
|
+
- spec/support/crud_tests/write/deleteMany-collation.yml
|
1044
|
+
- spec/support/crud_tests/write/findOneAndDelete-collation.yml
|
1045
|
+
- spec/support/crud_tests/write/updateOne.yml
|
1046
|
+
- spec/support/crud_tests/write/bulkWrite-arrayFilters.yml
|
1119
1047
|
- spec/support/crud_tests/write/updateMany-arrayFilters.yml
|
1048
|
+
- spec/support/crud_tests/write/insertOne.yml
|
1049
|
+
- spec/support/crud_tests/write/findOneAndReplace.yml
|
1050
|
+
- spec/support/crud_tests/write/updateOne-pre_2.6.yml
|
1120
1051
|
- spec/support/crud_tests/write/updateMany-collation.yml
|
1052
|
+
- spec/support/crud_tests/write/replaceOne.yml
|
1053
|
+
- spec/support/crud_tests/write/findOneAndUpdate.yml
|
1054
|
+
- spec/support/crud_tests/write/replaceOne-collation.yml
|
1055
|
+
- spec/support/crud_tests/write/updateOne-collation.yml
|
1056
|
+
- spec/support/crud_tests/write/updateOne-arrayFilters.yml
|
1121
1057
|
- spec/support/crud_tests/write/updateMany-pre_2.6.yml
|
1058
|
+
- spec/support/crud_tests/write/findOneAndReplace-upsert_pre_2.6.yml
|
1059
|
+
- spec/support/crud_tests/write/replaceOne-upsert.yml
|
1122
1060
|
- spec/support/crud_tests/write/updateMany.yml
|
1123
|
-
- spec/support/crud_tests/write/
|
1124
|
-
- spec/support/crud_tests/write/
|
1125
|
-
- spec/support/crud_tests/write/
|
1126
|
-
- spec/support/crud_tests/write/
|
1127
|
-
- spec/support/
|
1128
|
-
- spec/support/
|
1129
|
-
- spec/support/
|
1130
|
-
- spec/support/
|
1131
|
-
- spec/support/
|
1132
|
-
- spec/support/
|
1133
|
-
- spec/support/
|
1134
|
-
- spec/support/
|
1135
|
-
- spec/support/
|
1136
|
-
- spec/support/
|
1137
|
-
- spec/support/
|
1138
|
-
- spec/support/
|
1139
|
-
- spec/support/
|
1140
|
-
- spec/support/
|
1141
|
-
- spec/support/
|
1142
|
-
- spec/support/
|
1143
|
-
- spec/support/
|
1144
|
-
- spec/support/
|
1145
|
-
- spec/support/
|
1146
|
-
- spec/support/
|
1147
|
-
- spec/support/
|
1148
|
-
- spec/support/
|
1149
|
-
- spec/support/
|
1150
|
-
- spec/support/
|
1151
|
-
- spec/support/
|
1152
|
-
- spec/support/
|
1153
|
-
- spec/support/
|
1154
|
-
- spec/support/
|
1155
|
-
- spec/support/
|
1156
|
-
- spec/support/
|
1157
|
-
- spec/support/
|
1158
|
-
- spec/support/
|
1159
|
-
- spec/support/
|
1160
|
-
- spec/support/
|
1161
|
-
- spec/support/
|
1162
|
-
- spec/support/max_staleness/ReplicaSetNoPrimary/NoKnownServers.yml
|
1163
|
-
- spec/support/max_staleness/ReplicaSetNoPrimary/PrimaryPreferred.yml
|
1164
|
-
- spec/support/max_staleness/ReplicaSetNoPrimary/PrimaryPreferred_tags.yml
|
1165
|
-
- spec/support/max_staleness/ReplicaSetNoPrimary/Secondary.yml
|
1166
|
-
- spec/support/max_staleness/ReplicaSetNoPrimary/SecondaryPreferred.yml
|
1167
|
-
- spec/support/max_staleness/ReplicaSetNoPrimary/SecondaryPreferred_tags.yml
|
1168
|
-
- spec/support/max_staleness/ReplicaSetNoPrimary/ZeroMaxStaleness.yml
|
1169
|
-
- spec/support/max_staleness/ReplicaSetWithPrimary/DefaultNoMaxStaleness.yml
|
1170
|
-
- spec/support/max_staleness/ReplicaSetWithPrimary/Incompatible.yml
|
1171
|
-
- spec/support/max_staleness/ReplicaSetWithPrimary/LastUpdateTime.yml
|
1172
|
-
- spec/support/max_staleness/ReplicaSetWithPrimary/LongHeartbeat.yml
|
1173
|
-
- spec/support/max_staleness/ReplicaSetWithPrimary/LongHeartbeat2.yml
|
1174
|
-
- spec/support/max_staleness/ReplicaSetWithPrimary/MaxStalenessTooSmall.yml
|
1175
|
-
- spec/support/max_staleness/ReplicaSetWithPrimary/MaxStalenessWithModePrimary.yml
|
1176
|
-
- spec/support/max_staleness/ReplicaSetWithPrimary/Nearest.yml
|
1177
|
-
- spec/support/max_staleness/ReplicaSetWithPrimary/Nearest2.yml
|
1178
|
-
- spec/support/max_staleness/ReplicaSetWithPrimary/Nearest_tags.yml
|
1179
|
-
- spec/support/max_staleness/ReplicaSetWithPrimary/PrimaryPreferred.yml
|
1180
|
-
- spec/support/max_staleness/ReplicaSetWithPrimary/PrimaryPreferred_incompatible.yml
|
1181
|
-
- spec/support/max_staleness/ReplicaSetWithPrimary/SecondaryPreferred.yml
|
1182
|
-
- spec/support/max_staleness/ReplicaSetWithPrimary/SecondaryPreferred_tags.yml
|
1183
|
-
- spec/support/max_staleness/ReplicaSetWithPrimary/SecondaryPreferred_tags2.yml
|
1184
|
-
- spec/support/max_staleness/ReplicaSetWithPrimary/Secondary_tags.yml
|
1185
|
-
- spec/support/max_staleness/ReplicaSetWithPrimary/Secondary_tags2.yml
|
1186
|
-
- spec/support/max_staleness/ReplicaSetWithPrimary/ZeroMaxStaleness.yml
|
1187
|
-
- spec/support/max_staleness/Sharded/Incompatible.yml
|
1188
|
-
- spec/support/max_staleness/Sharded/SmallMaxStaleness.yml
|
1189
|
-
- spec/support/max_staleness/Single/Incompatible.yml
|
1190
|
-
- spec/support/max_staleness/Single/SmallMaxStaleness.yml
|
1191
|
-
- spec/support/max_staleness/Unknown/SmallMaxStaleness.yml
|
1192
|
-
- spec/support/primary_socket.rb
|
1193
|
-
- spec/support/retryable_writes_tests/bulkWrite-serverErrors.yml
|
1194
|
-
- spec/support/retryable_writes_tests/bulkWrite.yml
|
1195
|
-
- spec/support/retryable_writes_tests/deleteOne-serverErrors.yml
|
1196
|
-
- spec/support/retryable_writes_tests/deleteOne.yml
|
1197
|
-
- spec/support/retryable_writes_tests/findOneAndDelete-serverErrors.yml
|
1198
|
-
- spec/support/retryable_writes_tests/findOneAndDelete.yml
|
1199
|
-
- spec/support/retryable_writes_tests/findOneAndReplace-serverErrors.yml
|
1200
|
-
- spec/support/retryable_writes_tests/findOneAndReplace.yml
|
1201
|
-
- spec/support/retryable_writes_tests/findOneAndUpdate-serverErrors.yml
|
1202
|
-
- spec/support/retryable_writes_tests/findOneAndUpdate.yml
|
1203
|
-
- spec/support/retryable_writes_tests/insertMany-serverErrors.yml
|
1204
|
-
- spec/support/retryable_writes_tests/insertMany.yml
|
1205
|
-
- spec/support/retryable_writes_tests/insertOne-serverErrors.yml
|
1206
|
-
- spec/support/retryable_writes_tests/insertOne.yml
|
1207
|
-
- spec/support/retryable_writes_tests/replaceOne-serverErrors.yml
|
1208
|
-
- spec/support/retryable_writes_tests/replaceOne.yml
|
1209
|
-
- spec/support/retryable_writes_tests/updateOne-serverErrors.yml
|
1210
|
-
- spec/support/retryable_writes_tests/updateOne.yml
|
1211
|
-
- spec/support/sdam/rs/compatible.yml
|
1212
|
-
- spec/support/sdam/rs/discover_arbiters.yml
|
1213
|
-
- spec/support/sdam/rs/discover_passives.yml
|
1214
|
-
- spec/support/sdam/rs/discover_primary.yml
|
1215
|
-
- spec/support/sdam/rs/discover_secondary.yml
|
1216
|
-
- spec/support/sdam/rs/discovery.yml
|
1217
|
-
- spec/support/sdam/rs/equal_electionids.yml
|
1218
|
-
- spec/support/sdam/rs/ghost_discovered.yml
|
1219
|
-
- spec/support/sdam/rs/hosts_differ_from_seeds.yml
|
1061
|
+
- spec/support/crud_tests/write/findOneAndUpdate-arrayFilters.yml
|
1062
|
+
- spec/support/crud_tests/write/findOneAndReplace-collation.yml
|
1063
|
+
- spec/support/crud_tests/write/deleteOne.yml
|
1064
|
+
- spec/support/crud_tests/write/insertMany.yml
|
1065
|
+
- spec/support/crud_tests/read/distinct.yml
|
1066
|
+
- spec/support/crud_tests/read/distinct-collation.yml
|
1067
|
+
- spec/support/crud_tests/read/find.yml
|
1068
|
+
- spec/support/crud_tests/read/count.yml
|
1069
|
+
- spec/support/crud_tests/read/aggregate-out.yml
|
1070
|
+
- spec/support/crud_tests/read/find-collation.yml
|
1071
|
+
- spec/support/crud_tests/read/aggregate.yml
|
1072
|
+
- spec/support/crud_tests/read/count-collation.yml
|
1073
|
+
- spec/support/crud_tests/read/aggregate-collation.yml
|
1074
|
+
- spec/support/sdam/single/direct_connection_slave.yml
|
1075
|
+
- spec/support/sdam/single/not_ok_response.yml
|
1076
|
+
- spec/support/sdam/single/too_old.yml
|
1077
|
+
- spec/support/sdam/single/direct_connection_rssecondary.yml
|
1078
|
+
- spec/support/sdam/single/unavailable_seed.yml
|
1079
|
+
- spec/support/sdam/single/standalone_removed.yml
|
1080
|
+
- spec/support/sdam/single/direct_connection_mongos.yml
|
1081
|
+
- spec/support/sdam/single/direct_connection_external_ip.yml
|
1082
|
+
- spec/support/sdam/single/compatible.yml
|
1083
|
+
- spec/support/sdam/single/direct_connection_rsprimary.yml
|
1084
|
+
- spec/support/sdam/single/direct_connection_rsarbiter.yml
|
1085
|
+
- spec/support/sdam/single/too_new.yml
|
1086
|
+
- spec/support/sdam/single/ls_timeout_standalone.yml
|
1087
|
+
- spec/support/sdam/single/direct_connection_standalone.yml
|
1088
|
+
- spec/support/sdam/sharded/too_old.yml
|
1089
|
+
- spec/support/sdam/sharded/compatible.yml
|
1090
|
+
- spec/support/sdam/sharded/multiple_mongoses.yml
|
1091
|
+
- spec/support/sdam/sharded/normalize_uri_case.yml
|
1092
|
+
- spec/support/sdam/sharded/ls_timeout_mongos.yml
|
1093
|
+
- spec/support/sdam/sharded/too_new.yml
|
1094
|
+
- spec/support/sdam/sharded/single_mongos.yml
|
1095
|
+
- spec/support/sdam/sharded/non_mongos_removed.yml
|
1096
|
+
- spec/support/sdam/sharded/mongos_disconnect.yml
|
1097
|
+
- spec/support/sdam/rs/secondary_wrong_set_name.yml
|
1098
|
+
- spec/support/sdam/rs/rsother_discovered.yml
|
1099
|
+
- spec/support/sdam/rs/too_old.yml
|
1220
1100
|
- spec/support/sdam/rs/ls_timeout.yml
|
1221
|
-
- spec/support/sdam/rs/
|
1222
|
-
- spec/support/sdam/rs/member_standalone.yml
|
1223
|
-
- spec/support/sdam/rs/new_primary.yml
|
1224
|
-
- spec/support/sdam/rs/new_primary_new_electionid.yml
|
1225
|
-
- spec/support/sdam/rs/new_primary_new_setversion.yml
|
1226
|
-
- spec/support/sdam/rs/new_primary_wrong_set_name.yml
|
1101
|
+
- spec/support/sdam/rs/discover_secondary.yml
|
1227
1102
|
- spec/support/sdam/rs/non_rs_member.yml
|
1228
|
-
- spec/support/sdam/rs/
|
1229
|
-
- spec/support/sdam/rs/
|
1230
|
-
- spec/support/sdam/rs/
|
1231
|
-
- spec/support/sdam/rs/primary_becomes_standalone.yml
|
1232
|
-
- spec/support/sdam/rs/primary_changes_set_name.yml
|
1233
|
-
- spec/support/sdam/rs/primary_disconnect.yml
|
1103
|
+
- spec/support/sdam/rs/discover_primary.yml
|
1104
|
+
- spec/support/sdam/rs/wrong_set_name.yml
|
1105
|
+
- spec/support/sdam/rs/secondary_ignore_ok_0.yml
|
1234
1106
|
- spec/support/sdam/rs/primary_disconnect_electionid.yml
|
1235
|
-
- spec/support/sdam/rs/primary_disconnect_setversion.yml
|
1236
|
-
- spec/support/sdam/rs/primary_hint_from_secondary_with_mismatched_me.yml
|
1237
|
-
- spec/support/sdam/rs/primary_mismatched_me.yml
|
1238
|
-
- spec/support/sdam/rs/primary_reports_new_member.yml
|
1239
|
-
- spec/support/sdam/rs/primary_to_no_primary_mismatched_me.yml
|
1240
|
-
- spec/support/sdam/rs/primary_wrong_set_name.yml
|
1241
|
-
- spec/support/sdam/rs/response_from_removed.yml
|
1242
|
-
- spec/support/sdam/rs/rsother_discovered.yml
|
1243
1107
|
- spec/support/sdam/rs/sec_not_auth.yml
|
1244
|
-
- spec/support/sdam/rs/secondary_mismatched_me.yml
|
1245
|
-
- spec/support/sdam/rs/secondary_wrong_set_name.yml
|
1246
|
-
- spec/support/sdam/rs/secondary_wrong_set_name_with_primary.yml
|
1247
1108
|
- spec/support/sdam/rs/set_version_without_electionid.yml
|
1109
|
+
- spec/support/sdam/rs/secondary_mismatched_me.yml
|
1248
1110
|
- spec/support/sdam/rs/setversion_without_electionid.yml
|
1249
|
-
- spec/support/sdam/rs/stepdown_change_set_name.yml
|
1250
|
-
- spec/support/sdam/rs/too_new.yml
|
1251
|
-
- spec/support/sdam/rs/too_old.yml
|
1252
|
-
- spec/support/sdam/rs/unexpected_mongos.yml
|
1253
1111
|
- spec/support/sdam/rs/use_setversion_without_electionid.yml
|
1254
|
-
- spec/support/sdam/rs/
|
1255
|
-
- spec/support/sdam/rs/
|
1256
|
-
- spec/support/sdam/
|
1257
|
-
- spec/support/sdam/
|
1258
|
-
- spec/support/sdam/
|
1259
|
-
- spec/support/sdam/
|
1260
|
-
- spec/support/sdam/
|
1261
|
-
- spec/support/sdam/
|
1262
|
-
- spec/support/sdam/
|
1263
|
-
- spec/support/sdam/
|
1264
|
-
- spec/support/sdam/
|
1265
|
-
- spec/support/sdam/
|
1266
|
-
- spec/support/sdam/
|
1267
|
-
- spec/support/sdam/
|
1268
|
-
- spec/support/sdam/
|
1269
|
-
- spec/support/sdam/
|
1270
|
-
- spec/support/sdam/
|
1271
|
-
- spec/support/sdam/
|
1272
|
-
- spec/support/sdam/
|
1273
|
-
- spec/support/sdam/
|
1274
|
-
- spec/support/sdam/
|
1275
|
-
- spec/support/sdam/
|
1276
|
-
- spec/support/sdam/
|
1277
|
-
- spec/support/sdam/
|
1278
|
-
- spec/support/sdam/
|
1279
|
-
- spec/support/
|
1280
|
-
- spec/support/
|
1281
|
-
- spec/support/
|
1282
|
-
- spec/support/
|
1283
|
-
- spec/support/
|
1284
|
-
- spec/support/
|
1285
|
-
- spec/support/server_selection.rb
|
1286
|
-
- spec/support/server_selection/rtt/first_value.yml
|
1287
|
-
- spec/support/server_selection/rtt/first_value_zero.yml
|
1288
|
-
- spec/support/server_selection/rtt/value_test_1.yml
|
1289
|
-
- spec/support/server_selection/rtt/value_test_2.yml
|
1290
|
-
- spec/support/server_selection/rtt/value_test_3.yml
|
1291
|
-
- spec/support/server_selection/rtt/value_test_4.yml
|
1292
|
-
- spec/support/server_selection/rtt/value_test_5.yml
|
1293
|
-
- spec/support/server_selection/selection/ReplicaSetNoPrimary/read/Nearest.yml
|
1294
|
-
- spec/support/server_selection/selection/ReplicaSetNoPrimary/read/Nearest_multiple.yml
|
1295
|
-
- spec/support/server_selection/selection/ReplicaSetNoPrimary/read/Nearest_non_matching.yml
|
1296
|
-
- spec/support/server_selection/selection/ReplicaSetNoPrimary/read/PossiblePrimary.yml
|
1297
|
-
- spec/support/server_selection/selection/ReplicaSetNoPrimary/read/PossiblePrimaryNearest.yml
|
1298
|
-
- spec/support/server_selection/selection/ReplicaSetNoPrimary/read/Primary.yml
|
1299
|
-
- spec/support/server_selection/selection/ReplicaSetNoPrimary/read/PrimaryPreferred.yml
|
1300
|
-
- spec/support/server_selection/selection/ReplicaSetNoPrimary/read/PrimaryPreferred_non_matching.yml
|
1301
|
-
- spec/support/server_selection/selection/ReplicaSetNoPrimary/read/Secondary.yml
|
1302
|
-
- spec/support/server_selection/selection/ReplicaSetNoPrimary/read/SecondaryPreferred.yml
|
1303
|
-
- spec/support/server_selection/selection/ReplicaSetNoPrimary/read/SecondaryPreferred_non_matching.yml
|
1304
|
-
- spec/support/server_selection/selection/ReplicaSetNoPrimary/read/Secondary_multi_tags.yml
|
1305
|
-
- spec/support/server_selection/selection/ReplicaSetNoPrimary/read/Secondary_multi_tags2.yml
|
1306
|
-
- spec/support/server_selection/selection/ReplicaSetNoPrimary/read/Secondary_non_matching.yml
|
1307
|
-
- spec/support/server_selection/selection/ReplicaSetWithPrimary/read/Nearest.yml
|
1308
|
-
- spec/support/server_selection/selection/ReplicaSetWithPrimary/read/Nearest_multiple.yml
|
1309
|
-
- spec/support/server_selection/selection/ReplicaSetWithPrimary/read/Nearest_non_matching.yml
|
1310
|
-
- spec/support/server_selection/selection/ReplicaSetWithPrimary/read/Primary.yml
|
1311
|
-
- spec/support/server_selection/selection/ReplicaSetWithPrimary/read/PrimaryPreferred.yml
|
1312
|
-
- spec/support/server_selection/selection/ReplicaSetWithPrimary/read/PrimaryPreferred_non_matching.yml
|
1313
|
-
- spec/support/server_selection/selection/ReplicaSetWithPrimary/read/Secondary.yml
|
1314
|
-
- spec/support/server_selection/selection/ReplicaSetWithPrimary/read/SecondaryPreferred.yml
|
1315
|
-
- spec/support/server_selection/selection/ReplicaSetWithPrimary/read/SecondaryPreferred_non_matching.yml
|
1316
|
-
- spec/support/server_selection/selection/ReplicaSetWithPrimary/read/SecondaryPreferred_tags.yml
|
1317
|
-
- spec/support/server_selection/selection/ReplicaSetWithPrimary/read/Secondary_non_matching.yml
|
1318
|
-
- spec/support/server_selection/selection/Sharded/read/Nearest.yml
|
1319
|
-
- spec/support/server_selection/selection/Sharded/read/Primary.yml
|
1320
|
-
- spec/support/server_selection/selection/Sharded/read/PrimaryPreferred.yml
|
1321
|
-
- spec/support/server_selection/selection/Sharded/read/Secondary.yml
|
1322
|
-
- spec/support/server_selection/selection/Sharded/read/SecondaryPreferred.yml
|
1323
|
-
- spec/support/server_selection/selection/Single/read/SecondaryPreferred.yml
|
1324
|
-
- spec/support/server_selection/selection/Unknown/read/SecondaryPreferred.yml
|
1112
|
+
- spec/support/sdam/rs/compatible.yml
|
1113
|
+
- spec/support/sdam/rs/primary_disconnect.yml
|
1114
|
+
- spec/support/sdam/rs/new_primary.yml
|
1115
|
+
- spec/support/sdam/rs/discovery.yml
|
1116
|
+
- spec/support/sdam/rs/normalize_case.yml
|
1117
|
+
- spec/support/sdam/rs/primary_becomes_standalone.yml
|
1118
|
+
- spec/support/sdam/rs/equal_electionids.yml
|
1119
|
+
- spec/support/sdam/rs/discover_passives.yml
|
1120
|
+
- spec/support/sdam/rs/secondary_wrong_set_name_with_primary.yml
|
1121
|
+
- spec/support/sdam/rs/primary_wrong_set_name.yml
|
1122
|
+
- spec/support/sdam/rs/primary_changes_set_name.yml
|
1123
|
+
- spec/support/sdam/rs/primary_to_no_primary_mismatched_me.yml
|
1124
|
+
- spec/support/sdam/rs/new_primary_wrong_set_name.yml
|
1125
|
+
- spec/support/sdam/rs/too_new.yml
|
1126
|
+
- spec/support/sdam/rs/member_standalone.yml
|
1127
|
+
- spec/support/sdam/rs/stepdown_change_set_name.yml
|
1128
|
+
- spec/support/sdam/rs/hosts_differ_from_seeds.yml
|
1129
|
+
- spec/support/sdam/rs/unexpected_mongos.yml
|
1130
|
+
- spec/support/sdam/rs/new_primary_new_setversion.yml
|
1131
|
+
- spec/support/sdam/rs/member_reconfig.yml
|
1132
|
+
- spec/support/sdam/rs/primary_mismatched_me.yml
|
1133
|
+
- spec/support/sdam/rs/response_from_removed.yml
|
1134
|
+
- spec/support/sdam/rs/ghost_discovered.yml
|
1135
|
+
- spec/support/sdam/rs/new_primary_new_electionid.yml
|
1136
|
+
- spec/support/sdam/rs/primary_hint_from_secondary_with_mismatched_me.yml
|
1137
|
+
- spec/support/sdam/rs/normalize_case_me.yml
|
1138
|
+
- spec/support/sdam/rs/primary_reports_new_member.yml
|
1139
|
+
- spec/support/sdam/rs/null_election_id.yml
|
1140
|
+
- spec/support/sdam/rs/primary_disconnect_setversion.yml
|
1141
|
+
- spec/support/sdam/rs/discover_arbiters.yml
|
1142
|
+
- spec/support/gridfs.rb
|
1325
1143
|
- spec/support/server_selection_rtt.rb
|
1326
|
-
- spec/support/
|
1327
|
-
- spec/support/
|
1328
|
-
- spec/support/
|
1329
|
-
- spec/support/
|
1330
|
-
- spec/support/
|
1331
|
-
- spec/support/
|
1332
|
-
- spec/support/
|
1333
|
-
- spec/support/
|
1334
|
-
- spec/support/
|
1335
|
-
- spec/support/
|
1144
|
+
- spec/support/matchers.rb
|
1145
|
+
- spec/support/command_monitoring.rb
|
1146
|
+
- spec/support/primary_socket.rb
|
1147
|
+
- spec/support/spec_config.rb
|
1148
|
+
- spec/support/event_subscriber.rb
|
1149
|
+
- spec/support/retryable_writes_tests/deleteOne-serverErrors.yml
|
1150
|
+
- spec/support/retryable_writes_tests/findOneAndDelete.yml
|
1151
|
+
- spec/support/retryable_writes_tests/replaceOne-serverErrors.yml
|
1152
|
+
- spec/support/retryable_writes_tests/findOneAndUpdate-serverErrors.yml
|
1153
|
+
- spec/support/retryable_writes_tests/insertOne-serverErrors.yml
|
1154
|
+
- spec/support/retryable_writes_tests/bulkWrite.yml
|
1155
|
+
- spec/support/retryable_writes_tests/insertMany-serverErrors.yml
|
1156
|
+
- spec/support/retryable_writes_tests/findOneAndDelete-serverErrors.yml
|
1157
|
+
- spec/support/retryable_writes_tests/updateOne.yml
|
1158
|
+
- spec/support/retryable_writes_tests/bulkWrite-serverErrors.yml
|
1159
|
+
- spec/support/retryable_writes_tests/insertOne.yml
|
1160
|
+
- spec/support/retryable_writes_tests/findOneAndReplace.yml
|
1161
|
+
- spec/support/retryable_writes_tests/replaceOne.yml
|
1162
|
+
- spec/support/retryable_writes_tests/findOneAndUpdate.yml
|
1163
|
+
- spec/support/retryable_writes_tests/findOneAndReplace-serverErrors.yml
|
1164
|
+
- spec/support/retryable_writes_tests/updateOne-serverErrors.yml
|
1165
|
+
- spec/support/retryable_writes_tests/deleteOne.yml
|
1166
|
+
- spec/support/retryable_writes_tests/insertMany.yml
|
1167
|
+
- spec/support/crud.rb
|
1168
|
+
- spec/support/gridfs_tests/download_by_name.yml
|
1169
|
+
- spec/support/gridfs_tests/download.yml
|
1170
|
+
- spec/support/gridfs_tests/upload.yml
|
1171
|
+
- spec/support/gridfs_tests/delete.yml
|
1172
|
+
- spec/support/transactions.rb
|
1336
1173
|
- spec/support/transactions_tests/errors.yml
|
1337
|
-
- spec/support/transactions_tests/
|
1338
|
-
- spec/support/transactions_tests/findOneAndReplace.yml
|
1339
|
-
- spec/support/transactions_tests/findOneAndUpdate.yml
|
1340
|
-
- spec/support/transactions_tests/insert.yml
|
1174
|
+
- spec/support/transactions_tests/update.yml
|
1341
1175
|
- spec/support/transactions_tests/isolation.yml
|
1176
|
+
- spec/support/transactions_tests/transaction-options.yml
|
1177
|
+
- spec/support/transactions_tests/write-concern.yml
|
1342
1178
|
- spec/support/transactions_tests/read-pref.yml
|
1179
|
+
- spec/support/transactions_tests/findOneAndDelete.yml
|
1180
|
+
- spec/support/transactions_tests/error-labels.yml
|
1181
|
+
- spec/support/transactions_tests/retryable-commit.yml
|
1182
|
+
- spec/support/transactions_tests/bulk.yml
|
1343
1183
|
- spec/support/transactions_tests/reads.yml
|
1184
|
+
- spec/support/transactions_tests/findOneAndReplace.yml
|
1185
|
+
- spec/support/transactions_tests/findOneAndUpdate.yml
|
1186
|
+
- spec/support/transactions_tests/abort.yml
|
1344
1187
|
- spec/support/transactions_tests/retryable-abort.yml
|
1345
|
-
- spec/support/transactions_tests/
|
1188
|
+
- spec/support/transactions_tests/insert.yml
|
1346
1189
|
- spec/support/transactions_tests/retryable-writes.yml
|
1190
|
+
- spec/support/transactions_tests/causal-consistency.yml
|
1347
1191
|
- spec/support/transactions_tests/run-command.yml
|
1348
|
-
- spec/support/transactions_tests/
|
1349
|
-
- spec/support/transactions_tests/
|
1350
|
-
- spec/support/
|
1351
|
-
- spec/support/travis.rb
|
1352
|
-
- spec/support/server_discovery_and_monitoring.rb
|
1353
|
-
- spec/support/authorization.rb
|
1354
|
-
- spec/support/constraints.rb
|
1192
|
+
- spec/support/transactions_tests/delete.yml
|
1193
|
+
- spec/support/transactions_tests/commit.yml
|
1194
|
+
- spec/support/transactions/operation.rb
|
1355
1195
|
- spec/support/lite_constraints.rb
|
1356
|
-
- spec/
|
1357
|
-
- spec/
|
1196
|
+
- spec/integration/operation_failure_code_spec.rb
|
1197
|
+
- spec/integration/shell_examples_spec.rb
|
1198
|
+
- spec/integration/retryable_writes_spec.rb
|
1199
|
+
- spec/integration/change_stream_examples_spec.rb
|
1200
|
+
- spec/integration/transactions_examples_spec.rb
|
1201
|
+
- spec/integration/command_monitoring_spec.rb
|
1202
|
+
- spec/integration/reconnect_spec.rb
|
1203
|
+
- spec/integration/bulk_insert_spec.rb
|
1204
|
+
- spec/integration/change_stream_spec.rb
|
1205
|
+
- spec/integration/docs_examples_spec.rb
|
1206
|
+
- spec/mongo/cursor_spec.rb
|
1207
|
+
- spec/mongo/collection_spec.rb
|
1208
|
+
- spec/mongo/server/monitor/connection_spec.rb
|
1209
|
+
- spec/mongo/server/connection_spec.rb
|
1210
|
+
- spec/mongo/server/monitor_spec.rb
|
1211
|
+
- spec/mongo/server/description/inspector/description_changed_spec.rb
|
1212
|
+
- spec/mongo/server/description/inspector/primary_elected_spec.rb
|
1213
|
+
- spec/mongo/server/description/features_spec.rb
|
1214
|
+
- spec/mongo/server/description_spec.rb
|
1215
|
+
- spec/mongo/server/connection_pool/queue_spec.rb
|
1216
|
+
- spec/mongo/server/connection_pool_spec.rb
|
1217
|
+
- spec/mongo/session_spec.rb
|
1218
|
+
- spec/mongo/grid/stream_spec.rb
|
1219
|
+
- spec/mongo/grid/stream/write_spec.rb
|
1220
|
+
- spec/mongo/grid/stream/read_spec.rb
|
1221
|
+
- spec/mongo/grid/file_spec.rb
|
1222
|
+
- spec/mongo/grid/file/chunk_spec.rb
|
1223
|
+
- spec/mongo/grid/file/info_spec.rb
|
1224
|
+
- spec/mongo/grid/fs_bucket_spec.rb
|
1225
|
+
- spec/mongo/logger_spec.rb
|
1226
|
+
- spec/mongo/cursor/builder/op_get_more_spec.rb
|
1227
|
+
- spec/mongo/cursor/builder/get_more_command_spec.rb
|
1228
|
+
- spec/mongo/server_selector/primary_spec.rb
|
1229
|
+
- spec/mongo/server_selector/secondary_spec.rb
|
1230
|
+
- spec/mongo/server_selector/nearest_spec.rb
|
1231
|
+
- spec/mongo/server_selector/secondary_preferred_spec.rb
|
1232
|
+
- spec/mongo/server_selector/primary_preferred_spec.rb
|
1233
|
+
- spec/mongo/error/operation_failure_spec.rb
|
1234
|
+
- spec/mongo/error/parser_spec.rb
|
1235
|
+
- spec/mongo/retryable_spec.rb
|
1236
|
+
- spec/mongo/write_concern_spec.rb
|
1237
|
+
- spec/mongo/lint_spec.rb
|
1238
|
+
- spec/mongo/dbref_spec.rb
|
1239
|
+
- spec/mongo/options/redacted_spec.rb
|
1240
|
+
- spec/mongo/client_spec.rb
|
1241
|
+
- spec/mongo/server_spec.rb
|
1242
|
+
- spec/mongo/monitoring/command_log_subscriber_spec.rb
|
1243
|
+
- spec/mongo/monitoring/event/command_succeeded_spec.rb
|
1244
|
+
- spec/mongo/monitoring/event/command_failed_spec.rb
|
1245
|
+
- spec/mongo/monitoring/event/command_started_spec.rb
|
1246
|
+
- spec/mongo/monitoring/event/secure_spec.rb
|
1247
|
+
- spec/mongo/socket/unix_spec.rb
|
1248
|
+
- spec/mongo/socket/ssl_spec.rb
|
1249
|
+
- spec/mongo/server_selector_spec.rb
|
1250
|
+
- spec/mongo/address/ipv6_spec.rb
|
1251
|
+
- spec/mongo/address/ipv4_spec.rb
|
1252
|
+
- spec/mongo/address/unix_spec.rb
|
1253
|
+
- spec/mongo/uri_spec.rb
|
1254
|
+
- spec/mongo/monitoring_spec.rb
|
1255
|
+
- spec/mongo/socket_spec.rb
|
1256
|
+
- spec/mongo/collection/view_spec.rb
|
1257
|
+
- spec/mongo/collection/view/explainable_spec.rb
|
1258
|
+
- spec/mongo/collection/view/aggregation_spec.rb
|
1259
|
+
- spec/mongo/collection/view/map_reduce_spec.rb
|
1260
|
+
- spec/mongo/collection/view/immutable_spec.rb
|
1261
|
+
- spec/mongo/collection/view/builder/op_query_spec.rb
|
1262
|
+
- spec/mongo/collection/view/builder/find_command_spec.rb
|
1263
|
+
- spec/mongo/collection/view/builder/flags_spec.rb
|
1264
|
+
- spec/mongo/collection/view/builder/modifiers_spec.rb
|
1265
|
+
- spec/mongo/collection/view/readable_spec.rb
|
1266
|
+
- spec/mongo/collection/view/writable_spec.rb
|
1267
|
+
- spec/mongo/collection/view/change_stream_spec.rb
|
1268
|
+
- spec/mongo/database_spec.rb
|
1269
|
+
- spec/mongo/index/view_spec.rb
|
1270
|
+
- spec/mongo/operation/limited_spec.rb
|
1271
|
+
- spec/mongo/operation/map_reduce_spec.rb
|
1272
|
+
- spec/mongo/operation/get_more_spec.rb
|
1273
|
+
- spec/mongo/operation/specifiable_spec.rb
|
1274
|
+
- spec/mongo/operation/collections_info_spec.rb
|
1275
|
+
- spec/mongo/operation/aggregate/result_spec.rb
|
1276
|
+
- spec/mongo/operation/delete_spec.rb
|
1277
|
+
- spec/mongo/operation/delete/op_msg_spec.rb
|
1278
|
+
- spec/mongo/operation/delete/bulk_spec.rb
|
1279
|
+
- spec/mongo/operation/delete/command_spec.rb
|
1280
|
+
- spec/mongo/operation/create_index_spec.rb
|
1281
|
+
- spec/mongo/operation/update/op_msg_spec.rb
|
1282
|
+
- spec/mongo/operation/update/bulk_spec.rb
|
1283
|
+
- spec/mongo/operation/update/command_spec.rb
|
1284
|
+
- spec/mongo/operation/create_user_spec.rb
|
1285
|
+
- spec/mongo/operation/update_spec.rb
|
1286
|
+
- spec/mongo/operation/update_user_spec.rb
|
1287
|
+
- spec/mongo/operation/result_spec.rb
|
1288
|
+
- spec/mongo/operation/indexes_spec.rb
|
1289
|
+
- spec/mongo/operation/find/legacy_spec.rb
|
1290
|
+
- spec/mongo/operation/drop_index_spec.rb
|
1291
|
+
- spec/mongo/operation/aggregate_spec.rb
|
1292
|
+
- spec/mongo/operation/kill_cursors_spec.rb
|
1293
|
+
- spec/mongo/operation/insert/op_msg_spec.rb
|
1294
|
+
- spec/mongo/operation/insert/bulk_spec.rb
|
1295
|
+
- spec/mongo/operation/insert/command_spec.rb
|
1296
|
+
- spec/mongo/operation/read_preference_spec.rb
|
1297
|
+
- spec/mongo/operation/command_spec.rb
|
1298
|
+
- spec/mongo/operation/insert_spec.rb
|
1299
|
+
- spec/mongo/operation/remove_user_spec.rb
|
1300
|
+
- spec/mongo/bulk_write/unordered_combiner_spec.rb
|
1301
|
+
- spec/mongo/bulk_write/ordered_combiner_spec.rb
|
1302
|
+
- spec/mongo/bulk_write/result_spec.rb
|
1303
|
+
- spec/mongo/auth/ldap_spec.rb
|
1304
|
+
- spec/mongo/auth/stringprep/profiles/sasl_spec.rb
|
1305
|
+
- spec/mongo/auth/user_spec.rb
|
1306
|
+
- spec/mongo/auth/ldap/conversation_spec.rb
|
1307
|
+
- spec/mongo/auth/stringprep_spec.rb
|
1308
|
+
- spec/mongo/auth/scram/negotiation_spec.rb
|
1309
|
+
- spec/mongo/auth/scram/conversation_spec.rb
|
1310
|
+
- spec/mongo/auth/cr_spec.rb
|
1311
|
+
- spec/mongo/auth/x509_spec.rb
|
1312
|
+
- spec/mongo/auth/x509/conversation_spec.rb
|
1313
|
+
- spec/mongo/auth/scram_spec.rb
|
1314
|
+
- spec/mongo/auth/user/view_spec.rb
|
1315
|
+
- spec/mongo/bulk_write_spec.rb
|
1316
|
+
- spec/mongo/protocol/get_more_spec.rb
|
1317
|
+
- spec/mongo/protocol/reply_spec.rb
|
1318
|
+
- spec/mongo/protocol/delete_spec.rb
|
1319
|
+
- spec/mongo/protocol/update_spec.rb
|
1320
|
+
- spec/mongo/protocol/registry_spec.rb
|
1321
|
+
- spec/mongo/protocol/kill_cursors_spec.rb
|
1322
|
+
- spec/mongo/protocol/query_spec.rb
|
1323
|
+
- spec/mongo/protocol/msg_spec.rb
|
1324
|
+
- spec/mongo/protocol/insert_spec.rb
|
1325
|
+
- spec/mongo/protocol/compressed_spec.rb
|
1326
|
+
- spec/mongo/session/session_pool_spec.rb
|
1327
|
+
- spec/mongo/session/server_session_spec.rb
|
1328
|
+
- spec/mongo/auth_spec.rb
|
1329
|
+
- spec/mongo/write_concern/acknowledged_spec.rb
|
1330
|
+
- spec/mongo/write_concern/unacknowledged_spec.rb
|
1331
|
+
- spec/mongo/cluster/app_metadata_spec.rb
|
1332
|
+
- spec/mongo/cluster/topology_spec.rb
|
1333
|
+
- spec/mongo/cluster/socket_reaper_spec.rb
|
1334
|
+
- spec/mongo/cluster/cursor_reaper_spec.rb
|
1335
|
+
- spec/mongo/cluster/topology/unknown_spec.rb
|
1336
|
+
- spec/mongo/cluster/topology/sharded_spec.rb
|
1337
|
+
- spec/mongo/cluster/topology/single_spec.rb
|
1338
|
+
- spec/mongo/cluster/topology/replica_set_spec.rb
|
1339
|
+
- spec/mongo/bson_spec.rb
|
1340
|
+
- spec/mongo/cluster_spec.rb
|
1341
|
+
- spec/mongo/address_spec.rb
|
1342
|
+
- spec/mongo/event/publisher_spec.rb
|
1343
|
+
- spec/mongo/event/subscriber_spec.rb
|
1344
|
+
- spec/mongo/uri/srv_protocol_spec.rb
|
1345
|
+
- spec/atlas/atlas_connectivity_spec.rb
|
1358
1346
|
- spec/lite_spec_helper.rb
|
1359
1347
|
- spec/spec_helper.rb
|
1348
|
+
- spec/spec_tests/crud_spec.rb
|
1349
|
+
- spec/spec_tests/max_staleness_spec.rb
|
1350
|
+
- spec/spec_tests/sdam_spec.rb
|
1351
|
+
- spec/spec_tests/server_selection_rtt_spec.rb
|
1352
|
+
- spec/spec_tests/change_streams_spec.rb
|
1353
|
+
- spec/spec_tests/retryable_writes_spec.rb
|
1354
|
+
- spec/spec_tests/connection_string_spec.rb
|
1355
|
+
- spec/spec_tests/server_selection_spec.rb
|
1356
|
+
- spec/spec_tests/command_monitoring_spec.rb
|
1357
|
+
- spec/spec_tests/gridfs_spec.rb
|
1358
|
+
- spec/spec_tests/sdam_monitoring_spec.rb
|
1359
|
+
- spec/spec_tests/transactions_spec.rb
|
1360
|
+
- spec/spec_tests/dns_seedlist_discovery_spec.rb
|
metadata.gz.sig
CHANGED
Binary file
|