require 'test_helper' class Elasticsearch::Transport::ClientIntegrationTest < Elasticsearch::Test::IntegrationTestCase startup do Elasticsearch::Extensions::Test::Cluster.start(nodes: 2) if ENV['SERVER'] and not Elasticsearch::Extensions::Test::Cluster.running? end context "Transport" do setup do @port = (ENV['TEST_CLUSTER_PORT'] || 9250).to_i end should "allow to customize the Faraday adapter" do require 'typhoeus' require 'typhoeus/adapters/faraday' # Fix for unreleased Typhoeus version (https://github.com/typhoeus/typhoeus/commit/00da90f) # class ::Faraday::Adapter::Typhoeus def configure_ssl(req, env) # noop end end transport = Elasticsearch::Transport::Transport::HTTP::Faraday.new \ :hosts => [ { :host => 'localhost', :port => @port } ] do |f| f.response :logger f.adapter :typhoeus end client = Elasticsearch::Transport::Client.new transport: transport client.perform_request 'GET', '' end should "use the Curb client" do require 'curb' require 'elasticsearch/transport/transport/http/curb' transport = Elasticsearch::Transport::Transport::HTTP::Curb.new \ :hosts => [ { :host => 'localhost', :port => @port } ] do |curl| curl.verbose = true end client = Elasticsearch::Transport::Client.new transport: transport client.perform_request 'GET', '' end unless JRUBY end end