Sha256: a6131eef8236b9771eafc4f7c6d2902ffbf1575b86e033f573f2b976b90e91d4

Contents?: true

Size: 1.56 KB

Versions: 6

Compression:

Stored size: 1.56 KB

Contents

require 'spec_helper'

class RiddleSpecConnectionProcError < StandardError; end

describe 'Sphinx Client', :live => true do
  let(:client) { Riddle::Client.new 'localhost', 9313 }

  after :each do
    Riddle::Client.connection = nil
  end
  
  describe '.connection' do
    it "should use the given block" do
      Riddle::Client.connection = lambda { |client|
        TCPSocket.new(client.server, client.port)
      }
      client.query('smith').should be_kind_of(Hash)
    end
    
    it "should fail with errors from the given block" do
      Riddle::Client.connection = lambda { |client|
        raise RiddleSpecConnectionProcError
      }
      lambda { client.query('smith') }.
        should raise_error(RiddleSpecConnectionProcError)
    end
  end
  
  describe '#connection' do
    it "use the given block" do
      client.connection = lambda { |client|
        TCPSocket.new(client.server, client.port)
      }
      client.query('smith').should be_kind_of(Hash)
    end

    it "should fail with errors from the given block" do
      client.connection = lambda { |client|
        raise RiddleSpecConnectionProcError
      }
      lambda { client.query('smith') }.
        should raise_error(RiddleSpecConnectionProcError)
    end

    it "should prioritise instance over class connection" do
      Riddle::Client.connection = lambda { |client|
        raise RiddleSpecConnectionProcError
      }
      client.connection = lambda { |client|
        TCPSocket.new(client.server, client.port)
      }
    
      lambda { client.query('smith') }.should_not raise_error
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
riddle-1.5.5 spec/functional/connection_spec.rb
riddle-1.5.4 spec/functional/connection_spec.rb
riddle-1.5.3 spec/functional/connection_spec.rb
riddle-1.5.2 spec/functional/connection_spec.rb
riddle-1.5.1 spec/functional/connection_spec.rb
riddle-1.5.0 spec/functional/connection_spec.rb