An open API service indexing awesome lists of open source software.

https://github.com/smartlogic/http_spec

RSpec DSL for describing HTTP API interactions
https://github.com/smartlogic/http_spec

Last synced: about 1 year ago
JSON representation

RSpec DSL for describing HTTP API interactions

Awesome Lists containing this project

README

          

[![Build Status](https://travis-ci.org/smartlogic/http_spec.png?branch=master)](https://travis-ci.org/smartlogic/http_spec)
[![Dependency Status](https://gemnasium.com/smartlogic/http_spec.png)](https://gemnasium.com/smartlogic/http_spec)
[![Code Climate](https://codeclimate.com/github/smartlogic/http_spec.png)](https://codeclimate.com/github/smartlogic/http_spec)
[![Coverage Status](https://coveralls.io/repos/smartlogic/http_spec/badge.png?branch=master)](https://coveralls.io/r/smartlogic/http_spec)

# HTTPSpec

RSpec DSLs for describing API behaviors

## Features

* Supports Rack, Webmachine, and live applications (via Faraday) using pluggable client back-ends.
* Generate documentation from requests with Raddocs.
* Validate requests and responses against a schema with Fdoc.
* Record and play back responses to speed-up tests against live applications. (like VCR)

## Example Usage

```ruby
require "http_spec/dsl/resource"
require "http_spec/clients/rack"

app = lambda { |env| [200, { "Foo" => "Bar" }, ["Hello, World!"]] }
HTTPSpec.client = HTTPSpec::Clients::Rack.new(app)

describe "My Awesome App" do
include HTTPSpec::DSL::Resource

get "/foobar" do
it "should be successful" do
do_request
status.should eq(200)
end

it "should tell us about foo" do
do_request
response_headers["Foo"].should eq("Bar")
end

it "should greet us" do
do_request
response_body.should eq("Hello, World!")
end
end
end
```

Want something more light-weight?

```ruby
require "http_spec/dsl/methods"
require "http_spec/clients/rack"

app = lambda { |env| [200, { "Foo" => "Bar" }, ["Hello, World!"]] }
HTTPSpec.client = HTTPSpec::Clients::Rack.new(app)

describe "My Awesome App" do
include HTTPSpec::DSL::Methods

it "should be successful" do
get("/foo").status.should eq(200)
end

it "should tell us about foo" do
get("/bar").headers["Foo"].should eq("Bar")
end

it "should greet us" do
get("/baz").body.should eq("Hello, World!")
end
end
```

## Changes

### 1.0.0

* Support for ruby 3.X - fixes for stdlib API changes

### 0.4.0

* Support latest versions of RSpec, Raddocs, Webmachine

### 0.3.0

* Expose `last_response` when using the methods dsl
* Allow rack client to control the cgi environment
* [Bug] Fix issue where group-level headers where being mutated by examples