2009-11-23 18:13:14 +00:00
|
|
|
$:.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
|
|
|
require 'mongo'
|
|
|
|
require 'test/unit'
|
2010-09-09 19:58:51 +00:00
|
|
|
require './test/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-07-21 19:27:45 +00:00
|
|
|
@conn = Mongo::Connection.multi([['localhost', 27017], ['localhost', 27018], ['localhost', 27019]])
|
|
|
|
@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
|
|
|
|
|
|
|
|
def test_insert
|
|
|
|
@coll.save({:a => 20}, :safe => true)
|
|
|
|
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.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)
|
|
|
|
|
2009-12-16 19:03:15 +00:00
|
|
|
puts "Please reconnect the old master to make sure that the new master " +
|
2009-11-23 18:13:14 +00:00
|
|
|
"has synced with the previous master. Note: this may have happened already."
|
|
|
|
gets
|
|
|
|
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
|