0.06
No commit activity in last 3 years
No release in over 3 years
There's a lot of open issues
A client wrapper around a Rack app or HTTP
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0
>= 0.9.0.rc1
>= 0

Runtime

>= 1.0.0
 Project Readme

What’s this?

Rack::Client is an HTTP client that aims to be a good Rack
citizen.

Install

To install the latest release as a gem:

sudo gem install rack-client

Then in Ruby:
require “rubygems”; require “rack/client” # and you’re off!

Rack responses

Rack::Client can be used to make HTTP requests to any type of server, not
just ones using Rack. However, when a request is made then a proper
Rack response (specifically a Rack::MockResponse) object is returned.
For Rubyists, this means you don’t need to learn yet another interface
and can just stick with Rack both on the server, test, and client side of
things.

response = Rack::Client.get("http://some-website.com/blah.txt")
response.status #=> 200
response.body #=> "some body"

Middleware

Rack::Client is actually a subclass of Rack::Builder. This means that
Rack::Client objects yield actual Rack apps. More importantly, this
means you can reuse existing Rack middleware on the client side too
(but also feel free to make new middleware that only makes sense on
the client side under the Rack::Client namespace). Note that by default
Rack::Client will “run” Rack::Client::HTTP as an endpoint, but this
will not be performed if you specify your own “run” endpoint.

client = Rack::Client.new { use Rack::ETag }
response = client.get("http://localhost:9292/no-etag")

Rack::Test compatibility

Rack::Client reuses a lot of Rack::Test to provide users with a
familiar interface. What’s even cooler is that you can use a
Rack::Client object as your “app” in Rack::Test. This means that you
can test-drive an application with Rack::Test, then when ready
actually run your Rack app, switch your Rack::Test “app” to a
Rack::Client, and get free full-blown integration testing! Note that
the integration-tested server does not need to be all-Rack, so you can
develop quickly with middleware like Rack::Cache but then remove it
and integration test with a dedicated cache server like Varnish.

# NOTE: For a complete example, look in the "demo" directory
describe Demo, "/store resource" do
  include Rack::Test::Methods
  def app
    # replace this with Rack::Client.new
    # for integration testing
    Demo::App.new
  end
  # ... etc
end

Contributors

halorgium, larrytheliquid, benburkert