|
24 | 24 | let(:api_key) { 'api_key' }
|
25 | 25 |
|
26 | 26 | context 'dependant on EnterpriseSearch' do
|
27 |
| - let(:ent_client) { Elastic::EnterpriseSearch::Client.new(host: host) } |
| 27 | + let(:ent_client) { Elastic::EnterpriseSearch::Client.new(host: host, adapter: :net_http) } |
28 | 28 | let(:app_client) { ent_client.app_search }
|
29 | 29 |
|
30 | 30 | it 'initializes an app search client' do
|
|
34 | 34 | end
|
35 | 35 |
|
36 | 36 | it 'sets up authentication during initialization' do
|
37 |
| - ent_client = Elastic::EnterpriseSearch::Client.new(host: host) |
| 37 | + # ent_client = Elastic::EnterpriseSearch::Client.new(host: host) |
38 | 38 | app_client = ent_client.app_search(http_auth: api_key)
|
39 | 39 | expect(app_client.http_auth).to eq api_key
|
40 | 40 | end
|
|
46 | 46 | end
|
47 | 47 |
|
48 | 48 | context 'independent from EnterpriseSearch client' do
|
49 |
| - let(:app_client) { Elastic::EnterpriseSearch::AppSearch::Client.new(host: host) } |
| 49 | + let(:app_client) { Elastic::EnterpriseSearch::AppSearch::Client.new(host: host, adapter: :net_http) } |
50 | 50 |
|
51 | 51 | it 'initializes a workplace search client' do
|
52 | 52 | expect(app_client).not_to be nil
|
|
55 | 55 | end
|
56 | 56 |
|
57 | 57 | it 'sets up authentication during initialization' do
|
58 |
| - ent_client = Elastic::EnterpriseSearch::Client.new(host: host) |
| 58 | + ent_client = Elastic::EnterpriseSearch::Client.new(host: host, adapter: :net_http) |
59 | 59 | app_client = ent_client.app_search(http_auth: api_key)
|
60 | 60 | expect(app_client.http_auth).to eq api_key
|
61 | 61 | end
|
|
90 | 90 | let(:client) { described_class.new }
|
91 | 91 | let(:adapter) { client.transport.transport.connections.all.first.connection.builder.adapter }
|
92 | 92 |
|
93 |
| - context 'when no adapter is specified' do |
94 |
| - it 'uses Faraday NetHttp' do |
95 |
| - expect(adapter).to eq Faraday::Adapter::NetHttp |
96 |
| - end |
97 |
| - end |
98 |
| - |
99 | 93 | context 'when the adapter is patron' do
|
100 | 94 | let(:client) { described_class.new(adapter: :patron) }
|
101 | 95 |
|
102 | 96 | it 'uses Faraday with the adapter' do
|
103 | 97 | expect(adapter).to eq Faraday::Adapter::Patron
|
104 | 98 | end
|
105 | 99 | end
|
106 |
| - |
107 |
| - unless defined?(JRUBY_VERSION) |
108 |
| - context 'when the adapter is typhoeus' do |
109 |
| - let(:client) { described_class.new(adapter: :patron) } |
110 |
| - |
111 |
| - it 'uses Faraday with the adapter' do |
112 |
| - expect(adapter).to eq Faraday::Adapter::Patron |
113 |
| - end |
114 |
| - end |
115 |
| - end |
116 | 100 | end
|
117 | 101 | end
|
0 commit comments