1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259
|
require "spec/helper/all"
describe EM::Mongo do
xit "should yield until connection is ready" do
EventMachine.synchrony do
connection = EM::Mongo::Connection.new
connection.connected?.should eq(true)
db = connection.db('db')
db.is_a?(EventMachine::Mongo::Database).should eq(true)
EventMachine.stop
end
end
describe 'Synchronously (find & first)' do
xit "should insert a record into db" do
EventMachine.synchrony do
collection = EM::Mongo::Connection.new.db('db').collection('test')
collection.remove({}) # nuke all keys in collection
obj = collection.insert('hello' => 'world')
obj.should be_a(BSON::ObjectId)
obj = collection.find
obj.size.should == 1
obj.first['hello'].should == 'world'
EventMachine.stop
end
end
xit "should insert a record into db and be able to find it" do
EventMachine.synchrony do
collection = EM::Mongo::Connection.new.db('db').collection('test')
collection.remove({}) # nuke all keys in collection
obj = collection.insert('hello' => 'world')
obj = collection.insert('hello2' => 'world2')
obj = collection.find({})
obj.size.should == 2
obj2 = collection.find({}, {:limit => 1})
obj2.size.should == 1
obj3 = collection.first
obj3.is_a?(Hash).should eq(true)
EventMachine.stop
end
end
xit "should be able to order results" do
EventMachine.synchrony do
collection = EM::Mongo::Connection.new.db('db').collection('test')
collection.remove({}) # nuke all keys in collection
collection.insert(:name => 'one', :position => 0)
collection.insert(:name => 'three', :position => 2)
collection.insert(:name => 'two', :position => 1)
res = collection.find({}, {:order => 'position'})
res[0]["name"].should == 'one'
res[1]["name"].should == 'two'
res[2]["name"].should == 'three'
res1 = collection.find({}, {:order => [:position, :desc]})
res1[0]["name"].should == 'three'
res1[1]["name"].should == 'two'
res1[2]["name"].should == 'one'
EventMachine.stop
end
end
end
#
# em-mongo version > 0.3.6
#
if defined?(EM::Mongo::Cursor)
describe '*A*synchronously (afind & afirst) [Mongo > 0.3.6, using cursor]' do
xit "should insert a record into db" do
EventMachine.synchrony do
collection = EM::Mongo::Connection.new.db('db').collection('test')
collection.remove({}) # nuke all keys in collection
obj = collection.insert('hello' => 'world')
obj.should be_a(BSON::ObjectId)
cursor = collection.afind
cursor.should be_a(EM::Mongo::Cursor)
cursor.to_a.callback do |obj|
obj.size.should == 1
obj.first['hello'].should == 'world'
EM.next_tick{ EventMachine.stop }
end
end
end
xit "should insert a record into db and be able to find it" do
EventMachine.synchrony do
collection = EM::Mongo::Connection.new.db('db').collection('test')
collection.remove({}) # nuke all keys in collection
obj = collection.insert('hello' => 'world')
obj = collection.insert('hello2' => 'world2')
collection.afind({}).to_a.callback do |obj|
obj.size.should == 2
end
collection.afind({}, {:limit => 1}).to_a.callback do |obj2|
obj2.size.should == 1
end
collection.afirst.callback do |obj3|
obj3.is_a?(Hash).should eq(true)
obj3['hello'].should == 'world'
EM.next_tick{ EventMachine.stop }
end
end
end
xit "should be able to order results" do
EventMachine.synchrony do
collection = EM::Mongo::Connection.new.db('db').collection('test')
collection.remove({}) # nuke all keys in collection
collection.insert(:name => 'one', :position => 0)
collection.insert(:name => 'three', :position => 2)
collection.insert(:name => 'two', :position => 1)
collection.afind({}, {:order => 'position'}).to_a.callback do |res|
res[0]["name"].should == 'one'
res[1]["name"].should == 'two'
res[2]["name"].should == 'three'
end
collection.afind({}, {:order => [:position, :desc]}).to_a.callback do |res1|
res1[0]["name"].should == 'three'
res1[1]["name"].should == 'two'
res1[2]["name"].should == 'one'
EM.next_tick{ EventMachine.stop }
end
end
end
end
else
describe '*A*synchronously (afind & afirst) [Mongo <= 0.3.6, using blocks]' do
xit "should insert a record into db" do
EventMachine.synchrony do
collection = EM::Mongo::Connection.new.db('db').collection('test')
collection.remove({}) # nuke all keys in collection
obj = collection.insert('hello' => 'world')
obj.should be_a(BSON::ObjectId)
ret_val = collection.afind do |obj|
obj.size.should == 1
obj.first['hello'].should == 'world'
EM.next_tick{ EventMachine.stop }
end
ret_val.should be_a(Integer)
end
end
xit "should insert a record into db and be able to find it" do
EventMachine.synchrony do
collection = EM::Mongo::Connection.new.db('db').collection('test')
collection.remove({}) # nuke all keys in collection
obj = collection.insert('hello' => 'world')
obj = collection.insert('hello2' => 'world2')
collection.afind({}) do |obj|
obj.size.should == 2
end
collection.afind({}, {:limit => 1}) do |obj2|
obj2.size.should == 1
end
collection.afirst do |obj3|
obj3.is_a?(Hash).should eq(true)
obj3['hello'].should == 'world'
EM.next_tick{ EventMachine.stop }
end
end
end
xit "should be able to order results" do
EventMachine.synchrony do
collection = EM::Mongo::Connection.new.db('db').collection('test')
collection.remove({}) # nuke all keys in collection
collection.insert(:name => 'one', :position => 0)
collection.insert(:name => 'three', :position => 2)
collection.insert(:name => 'two', :position => 1)
collection.afind({}, {:order => 'position'}) do |res|
res[0]["name"].should == 'one'
res[1]["name"].should == 'two'
res[2]["name"].should == 'three'
end
collection.afind({}, {:order => [:position, :desc]}) do |res1|
res1[0]["name"].should == 'three'
res1[1]["name"].should == 'two'
res1[2]["name"].should == 'one'
EM.next_tick{ EventMachine.stop }
end
end
end
end
end
xit "should update records in db" do
EventMachine.synchrony do
collection = EM::Mongo::Connection.new.db('db').collection('test')
collection.remove({}) # nuke all keys in collection
obj_id = collection.insert('hello' => 'world')
collection.update({'hello' => 'world'}, {'hello' => 'newworld'})
new_obj = collection.first({'_id' => obj_id})
new_obj['hello'].should == 'newworld'
EventMachine.stop
end
end
context "authentication" do
# these specs only get asserted if you run mongod with the --auth flag
xit "successfully authenticates", ci_skip: true do
# For this spec you will need to add this user to the database
#
# From the Mongo shell:
# > use db
# > db.addUser('test', 'test')
EventMachine.synchrony do
database = EM::Mongo::Connection.new.db('db')
database.authenticate('test', 'test').should == true
EventMachine.stop
end
end
xit "raises an AuthenticationError if it cannot authenticate" do
EventMachine.synchrony do
database = EM::Mongo::Connection.new.db('db')
proc {
database.authenticate('test', 'wrong_password')
}.should raise_error(EventMachine::Mongo::AuthenticationError, "auth fails")
EventMachine.stop
end
end
end
end
|