mongo-ruby-driver/test/test_db_api.rb

835 lines
23 KiB
Ruby
Raw Normal View History

2008-12-02 00:39:39 +00:00
$LOAD_PATH[0,0] = File.join(File.dirname(__FILE__), '..', 'lib')
require 'mongo'
require 'test/unit'
# NOTE: assumes Mongo is running
class DBAPITest < Test::Unit::TestCase
include XGen::Mongo
include XGen::Mongo::Driver
@@db = Mongo.new(ENV['MONGO_RUBY_DRIVER_HOST'] || 'localhost',
ENV['MONGO_RUBY_DRIVER_PORT'] || Mongo::DEFAULT_PORT).db('ruby-mongo-test')
@@coll = @@db.collection('test')
2008-12-02 00:39:39 +00:00
def setup
@@coll.clear
@r1 = {'a' => 1}
@@coll.insert(@r1) # collection not created until it's used
@@coll_full_name = 'ruby-mongo-test.test'
2008-12-02 00:39:39 +00:00
end
def teardown
@@coll.clear
@@db.error
2008-12-02 00:39:39 +00:00
end
def test_clear
assert_equal 1, @@coll.count
@@coll.clear
assert_equal 0, @@coll.count
2008-12-02 00:39:39 +00:00
end
2008-12-02 01:20:00 +00:00
def test_insert
assert_kind_of ObjectID, @@coll.insert('a' => 2)
assert_kind_of ObjectID, @@coll.insert('b' => 3)
2008-12-02 01:20:00 +00:00
assert_equal 3, @@coll.count
docs = @@coll.find().to_a
2008-12-02 01:20:00 +00:00
assert_equal 3, docs.length
assert docs.detect { |row| row['a'] == 1 }
assert docs.detect { |row| row['a'] == 2 }
assert docs.detect { |row| row['b'] == 3 }
2008-12-08 20:04:07 +00:00
@@coll << {'b' => 4}
docs = @@coll.find().to_a
2008-12-08 20:04:07 +00:00
assert_equal 4, docs.length
assert docs.detect { |row| row['b'] == 4 }
2008-12-02 01:20:00 +00:00
end
2009-08-13 14:29:08 +00:00
def test_save_ordered_hash
oh = OrderedHash.new
oh['a'] = -1
oh['b'] = 'foo'
oid = @@coll.save(oh)
assert_equal 'foo', @@coll.find_one(oid)['b']
2009-08-14 15:38:25 +00:00
oh = OrderedHash['a' => 1, 'b' => 'foo']
oid = @@coll.save(oh)
assert_equal 'foo', @@coll.find_one(oid)['b']
2009-08-13 14:29:08 +00:00
end
def test_insert_multiple
ids = @@coll.insert([{'a' => 2}, {'b' => 3}])
2009-07-28 16:08:29 +00:00
ids.each do |i|
assert_kind_of ObjectID, i
end
assert_equal 3, @@coll.count
docs = @@coll.find().to_a
assert_equal 3, docs.length
assert docs.detect { |row| row['a'] == 1 }
assert docs.detect { |row| row['a'] == 2 }
assert docs.detect { |row| row['b'] == 3 }
end
def test_count_on_nonexisting
@@db.drop_collection('foo')
assert_equal 0, @@db.collection('foo').count()
end
2008-12-08 21:43:30 +00:00
def test_find_simple
@r2 = @@coll.insert('a' => 2)
@r3 = @@coll.insert('b' => 3)
2008-12-08 20:32:38 +00:00
# Check sizes
docs = @@coll.find().to_a
assert_equal 3, docs.size
assert_equal 3, @@coll.count
2008-12-08 20:32:38 +00:00
# Find by other value
docs = @@coll.find('a' => @r1['a']).to_a
2008-12-08 20:32:38 +00:00
assert_equal 1, docs.size
doc = docs.first
# Can't compare _id values because at insert, an _id was added to @r1 by
# the database but we don't know what it is without re-reading the record
# (which is what we are doing right now).
# assert_equal doc['_id'], @r1['_id']
2008-12-08 21:43:30 +00:00
assert_equal doc['a'], @r1['a']
end
2008-12-08 21:43:30 +00:00
def test_find_advanced
@@coll.insert('a' => 2)
@@coll.insert('b' => 3)
2008-12-08 20:32:38 +00:00
# Find by advanced query (less than)
docs = @@coll.find('a' => { '$lt' => 10 }).to_a
2008-12-08 20:32:38 +00:00
assert_equal 2, docs.size
assert docs.detect { |row| row['a'] == 1 }
assert docs.detect { |row| row['a'] == 2 }
2008-12-08 20:32:38 +00:00
# Find by advanced query (greater than)
docs = @@coll.find('a' => { '$gt' => 1 }).to_a
2008-12-08 20:32:38 +00:00
assert_equal 1, docs.size
assert docs.detect { |row| row['a'] == 2 }
2008-12-08 20:32:38 +00:00
# Find by advanced query (less than or equal to)
docs = @@coll.find('a' => { '$lte' => 1 }).to_a
2008-12-08 20:32:38 +00:00
assert_equal 1, docs.size
assert docs.detect { |row| row['a'] == 1 }
2008-12-08 20:32:38 +00:00
# Find by advanced query (greater than or equal to)
docs = @@coll.find('a' => { '$gte' => 1 }).to_a
2008-12-08 20:32:38 +00:00
assert_equal 2, docs.size
assert docs.detect { |row| row['a'] == 1 }
assert docs.detect { |row| row['a'] == 2 }
2008-12-08 20:32:38 +00:00
# Find by advanced query (between)
docs = @@coll.find('a' => { '$gt' => 1, '$lt' => 3 }).to_a
2008-12-08 20:32:38 +00:00
assert_equal 1, docs.size
assert docs.detect { |row| row['a'] == 2 }
2008-12-08 22:20:31 +00:00
2008-12-08 20:32:38 +00:00
# Find by advanced query (in clause)
docs = @@coll.find('a' => {'$in' => [1,2]}).to_a
2008-12-08 20:35:49 +00:00
assert_equal 2, docs.size
assert docs.detect { |row| row['a'] == 1 }
assert docs.detect { |row| row['a'] == 2 }
2008-12-08 22:20:31 +00:00
2008-12-08 21:41:00 +00:00
# Find by advanced query (regexp)
docs = @@coll.find('a' => /[1|2]/).to_a
2008-12-08 21:41:00 +00:00
assert_equal 2, docs.size
assert docs.detect { |row| row['a'] == 1 }
assert docs.detect { |row| row['a'] == 2 }
2008-12-08 21:43:30 +00:00
end
2008-12-08 22:20:31 +00:00
2008-12-08 21:43:30 +00:00
def test_find_sorting
@@coll.clear
@@coll.insert('a' => 1, 'b' => 2)
@@coll.insert('a' => 2, 'b' => 1)
@@coll.insert('a' => 3, 'b' => 2)
@@coll.insert('a' => 4, 'b' => 1)
2008-12-09 17:35:03 +00:00
2008-12-08 21:41:00 +00:00
# Sorting (ascending)
docs = @@coll.find({'a' => { '$lt' => 10 }}, :sort => {'a' => 1}).to_a
2009-01-07 01:38:04 +00:00
assert_equal 4, docs.size
assert_equal 1, docs[0]['a']
assert_equal 2, docs[1]['a']
2009-01-07 01:38:04 +00:00
assert_equal 3, docs[2]['a']
assert_equal 4, docs[3]['a']
2008-12-09 17:35:03 +00:00
2008-12-08 21:41:00 +00:00
# Sorting (descending)
docs = @@coll.find({'a' => { '$lt' => 10 }}, :sort => {'a' => -1}).to_a
2009-01-07 01:38:04 +00:00
assert_equal 4, docs.size
assert_equal 4, docs[0]['a']
assert_equal 3, docs[1]['a']
assert_equal 2, docs[2]['a']
assert_equal 1, docs[3]['a']
2008-12-09 20:06:35 +00:00
2008-12-09 20:16:25 +00:00
# Sorting using array of names; assumes ascending order.
docs = @@coll.find({'a' => { '$lt' => 10 }}, :sort => ['a']).to_a
2009-01-07 01:38:04 +00:00
assert_equal 4, docs.size
assert_equal 1, docs[0]['a']
assert_equal 2, docs[1]['a']
assert_equal 3, docs[2]['a']
assert_equal 4, docs[3]['a']
# Sorting using single name; assumes ascending order.
docs = @@coll.find({'a' => { '$lt' => 10 }}, :sort => 'a').to_a
assert_equal 4, docs.size
assert_equal 1, docs[0]['a']
assert_equal 2, docs[1]['a']
assert_equal 3, docs[2]['a']
assert_equal 4, docs[3]['a']
docs = @@coll.find({'a' => { '$lt' => 10 }}, :sort => ['b', 'a']).to_a
2009-01-07 01:38:04 +00:00
assert_equal 4, docs.size
assert_equal 2, docs[0]['a']
assert_equal 4, docs[1]['a']
assert_equal 1, docs[2]['a']
assert_equal 3, docs[3]['a']
2008-12-09 20:06:35 +00:00
# Sorting using empty array; no order guarantee (Mongo bug #898) but
# should not blow up.
docs = @@coll.find({'a' => { '$lt' => 10 }}, :sort => []).to_a
2009-01-07 01:38:04 +00:00
assert_equal 4, docs.size
2008-12-09 20:06:35 +00:00
# Sorting using array of hashes; no order guarantee (Mongo bug #898) but
# should not blow up.
docs = @@coll.find({'a' => { '$lt' => 10 }}, :sort => [{'b' => 1}, {'a' => -1}]).to_a
2009-01-15 16:31:39 +00:00
assert_equal 4, docs.size
2008-12-09 20:06:35 +00:00
# Sorting using ordered hash. You can use an unordered one, but then the
# order of the keys won't be guaranteed thus your sort won't make sense.
oh = OrderedHash.new
oh['a'] = -1
docs = @@coll.find({'a' => { '$lt' => 10 }}, :sort => oh).to_a
2009-01-07 01:38:04 +00:00
assert_equal 4, docs.size
assert_equal 4, docs[0]['a']
assert_equal 3, docs[1]['a']
assert_equal 2, docs[2]['a']
assert_equal 1, docs[3]['a']
# TODO this will not pass due to known Mongo bug #898
# oh = OrderedHash.new
# oh['b'] = -1
# oh['a'] = 1
# docs = @@coll.find({'a' => { '$lt' => 10 }}, :sort => oh).to_a
# assert_equal 4, docs.size
# assert_equal 1, docs[0]['a']
# assert_equal 3, docs[1]['a']
# assert_equal 2, docs[2]['a']
# assert_equal 4, docs[3]['a']
end
2008-12-02 12:20:29 +00:00
def test_find_limits
@@coll.insert('b' => 2)
@@coll.insert('c' => 3)
@@coll.insert('d' => 4)
docs = @@coll.find({}, :limit => 1).to_a
assert_equal 1, docs.size
docs = @@coll.find({}, :limit => 2).to_a
assert_equal 2, docs.size
docs = @@coll.find({}, :limit => 3).to_a
assert_equal 3, docs.size
docs = @@coll.find({}, :limit => 4).to_a
assert_equal 4, docs.size
docs = @@coll.find({}).to_a
assert_equal 4, docs.size
docs = @@coll.find({}, :limit => 99).to_a
assert_equal 4, docs.size
end
2009-02-09 14:46:30 +00:00
def test_find_first
x = @@coll.find_first('a' => 1)
assert_not_nil x
assert_equal 1, x['a']
end
def test_find_one_no_records
2009-02-09 14:46:30 +00:00
@@coll.clear
x = @@coll.find_one('a' => 1)
2009-02-09 14:46:30 +00:00
assert_nil x
end
2008-12-02 12:20:29 +00:00
def test_drop_collection
assert @@db.drop_collection(@@coll.name), "drop of collection #{@@coll.name} failed"
assert !@@db.collection_names.include?(@@coll.name)
2008-12-02 12:20:29 +00:00
end
2009-03-02 15:49:27 +00:00
def test_other_drop
assert @@db.collection_names.include?(@@coll.name)
2009-03-02 15:49:27 +00:00
@@coll.drop
assert !@@db.collection_names.include?(@@coll.name)
2009-03-02 15:49:27 +00:00
end
2008-12-02 12:20:29 +00:00
def test_collection_names
names = @@db.collection_names
assert names.length >= 1
assert names.include?(@@coll.name)
2008-12-02 12:20:29 +00:00
coll2 = @@db.collection('test2')
2008-12-02 12:20:29 +00:00
coll2.insert('a' => 1) # collection not created until it's used
names = @@db.collection_names
assert names.length >= 2
assert names.include?(@@coll.name)
2008-12-02 12:20:29 +00:00
assert names.include?('ruby-mongo-test.test2')
ensure
@@db.drop_collection('test2')
2008-12-02 12:20:29 +00:00
end
def test_collections_info
cursor = @@db.collections_info
rows = cursor.to_a
assert rows.length >= 1
row = rows.detect { |r| r['name'] == @@coll_full_name }
assert_not_nil row
2008-12-02 12:20:29 +00:00
end
2008-12-17 18:52:10 +00:00
def test_collection_options
@@db.drop_collection('foobar')
@@db.strict = true
2008-12-17 18:52:10 +00:00
begin
coll = @@db.create_collection('foobar', :capped => true, :size => 1024)
2008-12-17 18:52:10 +00:00
options = coll.options()
assert_equal 'foobar', options['create']
assert_equal true, options['capped']
assert_equal 1024, options['size']
rescue => ex
@@db.drop_collection('foobar')
2008-12-17 18:52:10 +00:00
fail "did not expect exception \"#{ex}\""
ensure
@@db.strict = false
2008-12-17 18:52:10 +00:00
end
end
def test_index_information
assert_equal @@coll.index_information.length, 1
name = @@db.create_index(@@coll.name, 'a')
info = @@db.index_information(@@coll.name)
assert_equal name, "a_1"
assert_equal @@coll.index_information, info
assert_equal 2, info.length
2009-06-04 19:32:26 +00:00
assert info.has_key?(name)
assert_equal info[name], [["a", ASCENDING]]
ensure
@@db.drop_index(@@coll.name, name)
end
def test_index_create_with_symbol
assert_equal @@coll.index_information.length, 1
name = @@db.create_index(@@coll.name, :a)
info = @@db.index_information(@@coll.name)
assert_equal name, "a_1"
assert_equal @@coll.index_information, info
assert_equal 2, info.length
2009-06-04 19:32:26 +00:00
assert info.has_key?(name)
assert_equal info[name], [["a", ASCENDING]]
ensure
@@db.drop_index(@@coll.name, name)
end
def test_multiple_index_cols
name = @@db.create_index(@@coll.name, [['a', DESCENDING], ['b', ASCENDING], ['c', DESCENDING]])
info = @@db.index_information(@@coll.name)
assert_equal 2, info.length
assert_equal name, 'a_-1_b_1_c_-1'
2009-06-04 19:32:26 +00:00
assert info.has_key?(name)
assert_equal [['a', DESCENDING], ['b', ASCENDING], ['c', DESCENDING]], info[name]
ensure
@@db.drop_index(@@coll.name, name)
end
def test_multiple_index_cols_with_symbols
name = @@db.create_index(@@coll.name, [[:a, DESCENDING], [:b, ASCENDING], [:c, DESCENDING]])
info = @@db.index_information(@@coll.name)
assert_equal 2, info.length
assert_equal name, 'a_-1_b_1_c_-1'
2009-06-04 19:32:26 +00:00
assert info.has_key?(name)
assert_equal [['a', DESCENDING], ['b', ASCENDING], ['c', DESCENDING]], info[name]
ensure
@@db.drop_index(@@coll.name, name)
end
2008-12-08 20:27:20 +00:00
2009-04-21 18:44:57 +00:00
def test_unique_index
@@db.drop_collection("blah")
test = @@db.collection("blah")
test.create_index("hello")
test.insert("hello" => "world")
test.insert("hello" => "mike")
test.insert("hello" => "world")
assert !@@db.error?
@@db.drop_collection("blah")
test = @@db.collection("blah")
test.create_index("hello", unique=true)
test.insert("hello" => "world")
test.insert("hello" => "mike")
test.insert("hello" => "world")
assert @@db.error?
end
2009-04-21 18:44:57 +00:00
def test_index_on_subfield
2009-04-21 18:44:57 +00:00
@@db.drop_collection("blah")
test = @@db.collection("blah")
test.insert("hello" => {"a" => 4, "b" => 5})
test.insert("hello" => {"a" => 7, "b" => 2})
test.insert("hello" => {"a" => 4, "b" => 10})
assert !@@db.error?
@@db.drop_collection("blah")
test = @@db.collection("blah")
test.create_index("hello.a", unique=true)
test.insert("hello" => {"a" => 4, "b" => 5})
test.insert("hello" => {"a" => 7, "b" => 2})
test.insert("hello" => {"a" => 4, "b" => 10})
assert @@db.error?
2009-04-21 18:44:57 +00:00
end
2008-12-08 20:27:20 +00:00
def test_array
@@coll << {'b' => [1, 2, 3]}
rows = @@coll.find({}, {:fields => ['b']}).to_a
2008-12-08 20:27:20 +00:00
assert_equal 1, rows.length
assert_equal [1, 2, 3], rows[0]['b']
end
2008-12-08 20:57:20 +00:00
def test_regex
regex = /foobar/i
@@coll << {'b' => regex}
rows = @@coll.find({}, {:fields => ['b']}).to_a
2008-12-08 20:57:20 +00:00
assert_equal 1, rows.length
assert_equal regex, rows[0]['b']
end
2009-01-26 13:51:27 +00:00
def test_non_oid_id
# Note: can't use Time.new because that will include fractional seconds,
# which Mongo does not store.
t = Time.at(1234567890)
@@coll << {'_id' => t}
rows = @@coll.find({'_id' => t}).to_a
2009-01-26 13:51:27 +00:00
assert_equal 1, rows.length
assert_equal t, rows[0]['_id']
end
def test_strict
assert !@@db.strict?
@@db.strict = true
assert @@db.strict?
ensure
@@db.strict = false
end
def test_strict_access_collection
@@db.strict = true
begin
@@db.collection('does-not-exist')
fail "expected exception"
rescue => ex
assert_equal "Collection does-not-exist doesn't exist. Currently in strict mode.", ex.to_s
ensure
@@db.strict = false
@@db.drop_collection('does-not-exist')
end
end
def test_strict_create_collection
@@db.drop_collection('foobar')
@@db.strict = true
begin
@@db.create_collection('foobar')
assert true
rescue => ex
fail "did not expect exception \"#{ex}\""
end
# Now the collection exists. This time we should see an exception.
begin
@@db.create_collection('foobar')
fail "expected exception"
rescue => ex
assert_equal "Collection foobar already exists. Currently in strict mode.", ex.to_s
ensure
@@db.strict = false
@@db.drop_collection('foobar')
end
2009-03-02 15:49:27 +00:00
# Now we're not in strict mode - should succeed
@@db.create_collection('foobar')
@@db.create_collection('foobar')
@@db.drop_collection('foobar')
end
def test_replace
assert_equal @@coll.count, 1
assert_equal @@coll.find_one["a"], 1
2009-03-02 15:49:27 +00:00
@@coll.replace({"a" => 1}, {"a" => 2})
assert_equal @@coll.count, 1
assert_equal @@coll.find_one["a"], 2
2009-03-02 15:49:27 +00:00
@@coll.replace({"b" => 1}, {"a" => 3})
assert_equal @@coll.count, 1
assert_equal @@coll.find_one["a"], 2
2009-03-02 15:49:27 +00:00
end
def test_repsert
assert_equal @@coll.count, 1
assert_equal @@coll.find_one["a"], 1
2009-03-02 15:49:27 +00:00
@@coll.repsert({"a" => 1}, {"a" => 2})
assert_equal @@coll.count, 1
assert_equal @@coll.find_one["a"], 2
2009-03-02 15:49:27 +00:00
@@coll.repsert({"b" => 1}, {"a" => 3})
assert_equal @@coll.count, 2
assert @@coll.find_one({"a" => 3})
end
def test_to_a
cursor = @@coll.find()
rows = cursor.to_a
# Make sure we get back exactly the same array the next time we ask
rows2 = cursor.to_a
assert_same rows, rows2
# Make sure we can still iterate after calling to_a
rows_with_each = cursor.collect{|row| row}
assert_equal rows, rows_with_each
# Make sure we can iterate more than once after calling to_a
end
def test_to_a_after_each
cursor = @@coll.find
cursor.each { |row| row }
begin
cursor.to_a
fail "expected \"can't call\" error"
rescue => ex
assert_equal "can't call Cursor#to_a after calling Cursor#each", ex.to_s
end
end
2008-12-16 22:35:31 +00:00
def test_ismaster
assert @@db.master?
2008-12-16 22:35:31 +00:00
end
2009-01-13 18:08:04 +00:00
def test_master
assert_equal "#{@@db.host}:#{@@db.port}", @@db.master
2009-01-13 18:08:04 +00:00
end
2009-03-12 21:25:23 +00:00
def test_where
@@coll.insert('a' => 2)
@@coll.insert('a' => 3)
assert_equal 3, @@coll.count
assert_equal 1, @@coll.find('$where' => Code.new('this.a > 2')).count()
assert_equal 2, @@coll.find('$where' => Code.new('this.a > i', {'i' => 1})).count()
2009-03-12 21:25:23 +00:00
end
2009-03-13 15:03:52 +00:00
def test_eval
assert_equal 3, @@db.eval('function (x) {return x;}', 3)
assert_equal nil, @@db.eval("function (x) {db.test_eval.save({y:x});}", 5)
assert_equal 5, @@db.collection('test_eval').find_one['y']
2009-03-13 15:03:52 +00:00
assert_equal 5, @@db.eval("function (x, y) {return x + y;}", 2, 3)
assert_equal 5, @@db.eval("function () {return 5;}")
assert_equal 5, @@db.eval("2 + 3;")
assert_equal 5, @@db.eval(Code.new("2 + 3;"))
assert_equal 2, @@db.eval(Code.new("return i;", {"i" => 2}))
assert_equal 5, @@db.eval(Code.new("i + 3;", {"i" => 2}))
assert_raise OperationFailure do
2009-03-13 15:03:52 +00:00
@@db.eval("5 ++ 5;")
end
end
def test_hint
name = @@coll.create_index('a')
begin
assert_nil @@coll.hint
assert_equal 1, @@coll.find({'a' => 1}, :hint => 'a').to_a.size
assert_equal 1, @@coll.find({'a' => 1}, :hint => ['a']).to_a.size
assert_equal 1, @@coll.find({'a' => 1}, :hint => {'a' => 1}).to_a.size
@@coll.hint = 'a'
assert_equal({'a' => 1}, @@coll.hint)
assert_equal 1, @@coll.find('a' => 1).to_a.size
@@coll.hint = ['a']
assert_equal({'a' => 1}, @@coll.hint)
assert_equal 1, @@coll.find('a' => 1).to_a.size
@@coll.hint = {'a' => 1}
assert_equal({'a' => 1}, @@coll.hint)
assert_equal 1, @@coll.find('a' => 1).to_a.size
@@coll.hint = nil
assert_nil @@coll.hint
assert_equal 1, @@coll.find('a' => 1).to_a.size
ensure
@@coll.drop_index(name)
end
end
def test_hash_default_value_id
val = Hash.new(0)
val["x"] = 5
@@coll.insert val
id = @@coll.find_one("x" => 5)["_id"]
assert id != 0
end
2009-04-27 18:19:38 +00:00
def test_group
@@db.drop_collection("test")
test = @@db.collection("test")
assert_equal [], test.group([], {}, {"count" => 0}, "function (obj, prev) { prev.count++; }")
assert_equal [], test.group([], {}, {"count" => 0}, "function (obj, prev) { prev.count++; }", true)
2009-04-27 18:19:38 +00:00
test.insert("a" => 2)
test.insert("b" => 5)
test.insert("a" => 1)
assert_equal 3, test.group([], {}, {"count" => 0}, "function (obj, prev) { prev.count++; }")[0]["count"]
assert_equal 3, test.group([], {}, {"count" => 0}, "function (obj, prev) { prev.count++; }", true)[0]["count"]
2009-04-27 18:19:38 +00:00
assert_equal 1, test.group([], {"a" => {"$gt" => 1}}, {"count" => 0}, "function (obj, prev) { prev.count++; }")[0]["count"]
assert_equal 1, test.group([], {"a" => {"$gt" => 1}}, {"count" => 0}, "function (obj, prev) { prev.count++; }", true)[0]["count"]
2009-08-19 19:18:42 +00:00
test.insert("a" => 2, "b" => 3)
expected = [{"a" => 2, "count" => 2},
{"a" => nil, "count" => 1},
{"a" => 1, "count" => 1}]
assert_equal expected, test.group(["a"], {}, {"count" => 0}, "function (obj, prev) { prev.count++; }")
assert_equal expected, test.group(["a"], {}, {"count" => 0}, "function (obj, prev) { prev.count++; }", true)
assert_raise OperationFailure do
test.group([], {}, {}, "5 ++ 5")
end
assert_raise OperationFailure do
test.group([], {}, {}, "5 ++ 5", true)
end
2009-04-27 18:19:38 +00:00
end
2009-04-28 18:55:36 +00:00
def test_deref
@@coll.clear
assert_equal nil, @@db.dereference(DBRef.new("test", ObjectID.new))
@@coll.insert({"x" => "hello"})
key = @@coll.find_one()["_id"]
assert_equal "hello", @@db.dereference(DBRef.new("test", key))["x"]
2009-04-28 18:55:36 +00:00
assert_equal nil, @@db.dereference(DBRef.new("test", 4))
obj = {"_id" => 4}
@@coll.insert(obj)
assert_equal obj, @@db.dereference(DBRef.new("test", 4))
@@coll.clear
@@coll.insert({"x" => "hello"})
assert_equal nil, @@db.dereference(DBRef.new("test", nil))
2009-04-28 18:55:36 +00:00
end
2009-05-18 13:59:10 +00:00
def test_save
@@coll.clear
a = {"hello" => "world"}
2009-07-28 16:08:29 +00:00
id = @@coll.save(a)
assert_kind_of ObjectID, id
2009-05-18 13:59:10 +00:00
assert_equal 1, @@coll.count
assert_equal id, @@coll.save(a)
2009-05-18 13:59:10 +00:00
assert_equal 1, @@coll.count
assert_equal "world", @@coll.find_one()["hello"]
2009-05-18 13:59:10 +00:00
a["hello"] = "mike"
@@coll.save(a)
2009-05-18 13:59:10 +00:00
assert_equal 1, @@coll.count
assert_equal "mike", @@coll.find_one()["hello"]
2009-05-18 13:59:10 +00:00
@@coll.save({"hello" => "world"})
2009-05-18 13:59:10 +00:00
assert_equal 2, @@coll.count
end
def test_save_long
@@coll.clear
@@coll.insert("x" => 9223372036854775807)
assert_equal 9223372036854775807, @@coll.find_one()["x"]
end
2009-07-28 18:44:35 +00:00
def test_find_by_oid
@@coll.clear
@@coll.save("hello" => "mike")
id = @@coll.save("hello" => "world")
assert_kind_of ObjectID, id
assert_equal "world", @@coll.find_one(:_id => id)["hello"]
2009-07-28 18:44:35 +00:00
@@coll.find(:_id => id).to_a.each do |doc|
assert_equal "world", doc["hello"]
end
2009-07-28 19:00:54 +00:00
id = ObjectID.from_string(id.to_s)
assert_equal "world", @@coll.find_one(:_id => id)["hello"]
2009-07-28 18:44:35 +00:00
end
def test_save_with_object_that_has_id_but_does_not_actually_exist_in_collection
@@coll.clear
a = {'_id' => '1', 'hello' => 'world'}
@@coll.save(a)
assert_equal(1, @@coll.count)
assert_equal("world", @@coll.find_one()["hello"])
a["hello"] = "mike"
@@coll.save(a)
assert_equal(1, @@coll.count)
assert_equal("mike", @@coll.find_one()["hello"])
end
2009-05-18 13:59:10 +00:00
def test_invalid_key_names
@@coll.clear
@@coll.insert({"hello" => "world"})
@@coll.insert({"hello" => {"hello" => "world"}})
assert_raise InvalidName do
@@coll.insert({"$hello" => "world"})
end
assert_raise InvalidName do
@@coll.insert({"hello" => {"$hello" => "world"}})
end
@@coll.insert({"he$llo" => "world"})
@@coll.insert({"hello" => {"hell$o" => "world"}})
assert_raise InvalidName do
@@coll.insert({".hello" => "world"})
end
assert_raise InvalidName do
@@coll.insert({"hello" => {".hello" => "world"}})
end
assert_raise InvalidName do
@@coll.insert({"hello." => "world"})
end
assert_raise InvalidName do
@@coll.insert({"hello" => {"hello." => "world"}})
end
assert_raise InvalidName do
@@coll.insert({"hel.lo" => "world"})
end
assert_raise InvalidName do
@@coll.insert({"hello" => {"hel.lo" => "world"}})
end
@@coll.modify({"hello" => "world"}, {"$inc" => "hello"})
end
2009-08-04 18:24:18 +00:00
def test_collection_names
assert_raise TypeError do
2009-08-04 18:24:18 +00:00
@@db.collection(5)
end
assert_raise InvalidName do
2009-08-04 18:24:18 +00:00
@@db.collection("")
end
assert_raise InvalidName do
2009-08-04 18:24:18 +00:00
@@db.collection("te$t")
end
assert_raise InvalidName do
2009-08-04 18:24:18 +00:00
@@db.collection(".test")
end
assert_raise InvalidName do
2009-08-04 18:24:18 +00:00
@@db.collection("test.")
end
assert_raise InvalidName do
2009-08-04 18:24:18 +00:00
@@db.collection("tes..t")
end
end
2009-08-04 18:16:02 +00:00
def test_rename_collection
@@db.drop_collection("foo")
@@db.drop_collection("bar")
a = @@db.collection("foo")
b = @@db.collection("bar")
assert_raise TypeError do
2009-08-04 18:16:02 +00:00
a.rename(5)
end
assert_raise InvalidName do
2009-08-04 18:16:02 +00:00
a.rename("")
end
assert_raise InvalidName do
2009-08-04 18:16:02 +00:00
a.rename("te$t")
end
assert_raise InvalidName do
2009-08-04 18:16:02 +00:00
a.rename(".test")
end
assert_raise InvalidName do
2009-08-04 18:16:02 +00:00
a.rename("test.")
end
assert_raise InvalidName do
2009-08-04 18:16:02 +00:00
a.rename("tes..t")
end
assert_equal 0, a.count()
assert_equal 0, b.count()
a.insert("x" => 1)
a.insert("x" => 2)
assert_equal 2, a.count()
a.rename("bar")
assert_equal 0, a.count()
assert_equal 2, b.count()
assert_equal 1, b.find().to_a()[0]["x"]
assert_equal 2, b.find().to_a()[1]["x"]
b.rename(:foo)
assert_equal 2, a.count()
assert_equal 0, b.count()
end
# doesn't really test functionality, just that the option is set correctly
def test_snapshot
@@db.collection("test").find({}, :snapshot => true).to_a
assert_raise RuntimeError do
@@db.collection("test").find({}, :snapshot => true, :sort => 'a').to_a
end
end
# TODO this test fails with error message "Undefed Before end of object"
# That is a database error. The undefined type may go away.
# def test_insert_undefined
# doc = {'undef' => Undefined.new}
# @@coll.clear
# @@coll.insert(doc)
# p @@db.error # DEBUG
# assert_equal 1, @@coll.count
# row = @@coll.find().next_object
# assert_not_nil row
# end
2008-12-02 00:39:39 +00:00
end