2009-11-24 20:20:51 +00:00
|
|
|
$:.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
2010-12-14 22:38:52 +00:00
|
|
|
require './test/replica_sets/rs_test_helper'
|
2009-11-24 20:20:51 +00:00
|
|
|
|
2010-07-21 19:27:45 +00:00
|
|
|
# NOTE: This test expects a replica set of three nodes to be running
|
|
|
|
# on the local host.
|
|
|
|
class ReplicaSetPooledInsertTest < Test::Unit::TestCase
|
2009-11-24 20:20:51 +00:00
|
|
|
include Mongo
|
2009-12-16 19:03:15 +00:00
|
|
|
|
|
|
|
def setup
|
2010-12-14 20:47:18 +00:00
|
|
|
@conn = ReplSetConnection.new([RS.host, RS.ports[0]], [RS.host, RS.ports[1]],
|
|
|
|
[RS.host, RS.ports[2]], :pool_size => 10, :timeout => 5)
|
2010-07-21 19:27:45 +00:00
|
|
|
@db = @conn.db(MONGO_TEST_DB)
|
|
|
|
@db.drop_collection("test-sets")
|
|
|
|
@coll = @db.collection("test-sets")
|
2009-11-24 20:20:51 +00:00
|
|
|
end
|
|
|
|
|
2010-12-14 22:38:52 +00:00
|
|
|
def teardown
|
|
|
|
RS.restart_killed_nodes
|
|
|
|
end
|
|
|
|
|
2009-11-24 20:20:51 +00:00
|
|
|
def test_insert
|
|
|
|
expected_results = [-1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
|
|
|
|
@coll.save({:a => -1}, :safe => true)
|
2010-12-14 20:47:18 +00:00
|
|
|
|
|
|
|
RS.kill_primary
|
2009-11-24 20:20:51 +00:00
|
|
|
|
|
|
|
threads = []
|
|
|
|
10.times do |i|
|
2009-12-16 19:03:15 +00:00
|
|
|
threads[i] = Thread.new do
|
|
|
|
rescue_connection_failure do
|
2009-11-24 20:20:51 +00:00
|
|
|
@coll.save({:a => i}, :safe => true)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2010-12-14 20:47:18 +00:00
|
|
|
# Restart the old master and wait for sync
|
|
|
|
RS.restart_killed_nodes
|
|
|
|
sleep(1)
|
2009-11-24 20:20:51 +00:00
|
|
|
results = []
|
2009-12-16 19:03:15 +00:00
|
|
|
|
|
|
|
rescue_connection_failure do
|
2009-11-24 20:20:51 +00:00
|
|
|
@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
|
|
|
|
|
|
|
|
@coll.save({:a => 10}, :safe => true)
|
|
|
|
@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
|