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

51 lines
1.2 KiB
Ruby
Raw Normal View History

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
class ReplicaSetQueryTest < Test::Unit::TestCase
2009-12-16 19:03:15 +00:00
def setup
ensure_rs
@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
@rs.restart_killed_nodes
@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
2012-04-04 20:44:01 +00:00
#puts "Benchmark before failover: #{benchmark_queries}"
@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
2012-04-04 20:44:01 +00:00
#puts "Benchmark after failover: #{benchmark_queries}"
2009-11-20 22:48:41 +00:00
end
end
def benchmark_queries
t1 = Time.now
10000.times { @coll.find_one }
Time.now - t1
end
2009-11-20 22:48:41 +00:00
end