2011-12-06 21:41:51 +00:00
|
|
|
$:.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
|
|
|
require './test/replica_sets/rs_test_helper'
|
|
|
|
|
|
|
|
# NOTE: This test expects a replica set of three nodes to be running
|
|
|
|
# on the local host.
|
|
|
|
class ReplicaSetPooledInsertTest < Test::Unit::TestCase
|
|
|
|
|
|
|
|
def setup
|
2012-01-30 00:05:17 +00:00
|
|
|
ensure_rs
|
2012-03-16 20:17:33 +00:00
|
|
|
@conn = ReplSetConnection.new(build_seeds(3), :pool_size => 10, :pool_timeout => 5, :refresh_mode => false)
|
2011-12-06 21:41:51 +00:00
|
|
|
@db = @conn.db(MONGO_TEST_DB)
|
|
|
|
@db.drop_collection("test-sets")
|
|
|
|
@coll = @db.collection("test-sets")
|
|
|
|
end
|
|
|
|
|
|
|
|
def teardown
|
2012-01-30 00:05:17 +00:00
|
|
|
@rs.restart_killed_nodes
|
2011-12-06 21:41:51 +00:00
|
|
|
@conn.close if @conn
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_insert
|
|
|
|
expected_results = [-1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
|
2012-02-15 17:55:14 +00:00
|
|
|
@coll.save({:a => -1}, :safe => {:w => 2})
|
2011-12-06 21:41:51 +00:00
|
|
|
|
2012-01-30 00:05:17 +00:00
|
|
|
@rs.kill_primary
|
2011-12-06 21:41:51 +00:00
|
|
|
|
|
|
|
threads = []
|
|
|
|
10.times do |i|
|
|
|
|
threads[i] = Thread.new do
|
|
|
|
rescue_connection_failure do
|
2012-02-15 17:55:14 +00:00
|
|
|
@coll.save({:a => i}, :safe => {:w => 2})
|
2011-12-06 21:41:51 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
threads.each {|t| t.join}
|
|
|
|
|
|
|
|
# Restart the old master and wait for sync
|
2012-01-30 00:05:17 +00:00
|
|
|
@rs.restart_killed_nodes
|
2012-02-15 14:51:01 +00:00
|
|
|
sleep(5)
|
2011-12-06 21:41:51 +00:00
|
|
|
results = []
|
|
|
|
|
|
|
|
rescue_connection_failure do
|
|
|
|
@coll.find.each {|r| results << r}
|
|
|
|
expected_results.each do |a|
|
|
|
|
assert results.any? {|r| r['a'] == a}, "Could not find record for a => #{a}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-02-15 17:55:14 +00:00
|
|
|
@coll.save({:a => 10}, :safe => {:w => 2})
|
2011-12-06 21:41:51 +00:00
|
|
|
@coll.find.each {|r| results << r}
|
|
|
|
(expected_results + [10]).each do |a|
|
|
|
|
assert results.any? {|r| r['a'] == a}, "Could not find record for a => #{a} on second find"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|