2010-11-16 20:43:59 +00:00
|
|
|
$:.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
2010-12-14 22:38:52 +00:00
|
|
|
require './test/replica_sets/rs_test_helper'
|
2010-11-16 20:43:59 +00:00
|
|
|
|
|
|
|
# NOTE: This test expects a replica set of three nodes to be running
|
|
|
|
# on the local host.
|
|
|
|
class ReplicaSetQuerySecondariesTest < Test::Unit::TestCase
|
|
|
|
include Mongo
|
|
|
|
|
|
|
|
def setup
|
2011-10-26 16:34:16 +00:00
|
|
|
RS.restart_killed_nodes
|
2011-08-31 21:34:06 +00:00
|
|
|
@conn = ReplSetConnection.new([RS.host, RS.ports[0]], :read => :secondary)
|
2011-10-26 16:34:16 +00:00
|
|
|
@secondary = Connection.new(@conn.read_pool.host, @conn.read_pool.port, :slave_ok => true)
|
2010-11-16 20:43:59 +00:00
|
|
|
@db = @conn.db(MONGO_TEST_DB)
|
|
|
|
@db.drop_collection("test-sets")
|
|
|
|
end
|
|
|
|
|
2010-12-14 22:38:52 +00:00
|
|
|
def teardown
|
|
|
|
RS.restart_killed_nodes
|
2011-08-25 15:27:58 +00:00
|
|
|
@conn.close if @conn
|
2010-12-14 22:38:52 +00:00
|
|
|
end
|
|
|
|
|
2010-12-29 18:01:05 +00:00
|
|
|
def test_read_primary
|
2011-02-15 21:48:29 +00:00
|
|
|
rescue_connection_failure do
|
|
|
|
assert !@conn.read_primary?
|
|
|
|
assert !@conn.primary?
|
|
|
|
end
|
2010-12-29 18:01:05 +00:00
|
|
|
end
|
|
|
|
|
2010-12-10 16:12:30 +00:00
|
|
|
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
|
|
|
|
|
2010-12-15 19:16:05 +00:00
|
|
|
def test_query_secondaries
|
2011-05-10 18:21:23 +00:00
|
|
|
@coll = @db.collection("test-sets", :safe => {:w => 3, :wtimeout => 20000})
|
2010-11-16 20:43:59 +00:00
|
|
|
@coll.save({:a => 20})
|
|
|
|
@coll.save({:a => 30})
|
|
|
|
@coll.save({:a => 40})
|
|
|
|
results = []
|
2011-10-26 16:34:16 +00:00
|
|
|
queries_before = @secondary['admin'].command({:serverStatus => 1})['opcounters']['query']
|
2010-11-16 20:43:59 +00:00
|
|
|
@coll.find.each {|r| results << r["a"]}
|
2011-10-26 16:34:16 +00:00
|
|
|
queries_after = @secondary['admin'].command({:serverStatus => 1})['opcounters']['query']
|
|
|
|
assert_equal 1, queries_after - queries_before
|
2010-11-16 20:43:59 +00:00
|
|
|
assert results.include?(20)
|
|
|
|
assert results.include?(30)
|
|
|
|
assert results.include?(40)
|
|
|
|
|
2010-12-14 22:38:52 +00:00
|
|
|
RS.kill_primary
|
2010-11-16 20:43:59 +00:00
|
|
|
|
|
|
|
results = []
|
|
|
|
rescue_connection_failure do
|
|
|
|
@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
|
|
|
|
|
2010-12-15 19:16:05 +00:00
|
|
|
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
|
|
|
|
RS.kill_primary
|
|
|
|
assert_equal 2, @coll.find.to_a.length
|
2011-02-15 21:48:29 +00:00
|
|
|
rescue_connection_failure do
|
|
|
|
@coll.save({:a => 50}, :safe => {:w => 2, :wtimeout => 10000})
|
|
|
|
end
|
|
|
|
RS.restart_killed_nodes
|
|
|
|
@coll.save({:a => 50}, :safe => {:w => 2, :wtimeout => 10000})
|
|
|
|
assert_equal 4, @coll.find.to_a.length
|
2010-12-15 19:16:05 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_kill_secondary
|
2011-05-10 18:21:23 +00:00
|
|
|
@coll = @db.collection("test-sets", {:safe => {:w => 3, :wtimeout => 20000}})
|
2010-12-15 19:16:05 +00:00
|
|
|
@coll.save({:a => 20})
|
|
|
|
@coll.save({:a => 30})
|
|
|
|
assert_equal 2, @coll.find.to_a.length
|
|
|
|
|
|
|
|
read_node = RS.get_node_from_port(@conn.read_pool.port)
|
|
|
|
RS.kill(read_node)
|
|
|
|
|
|
|
|
# Should fail immediately on next read
|
2011-02-15 21:48:29 +00:00
|
|
|
old_read_pool_port = @conn.read_pool.port
|
2010-12-15 19:16:05 +00:00
|
|
|
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
|
2011-02-15 21:48:29 +00:00
|
|
|
new_read_pool_port = @conn.read_pool.port
|
2011-05-10 18:21:23 +00:00
|
|
|
assert old_read_pool_port != new_read_pool_port
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_write_lots_of_data
|
|
|
|
@coll = @db.collection("test-sets", {:safe => {:w => 2}})
|
|
|
|
|
|
|
|
6000.times do |n|
|
|
|
|
@coll.save({:a => n})
|
|
|
|
end
|
|
|
|
|
|
|
|
cursor = @coll.find()
|
|
|
|
cursor.next
|
|
|
|
cursor.close
|
2010-12-15 19:16:05 +00:00
|
|
|
end
|
|
|
|
|
2010-11-16 20:43:59 +00:00
|
|
|
end
|