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

35 lines
923 B
Ruby
Raw Normal View History

2009-11-23 18:13:14 +00:00
$:.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
require 'mongo'
require 'test/unit'
require 'test/test_helper'
# NOTE: this test should be run only if a replica pair is running.
class ReplicaPairCountTest < Test::Unit::TestCase
2009-11-23 18:13:14 +00:00
include Mongo
2009-12-16 19:03:15 +00:00
def setup
2009-11-23 18:13:14 +00:00
@conn = Mongo::Connection.new({:left => ["localhost", 27017], :right => ["localhost", 27018]}, nil)
@db = @conn.db('mongo-ruby-test')
@db.drop_collection("test-pairs")
@coll = @db.collection("test-pairs")
end
def test_correct_count_after_insertion_reconnect
@coll.insert({:a => 20}, :safe => true)
assert_equal 1, @coll.count
# Sleep to allow resync
sleep(3)
puts "Please disconnect the current master."
gets
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
@coll.insert({:a => 40}, :safe => true)
assert_equal 3, @coll.count, "Second count failed"
end
end