Sha256: 5e345c3cbbbbe35e776b94cae405978c7609d41c52d346eaf686807405fcddb8

Contents?: true

Size: 1.99 KB

Versions: 7

Compression:

Stored size: 1.99 KB

Contents

require 'eventmachine'
require 'thin'
require 'faraday'

module Thin::Backends
  class TcpServer
    def get_port
      # seriously, eventmachine, how hard does getting a port have to be?
      Socket.unpack_sockaddr_in(EM.get_sockname(@signature)).first
    end
  end
end

module Billy
  module TestServer
    def initialize
      Thin::Logging.silent = true
    end

    def start_test_servers
      q = Queue.new
      Thread.new do
        EM.run do
          echo = echo_app_setup

          http_server = start_server(echo)
          q.push http_server.backend.get_port

          https_server = start_server(echo, true)
          q.push https_server.backend.get_port

          echo_error = echo_app_setup(500)
          error_server = start_server(echo_error)
          q.push error_server.backend.get_port
        end
      end

      @http_url  = "http://localhost:#{q.pop}"
      @https_url = "https://localhost:#{q.pop}"
      @error_url = "http://localhost:#{q.pop}"
    end

    def echo_app_setup(response_code = 200)
      counter = 0
      Proc.new do |env|
        req_body = env['rack.input'].read
        request_info = "#{env['REQUEST_METHOD']} #{env['PATH_INFO']}"
        res_body = request_info
        res_body += "\n#{req_body}" unless req_body.empty?
        counter += 1
        [
          response_code,
          { 'HTTP-X-EchoServer' => request_info,
            'HTTP-X-EchoCount' => "#{counter}" },
          [res_body]
        ]
      end
    end

    def certificate_chain(domain)
      ca = Billy.certificate_authority.cert
      cert = Billy::Certificate.new(domain)
      chain = Billy::CertificateChain.new(domain, cert.cert, ca)
      { private_key_file: cert.key_file,
        cert_chain_file: chain.file }

    end

    def start_server(echo, ssl = false)
      http_server = Thin::Server.new '127.0.0.1', 0, echo
      if ssl
        http_server.ssl = true
        http_server.ssl_options = certificate_chain('localhost')
      end
      http_server.start
      http_server
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
puffing-billy-1.1.2 spec/support/test_server.rb
puffing-billy-1.1.1 spec/support/test_server.rb
puffing-billy-1.1.0 spec/support/test_server.rb
puffing-billy-1.0.0 spec/support/test_server.rb
puffing-billy-0.12.0 spec/support/test_server.rb
puffing-billy-0.11.1 spec/support/test_server.rb
puffing-billy-0.11.0 spec/support/test_server.rb