mongo 1.5.2 → 1.6.0
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.
- data/Rakefile +24 -8
- data/docs/HISTORY.md +15 -0
- data/docs/READ_PREFERENCE.md +1 -1
- data/docs/RELEASES.md +18 -4
- data/docs/REPLICA_SETS.md +5 -5
- data/docs/WRITE_CONCERN.md +1 -1
- data/lib/mongo/collection.rb +49 -10
- data/lib/mongo/connection.rb +7 -24
- data/lib/mongo/cursor.rb +3 -1
- data/lib/mongo/db.rb +5 -1
- data/lib/mongo/exceptions.rb +0 -3
- data/lib/mongo/gridfs/grid.rb +1 -1
- data/lib/mongo/gridfs/grid_file_system.rb +11 -3
- data/lib/mongo/networking.rb +7 -3
- data/lib/mongo/repl_set_connection.rb +58 -82
- data/lib/mongo/util/logging.rb +26 -18
- data/lib/mongo/util/node.rb +11 -2
- data/lib/mongo/util/pool_manager.rb +7 -5
- data/lib/mongo/util/support.rb +2 -2
- data/lib/mongo/util/uri_parser.rb +74 -36
- data/lib/mongo/version.rb +1 -1
- data/mongo.gemspec +2 -2
- data/test/auxillary/authentication_test.rb +8 -0
- data/test/auxillary/repl_set_auth_test.rb +1 -2
- data/test/bson/ordered_hash_test.rb +1 -1
- data/test/bson/test_helper.rb +2 -1
- data/test/collection_test.rb +71 -0
- data/test/connection_test.rb +9 -0
- data/test/db_test.rb +7 -0
- data/test/grid_file_system_test.rb +12 -0
- data/test/load/thin/load.rb +1 -1
- data/test/replica_sets/basic_test.rb +36 -26
- data/test/replica_sets/complex_connect_test.rb +44 -0
- data/test/replica_sets/connect_test.rb +48 -22
- data/test/replica_sets/count_test.rb +4 -6
- data/test/replica_sets/insert_test.rb +13 -14
- data/test/replica_sets/pooled_insert_test.rb +9 -10
- data/test/replica_sets/query_test.rb +4 -4
- data/test/replica_sets/read_preference_test.rb +48 -14
- data/test/replica_sets/refresh_test.rb +43 -42
- data/test/replica_sets/refresh_with_threads_test.rb +10 -9
- data/test/replica_sets/replication_ack_test.rb +3 -3
- data/test/replica_sets/rs_test_helper.rb +17 -11
- data/test/test_helper.rb +2 -1
- data/test/tools/repl_set_manager.rb +63 -39
- data/test/unit/collection_test.rb +2 -1
- data/test/unit/connection_test.rb +22 -0
- data/test/unit/cursor_test.rb +6 -3
- data/test/unit/read_test.rb +1 -1
- data/test/uri_test.rb +17 -2
- metadata +151 -167
@@ -45,6 +45,28 @@ class ConnectionTest < Test::Unit::TestCase
|
|
45
45
|
@conn = Connection.from_uri("mongodb://#{host_name}/foo", :connect => false)
|
46
46
|
assert_equal [host_name, 27017], @conn.host_to_try
|
47
47
|
end
|
48
|
+
|
49
|
+
should "set safe options on connection" do
|
50
|
+
host_name = "localhost"
|
51
|
+
opts = "safe=true&w=2&wtimeoutMS=1000&fsync=true&journal=true"
|
52
|
+
@conn = Connection.from_uri("mongodb://#{host_name}/foo?#{opts}", :connect => false)
|
53
|
+
assert_equal({:w => 2, :wtimeout => 1000, :fsync => true, :j => true}, @conn.safe)
|
54
|
+
end
|
55
|
+
|
56
|
+
should "have wtimeoutMS take precidence over the depricated wtimeout" do
|
57
|
+
host_name = "localhost"
|
58
|
+
opts = "safe=true&wtimeout=100&wtimeoutMS=500"
|
59
|
+
@conn = Connection.from_uri("mongodb://#{host_name}/foo?#{opts}", :connect => false)
|
60
|
+
assert_equal({:wtimeout => 500}, @conn.safe)
|
61
|
+
end
|
62
|
+
|
63
|
+
should "set timeout options on connection" do
|
64
|
+
host_name = "localhost"
|
65
|
+
opts = "connectTimeoutMS=1000&socketTimeoutMS=5000"
|
66
|
+
@conn = Connection.from_uri("mongodb://#{host_name}/foo?#{opts}", :connect => false)
|
67
|
+
assert_equal 1, @conn.connect_timeout
|
68
|
+
assert_equal 5, @conn.op_timeout
|
69
|
+
end
|
48
70
|
|
49
71
|
should "parse a uri with a hyphen & underscore in the username or password" do
|
50
72
|
@conn = Connection.from_uri("mongodb://hyphen-user_name:p-s_s@localhost:27017/db", :connect => false)
|
data/test/unit/cursor_test.rb
CHANGED
@@ -5,8 +5,10 @@ class CursorTest < Test::Unit::TestCase
|
|
5
5
|
setup do
|
6
6
|
@logger = mock()
|
7
7
|
@logger.stubs(:debug)
|
8
|
-
@connection = stub(:class => Connection, :logger => @logger,
|
9
|
-
|
8
|
+
@connection = stub(:class => Connection, :logger => @logger,
|
9
|
+
:slave_ok? => false, :read_preference => :primary, :log_duration => false)
|
10
|
+
@db = stub(:name => "testing", :slave_ok? => false,
|
11
|
+
:connection => @connection, :read_preference => :primary)
|
10
12
|
@collection = stub(:db => @db, :name => "items", :read_preference => :primary)
|
11
13
|
@cursor = Cursor.new(@collection)
|
12
14
|
end
|
@@ -100,7 +102,8 @@ class CursorTest < Test::Unit::TestCase
|
|
100
102
|
setup do
|
101
103
|
@logger = mock()
|
102
104
|
@logger.stubs(:debug)
|
103
|
-
@connection = stub(:class => Connection, :logger => @logger, :slave_ok? => false
|
105
|
+
@connection = stub(:class => Connection, :logger => @logger, :slave_ok? => false,
|
106
|
+
:log_duration => false)
|
104
107
|
@db = stub(:slave_ok? => true, :name => "testing", :connection => @connection)
|
105
108
|
@collection = stub(:db => @db, :name => "items", :read_preference => :primary)
|
106
109
|
end
|
data/test/unit/read_test.rb
CHANGED
@@ -13,7 +13,7 @@ class ReadTest < Test::Unit::TestCase
|
|
13
13
|
context "Read mode on replica set connection: " do
|
14
14
|
setup do
|
15
15
|
@read_preference = :secondary
|
16
|
-
@con = Mongo::ReplSetConnection.new(['localhost'
|
16
|
+
@con = Mongo::ReplSetConnection.new(['localhost:27017'], :read => @read_preference, :connect => false)
|
17
17
|
end
|
18
18
|
|
19
19
|
should "store read preference on Connection" do
|
data/test/uri_test.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
require './test/test_helper'
|
2
2
|
|
3
|
-
class
|
3
|
+
class URITest < Test::Unit::TestCase
|
4
4
|
include Mongo
|
5
5
|
|
6
6
|
def test_uri_without_port
|
@@ -78,11 +78,19 @@ class TestThreading < Test::Unit::TestCase
|
|
78
78
|
end
|
79
79
|
|
80
80
|
def test_opts_safe
|
81
|
-
parser = Mongo::URIParser.new('mongodb://localhost:27018?safe=true;w=2;wtimeout=200;fsync=true')
|
81
|
+
parser = Mongo::URIParser.new('mongodb://localhost:27018?safe=true;w=2;journal=true;wtimeout=200;fsync=true;wtimeoutMS=200')
|
82
82
|
assert parser.safe
|
83
83
|
assert_equal 2, parser.w
|
84
84
|
assert_equal 200, parser.wtimeout
|
85
85
|
assert parser.fsync
|
86
|
+
assert parser.journal
|
87
|
+
assert_equal 200, parser.wtimeoutms
|
88
|
+
end
|
89
|
+
|
90
|
+
def test_opts_nonsafe_timeout
|
91
|
+
parser = Mongo::URIParser.new('mongodb://localhost:27018?connectTimeoutMS=5500&socketTimeoutMS=500')
|
92
|
+
assert_equal 5.5, parser.connecttimeoutms
|
93
|
+
assert_equal 0.5, parser.sockettimeoutms
|
86
94
|
end
|
87
95
|
|
88
96
|
def test_opts_replica_set
|
@@ -93,4 +101,11 @@ class TestThreading < Test::Unit::TestCase
|
|
93
101
|
assert_equal 'foo', parser.replicaset
|
94
102
|
assert_equal 'replicaset', parser.connect
|
95
103
|
end
|
104
|
+
|
105
|
+
def test_case_insensitivity
|
106
|
+
parser = Mongo::URIParser.new('mongodb://localhost:27018?wtimeoutms=500&JOURNAL=true&SaFe=true')
|
107
|
+
assert_equal 500, parser.wtimeoutms
|
108
|
+
assert_equal true, parser.journal
|
109
|
+
assert_equal true, parser.safe
|
110
|
+
end
|
96
111
|
end
|
metadata
CHANGED
@@ -1,243 +1,227 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: mongo
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.6.0
|
5
5
|
prerelease:
|
6
|
-
segments:
|
7
|
-
- 1
|
8
|
-
- 5
|
9
|
-
- 2
|
10
|
-
version: 1.5.2
|
11
6
|
platform: ruby
|
12
|
-
authors:
|
7
|
+
authors:
|
13
8
|
- Jim Menard
|
14
9
|
- Mike Dirolf
|
15
10
|
- Kyle Banker
|
11
|
+
- Tyler Brock
|
16
12
|
autorequire:
|
17
13
|
bindir: bin
|
18
14
|
cert_chain: []
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
- !ruby/object:Gem::Dependency
|
15
|
+
date: 2012-02-22 00:00:00.000000000 Z
|
16
|
+
dependencies:
|
17
|
+
- !ruby/object:Gem::Dependency
|
23
18
|
name: bson
|
24
|
-
|
25
|
-
requirement: &id001 !ruby/object:Gem::Requirement
|
19
|
+
requirement: &70200440295420 !ruby/object:Gem::Requirement
|
26
20
|
none: false
|
27
|
-
requirements:
|
28
|
-
- -
|
29
|
-
- !ruby/object:Gem::Version
|
30
|
-
|
31
|
-
segments:
|
32
|
-
- 1
|
33
|
-
- 5
|
34
|
-
- 2
|
35
|
-
version: 1.5.2
|
21
|
+
requirements:
|
22
|
+
- - =
|
23
|
+
- !ruby/object:Gem::Version
|
24
|
+
version: 1.6.0
|
36
25
|
type: :runtime
|
37
|
-
|
26
|
+
prerelease: false
|
27
|
+
version_requirements: *70200440295420
|
38
28
|
description: A Ruby driver for MongoDB. For more information about Mongo, see http://www.mongodb.org.
|
39
29
|
email: mongodb-dev@googlegroups.com
|
40
|
-
executables:
|
30
|
+
executables:
|
41
31
|
- mongo_console
|
42
32
|
extensions: []
|
43
|
-
|
44
|
-
extra_rdoc_files:
|
33
|
+
extra_rdoc_files:
|
45
34
|
- README.md
|
46
|
-
files:
|
35
|
+
files:
|
47
36
|
- README.md
|
48
37
|
- Rakefile
|
49
38
|
- mongo.gemspec
|
50
39
|
- LICENSE.txt
|
51
40
|
- lib/mongo.rb
|
52
41
|
- lib/mongo/collection.rb
|
53
|
-
- lib/mongo/
|
42
|
+
- lib/mongo/connection.rb
|
43
|
+
- lib/mongo/cursor.rb
|
44
|
+
- lib/mongo/db.rb
|
45
|
+
- lib/mongo/exceptions.rb
|
54
46
|
- lib/mongo/gridfs/grid.rb
|
55
47
|
- lib/mongo/gridfs/grid_ext.rb
|
56
48
|
- lib/mongo/gridfs/grid_file_system.rb
|
57
49
|
- lib/mongo/gridfs/grid_io.rb
|
58
50
|
- lib/mongo/gridfs/grid_io_fix.rb
|
59
|
-
- lib/mongo/
|
60
|
-
- lib/mongo/
|
51
|
+
- lib/mongo/networking.rb
|
52
|
+
- lib/mongo/repl_set_connection.rb
|
61
53
|
- lib/mongo/util/conversions.rb
|
62
54
|
- lib/mongo/util/core_ext.rb
|
63
|
-
- lib/mongo/util/
|
64
|
-
- lib/mongo/util/pool.rb
|
55
|
+
- lib/mongo/util/logging.rb
|
65
56
|
- lib/mongo/util/node.rb
|
66
|
-
- lib/mongo/util/
|
57
|
+
- lib/mongo/util/pool.rb
|
58
|
+
- lib/mongo/util/pool_manager.rb
|
67
59
|
- lib/mongo/util/server_version.rb
|
60
|
+
- lib/mongo/util/ssl_socket.rb
|
68
61
|
- lib/mongo/util/support.rb
|
69
|
-
- lib/mongo/util/
|
70
|
-
- lib/mongo/
|
71
|
-
- lib/mongo/exceptions.rb
|
72
|
-
- lib/mongo/repl_set_connection.rb
|
73
|
-
- lib/mongo/db.rb
|
74
|
-
- lib/mongo/cursor.rb
|
62
|
+
- lib/mongo/util/uri_parser.rb
|
63
|
+
- lib/mongo/version.rb
|
75
64
|
- docs/CREDITS.md
|
76
|
-
- docs/
|
77
|
-
- docs/RELEASES.md
|
65
|
+
- docs/FAQ.md
|
78
66
|
- docs/GridFS.md
|
79
67
|
- docs/HISTORY.md
|
80
|
-
- docs/FAQ.md
|
81
|
-
- docs/TUTORIAL.md
|
82
|
-
- docs/REPLICA_SETS.md
|
83
68
|
- docs/READ_PREFERENCE.md
|
69
|
+
- docs/RELEASES.md
|
70
|
+
- docs/REPLICA_SETS.md
|
84
71
|
- docs/TAILABLE_CURSORS.md
|
72
|
+
- docs/TUTORIAL.md
|
73
|
+
- docs/WRITE_CONCERN.md
|
85
74
|
- bin/mongo_console
|
86
|
-
- test/tools/repl_set_manager.rb
|
87
|
-
- test/tools/auth_repl_set_manager.rb
|
88
|
-
- test/uri_test.rb
|
89
|
-
- test/conversions_test.rb
|
90
|
-
- test/grid_io_test.rb
|
91
|
-
- test/cursor_fail_test.rb
|
92
|
-
- test/unit/cursor_test.rb
|
93
|
-
- test/unit/pool_test.rb
|
94
|
-
- test/unit/pool_manager_test.rb
|
95
|
-
- test/unit/collection_test.rb
|
96
|
-
- test/unit/node_test.rb
|
97
|
-
- test/unit/db_test.rb
|
98
|
-
- test/unit/connection_test.rb
|
99
|
-
- test/unit/read_test.rb
|
100
|
-
- test/unit/safe_test.rb
|
101
|
-
- test/unit/grid_test.rb
|
102
|
-
- test/support_test.rb
|
103
|
-
- test/cursor_test.rb
|
104
|
-
- test/support/keys.rb
|
105
|
-
- test/support/hash_with_indifferent_access.rb
|
106
|
-
- test/test_helper.rb
|
107
|
-
- test/threading_test.rb
|
108
|
-
- test/auxillary/repl_set_auth_test.rb
|
109
|
-
- test/auxillary/autoreconnect_test.rb
|
110
|
-
- test/auxillary/threaded_authentication_test.rb
|
111
|
-
- test/auxillary/authentication_test.rb
|
112
75
|
- test/auxillary/1.4_features.rb
|
76
|
+
- test/auxillary/authentication_test.rb
|
77
|
+
- test/auxillary/autoreconnect_test.rb
|
113
78
|
- test/auxillary/fork_test.rb
|
79
|
+
- test/auxillary/repl_set_auth_test.rb
|
114
80
|
- test/auxillary/slave_connection_test.rb
|
115
|
-
- test/
|
116
|
-
- test/replica_sets/pooled_insert_test.rb
|
117
|
-
- test/replica_sets/insert_test.rb
|
118
|
-
- test/replica_sets/read_preference_test.rb
|
119
|
-
- test/replica_sets/connect_test.rb
|
120
|
-
- test/replica_sets/basic_test.rb
|
121
|
-
- test/replica_sets/count_test.rb
|
122
|
-
- test/replica_sets/refresh_test.rb
|
123
|
-
- test/replica_sets/replication_ack_test.rb
|
124
|
-
- test/replica_sets/query_test.rb
|
125
|
-
- test/replica_sets/refresh_with_threads_test.rb
|
126
|
-
- test/replica_sets/rs_test_helper.rb
|
127
|
-
- test/collection_test.rb
|
128
|
-
- test/cursor_message_test.rb
|
81
|
+
- test/auxillary/threaded_authentication_test.rb
|
129
82
|
- test/bson/binary_test.rb
|
130
|
-
- test/bson/
|
83
|
+
- test/bson/bson_test.rb
|
131
84
|
- test/bson/byte_buffer_test.rb
|
132
|
-
- test/bson/
|
85
|
+
- test/bson/hash_with_indifferent_access_test.rb
|
86
|
+
- test/bson/json_test.rb
|
133
87
|
- test/bson/object_id_test.rb
|
88
|
+
- test/bson/ordered_hash_test.rb
|
134
89
|
- test/bson/test_helper.rb
|
135
|
-
- test/bson/bson_test.rb
|
136
90
|
- test/bson/timestamp_test.rb
|
137
|
-
- test/
|
138
|
-
- test/load/unicorn/load.rb
|
139
|
-
- test/load/thin/load.rb
|
140
|
-
- test/db_test.rb
|
91
|
+
- test/collection_test.rb
|
141
92
|
- test/connection_test.rb
|
93
|
+
- test/conversions_test.rb
|
94
|
+
- test/cursor_fail_test.rb
|
95
|
+
- test/cursor_message_test.rb
|
96
|
+
- test/cursor_test.rb
|
142
97
|
- test/db_api_test.rb
|
143
|
-
- test/grid_file_system_test.rb
|
144
|
-
- test/safe_test.rb
|
145
98
|
- test/db_connection_test.rb
|
99
|
+
- test/db_test.rb
|
100
|
+
- test/grid_file_system_test.rb
|
101
|
+
- test/grid_io_test.rb
|
146
102
|
- test/grid_test.rb
|
103
|
+
- test/load/thin/load.rb
|
104
|
+
- test/load/unicorn/load.rb
|
105
|
+
- test/replica_sets/basic_test.rb
|
106
|
+
- test/replica_sets/complex_connect_test.rb
|
107
|
+
- test/replica_sets/connect_test.rb
|
108
|
+
- test/replica_sets/count_test.rb
|
109
|
+
- test/replica_sets/insert_test.rb
|
110
|
+
- test/replica_sets/pooled_insert_test.rb
|
111
|
+
- test/replica_sets/query_test.rb
|
112
|
+
- test/replica_sets/read_preference_test.rb
|
113
|
+
- test/replica_sets/refresh_test.rb
|
114
|
+
- test/replica_sets/refresh_with_threads_test.rb
|
115
|
+
- test/replica_sets/replication_ack_test.rb
|
116
|
+
- test/replica_sets/rs_test_helper.rb
|
117
|
+
- test/safe_test.rb
|
118
|
+
- test/support/hash_with_indifferent_access.rb
|
119
|
+
- test/support/keys.rb
|
120
|
+
- test/support_test.rb
|
121
|
+
- test/test_helper.rb
|
122
|
+
- test/threading/threading_with_large_pool_test.rb
|
123
|
+
- test/threading_test.rb
|
124
|
+
- test/tools/auth_repl_set_manager.rb
|
125
|
+
- test/tools/repl_set_manager.rb
|
126
|
+
- test/unit/collection_test.rb
|
127
|
+
- test/unit/connection_test.rb
|
128
|
+
- test/unit/cursor_test.rb
|
129
|
+
- test/unit/db_test.rb
|
130
|
+
- test/unit/grid_test.rb
|
131
|
+
- test/unit/node_test.rb
|
132
|
+
- test/unit/pool_manager_test.rb
|
133
|
+
- test/unit/pool_test.rb
|
134
|
+
- test/unit/read_test.rb
|
135
|
+
- test/unit/safe_test.rb
|
136
|
+
- test/uri_test.rb
|
147
137
|
homepage: http://www.mongodb.org
|
148
138
|
licenses: []
|
149
|
-
|
150
139
|
post_install_message:
|
151
|
-
rdoc_options:
|
140
|
+
rdoc_options:
|
152
141
|
- --main
|
153
142
|
- README.md
|
154
143
|
- --inline-source
|
155
|
-
require_paths:
|
144
|
+
require_paths:
|
156
145
|
- lib
|
157
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
146
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
158
147
|
none: false
|
159
|
-
requirements:
|
160
|
-
- -
|
161
|
-
- !ruby/object:Gem::Version
|
162
|
-
|
163
|
-
|
164
|
-
- 0
|
165
|
-
version: "0"
|
166
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
148
|
+
requirements:
|
149
|
+
- - ! '>='
|
150
|
+
- !ruby/object:Gem::Version
|
151
|
+
version: '0'
|
152
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
167
153
|
none: false
|
168
|
-
requirements:
|
169
|
-
- -
|
170
|
-
- !ruby/object:Gem::Version
|
171
|
-
|
172
|
-
segments:
|
173
|
-
- 0
|
174
|
-
version: "0"
|
154
|
+
requirements:
|
155
|
+
- - ! '>='
|
156
|
+
- !ruby/object:Gem::Version
|
157
|
+
version: '0'
|
175
158
|
requirements: []
|
176
|
-
|
177
159
|
rubyforge_project:
|
178
|
-
rubygems_version: 1.8.
|
160
|
+
rubygems_version: 1.8.16
|
179
161
|
signing_key:
|
180
162
|
specification_version: 3
|
181
|
-
summary: Ruby driver for
|
182
|
-
test_files:
|
183
|
-
- test/tools/repl_set_manager.rb
|
184
|
-
- test/tools/auth_repl_set_manager.rb
|
185
|
-
- test/uri_test.rb
|
186
|
-
- test/conversions_test.rb
|
187
|
-
- test/grid_io_test.rb
|
188
|
-
- test/cursor_fail_test.rb
|
189
|
-
- test/unit/cursor_test.rb
|
190
|
-
- test/unit/pool_test.rb
|
191
|
-
- test/unit/pool_manager_test.rb
|
192
|
-
- test/unit/collection_test.rb
|
193
|
-
- test/unit/node_test.rb
|
194
|
-
- test/unit/db_test.rb
|
195
|
-
- test/unit/connection_test.rb
|
196
|
-
- test/unit/read_test.rb
|
197
|
-
- test/unit/safe_test.rb
|
198
|
-
- test/unit/grid_test.rb
|
199
|
-
- test/support_test.rb
|
200
|
-
- test/cursor_test.rb
|
201
|
-
- test/support/keys.rb
|
202
|
-
- test/support/hash_with_indifferent_access.rb
|
203
|
-
- test/test_helper.rb
|
204
|
-
- test/threading_test.rb
|
205
|
-
- test/auxillary/repl_set_auth_test.rb
|
206
|
-
- test/auxillary/autoreconnect_test.rb
|
207
|
-
- test/auxillary/threaded_authentication_test.rb
|
208
|
-
- test/auxillary/authentication_test.rb
|
163
|
+
summary: Ruby driver for MongoDB
|
164
|
+
test_files:
|
209
165
|
- test/auxillary/1.4_features.rb
|
166
|
+
- test/auxillary/authentication_test.rb
|
167
|
+
- test/auxillary/autoreconnect_test.rb
|
210
168
|
- test/auxillary/fork_test.rb
|
169
|
+
- test/auxillary/repl_set_auth_test.rb
|
211
170
|
- test/auxillary/slave_connection_test.rb
|
212
|
-
- test/
|
213
|
-
- test/replica_sets/pooled_insert_test.rb
|
214
|
-
- test/replica_sets/insert_test.rb
|
215
|
-
- test/replica_sets/read_preference_test.rb
|
216
|
-
- test/replica_sets/connect_test.rb
|
217
|
-
- test/replica_sets/basic_test.rb
|
218
|
-
- test/replica_sets/count_test.rb
|
219
|
-
- test/replica_sets/refresh_test.rb
|
220
|
-
- test/replica_sets/replication_ack_test.rb
|
221
|
-
- test/replica_sets/query_test.rb
|
222
|
-
- test/replica_sets/refresh_with_threads_test.rb
|
223
|
-
- test/replica_sets/rs_test_helper.rb
|
224
|
-
- test/collection_test.rb
|
225
|
-
- test/cursor_message_test.rb
|
171
|
+
- test/auxillary/threaded_authentication_test.rb
|
226
172
|
- test/bson/binary_test.rb
|
227
|
-
- test/bson/
|
173
|
+
- test/bson/bson_test.rb
|
228
174
|
- test/bson/byte_buffer_test.rb
|
229
|
-
- test/bson/
|
175
|
+
- test/bson/hash_with_indifferent_access_test.rb
|
176
|
+
- test/bson/json_test.rb
|
230
177
|
- test/bson/object_id_test.rb
|
178
|
+
- test/bson/ordered_hash_test.rb
|
231
179
|
- test/bson/test_helper.rb
|
232
|
-
- test/bson/bson_test.rb
|
233
180
|
- test/bson/timestamp_test.rb
|
234
|
-
- test/
|
235
|
-
- test/load/unicorn/load.rb
|
236
|
-
- test/load/thin/load.rb
|
237
|
-
- test/db_test.rb
|
181
|
+
- test/collection_test.rb
|
238
182
|
- test/connection_test.rb
|
183
|
+
- test/conversions_test.rb
|
184
|
+
- test/cursor_fail_test.rb
|
185
|
+
- test/cursor_message_test.rb
|
186
|
+
- test/cursor_test.rb
|
239
187
|
- test/db_api_test.rb
|
240
|
-
- test/grid_file_system_test.rb
|
241
|
-
- test/safe_test.rb
|
242
188
|
- test/db_connection_test.rb
|
189
|
+
- test/db_test.rb
|
190
|
+
- test/grid_file_system_test.rb
|
191
|
+
- test/grid_io_test.rb
|
243
192
|
- test/grid_test.rb
|
193
|
+
- test/load/thin/load.rb
|
194
|
+
- test/load/unicorn/load.rb
|
195
|
+
- test/replica_sets/basic_test.rb
|
196
|
+
- test/replica_sets/complex_connect_test.rb
|
197
|
+
- test/replica_sets/connect_test.rb
|
198
|
+
- test/replica_sets/count_test.rb
|
199
|
+
- test/replica_sets/insert_test.rb
|
200
|
+
- test/replica_sets/pooled_insert_test.rb
|
201
|
+
- test/replica_sets/query_test.rb
|
202
|
+
- test/replica_sets/read_preference_test.rb
|
203
|
+
- test/replica_sets/refresh_test.rb
|
204
|
+
- test/replica_sets/refresh_with_threads_test.rb
|
205
|
+
- test/replica_sets/replication_ack_test.rb
|
206
|
+
- test/replica_sets/rs_test_helper.rb
|
207
|
+
- test/safe_test.rb
|
208
|
+
- test/support/hash_with_indifferent_access.rb
|
209
|
+
- test/support/keys.rb
|
210
|
+
- test/support_test.rb
|
211
|
+
- test/test_helper.rb
|
212
|
+
- test/threading/threading_with_large_pool_test.rb
|
213
|
+
- test/threading_test.rb
|
214
|
+
- test/tools/auth_repl_set_manager.rb
|
215
|
+
- test/tools/repl_set_manager.rb
|
216
|
+
- test/unit/collection_test.rb
|
217
|
+
- test/unit/connection_test.rb
|
218
|
+
- test/unit/cursor_test.rb
|
219
|
+
- test/unit/db_test.rb
|
220
|
+
- test/unit/grid_test.rb
|
221
|
+
- test/unit/node_test.rb
|
222
|
+
- test/unit/pool_manager_test.rb
|
223
|
+
- test/unit/pool_test.rb
|
224
|
+
- test/unit/read_test.rb
|
225
|
+
- test/unit/safe_test.rb
|
226
|
+
- test/uri_test.rb
|
227
|
+
has_rdoc: true
|