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
|
2010-12-14 22:38:52 +00:00
|
|
|
@conn = ReplSetConnection.new([RS.host, RS.ports[0]], :read_secondary => 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
|
|
|
|
end
|
|
|
|
|
2010-12-29 18:01:05 +00:00
|
|
|
def test_read_primary
|
|
|
|
assert !@conn.read_primary?
|
|
|
|
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
|
|
|
|
@coll = @db.collection("test-sets", :safe => {:w => 3, :wtimeout => 10000})
|
2010-11-16 20:43:59 +00:00
|
|
|
@coll.save({:a => 20})
|
|
|
|
@coll.save({:a => 30})
|
|
|
|
@coll.save({:a => 40})
|
|
|
|
results = []
|
|
|
|
@coll.find.each {|r| results << r["a"]}
|
|
|
|
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
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_kill_secondary
|
|
|
|
@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
|
|
|
|
|
|
|
|
read_node = RS.get_node_from_port(@conn.read_pool.port)
|
|
|
|
RS.kill(read_node)
|
|
|
|
|
|
|
|
# Should fail immediately on next read
|
|
|
|
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
|
|
|
|
end
|
|
|
|
|
2010-11-16 20:43:59 +00:00
|
|
|
end
|