2011-08-31 21:34:06 +00:00
|
|
|
$:.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
|
|
|
require './test/replica_sets/rs_test_helper'
|
2011-10-12 21:13:48 +00:00
|
|
|
require 'logger'
|
2011-08-31 21:34:06 +00:00
|
|
|
|
|
|
|
class ReadPreferenceTest < Test::Unit::TestCase
|
|
|
|
|
2011-11-03 15:17:36 +00:00
|
|
|
def setup
|
2012-01-30 00:05:17 +00:00
|
|
|
ensure_rs
|
2011-10-12 21:13:48 +00:00
|
|
|
log = Logger.new("test.log")
|
2012-01-30 00:05:17 +00:00
|
|
|
@conn = ReplSetConnection.new([@rs.host, @rs.ports[0]],
|
|
|
|
[@rs.host, @rs.ports[1]],
|
2011-10-12 14:51:57 +00:00
|
|
|
:read => :secondary, :pool_size => 50,
|
2011-11-03 15:17:36 +00:00
|
|
|
:refresh_mode => false, :refresh_interval => 5, :logger => log)
|
|
|
|
@db = @conn.db(MONGO_TEST_DB)
|
|
|
|
@db.drop_collection("test-sets")
|
|
|
|
end
|
|
|
|
|
|
|
|
def teardown
|
2012-01-30 00:05:17 +00:00
|
|
|
@rs.restart_killed_nodes
|
2011-11-03 15:17:36 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_read_primary
|
|
|
|
rescue_connection_failure do
|
|
|
|
assert !@conn.read_primary?
|
|
|
|
assert !@conn.primary?
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_con
|
|
|
|
assert @conn.primary_pool, "No primary pool!"
|
|
|
|
assert @conn.read_pool, "No read pool!"
|
|
|
|
assert @conn.primary_pool.port != @conn.read_pool.port,
|
|
|
|
"Primary port and read port at the same!"
|
|
|
|
end
|
|
|
|
|
2012-02-16 17:59:52 +00:00
|
|
|
def test_read_secondary_only
|
|
|
|
@conn = ReplSetConnection.new([@rs.host, @rs.ports[0]], [@rs.host, @rs.ports[1]], :read => :secondary_only)
|
|
|
|
assert_equal @conn.read_preference, :secondary_only
|
|
|
|
|
|
|
|
@db = @conn.db(MONGO_TEST_DB)
|
|
|
|
@coll = @db.collection("test-sets")
|
|
|
|
@coll.save({:a => 20})
|
|
|
|
@rs.kill_all_secondaries
|
|
|
|
|
|
|
|
assert_raise ConnectionFailure do
|
|
|
|
@coll.find_one
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-11-03 15:17:36 +00:00
|
|
|
def test_query_secondaries
|
2012-01-30 00:05:17 +00:00
|
|
|
@secondary = Connection.new(@rs.host, @conn.read_pool.port, :slave_ok => true)
|
2011-11-03 15:17:36 +00:00
|
|
|
@coll = @db.collection("test-sets", :safe => {:w => 3, :wtimeout => 20000})
|
|
|
|
@coll.save({:a => 20})
|
|
|
|
@coll.save({:a => 30})
|
|
|
|
@coll.save({:a => 40})
|
|
|
|
results = []
|
|
|
|
queries_before = @secondary['admin'].command({:serverStatus => 1})['opcounters']['query']
|
|
|
|
@coll.find.each {|r| results << r["a"]}
|
|
|
|
queries_after = @secondary['admin'].command({:serverStatus => 1})['opcounters']['query']
|
|
|
|
assert_equal 1, queries_after - queries_before
|
|
|
|
assert results.include?(20)
|
|
|
|
assert results.include?(30)
|
|
|
|
assert results.include?(40)
|
|
|
|
|
2012-01-30 00:05:17 +00:00
|
|
|
@rs.kill_primary
|
2011-11-03 15:17:36 +00:00
|
|
|
|
|
|
|
results = []
|
|
|
|
rescue_connection_failure do
|
|
|
|
puts "@coll.find().each"
|
|
|
|
@coll.find.each {|r| results << r}
|
|
|
|
[20, 30, 40].each do |a|
|
|
|
|
assert results.any? {|r| r['a'] == a}, "Could not find record for a => #{a}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_kill_primary
|
|
|
|
@coll = @db.collection("test-sets", :safe => {:w => 3, :wtimeout => 10000})
|
|
|
|
@coll.save({:a => 20})
|
|
|
|
@coll.save({:a => 30})
|
|
|
|
assert_equal 2, @coll.find.to_a.length
|
|
|
|
|
|
|
|
# Should still be able to read immediately after killing master node
|
2012-01-30 00:05:17 +00:00
|
|
|
@rs.kill_primary
|
2011-11-03 15:17:36 +00:00
|
|
|
assert_equal 2, @coll.find.to_a.length
|
|
|
|
rescue_connection_failure do
|
|
|
|
puts "@coll.save()"
|
|
|
|
@coll.save({:a => 50}, :safe => {:w => 2, :wtimeout => 10000})
|
|
|
|
end
|
2012-01-30 00:05:17 +00:00
|
|
|
@rs.restart_killed_nodes
|
2011-11-03 15:17:36 +00:00
|
|
|
@coll.save({:a => 50}, :safe => {:w => 2, :wtimeout => 10000})
|
|
|
|
assert_equal 4, @coll.find.to_a.length
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_kill_secondary
|
|
|
|
@coll = @db.collection("test-sets", {:safe => {:w => 3, :wtimeout => 20000}})
|
|
|
|
@coll.save({:a => 20})
|
|
|
|
@coll.save({:a => 30})
|
|
|
|
assert_equal 2, @coll.find.to_a.length
|
|
|
|
|
2012-01-30 00:05:17 +00:00
|
|
|
read_node = @rs.get_node_from_port(@conn.read_pool.port)
|
|
|
|
@rs.kill(read_node)
|
2011-11-03 15:17:36 +00:00
|
|
|
|
|
|
|
# Should fail immediately on next read
|
|
|
|
old_read_pool_port = @conn.read_pool.port
|
|
|
|
assert_raise ConnectionFailure do
|
|
|
|
@coll.find.to_a.length
|
|
|
|
end
|
|
|
|
|
|
|
|
# Should eventually reconnect and be able to read
|
|
|
|
rescue_connection_failure do
|
|
|
|
length = @coll.find.to_a.length
|
|
|
|
assert_equal 2, length
|
|
|
|
end
|
|
|
|
new_read_pool_port = @conn.read_pool.port
|
|
|
|
assert old_read_pool_port != new_read_pool_port
|
|
|
|
end
|
2011-10-12 14:51:57 +00:00
|
|
|
|
2011-11-03 15:17:36 +00:00
|
|
|
def test_write_lots_of_data
|
|
|
|
@coll = @db.collection("test-sets", {:safe => {:w => 2}})
|
2011-10-12 14:51:57 +00:00
|
|
|
|
2011-11-03 15:17:36 +00:00
|
|
|
6000.times do |n|
|
|
|
|
@coll.save({:a => n})
|
2011-10-12 14:51:57 +00:00
|
|
|
end
|
|
|
|
|
2011-11-03 15:17:36 +00:00
|
|
|
cursor = @coll.find()
|
|
|
|
cursor.next
|
|
|
|
cursor.close
|
2011-10-12 14:51:57 +00:00
|
|
|
end
|
2011-08-31 21:34:06 +00:00
|
|
|
|
2011-09-06 18:58:03 +00:00
|
|
|
# TODO: enable this once we enable reads from tags.
|
|
|
|
# def test_query_tagged
|
|
|
|
# col = @db['mongo-test']
|
2011-08-31 21:34:06 +00:00
|
|
|
|
2011-09-06 18:58:03 +00:00
|
|
|
# col.insert({:a => 1}, :safe => {:w => 3})
|
|
|
|
# col.find_one({}, :read => {:db => "main"})
|
|
|
|
# col.find_one({}, :read => {:dc => "ny"})
|
|
|
|
# col.find_one({}, :read => {:dc => "sf"})
|
2011-08-31 21:34:06 +00:00
|
|
|
|
2011-09-06 18:58:03 +00:00
|
|
|
# assert_raise Mongo::NodeWithTagsNotFound do
|
|
|
|
# col.find_one({}, :read => {:foo => "bar"})
|
|
|
|
# end
|
2011-08-31 21:34:06 +00:00
|
|
|
|
2011-09-06 18:58:03 +00:00
|
|
|
# threads = []
|
|
|
|
# 100.times do
|
|
|
|
# threads << Thread.new do
|
|
|
|
# col.find_one({}, :read => {:dc => "sf"})
|
|
|
|
# end
|
|
|
|
# end
|
2011-08-31 21:34:06 +00:00
|
|
|
|
2011-09-06 18:58:03 +00:00
|
|
|
# threads.each {|t| t.join }
|
2011-08-31 21:34:06 +00:00
|
|
|
|
2011-09-06 18:58:03 +00:00
|
|
|
# col.remove
|
|
|
|
# end
|
2011-08-31 21:34:06 +00:00
|
|
|
|
2011-09-06 18:58:03 +00:00
|
|
|
#def teardown
|
2012-01-30 00:05:17 +00:00
|
|
|
# @rs.restart_killed_nodes
|
2011-09-06 18:58:03 +00:00
|
|
|
#end
|
2011-08-31 21:34:06 +00:00
|
|
|
|
|
|
|
end
|