mongo-ruby-driver/test/replica_sets/count_test.rb

37 lines
987 B
Ruby
Raw Normal View History

2009-11-23 18:13:14 +00:00
$:.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
2010-12-13 21:25:23 +00:00
require './test/replica_sets/rs_test_helper'
2009-11-23 18:13:14 +00:00
2010-07-19 16:07:46 +00:00
# NOTE: This test expects a replica set of three nodes to be running
# on the local host.
class ReplicaSetCountTest < Test::Unit::TestCase
2009-11-23 18:13:14 +00:00
include Mongo
2009-12-16 19:03:15 +00:00
def setup
2010-12-13 21:25:23 +00:00
@conn = ReplSetConnection.new([RS.host, RS.ports[0]], [RS.host, RS.ports[1]], [RS.host, RS.ports[2]])
2010-07-19 16:07:46 +00:00
@db = @conn.db(MONGO_TEST_DB)
@db.drop_collection("test-sets")
@coll = @db.collection("test-sets")
2009-11-23 18:13:14 +00:00
end
2010-12-13 21:25:23 +00:00
def teardown
2010-12-14 20:47:18 +00:00
RS.restart_killed_nodes
@conn.close if @conn
2010-12-13 21:25:23 +00:00
end
2009-11-23 18:13:14 +00:00
def test_correct_count_after_insertion_reconnect
@coll.insert({:a => 20}, :safe => {:w => 2, :wtimeout => 10000})
2009-11-23 18:13:14 +00:00
assert_equal 1, @coll.count
# Kill the current master node
2010-12-13 21:25:23 +00:00
@node = RS.kill_primary
2009-11-23 18:13:14 +00:00
2009-12-16 19:03:15 +00:00
rescue_connection_failure do
2009-11-23 18:13:14 +00:00
@coll.insert({:a => 30}, :safe => true)
end
2010-07-19 16:07:46 +00:00
2009-11-23 18:13:14 +00:00
@coll.insert({:a => 40}, :safe => true)
assert_equal 3, @coll.count, "Second count failed"
end
end