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

55 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-14 20:47:18 +00:00
require './test/replica_sets/rs_test_helper'
2009-11-23 18:13:14 +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 ReplicaSetInsertTest < 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-14 20:47:18 +00:00
@conn = ReplSetConnection.new([TEST_HOST, RS.ports[0]], [TEST_HOST, RS.ports[1]], [TEST_HOST, RS.ports[2]])
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-23 18:13:14 +00:00
end
2010-12-14 20:47:18 +00:00
def teardown
RS.restart_killed_nodes
@conn.close if @conn
2010-12-14 20:47:18 +00:00
end
2009-11-23 18:13:14 +00:00
def test_insert
@coll.save({:a => 20}, :safe => true)
2010-12-14 20:47:18 +00:00
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.save({:a => 30}, :safe => true)
end
@coll.save({:a => 40}, :safe => true)
@coll.save({:a => 50}, :safe => true)
@coll.save({:a => 60}, :safe => true)
@coll.save({:a => 70}, :safe => true)
2010-12-14 20:47:18 +00:00
# Restart the old master and wait for sync
RS.restart_killed_nodes
sleep(1)
2009-11-23 18:13:14 +00:00
results = []
2009-12-16 19:03:15 +00:00
rescue_connection_failure do
2009-11-23 18:13:14 +00:00
@coll.find.each {|r| results << r}
[20, 30, 40, 50, 60, 70].each do |a|
assert results.any? {|r| r['a'] == a}, "Could not find record for a => #{a}"
end
end
@coll.save({:a => 80}, :safe => true)
@coll.find.each {|r| results << r}
[20, 30, 40, 50, 60, 70, 80].each do |a|
assert results.any? {|r| r['a'] == a}, "Could not find record for a => #{a} on second find"
end
end
end