2012-04-11 15:08:04 +00:00
|
|
|
require File.expand_path("../test_helper", __FILE__)
|
2010-09-09 18:12:12 +00:00
|
|
|
require 'logger'
|
|
|
|
|
2011-02-20 16:19:53 +00:00
|
|
|
class CursorMessageTest < Test::Unit::TestCase
|
2010-09-09 18:12:12 +00:00
|
|
|
|
|
|
|
include Mongo
|
|
|
|
|
2010-10-13 21:09:23 +00:00
|
|
|
@@connection = standard_connection
|
2010-09-09 18:12:12 +00:00
|
|
|
@@db = @@connection.db(MONGO_TEST_DB)
|
|
|
|
@@coll = @@db.collection('test')
|
|
|
|
@@version = @@connection.server_version
|
|
|
|
|
|
|
|
def setup
|
|
|
|
@@coll.remove
|
|
|
|
@@coll.insert('a' => 1) # collection not created until it's used
|
|
|
|
@@coll_full_name = "#{MONGO_TEST_DB}.test"
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_valid_batch_sizes
|
|
|
|
assert_raise ArgumentError do
|
|
|
|
@@coll.find({}, :batch_size => 1, :limit => 5)
|
|
|
|
end
|
|
|
|
|
|
|
|
assert_raise ArgumentError do
|
|
|
|
@@coll.find({}, :batch_size => -1, :limit => 5)
|
|
|
|
end
|
|
|
|
|
|
|
|
assert @@coll.find({}, :batch_size => 0, :limit => 5)
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_batch_size
|
|
|
|
@@coll.remove
|
|
|
|
200.times do |n|
|
|
|
|
@@coll.insert({:a => n})
|
|
|
|
end
|
|
|
|
|
|
|
|
list = @@coll.find({}, :batch_size => 2, :limit => 6).to_a
|
|
|
|
assert_equal 6, list.length
|
|
|
|
|
|
|
|
list = @@coll.find({}, :batch_size => 100, :limit => 101).to_a
|
|
|
|
assert_equal 101, list.length
|
|
|
|
end
|
|
|
|
end
|