Sha256: a1cee30c5d73a96978a44b18729568444aa3db5b8e411bafc85193e6099a62a5

Contents?: true

Size: 1.14 KB

Versions: 3

Compression:

Stored size: 1.14 KB

Contents

require 'spec_helper'

# The adapter NetHttp must be required before the SocketError (used below) is accessible
require 'faraday/adapter/net_http'

describe PuppetForge::Connection::ConnectionFailure do

  subject do
    Faraday.new('https://my-site.url/some-path') do |builder|
      builder.use(:connection_failure)

      builder.adapter :test do |stub|
        stub.get('/connectfail') { raise Faraday::ConnectionFailed.new(SocketError.new("getaddrinfo: Name or service not known"), :hi) }
      end
    end
  end

  it "includes the base URL in the error message" do
    expect {
      subject.get('/connectfail')
    }.to raise_error(Faraday::ConnectionFailed, /unable to connect to.*\/connectfail.*name or service not known/i)
  end

  it "includes the proxy host in the error message when set" do
    if subject.respond_to?(:proxy=)
      subject.proxy = 'https://some-unreachable.proxy:3128'
    else
      subject.proxy('https://some-unreachable.proxy:3128')
    end

    expect {
      subject.get('/connectfail')
    }.to raise_error(Faraday::ConnectionFailed, /unable to connect to.*using proxy.*\/connectfail.*name or service not known/i)
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
puppet_forge-2.3.1 spec/unit/forge/connection/connection_failure_spec.rb
puppet_forge-2.3.0 spec/unit/forge/connection/connection_failure_spec.rb
puppet_forge-2.3.0.rc1 spec/unit/forge/connection/connection_failure_spec.rb