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

46 lines
1.5 KiB
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
class ReplicaSetCountTest < Test::Unit::TestCase
2011-11-03 15:17:36 +00:00
include ReplicaSetTest
2009-12-16 19:03:15 +00:00
def setup
2011-11-03 15:17:36 +00:00
@conn = ReplSetConnection.new([self.rs.host, self.rs.ports[0]],
[self.rs.host, self.rs.ports[1]], [self.rs.host, self.rs.ports[2]],
2011-10-26 16:34:16 +00:00
:read => :secondary)
assert @conn.primary_pool
@primary = Connection.new(@conn.primary_pool.host, @conn.primary_pool.port)
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
2011-11-03 15:17:36 +00:00
self.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
2011-11-03 15:17:36 +00:00
@node = self.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
2011-10-26 16:34:16 +00:00
def test_count_command_sent_to_primary
@coll.insert({:a => 20}, :safe => {:w => 2, :wtimeout => 10000})
count_before = @primary['admin'].command({:serverStatus => 1})['opcounters']['command']
assert_equal 1, @coll.count
count_after = @primary['admin'].command({:serverStatus => 1})['opcounters']['command']
assert_equal 2, count_after - count_before
end
2009-11-23 18:13:14 +00:00
end