2009-11-23 18:13:14 +00:00
|
|
|
$:.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
2009-11-20 22:48:41 +00:00
|
|
|
require 'mongo'
|
|
|
|
require 'test/unit'
|
2010-09-09 19:58:51 +00:00
|
|
|
require './test/test_helper'
|
2009-11-20 22:48:41 +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.
|
2010-11-16 20:43:59 +00:00
|
|
|
class ReplicaSetQueryTest < Test::Unit::TestCase
|
2009-11-20 22:48:41 +00:00
|
|
|
include Mongo
|
2009-12-16 19:03:15 +00:00
|
|
|
|
|
|
|
def setup
|
2010-12-13 19:07:32 +00:00
|
|
|
@conn = ReplSetConnection.multi([TEST_HOST, TEST_PORT], [TEST_HOST, TEST_PORT + 1],
|
|
|
|
[TEST_HOST, TEST_PORT + 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-20 22:48:41 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_query
|
|
|
|
@coll.save({:a => 20})
|
|
|
|
@coll.save({:a => 30})
|
|
|
|
@coll.save({:a => 40})
|
|
|
|
results = []
|
2009-11-23 18:13:14 +00:00
|
|
|
@coll.find.each {|r| results << r}
|
2009-11-20 22:48:41 +00:00
|
|
|
[20, 30, 40].each do |a|
|
|
|
|
assert results.any? {|r| r['a'] == a}, "Could not find record for a => #{a}"
|
|
|
|
end
|
2009-11-23 18:13:14 +00:00
|
|
|
|
|
|
|
puts "Please disconnect the current master."
|
|
|
|
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].each do |a|
|
|
|
|
assert results.any? {|r| r['a'] == a}, "Could not find record for a => #{a}"
|
|
|
|
end
|
2009-11-20 22:48:41 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|