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
|
require 'spec_helper'
describe Mongo::Socket::Unix do
let(:socket) do
described_class.new("/tmp/mongodb-27017.sock", 5)
end
describe '#connect!' do
before do
socket.connect!
end
after do
socket.close
end
it 'connects to the server' do
expect(socket).to be_alive
end
end
describe '#alive?' do
context 'when the socket is connected' do
before do
socket.connect!
end
after do
socket.close
end
it 'returns true' do
expect(socket).to be_alive
end
end
context 'when the socket is not connected' do
before do
socket.close
end
it 'raises error' do
expect { socket.alive? }.to raise_error(IOError)
end
end
end
end
|