Sha256: 3e6190f2ca7e3ff9cc02425edee90e6c3c67bceae383d17ab7333e9f146f4bb4
Contents?: true
Size: 1.47 KB
Versions: 8
Compression:
Stored size: 1.47 KB
Contents
# frozen_string_literal: true RSpec.describe Lokalise::Connection do include described_class before { Lokalise.reset_client! } after do Lokalise.reset_client! Faraday.default_adapter = :net_http end it 'timeouts should not be set by default but the token must be present' do conn = connection test_client expect(conn.options.timeout).to be_nil expect(conn.options.open_timeout).to be_nil expect(conn.headers['X-api-token']).to eq(test_client.token) end it 'allows to customize timeouts' do custom_client = Lokalise.client(ENV['LOKALISE_API_TOKEN'], open_timeout: 100, timeout: 500) conn = connection custom_client expect(conn.options.timeout).to eq(500) expect(conn.options.open_timeout).to eq(100) expect(conn.headers['X-api-token']).to eq(custom_client.token) custom_client.timeout = 300 custom_client.open_timeout = 200 another_conn = connection custom_client expect(another_conn.options.timeout).to eq(300) expect(another_conn.options.open_timeout).to eq(200) end it 'is possible to customize adapter' do conn = connection test_client expect(conn.builder.adapter).to eq(Faraday::Adapter::NetHttp) Faraday.default_adapter = :excon another_conn = connection test_client expect(another_conn.builder.adapter).to eq(Faraday::Adapter::Excon) expect(conn.builder.adapter).to eq(Faraday::Adapter::NetHttp) end end
Version data entries
8 entries across 8 versions & 1 rubygems