mongo-ruby-driver/test/unit/cursor_test.rb

128 lines
4.0 KiB
Ruby
Raw Normal View History

2010-09-09 19:58:51 +00:00
require './test/test_helper'
2010-02-22 20:49:04 +00:00
class CursorTest < Test::Unit::TestCase
context "Cursor options" do
setup do
@logger = mock()
@logger.stubs(:debug)
2011-08-08 20:05:56 +00:00
@connection = stub(:class => Connection, :logger => @logger, :slave_ok? => false)
2010-02-22 20:49:04 +00:00
@db = stub(:name => "testing", :slave_ok? => false, :connection => @connection)
@collection = stub(:db => @db, :name => "items")
@cursor = Cursor.new(@collection)
end
2010-07-16 18:04:13 +00:00
should "set timeout" do
2011-02-20 15:22:39 +00:00
assert @cursor.timeout
assert @cursor.query_options_hash[:timeout]
2010-07-16 18:04:13 +00:00
end
2010-02-22 20:49:04 +00:00
should "set selector" do
2011-02-20 15:22:39 +00:00
assert_equal({}, @cursor.selector)
2010-02-22 20:49:04 +00:00
@cursor = Cursor.new(@collection, :selector => {:name => "Jones"})
2011-02-20 15:22:39 +00:00
assert_equal({:name => "Jones"}, @cursor.selector)
assert_equal({:name => "Jones"}, @cursor.query_options_hash[:selector])
2010-02-22 20:49:04 +00:00
end
2010-02-22 20:49:04 +00:00
should "set fields" do
assert_nil @cursor.fields
2010-02-22 20:49:04 +00:00
@cursor = Cursor.new(@collection, :fields => [:name, :date])
2011-02-20 15:22:39 +00:00
assert_equal({:name => 1, :date => 1}, @cursor.fields)
assert_equal({:name => 1, :date => 1}, @cursor.query_options_hash[:fields])
2010-02-22 20:49:04 +00:00
end
2010-02-20 00:17:38 +00:00
should "set mix fields 0 and 1" do
assert_nil @cursor.fields
@cursor = Cursor.new(@collection, :fields => {:name => 1, :date => 0})
2011-02-20 15:22:39 +00:00
assert_equal({:name => 1, :date => 0}, @cursor.fields)
assert_equal({:name => 1, :date => 0}, @cursor.query_options_hash[:fields])
end
2010-02-22 20:49:04 +00:00
should "set limit" do
assert_equal 0, @cursor.limit
2010-02-20 00:17:38 +00:00
2010-02-22 20:49:04 +00:00
@cursor = Cursor.new(@collection, :limit => 10)
assert_equal 10, @cursor.limit
2011-02-20 15:22:39 +00:00
assert_equal 10, @cursor.query_options_hash[:limit]
2010-02-22 20:49:04 +00:00
end
2010-02-22 20:49:04 +00:00
should "set skip" do
assert_equal 0, @cursor.skip
2010-02-22 20:49:04 +00:00
@cursor = Cursor.new(@collection, :skip => 5)
assert_equal 5, @cursor.skip
2011-02-20 15:22:39 +00:00
assert_equal 5, @cursor.query_options_hash[:skip]
2010-02-22 20:49:04 +00:00
end
2010-02-22 20:49:04 +00:00
should "set sort order" do
assert_nil @cursor.order
2010-02-22 20:49:04 +00:00
@cursor = Cursor.new(@collection, :order => "last_name")
assert_equal "last_name", @cursor.order
2011-02-20 15:22:39 +00:00
assert_equal "last_name", @cursor.query_options_hash[:order]
2010-02-22 20:49:04 +00:00
end
2010-02-22 20:49:04 +00:00
should "set hint" do
assert_nil @cursor.hint
2010-02-22 20:49:04 +00:00
@cursor = Cursor.new(@collection, :hint => "name")
assert_equal "name", @cursor.hint
2011-02-20 15:22:39 +00:00
assert_equal "name", @cursor.query_options_hash[:hint]
2010-02-22 20:49:04 +00:00
end
2010-02-22 20:49:04 +00:00
should "cache full collection name" do
assert_equal "testing.items", @cursor.full_collection_name
end
should "raise error when batch_size is 1" do
e = assert_raise ArgumentError do
@cursor.batch_size(1)
end
assert_equal "Invalid value for batch_size 1; must be 0 or > 1.", e.message
end
should "use the limit for batch size when it's smaller than the specified batch_size" do
@cursor.limit(99)
@cursor.batch_size(100)
assert_equal 99, @cursor.batch_size
end
should "use the specified batch_size" do
@cursor.batch_size(100)
assert_equal 100, @cursor.batch_size
end
end
2010-02-22 20:49:04 +00:00
context "Query fields" do
setup do
2011-02-20 15:04:01 +00:00
@logger = mock()
@logger.stubs(:debug)
2011-08-08 20:05:56 +00:00
@connection = stub(:class => Connection, :logger => @logger, :slave_ok? => false)
2010-02-22 20:49:04 +00:00
@db = stub(:slave_ok? => true, :name => "testing", :connection => @connection)
@collection = stub(:db => @db, :name => "items")
end
should "when an array should return a hash with each key" do
@cursor = Cursor.new(@collection, :fields => [:name, :age])
result = @cursor.fields
assert_equal result.keys.sort{|a,b| a.to_s <=> b.to_s}, [:age, :name].sort{|a,b| a.to_s <=> b.to_s}
assert result.values.all? {|v| v == 1}
end
should "when a string, return a hash with just the key" do
@cursor = Cursor.new(@collection, :fields => "name")
result = @cursor.fields
assert_equal result.keys.sort, ["name"]
assert result.values.all? {|v| v == 1}
end
should "return nil when neither hash nor string nor symbol" do
@cursor = Cursor.new(@collection, :fields => 1234567)
assert_nil @cursor.fields
end
end
end