Skip to content

Commit e77abb2

Browse files
committed
Updates Gemfile, actions
1 parent d80a249 commit e77abb2

File tree

6 files changed

+9
-22
lines changed

6 files changed

+9
-22
lines changed

.github/workflows/rubocop.yml

+1
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,6 @@ jobs:
1111
ruby-version: 2.7
1212
- name: Run Rubocop
1313
run: |
14+
sudo apt-get install libcurl4-openssl-dev
1415
bundle install
1516
bundle exec rubocop

.github/workflows/testing.yml

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ jobs:
1818
- name: Build and test with Rake
1919
run: |
2020
ruby -v
21+
sudo apt-get install libcurl4-openssl-dev
2122
bundle install
2223
bundle exec rake spec:client
2324
test-jruby:

Gemfile

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ gemspec
2424

2525
gem 'awesome_print'
2626
gem 'byebug' unless defined?(JRUBY_VERSION)
27+
gem 'faraday-patron'
2728
gem 'rake'
2829
gem 'rspec', '~> 3.9.0'
2930
gem 'rspec_junit_formatter'

spec/app-search/client_spec.rb

+4-20
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
let(:api_key) { 'api_key' }
2525

2626
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) }
2828
let(:app_client) { ent_client.app_search }
2929

3030
it 'initializes an app search client' do
@@ -34,7 +34,7 @@
3434
end
3535

3636
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)
3838
app_client = ent_client.app_search(http_auth: api_key)
3939
expect(app_client.http_auth).to eq api_key
4040
end
@@ -46,7 +46,7 @@
4646
end
4747

4848
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) }
5050

5151
it 'initializes a workplace search client' do
5252
expect(app_client).not_to be nil
@@ -55,7 +55,7 @@
5555
end
5656

5757
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)
5959
app_client = ent_client.app_search(http_auth: api_key)
6060
expect(app_client.http_auth).to eq api_key
6161
end
@@ -90,28 +90,12 @@
9090
let(:client) { described_class.new }
9191
let(:adapter) { client.transport.transport.connections.all.first.connection.builder.adapter }
9292

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-
9993
context 'when the adapter is patron' do
10094
let(:client) { described_class.new(adapter: :patron) }
10195

10296
it 'uses Faraday with the adapter' do
10397
expect(adapter).to eq Faraday::Adapter::Patron
10498
end
10599
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
116100
end
117101
end

spec/app-search/date_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
describe Elastic::EnterpriseSearch::AppSearch::Client do
2323
let(:host) { 'https://localhost:8080' }
2424
let(:api_key) { 'api_key' }
25-
let(:client) { Elastic::EnterpriseSearch::AppSearch::Client.new(host: host) }
25+
let(:client) { Elastic::EnterpriseSearch::AppSearch::Client.new(host: host, adapter: :net_http) }
2626
let(:subject) { client.date_to_rfc3339(date) }
2727

2828
context 'Date (year=2020, month=1, day=2)' do

spec/enterprise-search/request_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
require_relative './../webmock_requires'
2323

2424
describe Elastic::EnterpriseSearch::Client do
25-
let(:client) { Elastic::EnterpriseSearch::Client.new(http_auth: http_auth) }
25+
let(:client) { Elastic::EnterpriseSearch::Client.new(http_auth: http_auth, adapter: :net_http) }
2626
let(:stub_response) { OpenStruct.new(status: 200) }
2727
let(:host) { 'http://localhost:3002' }
2828
let(:http_auth) { { user: 'elastic', password: 'password' } }

0 commit comments

Comments
 (0)