Sha256: 04faf6812fd2aa0b0865b4faa246b46fe81f72b6b0270cab043e93577ea93045

Contents?: true

Size: 1.22 KB

Versions: 5

Compression:

Stored size: 1.22 KB

Contents

require 'sinatra/base'

module Faraday
class LiveServer < Sinatra::Base
  set :environment, :test
  disable :logging
  disable :protection

  [:get, :post, :put, :patch, :delete, :options].each do |method|
    send(method, '/echo') do
      kind = request.request_method.downcase
      out = kind.dup
      out << ' ?' << request.GET.inspect if request.GET.any?
      out << ' ' << request.POST.inspect if request.POST.any?

      content_type 'text/plain'
      return out
    end
  end

  get '/echo_header' do
    header = "HTTP_#{params[:name].tr('-', '_').upcase}"
    request.env.fetch(header) { 'NONE' }
  end

  post '/file' do
    if params[:uploaded_file].respond_to? :each_key
      "file %s %s" % [
        params[:uploaded_file][:filename],
        params[:uploaded_file][:type]]
    else
      status 400
    end
  end

  get '/multi' do
    [200, { 'Set-Cookie' => 'one, two' }, '']
  end

  get '/who-am-i' do
    request.env['REMOTE_ADDR']
  end

  get '/slow' do
    sleep 10
    [200, {}, 'ok']
  end

  get '/204' do
    status 204 # no content
  end

  get '/ssl' do
    request.secure?.to_s
  end

  error do |e|
    "#{e.class}\n#{e.to_s}\n#{e.backtrace.join("\n")}"
  end
end
end

if $0 == __FILE__
  Faraday::LiveServer.run!
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
faraday-0.9.0.rc5 test/live_server.rb
faraday-0.9.0.rc4 test/live_server.rb
faraday-0.9.0.rc3 test/live_server.rb
faraday-0.9.0.rc2 test/live_server.rb
faraday-0.9.0.rc1 test/live_server.rb