2009-12-01 18:49:57 +00:00
|
|
|
require 'test/test_helper'
|
2009-01-13 19:02:16 +00:00
|
|
|
|
|
|
|
# NOTE: assumes Mongo is running
|
|
|
|
class CursorTest < Test::Unit::TestCase
|
|
|
|
|
2009-08-20 14:50:48 +00:00
|
|
|
include Mongo
|
2009-01-13 19:02:16 +00:00
|
|
|
|
2009-10-26 18:54:33 +00:00
|
|
|
@@connection = Connection.new(ENV['MONGO_RUBY_DRIVER_HOST'] || 'localhost',
|
|
|
|
ENV['MONGO_RUBY_DRIVER_PORT'] || Connection::DEFAULT_PORT)
|
|
|
|
@@db = @@connection.db('ruby-mongo-test')
|
2009-02-05 15:10:41 +00:00
|
|
|
@@coll = @@db.collection('test')
|
2009-10-26 18:54:33 +00:00
|
|
|
@@version = @@connection.server_version
|
2009-02-05 15:10:41 +00:00
|
|
|
|
2009-01-13 19:02:16 +00:00
|
|
|
def setup
|
2009-10-20 15:31:07 +00:00
|
|
|
@@coll.remove
|
2009-02-05 15:10:41 +00:00
|
|
|
@@coll.insert('a' => 1) # collection not created until it's used
|
|
|
|
@@coll_full_name = 'ruby-mongo-test.test'
|
2009-01-13 19:02:16 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def teardown
|
2009-10-20 15:31:07 +00:00
|
|
|
@@coll.remove
|
2009-03-13 21:09:19 +00:00
|
|
|
@@db.error
|
2009-01-13 19:02:16 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_explain
|
2009-02-05 15:10:41 +00:00
|
|
|
cursor = @@coll.find('a' => 1)
|
2009-01-13 19:02:16 +00:00
|
|
|
explaination = cursor.explain
|
|
|
|
assert_not_nil explaination['cursor']
|
|
|
|
assert_kind_of Numeric, explaination['n']
|
|
|
|
assert_kind_of Numeric, explaination['millis']
|
|
|
|
assert_kind_of Numeric, explaination['nscanned']
|
|
|
|
end
|
|
|
|
|
2009-08-18 15:26:58 +00:00
|
|
|
def test_count
|
2009-10-20 15:31:07 +00:00
|
|
|
@@coll.remove
|
2009-08-18 15:26:58 +00:00
|
|
|
|
|
|
|
assert_equal 0, @@coll.find().count()
|
|
|
|
|
|
|
|
10.times do |i|
|
|
|
|
@@coll.save("x" => i)
|
|
|
|
end
|
|
|
|
|
|
|
|
assert_equal 10, @@coll.find().count()
|
|
|
|
assert_kind_of Integer, @@coll.find().count()
|
|
|
|
assert_equal 10, @@coll.find({}, :limit => 5).count()
|
2009-09-17 20:45:03 +00:00
|
|
|
assert_equal 10, @@coll.find({}, :skip => 5).count()
|
2009-08-18 15:26:58 +00:00
|
|
|
|
|
|
|
assert_equal 1, @@coll.find({"x" => 1}).count()
|
|
|
|
assert_equal 5, @@coll.find({"x" => {"$lt" => 5}}).count()
|
|
|
|
|
|
|
|
a = @@coll.find()
|
|
|
|
b = a.count()
|
|
|
|
a.each do |doc|
|
|
|
|
break
|
|
|
|
end
|
|
|
|
assert_equal b, a.count()
|
|
|
|
|
|
|
|
assert_equal 0, @@db['acollectionthatdoesn'].count()
|
|
|
|
end
|
2009-09-17 19:07:18 +00:00
|
|
|
|
2009-09-04 23:04:11 +00:00
|
|
|
def test_sort
|
2009-10-20 15:31:07 +00:00
|
|
|
@@coll.remove
|
2009-09-17 19:07:18 +00:00
|
|
|
5.times{|x| @@coll.insert({"a" => x}) }
|
|
|
|
|
2009-10-08 14:02:54 +00:00
|
|
|
assert_kind_of Cursor, @@coll.find().sort(:a, 1)
|
2009-09-17 19:07:18 +00:00
|
|
|
|
2009-12-16 19:03:15 +00:00
|
|
|
assert_equal 0, @@coll.find().sort(:a, 1).next_document["a"]
|
|
|
|
assert_equal 4, @@coll.find().sort(:a, -1).next_document["a"]
|
|
|
|
assert_equal 0, @@coll.find().sort([["a", :asc]]).next_document["a"]
|
2009-09-17 19:07:18 +00:00
|
|
|
|
2009-10-08 14:02:54 +00:00
|
|
|
assert_kind_of Cursor, @@coll.find().sort([[:a, -1], [:b, 1]])
|
2009-09-17 19:07:18 +00:00
|
|
|
|
2009-12-16 19:03:15 +00:00
|
|
|
assert_equal 4, @@coll.find().sort(:a, 1).sort(:a, -1).next_document["a"]
|
|
|
|
assert_equal 0, @@coll.find().sort(:a, -1).sort(:a, 1).next_document["a"]
|
2009-09-17 19:07:18 +00:00
|
|
|
|
|
|
|
cursor = @@coll.find()
|
2009-12-16 19:03:15 +00:00
|
|
|
cursor.next_document
|
2009-09-17 19:07:18 +00:00
|
|
|
assert_raise InvalidOperation do
|
|
|
|
cursor.sort(["a"])
|
|
|
|
end
|
2009-10-08 14:02:54 +00:00
|
|
|
|
|
|
|
assert_raise InvalidSortValueError do
|
2009-12-16 19:03:15 +00:00
|
|
|
@@coll.find().sort(:a, 25).next_document
|
2009-10-08 14:02:54 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
assert_raise InvalidSortValueError do
|
2009-12-16 19:03:15 +00:00
|
|
|
@@coll.find().sort(25).next_document
|
2009-10-08 14:02:54 +00:00
|
|
|
end
|
2009-09-04 23:04:11 +00:00
|
|
|
end
|
2009-08-18 15:26:58 +00:00
|
|
|
|
2009-09-05 18:25:49 +00:00
|
|
|
def test_limit
|
2009-10-20 15:31:07 +00:00
|
|
|
@@coll.remove
|
2009-09-05 18:25:49 +00:00
|
|
|
|
|
|
|
10.times do |i|
|
|
|
|
@@coll.save("x" => i)
|
|
|
|
end
|
|
|
|
assert_equal 10, @@coll.find().count()
|
|
|
|
|
|
|
|
results = @@coll.find().limit(5).to_a
|
|
|
|
assert_equal 5, results.length
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_limit_exceptions
|
2009-09-16 21:52:41 +00:00
|
|
|
assert_raise ArgumentError do
|
2009-09-05 18:25:49 +00:00
|
|
|
cursor = @@coll.find().limit('not-an-integer')
|
|
|
|
end
|
|
|
|
|
|
|
|
cursor = @@coll.find()
|
2009-12-16 19:03:15 +00:00
|
|
|
firstResult = cursor.next_document
|
2009-09-16 21:52:41 +00:00
|
|
|
assert_raise InvalidOperation, "Cannot modify the query once it has been run or closed." do
|
2009-09-05 18:25:49 +00:00
|
|
|
cursor.limit(1)
|
|
|
|
end
|
|
|
|
|
|
|
|
cursor = @@coll.find()
|
|
|
|
cursor.close
|
2009-09-16 21:52:41 +00:00
|
|
|
assert_raise InvalidOperation, "Cannot modify the query once it has been run or closed." do
|
2009-09-05 18:25:49 +00:00
|
|
|
cursor.limit(1)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-09-16 21:52:41 +00:00
|
|
|
def test_skip
|
2009-10-20 15:31:07 +00:00
|
|
|
@@coll.remove
|
2009-09-05 18:25:49 +00:00
|
|
|
|
|
|
|
10.times do |i|
|
|
|
|
@@coll.save("x" => i)
|
|
|
|
end
|
|
|
|
assert_equal 10, @@coll.find().count()
|
|
|
|
|
|
|
|
all_results = @@coll.find().to_a
|
2009-09-16 21:52:41 +00:00
|
|
|
skip_results = @@coll.find().skip(2).to_a
|
2009-09-05 18:25:49 +00:00
|
|
|
assert_equal 10, all_results.length
|
2009-09-16 21:52:41 +00:00
|
|
|
assert_equal 8, skip_results.length
|
2009-09-05 18:25:49 +00:00
|
|
|
|
2009-09-16 21:52:41 +00:00
|
|
|
assert_equal all_results.slice(2...10), skip_results
|
2009-09-05 18:25:49 +00:00
|
|
|
end
|
|
|
|
|
2009-09-16 21:52:41 +00:00
|
|
|
def test_skip_exceptions
|
|
|
|
assert_raise ArgumentError do
|
|
|
|
cursor = @@coll.find().skip('not-an-integer')
|
2009-09-05 18:25:49 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
cursor = @@coll.find()
|
2009-12-16 19:03:15 +00:00
|
|
|
firstResult = cursor.next_document
|
2009-09-16 21:52:41 +00:00
|
|
|
assert_raise InvalidOperation, "Cannot modify the query once it has been run or closed." do
|
|
|
|
cursor.skip(1)
|
2009-09-05 18:25:49 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
cursor = @@coll.find()
|
|
|
|
cursor.close
|
2009-09-16 21:52:41 +00:00
|
|
|
assert_raise InvalidOperation, "Cannot modify the query once it has been run or closed." do
|
|
|
|
cursor.skip(1)
|
2009-09-05 18:25:49 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-09-16 21:52:41 +00:00
|
|
|
def test_limit_skip_chaining
|
2009-10-20 15:31:07 +00:00
|
|
|
@@coll.remove
|
2009-09-05 18:25:49 +00:00
|
|
|
10.times do |i|
|
|
|
|
@@coll.save("x" => i)
|
|
|
|
end
|
2009-09-16 21:52:41 +00:00
|
|
|
|
2009-09-05 18:25:49 +00:00
|
|
|
all_results = @@coll.find().to_a
|
2009-09-16 21:52:41 +00:00
|
|
|
limited_skip_results = @@coll.find().limit(5).skip(3).to_a
|
|
|
|
|
|
|
|
assert_equal all_results.slice(3...8), limited_skip_results
|
2009-09-05 18:25:49 +00:00
|
|
|
end
|
|
|
|
|
2009-01-13 19:02:16 +00:00
|
|
|
def test_close_no_query_sent
|
|
|
|
begin
|
2009-02-05 15:10:41 +00:00
|
|
|
cursor = @@coll.find('a' => 1)
|
2009-01-13 19:02:16 +00:00
|
|
|
cursor.close
|
|
|
|
assert cursor.closed?
|
|
|
|
rescue => ex
|
|
|
|
fail ex.to_s
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-03-02 15:49:27 +00:00
|
|
|
def test_refill_via_get_more
|
2009-09-30 14:49:08 +00:00
|
|
|
assert_equal 1, @@coll.count
|
|
|
|
1000.times { |i|
|
|
|
|
assert_equal 1 + i, @@coll.count
|
|
|
|
@@coll.insert('a' => i)
|
|
|
|
}
|
|
|
|
|
|
|
|
assert_equal 1001, @@coll.count
|
|
|
|
count = 0
|
|
|
|
@@coll.find.each { |obj|
|
|
|
|
count += obj['a']
|
|
|
|
}
|
|
|
|
assert_equal 1001, @@coll.count
|
|
|
|
|
|
|
|
# do the same thing again for debugging
|
|
|
|
assert_equal 1001, @@coll.count
|
|
|
|
count2 = 0
|
|
|
|
@@coll.find.each { |obj|
|
|
|
|
count2 += obj['a']
|
|
|
|
}
|
|
|
|
assert_equal 1001, @@coll.count
|
|
|
|
|
|
|
|
assert_equal count, count2
|
|
|
|
assert_equal 499501, count
|
2009-03-02 15:49:27 +00:00
|
|
|
end
|
|
|
|
|
2009-03-09 14:21:08 +00:00
|
|
|
def test_refill_via_get_more_alt_coll
|
2009-09-30 14:49:08 +00:00
|
|
|
coll = @@db.collection('test-alt-coll')
|
2009-10-20 15:31:07 +00:00
|
|
|
coll.remove
|
2009-09-30 14:49:08 +00:00
|
|
|
coll.insert('a' => 1) # collection not created until it's used
|
|
|
|
assert_equal 1, coll.count
|
|
|
|
|
|
|
|
1000.times { |i|
|
|
|
|
assert_equal 1 + i, coll.count
|
|
|
|
coll.insert('a' => i)
|
|
|
|
}
|
|
|
|
|
|
|
|
assert_equal 1001, coll.count
|
|
|
|
count = 0
|
|
|
|
coll.find.each { |obj|
|
|
|
|
count += obj['a']
|
|
|
|
}
|
|
|
|
assert_equal 1001, coll.count
|
|
|
|
|
|
|
|
# do the same thing again for debugging
|
|
|
|
assert_equal 1001, coll.count
|
|
|
|
count2 = 0
|
|
|
|
coll.find.each { |obj|
|
|
|
|
count2 += obj['a']
|
|
|
|
}
|
|
|
|
assert_equal 1001, coll.count
|
|
|
|
|
|
|
|
assert_equal count, count2
|
|
|
|
assert_equal 499501, count
|
2009-03-09 14:21:08 +00:00
|
|
|
end
|
|
|
|
|
2009-01-13 19:02:16 +00:00
|
|
|
def test_close_after_query_sent
|
|
|
|
begin
|
2009-02-05 15:10:41 +00:00
|
|
|
cursor = @@coll.find('a' => 1)
|
2009-12-16 19:03:15 +00:00
|
|
|
cursor.next_document
|
2009-01-13 19:02:16 +00:00
|
|
|
cursor.close
|
|
|
|
assert cursor.closed?
|
|
|
|
rescue => ex
|
|
|
|
fail ex.to_s
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-08-18 21:36:53 +00:00
|
|
|
def test_kill_cursors
|
|
|
|
@@coll.drop
|
|
|
|
|
2009-11-23 20:20:05 +00:00
|
|
|
client_cursors = @@db.command("cursorInfo" => 1)["clientCursors_size"]
|
|
|
|
by_location = @@db.command("cursorInfo" => 1)["byLocation_size"]
|
2009-08-18 21:36:53 +00:00
|
|
|
|
|
|
|
10000.times do |i|
|
|
|
|
@@coll.insert("i" => i)
|
|
|
|
end
|
|
|
|
|
|
|
|
assert_equal(client_cursors,
|
2009-11-23 20:20:05 +00:00
|
|
|
@@db.command("cursorInfo" => 1)["clientCursors_size"])
|
2009-08-18 21:36:53 +00:00
|
|
|
assert_equal(by_location,
|
2009-11-23 20:20:05 +00:00
|
|
|
@@db.command("cursorInfo" => 1)["byLocation_size"])
|
2009-08-18 21:36:53 +00:00
|
|
|
|
|
|
|
10.times do |i|
|
|
|
|
@@coll.find_one()
|
|
|
|
end
|
|
|
|
|
|
|
|
assert_equal(client_cursors,
|
2009-11-23 20:20:05 +00:00
|
|
|
@@db.command("cursorInfo" => 1)["clientCursors_size"])
|
2009-08-18 21:36:53 +00:00
|
|
|
assert_equal(by_location,
|
2009-11-23 20:20:05 +00:00
|
|
|
@@db.command("cursorInfo" => 1)["byLocation_size"])
|
2009-08-18 21:36:53 +00:00
|
|
|
|
|
|
|
10.times do |i|
|
|
|
|
a = @@coll.find()
|
2009-12-16 19:03:15 +00:00
|
|
|
a.next_document
|
2009-08-18 21:36:53 +00:00
|
|
|
a.close()
|
|
|
|
end
|
|
|
|
|
|
|
|
assert_equal(client_cursors,
|
2009-11-23 20:20:05 +00:00
|
|
|
@@db.command("cursorInfo" => 1)["clientCursors_size"])
|
2009-08-18 21:36:53 +00:00
|
|
|
assert_equal(by_location,
|
2009-11-23 20:20:05 +00:00
|
|
|
@@db.command("cursorInfo" => 1)["byLocation_size"])
|
2009-08-18 21:36:53 +00:00
|
|
|
|
|
|
|
a = @@coll.find()
|
2009-12-16 19:03:15 +00:00
|
|
|
a.next_document
|
2009-08-18 21:36:53 +00:00
|
|
|
|
|
|
|
assert_not_equal(client_cursors,
|
2009-11-23 20:20:05 +00:00
|
|
|
@@db.command("cursorInfo" => 1)["clientCursors_size"])
|
2009-08-18 21:36:53 +00:00
|
|
|
assert_not_equal(by_location,
|
2009-11-23 20:20:05 +00:00
|
|
|
@@db.command("cursorInfo" => 1)["byLocation_size"])
|
2009-08-18 21:36:53 +00:00
|
|
|
|
|
|
|
a.close()
|
|
|
|
|
|
|
|
assert_equal(client_cursors,
|
2009-11-23 20:20:05 +00:00
|
|
|
@@db.command("cursorInfo" => 1)["clientCursors_size"])
|
2009-08-18 21:36:53 +00:00
|
|
|
assert_equal(by_location,
|
2009-11-23 20:20:05 +00:00
|
|
|
@@db.command("cursorInfo" => 1)["byLocation_size"])
|
2009-08-18 21:36:53 +00:00
|
|
|
|
2009-12-16 19:03:15 +00:00
|
|
|
a = @@coll.find({}, :limit => 10).next_document
|
2009-08-18 21:36:53 +00:00
|
|
|
|
2009-08-19 15:51:30 +00:00
|
|
|
assert_equal(client_cursors,
|
2009-11-23 20:20:05 +00:00
|
|
|
@@db.command("cursorInfo" => 1)["clientCursors_size"])
|
2009-08-19 15:51:30 +00:00
|
|
|
assert_equal(by_location,
|
2009-11-23 20:20:05 +00:00
|
|
|
@@db.command("cursorInfo" => 1)["byLocation_size"])
|
2009-08-19 15:51:30 +00:00
|
|
|
|
|
|
|
@@coll.find() do |cursor|
|
2009-12-16 19:03:15 +00:00
|
|
|
cursor.next_document
|
2009-08-19 15:51:30 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
assert_equal(client_cursors,
|
2009-11-23 20:20:05 +00:00
|
|
|
@@db.command("cursorInfo" => 1)["clientCursors_size"])
|
2009-08-19 15:51:30 +00:00
|
|
|
assert_equal(by_location,
|
2009-11-23 20:20:05 +00:00
|
|
|
@@db.command("cursorInfo" => 1)["byLocation_size"])
|
2009-08-19 15:51:30 +00:00
|
|
|
|
|
|
|
@@coll.find() { |cursor|
|
2009-12-16 19:03:15 +00:00
|
|
|
cursor.next_document
|
2009-08-19 15:51:30 +00:00
|
|
|
}
|
|
|
|
|
2009-08-18 21:36:53 +00:00
|
|
|
assert_equal(client_cursors,
|
2009-11-23 20:20:05 +00:00
|
|
|
@@db.command("cursorInfo" => 1)["clientCursors_size"])
|
2009-08-18 21:36:53 +00:00
|
|
|
assert_equal(by_location,
|
2009-11-23 20:20:05 +00:00
|
|
|
@@db.command("cursorInfo" => 1)["byLocation_size"])
|
2009-08-18 21:36:53 +00:00
|
|
|
end
|
2009-08-24 21:21:49 +00:00
|
|
|
|
|
|
|
def test_count_with_fields
|
2009-10-20 15:31:07 +00:00
|
|
|
@@coll.remove
|
2009-08-24 21:21:49 +00:00
|
|
|
@@coll.save("x" => 1)
|
|
|
|
|
2009-10-26 18:54:33 +00:00
|
|
|
if @@version < "1.1.3"
|
|
|
|
assert_equal(0, @@coll.find({}, :fields => ["a"]).count())
|
|
|
|
else
|
|
|
|
assert_equal(1, @@coll.find({}, :fields => ["a"]).count())
|
2009-08-24 21:21:49 +00:00
|
|
|
end
|
|
|
|
end
|
2009-01-13 19:02:16 +00:00
|
|
|
end
|