2009-11-23 18:13:14 +00:00
|
|
|
$:.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
2010-12-14 22:38:52 +00:00
|
|
|
require './test/replica_sets/rs_test_helper'
|
2009-11-20 22:48:41 +00:00
|
|
|
|
2010-11-16 20:43:59 +00:00
|
|
|
class ReplicaSetQueryTest < Test::Unit::TestCase
|
2009-12-16 19:03:15 +00:00
|
|
|
|
|
|
|
def setup
|
2012-01-30 00:05:17 +00:00
|
|
|
ensure_rs
|
2012-02-18 23:29:52 +00:00
|
|
|
@conn = ReplSetConnection.new build_seeds(1)
|
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
|
|
|
|
|
2010-12-14 22:38:52 +00:00
|
|
|
def teardown
|
2012-01-30 00:05:17 +00:00
|
|
|
@rs.restart_killed_nodes
|
2011-08-25 15:27:58 +00:00
|
|
|
@conn.close if @conn
|
2010-12-14 22:38:52 +00:00
|
|
|
end
|
|
|
|
|
2009-11-20 22:48:41 +00:00
|
|
|
def test_query
|
2010-12-14 22:38:52 +00:00
|
|
|
@coll.save({:a => 20}, :safe => {:w => 3})
|
|
|
|
@coll.save({:a => 30}, :safe => {:w => 3})
|
|
|
|
@coll.save({:a => 40}, :safe => {:w => 3})
|
2009-11-20 22:48:41 +00:00
|
|
|
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
|
|
|
|
2011-03-12 22:48:35 +00:00
|
|
|
puts "Benchmark before failover: #{benchmark_queries}"
|
|
|
|
|
2012-01-30 00:05:17 +00:00
|
|
|
@rs.kill_primary
|
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].each do |a|
|
|
|
|
assert results.any? {|r| r['a'] == a}, "Could not find record for a => #{a}"
|
|
|
|
end
|
2011-03-12 22:48:35 +00:00
|
|
|
|
|
|
|
puts "Benchmark after failover: #{benchmark_queries}"
|
2009-11-20 22:48:41 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-03-12 22:48:35 +00:00
|
|
|
def benchmark_queries
|
|
|
|
t1 = Time.now
|
|
|
|
10000.times { @coll.find_one }
|
|
|
|
Time.now - t1
|
|
|
|
end
|
|
|
|
|
2009-11-20 22:48:41 +00:00
|
|
|
end
|