Sha256: e77df9351a7a16a826d72b4aa4d2bce99ad65fe23c218e9dbc539d256e91ff62

Contents?: true

Size: 1.5 KB

Versions: 7

Compression:

Stored size: 1.5 KB

Contents

# frozen_string_literal: true
require 'rubygems/test_case'
require 'net/http'
require 'rubygems/openssl'

unless Gem::HAVE_OPENSSL
  warn 'Skipping bundled certificates tests.  openssl not found.'
end

require 'rubygems/request'

# = Testing Bundled CA
#
# The tested hosts are explained in detail here: https://github.com/rubygems/rubygems/commit/5e16a5428f973667cabfa07e94ff939e7a83ebd9
#

class TestBundledCA < Gem::TestCase
  def bundled_certificate_store
    store = OpenSSL::X509::Store.new

    Gem::Request.get_cert_files.each do |ssl_cert|
      store.add_file ssl_cert
    end

    store
  end

  def assert_https(host)
    assert true
    http = Net::HTTP.new(host, 443)
    http.use_ssl = true
    http.verify_mode = OpenSSL::SSL::VERIFY_PEER
    http.cert_store = bundled_certificate_store
    http.get('/')
  rescue Errno::ENOENT, Errno::ETIMEDOUT, SocketError
    pend "#{host} seems offline, I can't tell whether ssl would work."
  rescue OpenSSL::SSL::SSLError => e
    # Only fail for certificate verification errors
    if e.message =~ /certificate verify failed/
      flunk "#{host} is not verifiable using the included certificates. Error was: #{e.message}"
    end
    raise
  end

  def test_accessing_rubygems
    assert_https('rubygems.org')
  end

  def test_accessing_www_rubygems
    assert_https('www.rubygems.org')
  end

  def test_accessing_staging
    assert_https('staging.rubygems.org')
  end

  def test_accessing_new_index
    assert_https('index.rubygems.org')
  end
end if Gem::HAVE_OPENSSL

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
rubygems-update-3.2.24 test/rubygems/test_bundled_ca.rb
rubygems-update-3.2.23 test/rubygems/test_bundled_ca.rb
rubygems-update-3.2.22 test/rubygems/test_bundled_ca.rb
rubygems-update-3.2.21 test/rubygems/test_bundled_ca.rb
rubygems-update-3.2.20 test/rubygems/test_bundled_ca.rb
rubygems-update-3.2.19 test/rubygems/test_bundled_ca.rb
rubygems-update-3.2.18 test/rubygems/test_bundled_ca.rb